summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/base-files/etc/board.d/02_network
diff options
context:
space:
mode:
authorChristian Lamparter <chunkeey@gmail.com>2017-12-17 15:18:48 +0100
committerÁlvaro Fernández Rojas <noltari@gmail.com>2017-12-25 12:19:41 +0100
commit6f041288927b6b7f64a7ee2a2b2df1d5dcd91990 (patch)
treef6daee9eecdb6b35eec426278a48dc3b409e7668 /target/linux/brcm2708/base-files/etc/board.d/02_network
parent778543dab4e71c29b69a38aaefb567b05b54eec6 (diff)
downloadopenwrt-6f041288927b6b7f64a7ee2a2b2df1d5dcd91990.tar.gz
openwrt-6f041288927b6b7f64a7ee2a2b2df1d5dcd91990.tar.bz2
openwrt-6f041288927b6b7f64a7ee2a2b2df1d5dcd91990.zip
brcm2708: convert to dt-based board-detection
Use the values populated by the generic board detect function. The first compatible from the device tree source file will be the board name in userspace. The model property from the device tree source file will be the model name. Change the board name where used in the userspace and drop the target specific board detect, to use the generic one. Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/base-files/etc/board.d/02_network')
-rwxr-xr-xtarget/linux/brcm2708/base-files/etc/board.d/02_network12
1 files changed, 7 insertions, 5 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
index 29bcf33e33..a9c947b65a 100755
--- a/target/linux/brcm2708/base-files/etc/board.d/02_network
+++ b/target/linux/brcm2708/base-files/etc/board.d/02_network
@@ -11,13 +11,15 @@ board_config_update
board=$(board_name)
case "$board" in
-rpi-2-b |\
-rpi-3-b |\
-rpi-b |\
-rpi-b-plus)
+raspberrypi,model-b |\
+raspberrypi,model-b-plus |\
+raspberrypi,model-b-rev2 |\
+raspberrypi,2-model-b |\
+raspberrypi,3-model-b)
ucidef_set_interface_lan "eth0"
;;
-rpi-zero-w)
+
+raspberrypi,model-zero-w)
ucidef_set_interface_lan "wlan0"
;;
esac