diff options
author | Zoltan Herpai <wigyori@uid0.hu> | 2016-07-16 14:33:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-16 14:33:04 +0200 |
commit | 0b4cf150b54a8a037d0c825e5b7336b3987e9b58 (patch) | |
tree | b73592348e57f82dc0a022f1ed5eeea996a0a77b /target | |
parent | e365798d804207f172e78249a58b8e8881835030 (diff) | |
parent | 993f11c4988cf0b416b458557ebefc8de23b1655 (diff) | |
download | master-187ad058-0b4cf150b54a8a037d0c825e5b7336b3987e9b58.tar.gz master-187ad058-0b4cf150b54a8a037d0c825e5b7336b3987e9b58.tar.bz2 master-187ad058-0b4cf150b54a8a037d0c825e5b7336b3987e9b58.zip |
Merge pull request #33 from wigyori/master
brcm2708: fix SUBTARGET checks for bcm2709/bcm2710
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/brcm2708/image/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/brcm2708/image/Makefile b/target/linux/brcm2708/image/Makefile index f594c5b056..35f51204f0 100644 --- a/target/linux/brcm2708/image/Makefile +++ b/target/linux/brcm2708/image/Makefile @@ -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 |