octeon: switch from uci-defaults to board.d
[openwrt/staging/wigyori.git] / target / linux / octeon / base-files / etc / board.d / 01_network
diff --git a/target/linux/octeon/base-files/etc/board.d/01_network b/target/linux/octeon/base-files/etc/board.d/01_network
new file mode 100755 (executable)
index 0000000..f07bdf8
--- /dev/null
@@ -0,0 +1,25 @@
+#!/bin/sh
+#
+# Copyright (C) 2014-2015 OpenWrt.org
+#
+
+. /lib/functions/uci-defaults-new.sh
+. /lib/functions/octeon.sh
+
+board_config_update
+
+board=$(octeon_board_name)
+
+case "$board" in
+erlite)
+       ucidef_set_interfaces_lan_wan "eth0" "eth1"
+       ;;
+
+*)
+       ucidef_set_interfaces_lan_wan "eth0" "eth1"
+       ;;
+esac
+
+board_config_flush
+
+exit 0