bcm2708: explicitly check for SUBTARGET instead of using the device SUBTARGETS variable
[openwrt/openwrt.git] / target / linux / brcm2708 / image / Makefile
1 #
2 # Copyright (C) 2012-2015 OpenWrt.org
3 # Copyright (C) 2016 LEDE project
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/image.mk
10 include $(INCLUDE_DIR)/host.mk
11
12 FAT32_BLOCK_SIZE=1024
13 FAT32_BLOCKS=$(shell echo $$(($(CONFIG_BRCM2708_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
14
15 ### Image scripts ###
16 define Build/kernel-img
17 perl $(LINUX_DIR)/scripts/mkknlimg $@ $@.tmp
18 mv $@.tmp $@
19 endef
20
21 define Build/boot-img
22 rm -f $@.boot
23 mkfs.fat -C $@.boot $(FAT32_BLOCKS)
24 mcopy -i $@.boot $(LINUX_DIR)/COPYING ::COPYING.linux
25 mcopy -i $@.boot $(KDIR)/bootcode.bin ::
26 mcopy -i $@.boot $(KDIR)/LICENCE.broadcom ::
27 mcopy -i $@.boot $(KDIR)/start.elf ::
28 mcopy -i $@.boot $(KDIR)/start_cd.elf ::
29 mcopy -i $@.boot $(KDIR)/fixup.dat ::
30 mcopy -i $@.boot $(KDIR)/fixup_cd.dat ::
31 mcopy -i $@.boot cmdline.txt ::
32 mcopy -i $@.boot config.txt ::
33 mcopy -i $@.boot $(word 1,$^) ::kernel.img
34 $(foreach dts,$(shell echo $(DEVICE_DTS)),mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb ::;)
35 mmd -i $@.boot ::/overlays
36 mcopy -i $@.boot $(DTS_DIR)/overlays/*.dtbo ::/overlays/
37 mcopy -i $@.boot $(DTS_DIR)/overlays/README ::/overlays/
38 endef
39
40 define Build/sdcard-img
41 ./gen_rpi_sdcard_img.sh $@ $@.boot $(word 2,$^) \
42 $(CONFIG_BRCM2708_SD_BOOT_PARTSIZE) $(CONFIG_TARGET_ROOTFS_PARTSIZE)
43 $(if $(CONFIG_TARGET_IMAGES_GZIP),gzip -9n -c $@ > $(BIN_DIR)/$(notdir $@).gz)
44 endef
45
46 ### Devices ###
47 define Device/Default
48 FILESYSTEMS := ext4
49 KERNEL := kernel-bin | kernel-img
50 IMAGES := sdcard.img
51 IMAGE/sdcard.img := boot-img | sdcard-img
52 DEVICE_DTS :=
53 endef
54 DEVICE_VARS += DEVICE_DTS
55
56 define Device/rpi
57 DEVICE_TITLE := Raspberry Pi B/B+/CM
58 DEVICE_DTS := bcm2708-rpi-b bcm2708-rpi-b-plus bcm2708-rpi-cm
59 endef
60 ifeq ($(SUBTARGET),bcm2708)
61 TARGET_DEVICES += rpi
62 endif
63
64 define Device/rpi-2
65 DEVICE_TITLE := Raspberry Pi 2 B
66 DEVICE_DTS := bcm2709-rpi-2-b
67 endef
68 ifeq ($(SUBTARGET),bcm2708)
69 TARGET_DEVICES += rpi-2
70 endif
71
72 define Device/rpi-3
73 DEVICE_TITLE := Raspberry Pi 3 B
74 DEVICE_DTS := bcm2710-rpi-3-b
75 DEVICE_PACKAGES := brcmfmac43430-firmware-sdio kmod-brcmfmac wpad-mini
76 endef
77 ifeq ($(SUBTARGET),bcm2708)
78 TARGET_DEVICES += rpi-3
79 endif
80
81 $(eval $(call BuildImage))