diff options
author | John Crispin <blogic@openwrt.org> | 2015-11-21 21:24:57 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-11-21 21:24:57 +0000 |
commit | bba3cd3c575b3218bba213cb5ef005a3e464490a (patch) | |
tree | 5fac23988cf279cb1182ab2ec5267c54dadf897a /target/linux/brcm2708 | |
parent | 6f373565dc8f2f13f5b58fd78c2f298a5d42ac0b (diff) | |
download | master-187ad058-bba3cd3c575b3218bba213cb5ef005a3e464490a.tar.gz master-187ad058-bba3cd3c575b3218bba213cb5ef005a3e464490a.tar.bz2 master-187ad058-bba3cd3c575b3218bba213cb5ef005a3e464490a.zip |
brcm2708: rename image device definition
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47560 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm2708')
-rw-r--r-- | target/linux/brcm2708/image/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/brcm2708/image/Makefile b/target/linux/brcm2708/image/Makefile index bfcb522b64..22c1218fc7 100644 --- a/target/linux/brcm2708/image/Makefile +++ b/target/linux/brcm2708/image/Makefile @@ -57,7 +57,7 @@ DEVICE_VARS += DEVICE_PROFILE DEVICE_DTS # $(1) = profile # $(2) = image name # $(3) = dts -define add_bcm2708 +define bcm270x define Device/$(2) DEVICE_PROFILE := $(1) DEVICE_DTS := $(3) @@ -68,17 +68,17 @@ endef ### BCM2708/BCM2835 ### ifeq ($(SUBTARGET),bcm2708) # 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+ - $(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 - $(eval $(call add_bcm2708,RaspberryPi_CM,rpi-cm,bcm2708-rpi-cm)) + $(eval $(call bcm270x,RaspberryPi_CM,rpi-cm,bcm2708-rpi-cm)) endif ### BCM2709/BCM2836 ### ifeq ($(SUBTARGET),bcm2709) # 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 $(eval $(call BuildImage)) |