brcm2708: properly detect the Raspberry Pi Zero

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
Álvaro Fernández Rojas 2016-06-21 17:49:43 +02:00
parent a95d64a269
commit 63cb2fb88d
3 changed files with 6 additions and 2 deletions

View File

@ -7,7 +7,8 @@
set_state() {
case "$(brcm2708_board_name)" in
rpi-b |\
rpi-cm)
rpi-cm |\
rpi-zero)
status_led="led0"
;;
rpi-b-plus |\

View File

@ -18,6 +18,9 @@ brcm2708_detect() {
"Raspberry Pi Compute Module Rev"*)
board_name="rpi-cm"
;;
"Raspberry Pi Zero Rev"*)
board_name="rpi-zero"
;;
"Raspberry Pi 2 Model B Rev"*)
board_name="rpi-2-b"
;;

View File

@ -54,7 +54,7 @@ endef
DEVICE_VARS += DEVICE_DTS
define Device/rpi
DEVICE_TITLE := Raspberry Pi B/B+/CM
DEVICE_TITLE := Raspberry Pi B/B+/CM/Zero
DEVICE_DTS := bcm2708-rpi-b bcm2708-rpi-b-plus bcm2708-rpi-cm
endef
ifeq ($(SUBTARGET),bcm2708)