Makefile 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  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. mkimage -A mips -O linux -T kernel -C $(1) $(call kernel_entry)\
  45. -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
  46. -d $(2) $(3)
  47. endef
  48. define MkImageLzma
  49. $(call PatchKernelLzma,$(1),$(2))
  50. $(call MkImage,lzma,$(KDIR)/vmlinux-$(1).bin.lzma,$(KDIR)/vmlinux-$(1).uImage)
  51. endef
  52. define CatFiles
  53. if [ `stat -c%s "$(1)"` -gt $(2) ]; then \
  54. echo "Warning: $(1) is too big"; \
  55. else if [ `stat -c%s $(3)` -gt $(4) ]; then \
  56. echo "Warning: $(3) is too big"; \
  57. else \
  58. ( dd if=$(1) bs=$(2) conv=sync; dd if=$(3) ) > $(5); \
  59. fi; fi
  60. endef
  61. define Sysupgrade/KRuImage
  62. $(call CatFiles,$(KDIR)/vmlinux-$(2).uImage,$(3),$(KDIR)/root.$(1),$(4),$(call sysupname,$(1),$(2)))
  63. endef
  64. define mkmtd
  65. mtdparts=$(1):$(2)
  66. endef
  67. define mkmtd/phys
  68. $(call mkmtd,physmap-flash.0,$(1))
  69. endef
  70. define mkmtd/spi
  71. $(call mkmtd,spi0.0,$(1))
  72. endef
  73. define Image/BuildKernel
  74. cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(VMLINUX).elf
  75. cp $(KDIR)/vmlinux $(BIN_DIR)/$(VMLINUX).bin
  76. $(call CompressLzma,$(KDIR)/vmlinux,$(KDIR)/vmlinux.bin.lzma)
  77. $(call MkImage,lzma,$(KDIR)/vmlinux.bin.lzma,$(KDIR)/uImage.lzma)
  78. cp $(KDIR)/uImage.lzma $(BIN_DIR)/$(UIMAGE).bin
  79. $(call Image/Build/Initramfs)
  80. endef
  81. define BuildFirmware/Generic
  82. $(call MkImageLzma,$(2),$(3))
  83. $(call Sysupgrade/KRuImage,$(1),$(2),$(4),$(5))
  84. endef
  85. define BuildFirmware/Generic/initramfs
  86. $(call MkImageLzma,$(2),$(3))
  87. $(CP) $(KDIR)/vmlinux-$(2).uImage $(call imgname,$(1),$(2))-uImage.bin
  88. endef
  89. mtdlayout_4M=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  90. define BuildFirmware/GENERIC_4M
  91. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_4M)),917504,2949120)
  92. endef
  93. define BuildFirmware/GENERIC_4M/initramfs
  94. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_4M)))
  95. endef
  96. mtdlayout_8M=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),6976k(rootfs),7872k@0x50000(firmware)
  97. kernel_size_8M=917504
  98. rootfs_size_8M=7143424
  99. define BuildFirmware/GENERIC_8M
  100. $(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_8M)),$(kernel_size_8M),$(rootfs_size_8M))
  101. endef
  102. define BuildFirmware/GENERIC_8M/initramfs
  103. $(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_8M)))
  104. endef
  105. mtdlayout_argus_atp52b=192k(bootloader)ro,64k(config),64k(factory),1152k(kernel),6656k(rootfs),7808k@0x50000(firmware)
  106. mtd_argus_atp52b_kernel_part_size=1179648
  107. mtd_argus_atp52b_rootfs_part_size=6815744
  108. define BuildFirmware/ARGUS_ATP52B
  109. $(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))
  110. endef
  111. define BuildFirmware/Buffalo
  112. $(call MkImageLzma,$(2),$(3))
  113. $(call Sysupgrade/KRuImage,$(1),$(2),$(4),$(5))
  114. if [ -e "$(call sysupname,$(1),$(2))" ]; then \
  115. buffalo-enc -p $(3) -v 1.76 \
  116. -i $(KDIR)/vmlinux-$(2).uImage \
  117. -o $(KDIR)/vmlinux-$(2).uImage.enc; \
  118. buffalo-enc -p $(3) -v 1.76 \
  119. -i $(KDIR)/root.$(1) \
  120. -o $(KDIR)/root.$(2).enc; \
  121. buffalo-tag -b $(3) -p $(3) -a ram -v 1.76 -m 1.01 \
  122. -l mlang8 -f 1 -r EU \
  123. -i $(KDIR)/vmlinux-$(2).uImage.enc \
  124. -i $(KDIR)/root.$(2).enc \
  125. -o $(call imgname,$(1),$(2))-factory-EU.bin; \
  126. fi
  127. endef
  128. define BuildFirmware/Buffalo2
  129. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(4),$(5),$(6))
  130. endef
  131. mtdlayout_dir300b1=192k(u-boot)ro,64k(devdata)ro,64k(devconf)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  132. mtd_dir300b1_kernel_part_size=917504
  133. mtd_dir300b1_rootfs_part_size=2949120
  134. define BuildFirmware/DIR300B1
  135. $(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))
  136. mkwrgimg -s $(4) -d /dev/mtdblock/2 \
  137. -i $(call sysupname,$(1),$(2)) \
  138. -o $(call imgname,$(1),$(2))-factory.bin
  139. endef
  140. define BuildFirmware/DIR300B1/initramfs
  141. $(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))
  142. endef
  143. define BuildFirmware/Edimax
  144. if [ -e "$(call sysupname,$(1),$(2))" ]; then \
  145. mkedimaximg -i $(call sysupname,$(1),$(2)) \
  146. -o $(call imgname,$(1),$(2))-factory.bin \
  147. -s $(3) -m $(4) -f $(5) -S $(6); \
  148. fi
  149. endef
  150. mtdlayout_f5d8235=320k(u-boot)ro,1536k(kernel),6208k(rootfs),64k(nvram),64k(factory),7744k@0x50000(firmware)
  151. mtd_f5d8235_kernel_part_size=1572864
  152. mtd_f5d8235_rootfs_part_size=6356992
  153. define BuildFirmware/F5D8235
  154. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/phys,$(mtdlayout_f5d8235)),$(mtd_f5d8235_kernel_part_size),$(mtd_f5d8235_rootfs_part_size))
  155. endef
  156. define BuildFirmware/FONERA20N
  157. $(call BuildFirmware/GENERIC_8M,$(1),fonera20n,FONERA20N,ttyS1,57600,phys)
  158. $(call BuildFirmware/Edimax,$(1),fonera20n,RSDK,NL1T,0x50000,0xc0000)
  159. endef
  160. define BuildFirmware/FONERA20N/initramfs
  161. $(call BuildFirmware/GENERIC_8M/initramfs,$(1),fonera20n,FONERA20N,ttyS1,57600,phys)
  162. endef
  163. mtdlayout_nw718=192k(u-boot)ro,128k(config)ro,64k(factory)ro,896k(kernel),2816k(rootfs),3712k@0x60000(firmware)
  164. kernel_size_nw718=917504
  165. rootfs_size_nw718=2883584
  166. cmdline_nw718=$(call mkcmdline,NW718,ttyS1,57600) $(call mkmtd/spi,$(mtdlayout_nw718))
  167. define BuildFirmware/NW718
  168. $(call BuildFirmware/Generic,$(1),$(2),$(cmdline_nw718),$(kernel_size_nw718),$(rootfs_size_nw718))
  169. $(call PatchKernelLzma,$(2),$(cmdline_nw718))
  170. mkimage -A mips -O linux -T kernel -C lzma $(call kernel_entry) \
  171. -n "ARA1B4NCRNW718;1" \
  172. -d "$(KDIR)/vmlinux-$(2).bin.lzma" \
  173. "$(KDIR)/vmlinux-$(2).uImage"
  174. $(call CatFiles,$(KDIR)/vmlinux-$(2).uImage,$(kernel_size_nw718),$(KDIR)/root.$(1),$(rootfs_size_nw718),$(call imgname,$(1),$(2))-factory.bin)
  175. endef
  176. mtdlayout_rtg32b1=192k(u-boot)ro,64k(devdata)ro,64k(devconf)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  177. mtd_rtg32b1_kernel_part_size=917504
  178. mtd_rtg32b1_rootfs_part_size=2949120
  179. define BuildFirmware/RTG32B1
  180. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/spi,$(mtdlayout_rtg32b1)),$(mtd_rtg32b1_kernel_part_size),$(mtd_rtg32b1_rootfs_part_size))
  181. endef
  182. mtdlayout_rtn10plus=192k(u-boot)ro,64k(devdata)ro,64k(devconf)ro,896k(kernel),2880k(rootfs),3776k@0x50000(firmware)
  183. mtd_rtn10plus_kernel_part_size=917504
  184. mtd_rtn10plus_rootfs_part_size=2949120
  185. define BuildFirmware/RTN10PLUS
  186. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/phys,$(mtdlayout_rtn10plus)),$(mtd_rtn10plus_kernel_part_size),$(mtd_rtn10plus_rootfs_part_size))
  187. endef
  188. define BuildFirmware/W306R_4M
  189. $(call BuildFirmware/w306r,$(1),$(2),$(call mkcmdline,$(3),$(4),$(5)) $(call mkmtd/$(6),$(mtdlayout_4M)),917504,2949120)
  190. endef
  191. define BuildFirmware/w306r
  192. $(call PatchKernelLzma,$(2),$(3))
  193. mkimage -A mips -O linux -T kernel -C lzma $(call kernel_entry)\
  194. -n 'linkn Kernel Image' \
  195. -d $(KDIR)/vmlinux-$(2).bin.lzma $(KDIR)/vmlinux-$(2).uImage
  196. $(call CatFiles,$(KDIR)/vmlinux-$(2).uImage,$(4),$(KDIR)/root.$(1),$(5),$(call imgname,$(1),$(2))-factory.bin)
  197. endef
  198. mtdlayout_whrg300n=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,960k(kernel),2752k(rootfs),64k(user)ro,3712k@0x50000(firmware)
  199. define BuildFirmware/WHRG300N
  200. $(call Image/Build/Template/GENERIC_4M,$(1),whr-g300n,WHR-G300N,ttyS1,57600,phys)
  201. $(call BuildFirmware/Buffalo,$(1),whr-g300n,$(call mkcmdline,WHR-G300N,ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_whrg300n)),983040,3801088)
  202. ( \
  203. echo -n -e "# Airstation FirmWare\nrun u_fw\nreset\n\n" | \
  204. dd bs=512 count=1 conv=sync; \
  205. dd if=$(call sysupname,$(1),whr-g300n); \
  206. ) > $(KDIR)/whr-g300n-tftp.tmp
  207. buffalo-tftp -i $(KDIR)/whr-g300n-tftp.tmp \
  208. -o $(call imgname,$(1),whr-g300n)-tftp.bin
  209. endef
  210. 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)
  211. kernel_size_wl341v3=917504
  212. rootfs_size_wl341v3=2949120
  213. define BuildFirmware/WL341V3
  214. $(call BuildFirmware/Generic,$(1),$(2),board=$(3) $(call mkmtd/phys,$(mtdlayout_wl341v3)),$(kernel_size_wl341v3),$(rootfs_size_wl341v3))
  215. if [ -e "$(call sysupname,$(1),$(2))" ]; then \
  216. ( \
  217. dd if=/dev/zero bs=195936 count=1; \
  218. echo "1.01"; \
  219. dd if=/dev/zero bs=581 count=1; \
  220. 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"; \
  221. dd if=/dev/zero bs=65552 count=1; \
  222. dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(kernel_size_wl341v3) conv=sync; \
  223. dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
  224. dd if=/dev/zero bs=`expr 4194304 - 262144 - 16 - $(kernel_size_wl341v3) - \( \( \( \`stat -c%s $(KDIR)/root.$(1)\` / 65536 \) + 1 \) \* 65536 \)` count=1; \
  225. echo -n -e "\x11\x03\x80\x00\x10\x12\x90\xF7\x65\x52\x63\x4F\x6D\x4D\x00\x00"; \
  226. ) > $(call imgname,$(1),$(2))-factory.bin; \
  227. fi
  228. endef
  229. mtdlayout_wlitx4ag300n=192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,896k(kernel),2816k(rootfs),64k(user)ro,3712k@0x50000(firmware)
  230. define BuildFirmware/WLITX4AG300N
  231. $(call BuildFirmware/Buffalo2,$(1),wli-tx4-ag300n,WLI-TX4-AG300N,$(call mkmtd/phys,$(mtdlayout_wlitx4ag300n)),917504,2883584)
  232. endef
  233. #
  234. # Templates
  235. #
  236. define Image/Build/Template/initramfs/initramfs
  237. $(call BuildFirmware/$(1)/initramfs,initramfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
  238. endef
  239. define Image/Build/Template/squashfs-only/squashfs
  240. $(call BuildFirmware/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
  241. endef
  242. #
  243. # RT288X Profiles
  244. #
  245. define Image/Build/Profile/F5D8235V1
  246. $(call Image/Build/Template/$(fs_squash)/$(1),F5D8235,f5d8235v1,F5D8235_V1)
  247. endef
  248. define Image/Build/Profile/RTN15
  249. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,rt-n15,RT-N15,ttyS1,57600,phys)
  250. endef
  251. define Image/Build/Profile/V11STFE
  252. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,v11st-fe,V11ST-FE,ttyS1,57600,phys)
  253. endef
  254. define Image/Build/Profile/WLITX4AG300N
  255. $(call Image/Build/Template/$(fs_squash)/$(1),WLITX4AG300N)
  256. endef
  257. ifeq ($(CONFIG_RALINK_RT288X),y)
  258. define Image/Build/Profile/Default
  259. $(call Image/Build/Profile/F5D8235V1,$(1))
  260. $(call Image/Build/Profile/RTN15,$(1))
  261. $(call Image/Build/Profile/V11STFE,$(1))
  262. $(call Image/Build/Profile/WLITX4AG300N,$(1))
  263. endef
  264. endif
  265. #
  266. # RT305X Profiles
  267. #
  268. define Image/Build/Profile/ALL0256N
  269. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,all0256n,ALL0256N,ttyS1,57600,spi)
  270. endef
  271. define Image/Build/Profile/ARGUS_ATP52B
  272. $(call Image/Build/Template/$(fs_squash)/$(1),ARGUS_ATP52B,argus_atp52b,ARGUS_ATP52B)
  273. endef
  274. define Image/Build/Profile/BC2
  275. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,bc2,BC2,ttyS1,57600,phys)
  276. endef
  277. define Image/Build/Profile/DIR300B1
  278. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-300-b1,DIR-300-B1,wrgn23_dlwbr_dir300b)
  279. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-600-b1,DIR-600-B1,wrgn23_dlwbr_dir600b)
  280. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-600-b2,DIR-600-B2,wrgn23_dlwbr_dir600b)
  281. $(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-615-d,DIR-615-D,wrgn23_dlwbr_dir615d)
  282. endef
  283. define Image/Build/Profile/ESR9753
  284. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,esr-9753,ESR-9753,ttyS1,57600,phys)
  285. endef
  286. define Image/Build/Profile/HW5503G
  287. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,hw550-3g,HW550-3G,ttyS1,57600,phys)
  288. endef
  289. define Image/Build/Profile/F5D8235V2
  290. $(call Image/Build/Template/$(fs_squash)/$(1),F5D8235,f5d8235v2,F5D8235_V2)
  291. endef
  292. define Image/Build/Profile/FONERA20N
  293. $(call Image/Build/Template/$(fs_squash)/$(1),FONERA20N)
  294. endef
  295. define Image/Build/Profile/FREESTATION5
  296. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,freestation5,FREESTATION5,ttyS1,115200,phys)
  297. endef
  298. define Image/Build/Profile/MOFI35003GN
  299. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,mofi3500-3gn,MOFI3500-3GN,ttyS1,57600,phys)
  300. endef
  301. define Image/Build/Profile/NBG419N
  302. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,nbg-419n,NBG419N,ttyS1,57600,phys)
  303. endef
  304. define Image/Build/Profile/NW718
  305. $(call Image/Build/Template/$(fs_squash)/$(1),NW718,nw718)
  306. endef
  307. define Image/Build/Profile/OMNIEMB
  308. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,omni-emb,OMNI-EMB,ttyS1,57600,phys)
  309. endef
  310. define Image/Build/Profile/PWH2004
  311. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,pwh2004,PWH2004,ttyS1,57600,phys)
  312. endef
  313. define Image/Build/Profile/RTG32B1
  314. $(call Image/Build/Template/$(fs_squash)/$(1),RTG32B1,rt-g32-b1,RT-G32-B1)
  315. endef
  316. define Image/Build/Profile/RTN10PLUS
  317. $(call Image/Build/Template/$(fs_squash)/$(1),RTN10PLUS,rt-n10-plus,RT-N10-PLUS)
  318. endef
  319. define Image/Build/Profile/SLR7205
  320. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,sl-r7205,SL-R7205,ttyS1,57600,phys)
  321. endef
  322. define Image/Build/Profile/V22RW2X2
  323. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,v22rw-2x2,V22RW-2X2,ttyS1,57600,phys)
  324. endef
  325. define Image/Build/Profile/W306R_V20
  326. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,w306r-v20,W306R_V20,ttyS1,57600,phys)
  327. $(call Image/Build/Template/$(fs_squash)/$(1),W306R_4M,w306r-v20,W306R_V20,ttyS1,57600,phys)
  328. endef
  329. define Image/Build/Profile/W502U
  330. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,w502u,W502U,ttyS1,115200,phys)
  331. endef
  332. define Image/Build/Profile/WCR150GN
  333. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wcr150gn,WCR150GN,ttyS1,57600,phys)
  334. endef
  335. define Image/Build/Profile/WHRG300N
  336. $(call Image/Build/Template/$(fs_squashfs)/$(1),WHRG300N)
  337. endef
  338. define Image/Build/Profile/WL_330N
  339. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wl-330n,WL_330N,ttyS1,57600,spi)
  340. endef
  341. define Image/Build/Profile/WL_330N3G
  342. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wl-330n3g,WL_330N3G,ttyS1,57600,spi)
  343. endef
  344. define Image/Build/Profile/WL341V3
  345. $(call Image/Build/Template/$(fs_squash)/$(1),WL341V3,wl341v3,WL341V3)
  346. endef
  347. define Image/Build/Profile/WL351
  348. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wl-351,WL-351,ttyS1,57600,phys)
  349. endef
  350. define Image/Build/Profile/WR5123GN
  351. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,wr512-3gn-4M,WR512-3GN,ttyS1,57600,phys)
  352. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,wr512-3gn-8M,WR512-3GN,ttyS1,57600,phys)
  353. endef
  354. define Image/Build/Profile/UPVEL
  355. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,ur-336un,UR-336UN,ttyS1,57600,phys)
  356. endef
  357. define Image/Build/Profile/WR6202
  358. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,wr6202,WR6202,ttyS1,115200,phys)
  359. endef
  360. define Image/Build/Profile/XDXRN502J
  361. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,xdxrn502j,XDXRN502J,ttyS1,57600,phys)
  362. endef
  363. ifeq ($(CONFIG_RALINK_RT305X),y)
  364. define Image/Build/Profile/Default
  365. $(call Image/Build/Profile/ALL0256N,$(1))
  366. $(call Image/Build/Profile/ARGUS_ATP52B,$(1))
  367. $(call Image/Build/Profile/BC2,$(1))
  368. $(call Image/Build/Profile/DIR300B1,$(1))
  369. $(call Image/Build/Profile/ESR9753,$(1))
  370. $(call Image/Build/Profile/F5D8235V2,$(1))
  371. $(call Image/Build/Profile/RTN10PLUS,$(1))
  372. $(call Image/Build/Profile/FONERA20N,$(1))
  373. $(call Image/Build/Profile/FREESTATION5,$(1))
  374. $(call Image/Build/Profile/HW5503G,$(1))
  375. $(call Image/Build/Profile/MOFI35003GN,$(1))
  376. $(call Image/Build/Profile/NBG419N,$(1))
  377. $(call Image/Build/Profile/NW718,$(1))
  378. $(call Image/Build/Profile/OMNIEMB,$(1))
  379. $(call Image/Build/Profile/PWH2004,$(1))
  380. $(call Image/Build/Profile/RTG32B1,$(1))
  381. $(call Image/Build/Profile/SLR7205,$(1))
  382. $(call Image/Build/Profile/V22RW2X2,$(1))
  383. $(call Image/Build/Profile/W306R_V20,$(1))
  384. $(call Image/Build/Profile/W502U,$(1))
  385. $(call Image/Build/Profile/WCR150GN,$(1))
  386. $(call Image/Build/Profile/WHRG300N,$(1))
  387. $(call Image/Build/Profile/WL_330N,$(1))
  388. $(call Image/Build/Profile/WL_330N3G,$(1))
  389. $(call Image/Build/Profile/WL341V3,$(1))
  390. $(call Image/Build/Profile/WL351,$(1))
  391. $(call Image/Build/Profile/WR5123GN,$(1))
  392. $(call Image/Build/Profile/WR6202,$(1))
  393. $(call Image/Build/Profile/XDXRN502J,$(1))
  394. endef
  395. endif
  396. #
  397. # RT3662/RT3883 Profiles
  398. #
  399. define Image/Build/Profile/RTN56U
  400. $(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_8M,rt-n56u,RT-N56U,ttyS1,57600,phys)
  401. endef
  402. ifeq ($(CONFIG_RALINK_RT3883),y)
  403. define Image/Build/Profile/Default
  404. $(call Image/Build/Profile/RTN56U,$(1))
  405. endef
  406. endif
  407. define Image/Build/Initramfs
  408. $(call Image/Build/Profile/$(PROFILE),initramfs)
  409. endef
  410. define Image/Build/squashfs
  411. $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
  412. endef
  413. define Image/Build
  414. $(call Image/Build/$(1))
  415. dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
  416. $(call Image/Build/Profile/$(PROFILE),$(1))
  417. endef
  418. $(eval $(call BuildImage))