aboutsummaryrefslogtreecommitdiffstats
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
commit54904b87a45e8848d8f2a2c4d3732619ccb25998 (patch)
tree4656717f8e06a297e50375ae4b1912d834b68884 /target/linux/at91/base-files/etc/board.d/02_network
parent23d1c880f4908aa99c06ec45f3a40b20f0b31948 (diff)
downloadmaster-187ad058-54904b87a45e8848d8f2a2c4d3732619ccb25998.tar.gz
master-187ad058-54904b87a45e8848d8f2a2c4d3732619ccb25998.tar.bz2
master-187ad058-54904b87a45e8848d8f2a2c4d3732619ccb25998.zip
at91: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47740 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 0000000000..fc3e112f02
--- /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