Makefile 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # Copyright (C) 2012-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. include $(INCLUDE_DIR)/image.mk
  9. include $(INCLUDE_DIR)/host.mk
  10. FAT32_BLOCK_SIZE=1024
  11. FAT32_BLOCKS=$(shell echo $$(($(CONFIG_BRCM2708_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
  12. define Image/Build/RaspberryPi
  13. rm -f $(KDIR)/boot.img
  14. mkfs.fat -C $(KDIR)/boot.img $(FAT32_BLOCKS)
  15. # Raspberry Pi has no bootloader, instead the GPU loads and starts the kernel
  16. mcopy -i $(KDIR)/boot.img $(KDIR)/bootcode.bin ::
  17. mcopy -i $(KDIR)/boot.img $(KDIR)/COPYING.linux ::
  18. mcopy -i $(KDIR)/boot.img $(KDIR)/LICENCE.broadcom ::
  19. mcopy -i $(KDIR)/boot.img $(KDIR)/start.elf ::
  20. mcopy -i $(KDIR)/boot.img $(KDIR)/start_cd.elf ::
  21. mcopy -i $(KDIR)/boot.img $(KDIR)/fixup.dat ::
  22. mcopy -i $(KDIR)/boot.img $(KDIR)/fixup_cd.dat ::
  23. mcopy -i $(KDIR)/boot.img cmdline.txt ::
  24. mcopy -i $(KDIR)/boot.img config.txt ::
  25. mcopy -i $(KDIR)/boot.img $(KDIR)/Image ::kernel.img # Copy OpenWrt built kernel
  26. ./gen_rpi_sdcard_img.sh $(BIN_DIR)/$(IMG_PREFIX)-sdcard-vfat-$(1).img $(KDIR)/boot.img $(KDIR)/root.$(1) \
  27. $(CONFIG_BRCM2708_SD_BOOT_PARTSIZE) $(CONFIG_TARGET_ROOTFS_PARTSIZE)
  28. ifneq ($(CONFIG_TARGET_IMAGES_GZIP),)
  29. gzip -9n -c $(BIN_DIR)/$(IMG_PREFIX)-sdcard-vfat-$(1).img > $(BIN_DIR)/$(IMG_PREFIX)-sdcard-vfat-$(1).img.gz
  30. endif
  31. endef
  32. define Image/Build
  33. $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
  34. $(CP) $(KDIR)/Image $(BIN_DIR)/$(IMG_PREFIX)-Image
  35. $(call Image/Build/RaspberryPi,$(1))
  36. endef
  37. $(eval $(call BuildImage))