Makefile 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. #
  2. # Copyright (C) 2013 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. STG212_UBI_OPTS = -m 2048 -p 128KiB -s 512
  10. STG212_UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
  11. KD20_UBI_OPTS = -m 2048 -p 128KiB -s 512
  12. KD20_UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
  13. POGOPLUG_PRO_UBI_OPTS = -m 2048 -p 128KiB -s 512
  14. POGOPLUG_PRO_UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
  15. POGOPLUG_V3_UBI_OPTS = -m 2048 -p 128KiB -s 512
  16. POGOPLUG_V3_UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
  17. KDIR_TMP:=$(KDIR)/tmp
  18. VMLINUX:=$(BIN_DIR)/$(IMG_PREFIX)-vmlinux
  19. UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage
  20. define sanitize_profile_name
  21. $(shell echo $(PROFILE) | tr '[:upper:]' '[:lower:]' | sed 's/_/-/g')
  22. endef
  23. define Image/BuildKernel/Template
  24. $(CP) $(DTS_DIR)/ox820-$(1).dtb $(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb
  25. $(call Image/BuildKernel/MkFIT,$(1),$(KDIR)/zImage,$(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb,none,0x60008000,0x60008000)
  26. $(CP) $(KDIR)/fit-$(1).itb $(BIN_DIR)/$(IMG_PREFIX)-$(1)-fit-uImage.itb
  27. ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
  28. $(call Image/BuildKernel/MkFIT,$(1),$(KDIR)/zImage-initramfs,$(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb,none,0x60008000,0x60008000,-initramfs)
  29. $(CP) $(KDIR)/fit-$(1)-initramfs.itb $(BIN_DIR)/$(IMG_PREFIX)-$(1)-fit-uImage-initramfs.itb
  30. if [ -e "$(KDIR)/u-boot.bin" ]; then \
  31. ( dd if=$(KDIR)/u-boot.bin bs=128k conv=sync ; dd if=$(KDIR)/fit-$(1)-initramfs.itb bs=128k conv=sync ) \
  32. > $(BIN_DIR)/$(IMG_PREFIX)-$(1)-u-boot-initramfs.bin; \
  33. fi
  34. endif
  35. $(CP) $(KDIR)/zImage $(BIN_DIR)/$(IMG_PREFIX)-zImage
  36. $(call Image/BuildKernel/MkuImage, \
  37. none, 0x60008000, 0x60008000, \
  38. $(BIN_DIR)/$(IMG_PREFIX)-zImage, \
  39. $(BIN_DIR)/$(IMG_PREFIX)-uImage \
  40. )
  41. ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
  42. $(CP) $(KDIR)/zImage-initramfs $(BIN_DIR)/$(IMG_PREFIX)-zImage-initramfs
  43. $(call Image/BuildKernel/MkuImage, \
  44. none, 0x60008000, 0x60008000, \
  45. $(BIN_DIR)/$(IMG_PREFIX)-zImage-initramfs, \
  46. $(BIN_DIR)/$(IMG_PREFIX)-uImage-initramfs \
  47. )
  48. endif
  49. endef
  50. define Image/InstallKernel/Template
  51. ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL),)
  52. $(INSTALL_DIR) $(TARGET_DIR)/boot
  53. ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE),)
  54. $(CP) $(BIN_DIR)/$(IMG_PREFIX)-uImage $(TARGET_DIR)/boot/
  55. ln -sf $(IMG_PREFIX)-uImage $(TARGET_DIR)/boot/uImage
  56. endif
  57. ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE),)
  58. $(CP) $(BIN_DIR)/$(IMG_PREFIX)-zImage $(TARGET_DIR)/boot/
  59. ln -sf $(IMG_PREFIX)-zImage $(TARGET_DIR)/boot/zImage
  60. endif
  61. ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_FIT),)
  62. $(CP) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-fit-uImage.itb $(TARGET_DIR)/boot/
  63. ln -sf $(IMG_PREFIX)-$(1)-fit-uImage.itb $(TARGET_DIR)/boot/uImage.itb
  64. endif
  65. endif
  66. ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),)
  67. $(INSTALL_DIR) $(TARGET_DIR)/boot
  68. ifneq ($(1),)
  69. $(CP) $(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb $(TARGET_DIR)/boot/
  70. ln -sf $(IMG_PREFIX)-$(1).dtb $(TARGET_DIR)/boot/$(1).dtb
  71. endif
  72. endif
  73. endef
  74. define Image/Build/squashfs
  75. $(call Image/Build/SysupgradeNAND,$(call sanitize_profile_name),$(1),$(KDIR)/fit-$(call sanitize_profile_name).itb)
  76. $(call Image/Build/UbinizeImage,$(call sanitize_profile_name),--uboot-env --kernel $(KDIR)/fit-$(call sanitize_profile_name).itb,$(1),$($(PROFILE)_UBI_OPTS))
  77. cp $(KDIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-squashfs-ubinized.bin $(BIN_DIR)
  78. endef
  79. define Image/mkfs/targz
  80. $(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
  81. endef
  82. define Image/Build/ubifs
  83. ifneq ($($(PROFILE)_UBIFS_OPTS),)
  84. $(call Image/Build/SysupgradeNAND,$(call sanitize_profile_name),ubifs,$(KDIR)/fit-$(call sanitize_profile_name).itb)
  85. $(call Image/Build/UbinizeImage,$(call sanitize_profile_name),--uboot-env --kernel $(KDIR)/fit-$(call sanitize_profile_name).itb,ubifs,$($(PROFILE)_UBI_OPTS))
  86. cp $(KDIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-ubifs-ubinized.bin $(BIN_DIR)
  87. endif
  88. endef
  89. Image/BuildKernel/Template/POGOPLUG_PRO=$(call Image/BuildKernel/Template,pogoplug-pro)
  90. Image/InstallKernel/Template/POGOPLUG_PRO=$(call Image/InstallKernel/Template,pogoplug-pro)
  91. Image/BuildKernel/Template/POGOPLUG_V3=$(call Image/BuildKernel/Template,pogoplug-v3)
  92. Image/InstallKernel/Template/POGOPLUG_V3=$(call Image/InstallKernel/Template,pogoplug-v3)
  93. Image/BuildKernel/Template/STG212=$(call Image/BuildKernel/Template,stg212)
  94. Image/InstallKernel/Template/STG212=$(call Image/InstallKernel/Template,stg212)
  95. Image/BuildKernel/Template/KD20=$(call Image/BuildKernel/Template,kd20)
  96. Image/InstallKernel/Template/KD20=$(call Image/InstallKernel/Template,kd20)
  97. define Image/BuildKernel
  98. $(call Image/BuildKernel/Template/$(PROFILE))
  99. endef
  100. define Image/InstallKernel
  101. $(call Image/InstallKernel/Template/$(PROFILE))
  102. endef
  103. define Image/Build
  104. $(if $(Image/Build/$(1)), \
  105. $(call Image/Build/$(1),$(1)), \
  106. $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-$(1).img \
  107. )
  108. endef
  109. $(eval $(call BuildImage))