summaryrefslogtreecommitdiff
path: root/target/linux/at91/base-files/etc/board.d/02_network
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-03 23:07:38 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-03 23:07:38 +0000
commit81f1ccbf967a211449b0726ff476f079e3df1bcb (patch)
tree9abe6144b5d0fcf49edee9d26b4a631aea5178f4 /target/linux/at91/base-files/etc/board.d/02_network
parentadbe47380e630a65a894bf53f73efd9d58a6195e (diff)
downloadmtk-20170518-81f1ccbf967a211449b0726ff476f079e3df1bcb.zip
mtk-20170518-81f1ccbf967a211449b0726ff476f079e3df1bcb.tar.gz
mtk-20170518-81f1ccbf967a211449b0726ff476f079e3df1bcb.tar.bz2
at91: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47740
Diffstat (limited to 'target/linux/at91/base-files/etc/board.d/02_network')
-rwxr-xr-xtarget/linux/at91/base-files/etc/board.d/02_network25
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/at91/base-files/etc/board.d/02_network b/target/linux/at91/base-files/etc/board.d/02_network
new file mode 100755
index 0000000..fc3e112
--- /dev/null
+++ b/target/linux/at91/base-files/etc/board.d/02_network
@@ -0,0 +1,25 @@
+#!/bin/sh
+#
+# Copyright (C) 2014-2015 OpenWrt.org
+#
+
+. /lib/functions/uci-defaults-new.sh
+. /lib/at91.sh
+
+board_config_update
+
+case "$(at91_board_name)" in
+
+sama5d3_xplained)
+ ucidef_set_interfaces_lan_wan "eth0" "eth1"
+ ;;
+
+*)
+ ucidef_set_interface_lan "eth0"
+ ;;
+
+esac
+
+board_config_flush
+
+exit 0