Skip to content
Snippets Groups Projects
Commit a429d699 authored by John Crispin's avatar John Crispin
Browse files

brcm2708: rename image device definition


Signed-off-by: default avatarÁlvaro Fernández Rojas <noltari@gmail.com>

SVN-Revision: 47560
parent edff9801
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ DEVICE_VARS += DEVICE_PROFILE DEVICE_DTS ...@@ -57,7 +57,7 @@ DEVICE_VARS += DEVICE_PROFILE DEVICE_DTS
# $(1) = profile # $(1) = profile
# $(2) = image name # $(2) = image name
# $(3) = dts # $(3) = dts
define add_bcm2708 define bcm270x
define Device/$(2) define Device/$(2)
DEVICE_PROFILE := $(1) DEVICE_PROFILE := $(1)
DEVICE_DTS := $(3) DEVICE_DTS := $(3)
...@@ -68,17 +68,17 @@ endef ...@@ -68,17 +68,17 @@ endef
### BCM2708/BCM2835 ### ### BCM2708/BCM2835 ###
ifeq ($(SUBTARGET),bcm2708) ifeq ($(SUBTARGET),bcm2708)
# Raspberry Pi Model B # Raspberry Pi Model B
$(eval $(call add_bcm2708,RaspberryPi_B,rpi-b,bcm2708-rpi-b)) $(eval $(call bcm270x,RaspberryPi_B,rpi-b,bcm2708-rpi-b))
# Raspberry Pi Model B+ # Raspberry Pi Model B+
$(eval $(call add_bcm2708,RaspberryPi_BPlus,rpi-b-plus,bcm2708-rpi-b-plus)) $(eval $(call bcm270x,RaspberryPi_BPlus,rpi-b-plus,bcm2708-rpi-b-plus))
# Raspberry Pi Compute Module # Raspberry Pi Compute Module
$(eval $(call add_bcm2708,RaspberryPi_CM,rpi-cm,bcm2708-rpi-cm)) $(eval $(call bcm270x,RaspberryPi_CM,rpi-cm,bcm2708-rpi-cm))
endif endif
### BCM2709/BCM2836 ### ### BCM2709/BCM2836 ###
ifeq ($(SUBTARGET),bcm2709) ifeq ($(SUBTARGET),bcm2709)
# Raspberry Pi 2 Model B # Raspberry Pi 2 Model B
$(eval $(call add_bcm2708,RaspberryPi_2,rpi-2-b,bcm2709-rpi-2-b)) $(eval $(call bcm270x,RaspberryPi_2,rpi-2-b,bcm2709-rpi-2-b))
endif endif
$(eval $(call BuildImage)) $(eval $(call BuildImage))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment