brcm2708: properly detect the Raspberry Pi Zero
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
parent
a95d64a269
commit
63cb2fb88d
3 changed files with 6 additions and 2 deletions
|
@ -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 |\
|
||||
|
|
|
@ -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"
|
||||
;;
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue