brcm2708: update linux 4.4 patches to latest version
[openwrt/staging/chunkeey.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 $(IMAGE_KERNEL) ::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 $(IMAGE_ROOTFS) \
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 endef
53
54 define Device/rpi
55 DEVICE_TITLE := Raspberry Pi B/B+/CM/Zero
56 DEVICE_DTS := bcm2708-rpi-b bcm2708-rpi-b-plus bcm2708-rpi-cm
57 endef
58 ifeq ($(SUBTARGET),bcm2708)
59 TARGET_DEVICES += rpi
60 endif
61
62 define Device/rpi-2
63 DEVICE_TITLE := Raspberry Pi 2 B
64 DEVICE_DTS := bcm2709-rpi-2-b
65 endef
66 ifeq ($(SUBTARGET),bcm2709)
67 TARGET_DEVICES += rpi-2
68 endif
69
70 define Device/rpi-3
71 DEVICE_TITLE := Raspberry Pi 3 B/CM
72 DEVICE_DTS := bcm2710-rpi-3-b bcm2710-rpi-cm3
73 DEVICE_PACKAGES := brcmfmac43430-firmware-sdio kmod-brcmfmac wpad-mini
74 endef
75 ifeq ($(SUBTARGET),bcm2710)
76 TARGET_DEVICES += rpi-3
77 endif
78
79 $(eval $(call BuildImage))