aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/orion/base-files/etc/board.d
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-04 14:39:14 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-04 14:39:14 +0000
commit9c29a7b75564e6cd7a6f7b0cc4eea74e302fda3e (patch)
treebedae4cfb1b5c1ef04bd6412c0d141ccde900d81 /target/linux/orion/base-files/etc/board.d
parent118d00906cf282e9708a6f1d2e6bfffb685a558e (diff)
downloadmaster-187ad058-9c29a7b75564e6cd7a6f7b0cc4eea74e302fda3e.tar.gz
master-187ad058-9c29a7b75564e6cd7a6f7b0cc4eea74e302fda3e.tar.bz2
master-187ad058-9c29a7b75564e6cd7a6f7b0cc4eea74e302fda3e.zip
orion: convert initial network configuration to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47759 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/base-files/etc/board.d')
-rwxr-xr-xtarget/linux/orion/base-files/etc/board.d/02_network15
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/orion/base-files/etc/board.d/02_network b/target/linux/orion/base-files/etc/board.d/02_network
new file mode 100755
index 0000000000..96cd083c45
--- /dev/null
+++ b/target/linux/orion/base-files/etc/board.d/02_network
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+. /lib/functions/uci-defaults-new.sh
+
+board_config_update
+
+if grep -q lan1 /proc/net/dev; then
+ ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4" "wan"
+else
+ ucidef_set_interface_lan "eth0"
+fi
+
+board_config_flush
+
+exit 0