Makefile 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  1. #
  2. # Copyright (C) 2008-2011 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. define imgname
  10. $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1)
  11. endef
  12. define sysupname
  13. $(call imgname,$(1),$(2))-sysupgrade.bin
  14. endef
  15. VMLINUX:=$(IMG_PREFIX)-vmlinux
  16. UIMAGE:=$(IMG_PREFIX)-uImage
  17. fs_squash:=squashfs-only
  18. ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
  19. fs_squash:=initramfs
  20. VMLINUX:=$(IMG_PREFIX)-vmlinux-initramfs
  21. UIMAGE:=$(IMG_PREFIX)-uImage-initramfs
  22. endif
  23. ifeq ($(CONFIG_RALINK_RT288X),y)
  24. define kernel_entry
  25. -a 0x88000000 -e 0x88000000
  26. endef
  27. else
  28. define kernel_entry
  29. -a 0x80000000 -e 0x80000000
  30. endef
  31. endif
  32. define mkcmdline
  33. board=$(1) console=$(2),$(3)
  34. endef
  35. define CompressLzma
  36. $(STAGING_DIR_HOST)/bin/lzma e $(1) -lc1 -lp2 -pb2 $(2)
  37. endef
  38. define PatchKernelLzma
  39. cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(1)
  40. $(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(1) '$(strip $(2))'
  41. $(call CompressLzma,$(KDIR)/vmlinux-$(1),$(KDIR)/vmlinux-$(1).bin.lzma)
  42. endef
  43. define MkImage
  44. $(eval imagename=$(if $(4),$(4),MIPS OpenWrt Linux-$(LINUX_VERSION)))
  45. -mkimage -A mips -O linux -T kernel -C $(1) $(call kernel_entry)\
  46. -n "$(imagename)" \
  47. -d $(2) $(3)
  48. endef
  49. define MkImageLzma
  50. $(call PatchKernelLzma,$(1),$(2))
  51. $(call MkImage,lzma,$(KDIR)/vmlinux-$(1).bin.lzma,$(KDIR)/vmlinux-$(1).uImage,$(3))
  52. endef
  53. define MkCombineduImage
  54. $(call PatchKernelLzma,$(2),$(3))
  55. if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt `expr $(4) - 64` ]; then \
  56. echo "Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big" >&2; \
  57. else if [ `stat -c%s "$(KDIR)/root.$(1)"` -gt $(5) ]; then \
  58. echo "Warning: $(KDIR)/root.$(1) is too big" >&2; \
  59. else \
  60. ( dd if=$(KDIR)/vmlinux-$(2).bin.lzma bs=`expr $(4) - 64` conv=sync ; dd if=$(KDIR)/root.$(1) ) > $(KDIR)/vmlinux-$(2).bin.lzma.combined ; \
  61. fi ; fi
  62. $(call MkImage,lzma,$(KDIR)/vmlinux-$(2).bin.lzma.combined,$(call sysupname,$(1),$(2)),$(6))
  63. endef
  64. define CatFiles
  65. if [ `stat -c%s "$(1)"` -gt $(2) ]; then \
  66. echo "Warning: $(1) is too big" >&2; \
  67. else if [ `stat -c%s $(3)` -gt $(4) ]; then \
  68. echo "Warning: $(3) is too big" >&2; \
  69. else \
  70. ( dd if=$(1) bs=$(2) conv=sync; dd if=$(3) ) > $(5); \
  71. fi; fi
  72. endef
  73. define Sysupgrade/KRuImage
  74. $(eval output_name=$(if $(5),$(call imgname,$(1),$(2))-$(5),$(call sysupname,$(1),$(2))))
  75. $(call CatFiles,$(KDIR)/vmlinux-$(2).uImage,$(3),$(KDIR)/root.$(1),$(4),$(output_name))
  76. endef
  77. define mkmtd
  78. mtdparts=$(1):$(2)
  79. endef
  80. define mkmtd/phys
  81. $(call mkmtd,physmap-flash.0,$(1))
  82. endef
  83. define mkmtd/spi
  84. $(call mkmtd,spi0.0,$(1))
  85. endef
  86. define Image/BuildKernel
  87. cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(VMLINUX).elf
  88. cp $(KDIR)/vmlinux $(BIN_DIR)/$(VMLINUX).bin
  89. $(call CompressLzma,$(KDIR)/vmlinux,$(KDIR)/vmlinux.bin.lzma)
  90. $(call MkImage,lzma,$(KDIR)/vmlinux.bin.lzma,$(KDIR)/uImage.lzma)
  91. cp $(KDIR)/uImage.lzma $(BIN_DIR)/$(UIMAGE).bin
  92. $(call Image/Build/Initramfs)
  93. endef
  94. define BuildFirmware/Generic
  95. $(call MkImageLzma,$(2),$(3),$(6))
  96. $(call Sysupgrade/KRuImage,$(1),$(2),$(4),$(5),$(7))
  97. endef
  98. define BuildFirmware/Generic/initramfs
  99. $(call MkImageLzma,$(2),$(3))
  100. $(CP) $(KDIR)/vmlinux-$(2).uImage $(call imgname,$(1),$(2))-uImage.bin
  101. endef
  102. mtdlayout_4M=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  103. define BuildFirmware/GENERIC_4M
  104. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_4M)),917504,2949120,$(7),$(8))
  105. endef
  106. define BuildFirmware/GENERIC_4M/initramfs
  107. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_4M)))
  108. endef
  109. mtdlayout_8M=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),6976k(rootfs),7872k@0x50000(firmware)
  110. kernel_size_8M=917504
  111. rootfs_size_8M=7143424
  112. define BuildFirmware/GENERIC_8M
  113. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_8M)),$(kernel_size_8M),$(rootfs_size_8M),$(7),$(8))
  114. endef
  115. define BuildFirmware/GENERIC_8M/initramfs
  116. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_8M)))
  117. endef
  118. define BuildFirmware/UIMAGE_8M
  119. $(call MkCombineduImage,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_8M)),$(kernel_size_8M),$(rootfs_size_8M),$(7))
  120. endef
  121. mtdlayout_edimax_3g6200n=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),2752k(rootfs),128k@0x3e0000(cimage)ro,3648k@0x50000(firmware)
  122. define BuildFirmware/3G6200N
  123. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_edimax_3g6200n)),917504,2818048)
  124. endef
  125. mtdlayout_allnet_all5002=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,1024k(kernel),31424k(rootfs),32448k@0x50000(firmware)
  126. define BuildFirmware/ALL5002
  127. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_allnet_all5002)),1048576,32178176)
  128. endef
  129. define BuildFirmware/ALL5002/initramfs
  130. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_allnet_all5002)))
  131. endef
  132. mtdlayout_argus_atp52b=192k(bootloader)ro,64k(config),64k(factory),1152k(kernel),6656k(rootfs),7808k@0x50000(firmware)
  133. mtd_argus_atp52b_kernel_part_size=1179648
  134. mtd_argus_atp52b_rootfs_part_size=6815744
  135. define BuildFirmware/ARGUS_ATP52B
  136. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/phys,$(mtdlayout_argus_atp52b)),$(mtd_argus_atp52b_kernel_part_size),$(mtd_argus_atp52b_rootfs_part_size))
  137. endef
  138. # djh - Note all of these are marked Read-Only for now
  139. mtdlayout_broadway=192k(bootloader)ro,64k(config)ro,64k(factory)ro,1024k(kernel)ro,6720k(rootfs),7744k@0x50000(firmware)
  140. mtd_broadway_kernel_part_size=1048576
  141. mtd_broadway_rootfs_part_size=6881280
  142. define BuildFirmware/BROADWAY
  143. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_broadway)),$(mtd_broadway_kernel_part_size),$(mtd_broadway_rootfs_part_size),Broadway Kernel Image,factory.bin)
  144. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_broadway)),$(mtd_broadway_kernel_part_size),$(mtd_broadway_rootfs_part_size))
  145. endef
  146. define BuildFirmware/BROADWAY/initramfs
  147. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_broadway)))
  148. endef
  149. define BuildFirmware/Buffalo
  150. $(call MkImageLzma,$(2),$(3))
  151. $(call Sysupgrade/KRuImage,$(1),$(2),$(4),$(5))
  152. if [ -e "$(call sysupname,$(1),$(2))" ]; then \
  153. buffalo-enc -p $(3) -v 1.76 \
  154. -i $(KDIR)/vmlinux-$(2).uImage \
  155. -o $(KDIR)/vmlinux-$(2).uImage.enc; \
  156. buffalo-enc -p $(3) -v 1.76 \
  157. -i $(KDIR)/root.$(1) \
  158. -o $(KDIR)/root.$(2).enc; \
  159. buffalo-tag -b $(3) -p $(3) -a ram -v 1.76 -m 1.01 \
  160. -l mlang8 -f 1 -r EU \
  161. -i $(KDIR)/vmlinux-$(2).uImage.enc \
  162. -i $(KDIR)/root.$(2).enc \
  163. -o $(call imgname,$(1),$(2))-factory-EU.bin; \
  164. fi
  165. endef
  166. define BuildFirmware/Buffalo2
  167. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(4),$(5),$(6))
  168. endef
  169. mtdlayout_dir300b1=192k(u-boot)ro,64k(devdata)ro,64k(devconf)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  170. mtd_dir300b1_kernel_part_size=917504
  171. mtd_dir300b1_rootfs_part_size=2949120
  172. define BuildFirmware/DIR300B1
  173. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_dir300b1)),$(mtd_dir300b1_kernel_part_size),$(mtd_dir300b1_rootfs_part_size))
  174. -mkwrgimg -s $(4) -d /dev/mtdblock/2 \
  175. -i $(call sysupname,$(1),$(2)) \
  176. -o $(call imgname,$(1),$(2))-factory.bin
  177. endef
  178. define BuildFirmware/DIR300B1/initramfs
  179. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_dir300b1)),$(mtd_dir300b1_kernel_part_size),$(mtd_dir300b1_rootfs_part_size))
  180. endef
  181. mtdlayout_dir615h1=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  182. define BuildFirmware/DIR615H1
  183. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_dir615h1)),917504,2949120)
  184. -mkdir615h1 -e $(call sysupname,$(1),$(2)) \
  185. -o $(call imgname,$(1),$(2))-factory.bin
  186. endef
  187. define BuildFirmware/DIR615H1/initramfs
  188. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_dir615h1)))
  189. endef
  190. mtdlayout_dap1350=192k(u-boot)ro,64k(devdata)ro,192k(devconf)ro,256k(devlang)ro,1088k(kernel),6400k(rootfs),7488k@0xb0000(firmware)
  191. mtd_dap1350_kernel_part_size=1114112
  192. mtd_dap1350_rootfs_part_size=6553600
  193. define BuildFirmware/DAP1350
  194. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),ttyS1,115200) $(call mkmtd/phys,$(mtdlayout_dap1350)),$(mtd_dap1350_kernel_part_size),$(mtd_dap1350_rootfs_part_size))
  195. -mkdapimg -s $(4) \
  196. -i $(call sysupname,$(1),$(2)) \
  197. -o $(call imgname,$(1),$(2))-factory.bin
  198. endef
  199. define BuildFirmware/DAP1350/initramfs
  200. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),ttyS1,115200) $(call mkmtd/phys,$(mtdlayout_dap1350)),$(mtd_dap1350_kernel_part_size),$(mtd_dap1350_rootfs_part_size))
  201. endef
  202. mtdlayout_dir620a1=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),6976k(rootfs),7872k@0x50000(firmware)
  203. kernel_size_dir620a1=917504
  204. rootfs_size_dir620a1=7143424
  205. define BuildFirmware/DIR620A1
  206. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_dir620a1)),$(kernel_size_dir620a1),$(rootfs_size_dir620a1),DIR_620)
  207. endef
  208. define BuildFirmware/DIR620A1/initramfs
  209. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_dir620a1)),$(kernel_size_dir620a1),$(rootfs_size_dir620a1))
  210. endef
  211. define BuildFirmware/Edimax
  212. if [ -e "$(call sysupname,$(1),$(2))" ]; then \
  213. mkedimaximg -i $(call sysupname,$(1),$(2)) \
  214. -o $(call imgname,$(1),$(2))-factory.bin \
  215. -s $(3) -m $(4) -f $(5) -S $(6); \
  216. fi
  217. endef
  218. define BuildFirmware/BR6524N
  219. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_4M)),917484,2949120)
  220. $(call BuildFirmware/Edimax,$(1),br6524n,CSYS,WNRA,0x50000,0xc00000)
  221. endef
  222. mtdlayout_f5d8235=320k(u-boot)ro,1536k(kernel),6208k(rootfs),64k(nvram),64k(factory),7744k@0x50000(firmware)
  223. mtd_f5d8235_kernel_part_size=1572864
  224. mtd_f5d8235_rootfs_part_size=6356992
  225. define BuildFirmware/F5D8235
  226. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_f5d8235)),$(mtd_f5d8235_kernel_part_size),$(mtd_f5d8235_rootfs_part_size))
  227. endef
  228. define BuildFirmware/FONERA20N
  229. $(call BuildFirmware/GENERIC_8M,$(1),fonera20n,FONERA20N,ttyS1,57600,phys)
  230. $(call BuildFirmware/Edimax,$(1),fonera20n,RSDK,NL1T,0x50000,0xc0000)
  231. endef
  232. define BuildFirmware/FONERA20N/initramfs
  233. $(call BuildFirmware/GENERIC_8M/initramfs,$(1),fonera20n,FONERA20N,ttyS1,57600,phys)
  234. endef
  235. define BuildFirmware/RT-N13U
  236. $(call BuildFirmware/GENERIC_8M,$(1),rt-n13u,RT-N13U,ttyS1,57600,phys)
  237. endef
  238. mtdlayout_nw718=192k(u-boot)ro,128k(config)ro,64k(factory)ro,896k(kernel),2816k(rootfs),3712k@0x60000(firmware)
  239. kernel_size_nw718=917504
  240. rootfs_size_nw718=2883584
  241. cmdline_nw718=$(call mkcmdline,NW718,ttyS1,57600) $(call mkmtd/spi,$(mtdlayout_nw718))
  242. define BuildFirmware/NW718
  243. $(call BuildFirmware/Generic,$(1),$(2),$(cmdline_nw718),$(kernel_size_nw718),$(rootfs_size_nw718),ARA1B4NCRNW718;1,factory.bin)
  244. $(call BuildFirmware/Generic,$(1),$(2),$(cmdline_nw718),$(kernel_size_nw718),$(rootfs_size_nw718))
  245. endef
  246. mtdlayout_omniembhpm=192k(u-boot)ro,64k(config)ro,64k(factory)ro,1024k(kernel),15040k(rootfs),16064k@0x50000(firmware)
  247. kernel_size_omniembhpm=1048576
  248. rootfs_size_omniembhpm=15400960
  249. define BuildFirmware/OMNIEMBHPM
  250. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),ttyS1,115200) $(call mkmtd/spi,$(mtdlayout_omniembhpm)),$(kernel_size_omniembhpm),$(rootfs_size_omniembhpm))
  251. endef
  252. define BuildFirmware/OMNIEMBHPM/initramfs
  253. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),ttyS1,115200) $(call mkmtd/spi,$(mtdlayout_omniembhpm)))
  254. endef
  255. mtdlayout_rtg32b1=192k(u-boot)ro,64k(devdata)ro,64k(devconf)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  256. mtd_rtg32b1_kernel_part_size=917504
  257. mtd_rtg32b1_rootfs_part_size=2949120
  258. define BuildFirmware/RTG32B1
  259. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/spi,$(mtdlayout_rtg32b1)),$(mtd_rtg32b1_kernel_part_size),$(mtd_rtg32b1_rootfs_part_size))
  260. endef
  261. mtdlayout_rtn10plus=192k(u-boot)ro,64k(devdata)ro,64k(devconf)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  262. mtd_rtn10plus_kernel_part_size=917504
  263. mtd_rtn10plus_rootfs_part_size=2949120
  264. define BuildFirmware/RTN10PLUS
  265. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/phys,$(mtdlayout_rtn10plus)),$(mtd_rtn10plus_kernel_part_size),$(mtd_rtn10plus_rootfs_part_size))
  266. endef
  267. define BuildFirmware/Seama
  268. $(call PatchKernelLzma,$(2),$(3))
  269. if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt $(4) ]; then \
  270. echo "Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big" >&2; \
  271. else if [ `stat -c%s $(KDIR)/root.$(1)` -gt $(5) ]; then \
  272. echo "Warning: $(KDIR)/root.$(1) is too big" >&2; \
  273. else \
  274. ( \
  275. dd if=$(KDIR)/vmlinux-$(2).bin.lzma bs=$(4) count=1 conv=sync; \
  276. ) > $(KDIR)/vmlinux-$(2).tmp; \
  277. $(STAGING_DIR_HOST)/bin/seama \
  278. -i $(KDIR)/vmlinux-$(2).tmp \
  279. -m "dev=/dev/mtdblock/2" -m "type=firmware"; \
  280. ( \
  281. dd if=$(KDIR)/vmlinux-$(2).tmp.seama; \
  282. dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
  283. ) > $(call imgname,$(1),$(2))-sysupgrade.bin; \
  284. ( \
  285. dd if=$(KDIR)/vmlinux-$(2).bin.lzma bs=$(4) count=1 conv=sync; \
  286. dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
  287. ) > $(KDIR)/vmlinux-$(2).tmp; \
  288. $(STAGING_DIR_HOST)/bin/seama \
  289. -i $(KDIR)/vmlinux-$(2).tmp \
  290. -m "dev=/dev/mtdblock/2" -m "type=firmware"; \
  291. $(STAGING_DIR_HOST)/bin/seama \
  292. -s $(call imgname,$(1),$(2))-factory.bin \
  293. -m "signature=$(6)" \
  294. -i $(KDIR)/vmlinux-$(2).tmp.seama; \
  295. fi; fi
  296. endef
  297. mtdlayout_dir645a1=192k(u-boot)ro,16k(u-boot-env)ro,16k(factory)ro,32k(nvram)ro,64k(devdata)ro,896k(kernel),6976k(rootfs),7872k@0x50000(firmware)
  298. define BuildFirmware/DIR645
  299. $(call BuildFirmware/Seama,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_dir645a1)),917440,7143424,$(7))
  300. endef
  301. define BuildFirmware/DIR645/initramfs
  302. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_dir645a1)))
  303. endef
  304. define BuildFirmware/UMedia
  305. $(call BuildFirmware/GENERIC_8M,$(1),$(2),$(3),ttyS1,57600,phys)
  306. if [ -e "$(call sysupname,$(1),$(2))" ]; then \
  307. fix-u-media-header -T 0x46 -B $(4) \
  308. -i $(call sysupname,$(1),$(2)) \
  309. -o $(call imgname,$(1),$(2))-factory.bin; \
  310. fi
  311. endef
  312. define BuildFirmware/UMedia/initramfs
  313. $(call BuildFirmware/GENERIC_8M/initramfs,$(1),$(2),$(3),ttyS1,57600,phys)
  314. endef
  315. mtdlayout_whrg300n=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,960k(kernel),2752k(rootfs),64k(user)ro,3712k@0x50000(firmware)
  316. define BuildFirmware/WHRG300N
  317. $(call Image/Build/Template/GENERIC_4M,$(1),whr-g300n,WHR-G300N,ttyS1,57600,phys)
  318. $(call BuildFirmware/Buffalo,$(1),whr-g300n,$(call mkcmdline,WHR-G300N,ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_whrg300n)),983040,3801088)
  319. ( \
  320. echo -n -e "# Airstation FirmWare\nrun u_fw\nreset\n\n" | \
  321. dd bs=512 count=1 conv=sync; \
  322. dd if=$(call sysupname,$(1),whr-g300n); \
  323. ) > $(KDIR)/whr-g300n-tftp.tmp
  324. buffalo-tftp -i $(KDIR)/whr-g300n-tftp.tmp \
  325. -o $(call imgname,$(1),whr-g300n)-tftp.bin
  326. endef
  327. mtdlayout_wl341v3=128k(u-boot)ro,64k(board-nvram)ro,64k(u-boot-env)ro,896k(kernel),2880k(rootfs),64k(signature-eRcOmM),3776k@0x40000(firmware),4096k@0x0(fullflash)
  328. kernel_size_wl341v3=917504
  329. rootfs_size_wl341v3=2949120
  330. define BuildFirmware/WL341V3
  331. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/phys,$(mtdlayout_wl341v3)),$(kernel_size_wl341v3),$(rootfs_size_wl341v3))
  332. if [ -e "$(call sysupname,$(1),$(2))" ]; then \
  333. ( \
  334. dd if=/dev/zero bs=195936 count=1; \
  335. echo "1.01"; \
  336. dd if=/dev/zero bs=581 count=1; \
  337. echo -n -e "\x73\x45\x72\x43\x6F\x4D\x6D\x00\x01\x00\x00\x59\x4E\x37\x95\x58\x10\x00\x20\x00\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x03\x00\x00\x80\x00\x00\x00\x00\x03\x00\x00\x10\x12\x00\x00\x00\x10\x73\x45\x72\x43\x6F\x4D\x6D"; \
  338. dd if=/dev/zero bs=65552 count=1; \
  339. dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(kernel_size_wl341v3) conv=sync; \
  340. dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
  341. dd if=/dev/zero bs=`expr 4194304 - 262144 - 16 - $(kernel_size_wl341v3) - \( \( \( \`stat -c%s $(KDIR)/root.$(1)\` / 65536 \) + 1 \) \* 65536 \)` count=1; \
  342. echo -n -e "\x11\x03\x80\x00\x10\x12\x90\xF7\x65\x52\x63\x4F\x6D\x4D\x00\x00"; \
  343. ) > $(call imgname,$(1),$(2))-factory.bin; \
  344. fi
  345. endef
  346. mtdlayout_wlitx4ag300n=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),2816k(rootfs),64k(user)ro,3712k@0x50000(firmware)
  347. define BuildFirmware/WLITX4AG300N
  348. $(call BuildFirmware/Buffalo2,$(1),wli-tx4-ag300n,WLI-TX4-AG300N,$(call mkmtd/phys,$(mtdlayout_wlitx4ag300n)),917504,2883584)
  349. endef
  350. mtdlayout_mzkw300nh2=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,832k(kernel),2816k(rootfs),128k@0x3e0000(cimage)ro,3648k@0x50000(firmware)
  351. kernel_size_mzkw300nh2=851968
  352. rootfs_size_mzkw300nh2=2883584
  353. define BuildFirmware/MZKW300NH2
  354. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_mzkw300nh2)),$(kernel_size_mzkw300nh2),$(rootfs_size_mzkw300nh2))
  355. $(call CatFiles,$(KDIR)/vmlinux-$(2).uImage,`expr $(kernel_size_mzkw300nh2) - 20`,$(KDIR)/root.$(1),$(rootfs_size_mzkw300nh2),$(call imgname,$(1),$(2))-factory.bin)
  356. -mkedimaximg -i $(call imgname,$(1),$(2))-factory.bin \
  357. -o $(call imgname,$(1),$(2))-factory.bin \
  358. -s CSYS -m RN52 -f 0x50000 -S 0xc0000;
  359. endef
  360. define BuildFirmware/MZKW300NH2/initramfs
  361. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_mzkw300nh2)))
  362. endef
  363. #
  364. # Templates
  365. #
  366. define Image/Build/Template/initramfs/initramfs
  367. $(call BuildFirmware/$(1)/initramfs,initramfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
  368. endef
  369. define Image/Build/Template/squashfs-only/squashfs
  370. $(call BuildFirmware/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
  371. endef
  372. #
  373. # RT288X Profiles
  374. #
  375. define Image/Build/Profile/F5D8235V1
  376. $(call Image/Build/Template/$(fs_squash)/$(1),F5D8235,f5d8235v1,F5D8235_V1)
  377. endef
  378. define Image/Build/Profile/BR6524N
  379. $(call Image/Build/Template/$(fs_squash)/$(1),BR6524N,br6524n,BR6524N,ttyS1,57600,phys)
  380. endef
  381. define Image/Build/Profile/RTN15
  382. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,rt-n15,RT-N15,ttyS1,57600,phys)
  383. endef
  384. define Image/Build/Profile/V11STFE
  385. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,v11st-fe,V11ST-FE,ttyS1,57600,phys)
  386. endef
  387. define Image/Build/Profile/WLITX4AG300N
  388. $(call Image/Build/Template/$(fs_squash)/$(1),WLITX4AG300N)
  389. endef
  390. ifeq ($(CONFIG_RALINK_RT288X),y)
  391. define Image/Build/Profile/Default
  392. $(call Image/Build/Profile/F5D8235V1,$(1))
  393. $(call Image/Build/Profile/BR6524N,$(1))
  394. $(call Image/Build/Profile/RTN15,$(1))
  395. $(call Image/Build/Profile/V11STFE,$(1))
  396. $(call Image/Build/Profile/WLITX4AG300N,$(1))
  397. endef
  398. endif
  399. #
  400. # RT305X Profiles
  401. #
  402. define Image/Build/Profile/3G6200N
  403. $(call Image/Build/Template/$(fs_squash)/$(1),3G6200N,3g-6200n,3G-6200N,ttyS1,57600,phys)
  404. endef
  405. define Image/Build/Profile/3G300M
  406. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,3g300m,3G300M,ttyS1,57600,spi,3G150M_SPI Kernel Image,factory.bin)
  407. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,3g300m,3G300M,ttyS1,57600,spi)
  408. endef
  409. define Image/Build/Profile/AIR3GII
  410. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,air3gii,AIR3GII,ttyS1,57600,spi)
  411. endef
  412. define Image/Build/Profile/ALL02393G
  413. $(call Image/Build/Template/$(fs_squash)/$(1),UIMAGE_8M,all0239-3g,ALL0239-3G,ttyS1,57600,phys)
  414. endef
  415. define Image/Build/Profile/ALL0256N
  416. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,all0256n,ALL0256N,ttyS1,57600,spi)
  417. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,all0256n-8M,ALL0256N,ttyS1,57600,spi)
  418. endef
  419. define Image/Build/Profile/ALL5002
  420. $(call Image/Build/Template/$(fs_squash)/$(1),ALL5002,all5002,ALL5002,ttyS1,57600,spi)
  421. endef
  422. define Image/Build/Profile/ARGUS_ATP52B
  423. $(call Image/Build/Template/$(fs_squash)/$(1),ARGUS_ATP52B,argus_atp52b,ARGUS_ATP52B)
  424. endef
  425. define Image/Build/Profile/BC2
  426. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,bc2,BC2,ttyS1,57600,phys)
  427. endef
  428. define Image/Build/Profile/BROADWAY
  429. $(call Image/Build/Template/$(fs_squash)/$(1),BROADWAY,broadway,BROADWAY,ttyS1,57600,phys)
  430. endef
  431. define Image/Build/Profile/CARAMBOLA
  432. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,carambola,CARAMBOLA,ttyS1,115200,phys)
  433. endef
  434. define Image/Build/Profile/DIR300B1
  435. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-300-b1,DIR-300-B1,wrgn23_dlwbr_dir300b)
  436. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-600-b1,DIR-600-B1,wrgn23_dlwbr_dir600b)
  437. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-600-b2,DIR-600-B2,wrgn23_dlwbr_dir600b)
  438. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-615-d,DIR-615-D,wrgn23_dlwbr_dir615d)
  439. $(call Image/Build/Template/$(fs_squash)/$(1),DIR620A1,dir-620-a1,DIR-620-A1)
  440. endef
  441. define Image/Build/Profile/DIR615H1
  442. $(call Image/Build/Template/$(fs_squash)/$(1),DIR615H1,dir-615-h1,DIR-615-H1,ttyS1,57600,spi)
  443. endef
  444. define Image/Build/Profile/DAP1350
  445. $(call Image/Build/Template/$(fs_squash)/$(1),DAP1350,dap-1350,DAP-1350,RT3052-AP-DAP1350-3)
  446. endef
  447. define Image/Build/Profile/ESR9753
  448. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,esr-9753,ESR-9753,ttyS1,57600,phys)
  449. endef
  450. define Image/Build/Profile/HW5503G
  451. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,hw550-3g,HW550-3G,ttyS1,57600,phys)
  452. endef
  453. define Image/Build/Profile/F5D8235V2
  454. $(call Image/Build/Template/$(fs_squash)/$(1),F5D8235,f5d8235v2,F5D8235_V2)
  455. endef
  456. define Image/Build/Profile/FONERA20N
  457. $(call Image/Build/Template/$(fs_squash)/$(1),FONERA20N)
  458. endef
  459. define Image/Build/Profile/RT-N13U
  460. $(call Image/Build/Template/$(fs_squash)/$(1),RT-N13U)
  461. endef
  462. define Image/Build/Profile/FREESTATION5
  463. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,freestation5,FREESTATION5,ttyS1,115200,phys)
  464. endef
  465. define Image/Build/Profile/MOFI35003GN
  466. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,mofi3500-3gn,MOFI3500-3GN,ttyS1,57600,phys)
  467. endef
  468. define Image/Build/Profile/NBG419N
  469. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,nbg-419n,NBG-419N,ttyS1,57600,phys)
  470. endef
  471. define Image/Build/Profile/MZKW3000NH2
  472. $(call Image/Build/Template/$(fs_squash)/$(1),MZKW300NH2,mzk-w300nh2,MZK-W300NH2,ttyS1,57600,phys)
  473. endef
  474. define Image/Build/Profile/NW718
  475. $(call Image/Build/Template/$(fs_squash)/$(1),NW718,nw718)
  476. endef
  477. define Image/Build/Profile/OMNIEMB
  478. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,omni-emb,OMNI-EMB,ttyS1,57600,phys)
  479. endef
  480. define Image/Build/Profile/PSR680W
  481. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,psr-680w,PSR-680W,ttyS1,115200,phys)
  482. endef
  483. define Image/Build/Profile/PWH2004
  484. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,pwh2004,PWH2004,ttyS1,57600,phys)
  485. endef
  486. define Image/Build/Profile/RTG32B1
  487. $(call Image/Build/Template/$(fs_squash)/$(1),RTG32B1,rt-g32-b1,RT-G32-B1)
  488. endef
  489. define Image/Build/Profile/RTN10PLUS
  490. $(call Image/Build/Template/$(fs_squash)/$(1),RTN10PLUS,rt-n10-plus,RT-N10-PLUS)
  491. endef
  492. define Image/Build/Profile/SLR7205
  493. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,sl-r7205,SL-R7205,ttyS1,57600,phys)
  494. endef
  495. define Image/Build/Profile/V22RW2X2
  496. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,v22rw-2x2,V22RW-2X2,ttyS1,57600,phys)
  497. endef
  498. define Image/Build/Profile/W306R_V20
  499. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,w306r-v20,W306R_V20,ttyS1,57600,phys,linkn Kernel Image,factory.bin)
  500. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,w306r-v20,W306R_V20,ttyS1,57600,phys)
  501. endef
  502. define Image/Build/Profile/W502U
  503. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,w502u,W502U,ttyS1,115200,phys)
  504. endef
  505. define Image/Build/Profile/WCR150GN
  506. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wcr150gn,WCR150GN,ttyS1,57600,phys)
  507. endef
  508. define Image/Build/Profile/WHRG300N
  509. $(call Image/Build/Template/$(fs_squashfs)/$(1),WHRG300N)
  510. endef
  511. define Image/Build/Profile/WL_330N
  512. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wl-330n,WL_330N,ttyS1,57600,spi)
  513. endef
  514. define Image/Build/Profile/WL_330N3G
  515. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wl-330n3g,WL_330N3G,ttyS1,57600,spi)
  516. endef
  517. define Image/Build/Profile/WL341V3
  518. $(call Image/Build/Template/$(fs_squash)/$(1),WL341V3,wl341v3,WL341V3)
  519. endef
  520. define Image/Build/Profile/WL351
  521. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wl-351,WL-351,ttyS1,57600,phys)
  522. endef
  523. define Image/Build/Profile/WR5123GN
  524. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wr512-3gn-4M,WR512-3GN,ttyS1,57600,phys)
  525. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,wr512-3gn-8M,WR512-3GN,ttyS1,57600,phys)
  526. endef
  527. define Image/Build/Profile/UPVEL_326
  528. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,ur-326n4g,UR-326N4G,ttyS1,57600,phys)
  529. endef
  530. define Image/Build/Profile/UPVEL
  531. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,ur-336un,UR-336UN,ttyS1,57600,phys)
  532. endef
  533. define Image/Build/Profile/WR6202
  534. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,wr6202,WR6202,ttyS1,115200,phys)
  535. endef
  536. define Image/Build/Profile/XDXRN502J
  537. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,xdxrn502j,XDXRN502J,ttyS1,57600,phys)
  538. endef
  539. ifeq ($(CONFIG_RALINK_RT305X),y)
  540. define Image/Build/Profile/Default
  541. $(call Image/Build/Profile/3G6200N,$(1))
  542. $(call Image/Build/Profile/3G300M,$(1))
  543. $(call Image/Build/Profile/AIR3GII,$(1))
  544. $(call Image/Build/Profile/ALL02393G,$(1))
  545. $(call Image/Build/Profile/ALL0256N,$(1))
  546. $(call Image/Build/Profile/ALL5002,$(1))
  547. $(call Image/Build/Profile/ARGUS_ATP52B,$(1))
  548. $(call Image/Build/Profile/BC2,$(1))
  549. $(call Image/Build/Profile/BROADWAY,$(1))
  550. $(call Image/Build/Profile/CARAMBOLA,$(1))
  551. $(call Image/Build/Profile/DIR300B1,$(1))
  552. $(call Image/Build/Profile/DIR615H1,$(1))
  553. $(call Image/Build/Profile/DAP1350,$(1))
  554. $(call Image/Build/Profile/ESR9753,$(1))
  555. $(call Image/Build/Profile/F5D8235V2,$(1))
  556. $(call Image/Build/Profile/RTN10PLUS,$(1))
  557. $(call Image/Build/Profile/FONERA20N,$(1))
  558. $(call Image/Build/Profile/RT-N13U,$(1))
  559. $(call Image/Build/Profile/FREESTATION5,$(1))
  560. $(call Image/Build/Profile/HW5503G,$(1))
  561. $(call Image/Build/Profile/MOFI35003GN,$(1))
  562. $(call Image/Build/Profile/MZKW3000NH2,$(1))
  563. $(call Image/Build/Profile/NBG419N,$(1))
  564. $(call Image/Build/Profile/NW718,$(1))
  565. $(call Image/Build/Profile/OMNIEMB,$(1))
  566. $(call Image/Build/Profile/UPVEL_326,$(1))
  567. $(call Image/Build/Profile/PSR680W,$(1))
  568. $(call Image/Build/Profile/PWH2004,$(1))
  569. $(call Image/Build/Profile/RTG32B1,$(1))
  570. $(call Image/Build/Profile/SLR7205,$(1))
  571. $(call Image/Build/Profile/V22RW2X2,$(1))
  572. $(call Image/Build/Profile/W306R_V20,$(1))
  573. $(call Image/Build/Profile/W502U,$(1))
  574. $(call Image/Build/Profile/WCR150GN,$(1))
  575. $(call Image/Build/Profile/WHRG300N,$(1))
  576. $(call Image/Build/Profile/WL_330N,$(1))
  577. $(call Image/Build/Profile/WL_330N3G,$(1))
  578. $(call Image/Build/Profile/WL341V3,$(1))
  579. $(call Image/Build/Profile/WL351,$(1))
  580. $(call Image/Build/Profile/WR5123GN,$(1))
  581. $(call Image/Build/Profile/WR6202,$(1))
  582. $(call Image/Build/Profile/XDXRN502J,$(1))
  583. endef
  584. endif
  585. #
  586. # RT3662/RT3883 Profiles
  587. #
  588. define Image/Build/Profile/DIR645
  589. $(call Image/Build/Template/$(fs_squash)/$(1),DIR645,dir-645,DIR-645,ttyS1,57600,spi,wrgn39_dlob.hans_dir645)
  590. endef
  591. define Image/Build/Profile/OMNIEMBHPM
  592. $(call Image/Build/Template/$(fs_squash)/$(1),OMNIEMBHPM,omni-emb-hpm,OMNI-EMB-HPM)
  593. endef
  594. define Image/Build/Profile/RTN56U
  595. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,rt-n56u,RT-N56U,ttyS1,57600,phys)
  596. endef
  597. define Image/Build/Profile/TEW691GR
  598. $(call Image/Build/Template/$(fs_squash)/$(1),UMedia,tew-691gr,TEW-691GR,0x026910)
  599. endef
  600. define Image/Build/Profile/TEW692GR
  601. $(call Image/Build/Template/$(fs_squash)/$(1),UMedia,tew-692gr,TEW-692GR,0x026920)
  602. endef
  603. ifeq ($(CONFIG_RALINK_RT3883),y)
  604. define Image/Build/Profile/Default
  605. $(call Image/Build/Profile/DIR645,$(1))
  606. $(call Image/Build/Profile/OMNIEMBHPM,$(1))
  607. $(call Image/Build/Profile/RTN56U,$(1))
  608. $(call Image/Build/Profile/TEW691GR,$(1))
  609. $(call Image/Build/Profile/TEW692GR,$(1))
  610. endef
  611. endif
  612. define Image/Build/Initramfs
  613. $(call Image/Build/Profile/$(PROFILE),initramfs)
  614. endef
  615. define Image/Build/squashfs
  616. $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
  617. endef
  618. define Image/Build
  619. $(call Image/Build/$(1))
  620. dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
  621. $(call Image/Build/Profile/$(PROFILE),$(1))
  622. endef
  623. $(eval $(call BuildImage))