aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/base-files/etc
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
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')
-rwxr-xr-xtarget/linux/brcm2708/base-files/etc/board.d/02_network25
-rw-r--r--target/linux/brcm2708/base-files/etc/diag.sh12
-rw-r--r--target/linux/brcm2708/base-files/etc/uci-defaults/02_network15
3 files changed, 36 insertions, 16 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
diff --git a/target/linux/brcm2708/base-files/etc/diag.sh b/target/linux/brcm2708/base-files/etc/diag.sh
index 55e68b1a00..3a8dc86112 100644
--- a/target/linux/brcm2708/base-files/etc/diag.sh
+++ b/target/linux/brcm2708/base-files/etc/diag.sh
@@ -4,9 +4,19 @@
#
. /lib/functions/leds.sh
+. /lib/brcm2708.sh
set_state() {
- status_led="led0"
+ case "$(brcm2708_board_name)" in
+ rpi-b |\
+ rpi-cm)
+ status_led="led0"
+ ;;
+ rpi-b-plus |\
+ rpi-2-b)
+ status_led="led1"
+ ;;
+ esac
case "$1" in
preinit)
diff --git a/target/linux/brcm2708/base-files/etc/uci-defaults/02_network b/target/linux/brcm2708/base-files/etc/uci-defaults/02_network
deleted file mode 100644
index e7e35c5226..0000000000
--- a/target/linux/brcm2708/base-files/etc/uci-defaults/02_network
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2014 OpenWrt.org
-
-[ -e /etc/config/network ] && exit 0
-
-touch /etc/config/network
-
-. /lib/functions/uci-defaults.sh
-
-ucidef_set_interface_loopback
-ucidef_set_interface_lan "eth0"
-
-uci commit network
-
-exit 0