[source] brcm2708: detect Raspberry Pi Zero W
LEDE Commits
lede-commits at lists.infradead.org
Wed Mar 8 00:04:34 PST 2017
noltari pushed a commit to source.git, branch master:
https://git.lede-project.org/4124847772604773d05fbc8bd5d84f7c7b80edca
commit 4124847772604773d05fbc8bd5d84f7c7b80edca
Author: Stijn Tintel <stijn at linux-ipv6.be>
AuthorDate: Sun Mar 5 21:16:07 2017 +0100
brcm2708: detect Raspberry Pi Zero W
Signed-off-by: Stijn Tintel <stijn at linux-ipv6.be>
---
target/linux/brcm2708/base-files/etc/board.d/02_network | 3 +++
target/linux/brcm2708/base-files/etc/diag.sh | 3 ++-
target/linux/brcm2708/base-files/lib/brcm2708.sh | 3 +++
3 files changed, 8 insertions(+), 1 deletion(-)
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 21e86f4..9486a6a 100755
--- a/target/linux/brcm2708/base-files/etc/board.d/02_network
+++ b/target/linux/brcm2708/base-files/etc/board.d/02_network
@@ -18,6 +18,9 @@ rpi-b |\
rpi-b-plus)
ucidef_set_interface_lan "eth0"
;;
+rpi-zero-w)
+ ucidef_set_interface_lan "wlan0"
+ ;;
esac
board_config_flush
diff --git a/target/linux/brcm2708/base-files/etc/diag.sh b/target/linux/brcm2708/base-files/etc/diag.sh
index 010a623..36c5cd7 100644
--- a/target/linux/brcm2708/base-files/etc/diag.sh
+++ b/target/linux/brcm2708/base-files/etc/diag.sh
@@ -13,7 +13,8 @@ set_state() {
;;
rpi-b |\
rpi-cm |\
- rpi-zero)
+ rpi-zero |\
+ rpi-zero-w)
status_led="led0"
;;
esac
diff --git a/target/linux/brcm2708/base-files/lib/brcm2708.sh b/target/linux/brcm2708/base-files/lib/brcm2708.sh
index cebec64..81f123f 100644
--- a/target/linux/brcm2708/base-files/lib/brcm2708.sh
+++ b/target/linux/brcm2708/base-files/lib/brcm2708.sh
@@ -28,6 +28,9 @@ brcm2708_detect() {
"Raspberry Pi Zero Rev"*)
board_name="rpi-zero"
;;
+ "Raspberry Pi Zero W Rev"*)
+ board_name="rpi-zero-w"
+ ;;
*)
board_name="unknown"
;;
More information about the lede-commits
mailing list