Merge pull request #33 from wigyori/master
authorZoltan Herpai <wigyori@uid0.hu>
Sat, 16 Jul 2016 12:33:04 +0000 (14:33 +0200)
committerGitHub <noreply@github.com>
Sat, 16 Jul 2016 12:33:04 +0000 (14:33 +0200)
brcm2708: fix SUBTARGET checks for bcm2709/bcm2710

target/linux/brcm2708/image/Makefile

index f594c5b0561ec79d9f5eef5a6e636ecc40fb2348..35f51204f050c1b490829ecf6805c2636abe59d8 100644 (file)
@@ -64,7 +64,7 @@ define Device/rpi-2
   DEVICE_TITLE := Raspberry Pi 2 B
   DEVICE_DTS := bcm2709-rpi-2-b
 endef
-ifeq ($(SUBTARGET),bcm2708)
+ifeq ($(SUBTARGET),bcm2709)
   TARGET_DEVICES += rpi-2
 endif
 
@@ -73,7 +73,7 @@ define Device/rpi-3
   DEVICE_DTS := bcm2710-rpi-3-b
   DEVICE_PACKAGES := brcmfmac43430-firmware-sdio kmod-brcmfmac wpad-mini
 endef
-ifeq ($(SUBTARGET),bcm2708)
+ifeq ($(SUBTARGET),bcm2710)
   TARGET_DEVICES += rpi-3
 endif