aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/base-files/etc/board.d/02_network
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-11-22 08:04:37 +0000
committerJohn Crispin <john@openwrt.org>2015-11-22 08:04:37 +0000
commitcd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28 (patch)
tree91ef3306b6e5a2bdb1413e7d76469d04a1c18f2d /target/linux/brcm2708/base-files/etc/board.d/02_network
parentdeff5fb6c89b58b193bb57ab129cbe441a4404b4 (diff)
downloadupstream-cd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28.tar.gz
upstream-cd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28.tar.bz2
upstream-cd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28.zip
brcm2708: add device detection and use it for network, leds and preinit
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> SVN-Revision: 47572
Diffstat (limited to 'target/linux/brcm2708/base-files/etc/board.d/02_network')
-rwxr-xr-xtarget/linux/brcm2708/base-files/etc/board.d/02_network25
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/brcm2708/base-files/etc/board.d/02_network b/target/linux/brcm2708/base-files/etc/board.d/02_network
new file mode 100755
index 0000000000..e85eb11f88
--- /dev/null
+++ b/target/linux/brcm2708/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/brcm2708.sh
+. /lib/functions.sh
+. /lib/functions/system.sh
+
+board_config_update
+
+ucidef_set_interface_loopback
+
+board=$(brcm2708_board_name)
+
+case "$board" in
+rpi-b |\
+rpi-b-plus |\
+rpi-2-b)
+ ucidef_set_interface_lan "eth0"
+ ;;
+esac
+
+board_config_flush
+
+exit 0