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