2012-07-24 20:39:17 +00:00
|
|
|
#
|
2015-03-15 05:18:50 +00:00
|
|
|
# Copyright (C) 2012-2015 OpenWrt.org
|
2016-04-01 11:37:33 +00:00
|
|
|
# Copyright (C) 2016 LEDE project
|
2012-07-24 20:39:17 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
include $(INCLUDE_DIR)/host.mk
|
|
|
|
|
|
|
|
FAT32_BLOCK_SIZE=1024
|
|
|
|
FAT32_BLOCKS=$(shell echo $$(($(CONFIG_BRCM2708_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
|
|
|
|
|
2015-07-14 07:37:29 +00:00
|
|
|
### Image scripts ###
|
2015-11-21 21:25:04 +00:00
|
|
|
define Build/kernel-img
|
|
|
|
perl $(LINUX_DIR)/scripts/mkknlimg $@ $@.tmp
|
|
|
|
mv $@.tmp $@
|
2015-07-14 07:37:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/boot-img
|
|
|
|
rm -f $@.boot
|
|
|
|
mkfs.fat -C $@.boot $(FAT32_BLOCKS)
|
2016-04-01 11:37:33 +00:00
|
|
|
mcopy -i $@.boot $(LINUX_DIR)/COPYING ::COPYING.linux
|
2015-07-14 07:37:29 +00:00
|
|
|
mcopy -i $@.boot $(KDIR)/bootcode.bin ::
|
|
|
|
mcopy -i $@.boot $(KDIR)/LICENCE.broadcom ::
|
|
|
|
mcopy -i $@.boot $(KDIR)/start.elf ::
|
|
|
|
mcopy -i $@.boot $(KDIR)/start_cd.elf ::
|
|
|
|
mcopy -i $@.boot $(KDIR)/fixup.dat ::
|
|
|
|
mcopy -i $@.boot $(KDIR)/fixup_cd.dat ::
|
|
|
|
mcopy -i $@.boot cmdline.txt ::
|
2015-11-21 21:25:04 +00:00
|
|
|
mcopy -i $@.boot config.txt ::
|
2015-07-14 07:37:29 +00:00
|
|
|
mcopy -i $@.boot $(word 1,$^) ::kernel.img
|
2015-11-24 18:27:43 +00:00
|
|
|
$(foreach dts,$(shell echo $(DEVICE_DTS)),mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb ::;)
|
2015-10-11 16:23:18 +00:00
|
|
|
mmd -i $@.boot ::/overlays
|
2016-04-07 19:25:10 +00:00
|
|
|
mcopy -i $@.boot $(DTS_DIR)/overlays/*.dtbo ::/overlays/
|
2015-10-26 09:01:21 +00:00
|
|
|
mcopy -i $@.boot $(DTS_DIR)/overlays/README ::/overlays/
|
2015-07-14 07:37:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/sdcard-img
|
|
|
|
./gen_rpi_sdcard_img.sh $@ $@.boot $(word 2,$^) \
|
2012-07-24 20:39:17 +00:00
|
|
|
$(CONFIG_BRCM2708_SD_BOOT_PARTSIZE) $(CONFIG_TARGET_ROOTFS_PARTSIZE)
|
2015-11-21 21:24:44 +00:00
|
|
|
$(if $(CONFIG_TARGET_IMAGES_GZIP),gzip -9n -c $@ > $(BIN_DIR)/$(notdir $@).gz)
|
2012-07-24 20:39:17 +00:00
|
|
|
endef
|
|
|
|
|
2016-05-12 17:49:20 +00:00
|
|
|
### Devices ###
|
2015-07-14 07:37:29 +00:00
|
|
|
define Device/Default
|
|
|
|
FILESYSTEMS := ext4
|
2015-11-21 21:25:04 +00:00
|
|
|
KERNEL := kernel-bin | kernel-img
|
2015-11-21 21:24:50 +00:00
|
|
|
IMAGES := sdcard.img
|
2015-11-21 21:25:04 +00:00
|
|
|
IMAGE/sdcard.img := boot-img | sdcard-img
|
2015-07-14 07:37:29 +00:00
|
|
|
DEVICE_DTS :=
|
|
|
|
endef
|
2016-05-12 17:49:20 +00:00
|
|
|
DEVICE_VARS += DEVICE_DTS
|
2012-07-24 20:39:17 +00:00
|
|
|
|
2016-05-12 17:49:20 +00:00
|
|
|
define Device/rpi
|
|
|
|
SUBTARGETS := bcm2708
|
|
|
|
DEVICE_TITLE := Raspberry Pi B/B+/CM
|
|
|
|
DEVICE_DTS := bcm2708-rpi-b bcm2708-rpi-b-plus bcm2708-rpi-cm
|
2012-07-24 20:39:17 +00:00
|
|
|
endef
|
2016-05-12 17:49:20 +00:00
|
|
|
TARGET_DEVICES += rpi
|
2012-07-24 20:39:17 +00:00
|
|
|
|
2016-05-12 17:49:20 +00:00
|
|
|
define Device/rpi-2
|
|
|
|
SUBTARGETS := bcm2709
|
|
|
|
DEVICE_TITLE := Raspberry Pi 2 B
|
|
|
|
DEVICE_DTS := bcm2709-rpi-2-b
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += rpi-2
|
2016-03-08 18:11:55 +00:00
|
|
|
|
2016-05-12 17:49:20 +00:00
|
|
|
define Device/rpi-3
|
|
|
|
SUBTARGETS := bcm2710
|
|
|
|
DEVICE_TITLE := Raspberry Pi 3 B
|
|
|
|
DEVICE_DTS := bcm2710-rpi-3-b
|
|
|
|
DEVICE_PACKAGES := brcmfmac43430-firmware-sdio kmod-brcmfmac wpad-mini
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += rpi-3
|
2015-07-14 07:37:29 +00:00
|
|
|
|
2012-07-24 20:39:17 +00:00
|
|
|
$(eval $(call BuildImage))
|