2 # Copyright (C) 2008-2011 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 include $(TOPDIR
)/rules.mk
8 include $(INCLUDE_DIR
)/image.mk
11 $(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(patsubst jffs2-
%,jffs2
,$(patsubst squashfs-
%,squashfs
,$(1)))
15 $(patsubst %-128k
,0x20000,$(patsubst %-64k
,0x10000,$(patsubst squashfs-
%,0x4,$(1))))
19 $(call imgname
,$(1),$(2))-sysupgrade.bin
23 $(call imgname
,$(1),$(2))-factory.bin
26 LOADER_MAKE
:= $(NO_TRACE_MAKE
) -C lzma-loader KDIR
=$(KDIR
)
29 VMLINUX
:=$(BIN_DIR
)/$(IMG_PREFIX
)-vmlinux
30 UIMAGE
:=$(BIN_DIR
)/$(IMG_PREFIX
)-uImage
31 fs_squash
:=squashfs-only
35 ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),y
)
40 VMLINUX
:=$(BIN_DIR
)/$(IMG_PREFIX
)-vmlinux-initramfs
41 UIMAGE
:=$(BIN_DIR
)/$(IMG_PREFIX
)-uImage-initramfs
45 $(STAGING_DIR_HOST
)/bin
/lzma e
$(1) -lc1
-lp2
-pb2
$(2)
48 define PatchKernelLzma
49 cp
$(KDIR
)/vmlinux
$(KDIR_TMP
)/vmlinux-
$(1)
50 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR_TMP
)/vmlinux-
$(1) "$(strip $(2))"
51 $(call CompressLzma
,$(KDIR_TMP
)/vmlinux-
$(1),$(KDIR_TMP
)/vmlinux-
$(1).bin.lzma
)
54 define PatchKernelGzip
55 cp
$(KDIR
)/vmlinux
$(KDIR_TMP
)/vmlinux-
$(1)
56 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR_TMP
)/vmlinux-
$(1) "$(strip $(2))"
57 gzip
-9 -c
$(KDIR_TMP
)/vmlinux-
$(1) > $(KDIR_TMP
)/vmlinux-
$(1).bin.gz
61 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C
$(1) $(2) \
62 -e
0x80060000 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
67 $(call PatchKernelLzma
,$(1),$(2))
68 $(call MkuImage
,lzma
,,$(KDIR_TMP
)/vmlinux-
$(1).bin.lzma
,$(KDIR_TMP
)/vmlinux-
$(1).uImage
)
71 define MkuImageLzma
/initramfs
72 $(call PatchKernelLzma
,$(1),$(2))
73 $(call MkuImage
,lzma
,,$(KDIR_TMP
)/vmlinux-
$(1).bin.lzma
,$(call imgname
,initramfs
,$(1))-uImage.bin
)
77 $(call PatchKernelGzip
,$(1),$(2))
78 $(call MkuImage
,gzip
,,$(KDIR_TMP
)/vmlinux-
$(1).bin.gz
,$(KDIR_TMP
)/vmlinux-
$(1).uImage
)
81 define MkuImageGzip
/initramfs
82 $(call PatchKernelGzip
,$(1),$(2))
83 $(call MkuImage
,gzip
,,$(KDIR_TMP
)/vmlinux-
$(1).bin.gz
,$(call imgname
,initramfs
,$(1))-uImage.bin
)
87 $(call MkuImage
,lzma
,-M
0x4f4b4c49,$(KDIR
)/vmlinux.bin.lzma
,$(KDIR_TMP
)/vmlinux-
$(1).okli
)
91 if
[ `stat -c%s "$(1)"` -gt
$(2) ]; then \
92 echo
"Warning: $(1) is too big"; \
93 else if
[ `stat -c%s $(3)` -gt
$(4) ]; then \
94 echo
"Warning: $(3) is too big"; \
96 ( dd if
=$(1) bs
=$(2) conv
=sync
; dd if
=$(3) ) > $(5); \
101 $(call CatFiles
,$(2),$(3),$(KDIR
)/root.
$(1),$(4),$(call sysupname
,$(1),$(5)))
104 define Sysupgrade
/KRuImage
105 $(call CatFiles
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
,$(3),$(KDIR
)/root.
$(1),$(4),$(call sysupname
,$(1),$(2)))
108 define Sysupgrade
/RKuImage
109 $(call CatFiles
,$(KDIR
)/root.
$(1),$(4),$(KDIR_TMP
)/vmlinux-
$(2).uImage
,$(3),$(call sysupname
,$(1),$(2)))
112 define Image
/BuildLoader
113 -rm -rf
$(KDIR
)/lzma-loader
114 $(LOADER_MAKE
) LOADER
=loader-
$(1).
$(2) KERNEL_CMDLINE
="$(3)"\
115 LZMA_TEXT_START
=0x80a00000 LOADADDR
=0x80060000 \
116 LOADER_DATA
="$(KDIR)/vmlinux.bin.lzma" \
120 define Image
/BuildLoaderAlone
121 -rm -rf
$(KDIR
)/lzma-loader
122 $(LOADER_MAKE
) LOADER
=loader-
$(1).
$(2) KERNEL_CMDLINE
="$(3)" \
123 LZMA_TEXT_START
=0x80a00000 LOADADDR
=0x80060000 \
124 FLASH_OFFS
=$(4) FLASH_MAX
=$(5) \
132 define Image
/BuildKernel
133 cp
$(KDIR
)/vmlinux.elf
$(VMLINUX
).elf
134 cp
$(KDIR
)/vmlinux
$(VMLINUX
).bin
135 dd if
=$(KDIR
)/vmlinux.bin.lzma of
=$(VMLINUX
).lzma bs
=65536 conv
=sync
136 dd if
=$(KDIR
)/vmlinux.bin.gz of
=$(VMLINUX
).gz bs
=65536 conv
=sync
137 $(call MkuImage
,gzip
,,$(KDIR
)/vmlinux.bin.gz
,$(UIMAGE
)-gzip.bin
)
138 $(call MkuImage
,lzma
,,$(KDIR
)/vmlinux.bin.lzma
,$(UIMAGE
)-lzma.bin
)
139 -mkdir
-p
$(KDIR_TMP
)
140 $(call Image
/Build
/Initramfs
)
143 define Image
/Build
/WRT400N
144 $(call MkuImageLzma
,$(2),$(3))
145 $(call Sysupgrade
/KRuImage
,$(1),$(2),1310720,6488064)
146 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
147 wrt400n
$(KDIR_TMP
)/vmlinux-
$(2).uImage
$(KDIR
)/root.
$(1) $(call factoryname
,$(1),$(2)); \
151 dir825b1_mtdlayout
=mtdparts
=spi0.0
:256k
(uboot
)ro
,64k
(config
)ro
,1024k
(kernel
),5184k
(rootfs
),64k
(caldata
)ro
,1600k
(unknown
)ro
,6208k@
0x50000(firmware
)
152 define Image
/Build
/DIR825B1
153 $(call MkuImageLzma
,$(2),$(3) $(dir825b1_mtdlayout
))
154 $(call Sysupgrade
/KRuImage
,$(1),$(2),1048576,5308416)
155 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
157 dd if
=$(call sysupname
,$(1),$(2)); \
159 ) > $(call imgname
,$(1),$(2))-backup-loader.bin
; \
160 if
[ `stat -c%s $(call sysupname,$(1),$(2))` -gt
4194304 ]; then \
161 echo
"Warning: $(call sysupname,$(1),$(2)) is too big"; \
164 dd if
=$(call sysupname
,$(1),$(2)) bs
=4096k conv
=sync
; \
166 ) > $(call factoryname
,$(1),$(2)); \
171 define Image
/Build
/WZRHPG30XNH
172 $(call MkuImageLzma
,$(2),$(3))
173 $(call Sysupgrade
/KRuImage
,$(1),$(2),1048576,31850496)
174 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
176 echo
-n
-e
"# Airstation Public Fmt1\x00\x00\x00\x00\x00\x00\x00\x00"; \
177 dd if
=$(call sysupname
,$(1),$(2)); \
178 ) > $(call imgname
,$(1),$(2))-tftp.bin
; \
179 buffalo-enc
-p
$(4) -v
1.99 \
180 -i
$(call sysupname
,$(1),$(2)) \
181 -o
$(KDIR_TMP
)/$(2).enc
; \
182 buffalo-tag
-b
$(4) -p
$(4) -a ath
-v
1.99 -m
1.01 -l mlang8 \
183 -w
3 -c
0x80041000 -d
0x801e8000 -f
1 -r M_ \
184 -i
$(KDIR_TMP
)/$(2).enc \
185 -o
$(call factoryname
,$(1),$(2)); \
189 define Image
/Build
/WHRHPG300N
190 $(call MkuImageLzma
,$(2),$(3) $(4))
191 $(call Sysupgrade
/KRuImage
,$(1),$(2),983040,2883584)
192 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
194 echo
-n
-e
"# Airstation Public Fmt1\x00\x00\x00\x00\x00\x00\x00\x00"; \
195 dd if
=$(call sysupname
,$(1),$(2)); \
196 ) > $(call imgname
,$(1),$(2))-tftp.bin
; \
197 buffalo-enc
-p
$(5) -v
1.99 \
198 -i
$(call sysupname
,$(1),$(2)) \
199 -o
$(KDIR_TMP
)/$(2).enc
; \
200 buffalo-tag
-b
$(5) -p
$(5) -a ath
-v
1.99 -m
1.01 -l mlang8 \
201 -w
3 -c
0x80041000 -d
0x801e8000 -f
1 -r M_ \
202 -i
$(KDIR_TMP
)/$(2).enc \
203 -o
$(call factoryname
,$(1),$(2)); \
207 define Image
/Build
/Cameo
208 $(call MkuImageLzma
,$(2),$(3) $(4))
209 $(call Sysupgrade
/KRuImage
,$(1),$(2),$(5),$(6))
210 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
212 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage bs
=$(5) conv
=sync
; \
213 dd if
=$(KDIR
)/root.
$(1) bs
=$(6) conv
=sync
; \
215 ) > $(call factoryname
,$(1),$(2)); \
219 cameo913x_mtdlayout
=mtdparts
=spi0.0
:128k
(u-boot
)ro
,64k
(config
)ro
,960k
(kernel
),2880k
(rootfs
),64k
(art
)ro
,3840k@
0x30000(firmware
)
220 define Image
/Build
/Cameo913x
221 $(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(cameo913x_mtdlayout
),983040,2949120,$(4))
224 cameo7240_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(nvram
)ro
,960k
(kernel
),2752k
(rootfs
),64k
(mac
)ro
,64k
(art
)ro
,3712k@
0x40000(firmware
)
225 define Image
/Build
/Cameo7240
226 $(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(cameo7240_mtdlayout
),983040,2818048,$(4))
229 define Image
/Build
/Ath
230 $(call Sysupgrade
/$(7),$(1),$(2),$(5),$(6))
231 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
232 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage \
233 of
=$(call imgname
,kernel
,$(2)).bin bs
=64k conv
=sync
; \
234 dd if
=$(KDIR
)/root.
$(1) \
235 of
=$(call imgname
,$(1),$(2)-rootfs
).bin bs
=128k conv
=sync
; \
239 define Image
/Build
/AthGzip
240 $(call MkuImageGzip
,$(2),$(3) $(4))
241 $(call Image
/Build
/Ath
,$(1),$(2),$(3),$(4),$(5),$(6),$(7))
244 define Image
/Build
/AthGzip
/initramfs
245 $(call MkuImageGzip
/initramfs
,$(2),$(3) $(4))
248 define Image
/Build
/AthLzma
249 $(call MkuImageLzma
,$(2),$(3) $(4))
250 $(call Image
/Build
/Ath
,$(1),$(2),$(3),$(4),$(5),$(6),$(7))
253 define Image
/Build
/AthLzma
/initramfs
254 $(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
257 define Image
/Build
/PB4X
258 $(call PatchKernelLzma
,$(2),$(3))
259 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
260 of
=$(call imgname
,kernel
,$(2)).bin bs
=64k conv
=sync
261 dd if
=$(KDIR
)/root.
$(1) \
262 of
=$(call imgname
,$(1),$(2)-rootfs
).bin bs
=128k conv
=sync
263 -sh
$(TOPDIR
)/scripts
/combined-image.sh \
264 "$(call imgname,kernel,$(2)).bin" \
265 "$(call imgname,$(1),$(2)-rootfs).bin" \
266 $(call sysupname
,$(1),$(2))
270 define Image
/Build
/MyLoader
271 $(call PatchKernelLzma
,$(2),$(3))
272 -$(STAGING_DIR_HOST
)/bin
/mkmylofw
-B
$(2) -s
$(4) \
273 -p0x030000
:0xe0000:al
:0x80060000:kernel
:$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
274 -p0x110000
:0:::rootfs
:$(KDIR
)/root.
$(1) \
275 $(call imgname
,$(1),$(2))-$(5)-factory.img
278 ubntxm_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1024k
(kernel
),6528k
(rootfs
),256k
(cfg
)ro
,64k
(EEPROM
)ro
,7552k@
0x50000(firmware
)
279 define Image
/Build
/UBNTXM
280 $(call MkuImageLzma
,$(2),$(3) $(ubntxm_mtdlayout
))
281 $(call Sysupgrade
/KRuImage
,$(1),$(2),1048576,6684672)
282 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage of
=$(KDIR_TMP
)/vmlinux-
$(2).uImage.bin bs
=1024k conv
=sync
283 -$(STAGING_DIR_HOST
)/bin
/mkfwimage \
284 -B
$(4) -v
$(5).
$(6).v6.0
.0-OpenWrt-
$(REVISION
) \
285 -k
$(KDIR_TMP
)/vmlinux-
$(2).uImage.bin \
286 -r
$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) \
287 -o
$(call factoryname
,$(1),$(2))
290 define Image
/Build
/UBNT
291 $(call PatchKernelLzma
,$(2),$(3))
292 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma of
=$(KDIR_TMP
)/vmlinux-
$(2).lzma bs
=64k conv
=sync
293 -$(STAGING_DIR_HOST
)/bin
/mkfwimage \
294 -B
$(4) -v
$(5).
$(6).OpenWrt.
$(REVISION
) \
295 -k
$(KDIR_TMP
)/vmlinux-
$(2).lzma \
296 -r
$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) \
297 -o
$(call factoryname
,$(1),$(2))
298 -sh
$(TOPDIR
)/scripts
/combined-image.sh \
299 "$(KDIR_TMP)/vmlinux-$(2).lzma" \
300 "$(BIN_DIR)/$(IMG_PREFIX)-root.$(1)" \
301 $(call sysupname
,$(1),$(2))
304 planex_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,960k
(kernel
),6784k
(rootfs
),128k
(art
)ro
,7744k@
0x50000(firmware
)
305 define Image
/Build
/Planex
/loader
306 $(call Image
/BuildLoaderAlone
,$(1),gz
,$(2) $(planex_mtdlayout
),0x52000,0)
309 define Image
/Build
/Planex
310 [ -e
"$(KDIR)/loader-$(2).gz" ]
311 $(call MkuImage
,gzip
,,$(KDIR
)/loader-
$(2).gz
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
)
312 $(call MkuImageOKLI
,$(2))
314 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage bs
=8k count
=1 conv
=sync
; \
315 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).okli
; \
316 ) > $(KDIR_TMP
)/kernel-
$(2).bin
317 $(call Sysupgrade
/KR
,$(1),$(KDIR_TMP
)/kernel-
$(2).bin
,983040,6815744,$(2))
318 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
319 $(STAGING_DIR_HOST
)/bin
/mkplanexfw \
322 -i
$(call sysupname
,$(1),$(2)) \
323 -o
$(call factoryname
,$(1),$(2)); \
327 alfa_mtdlayout_8M
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,6144k
(rootfs
),1600k
(kernel
),64k
(nvram
),64k
(art
)ro
,7744k@
0x50000(firmware
)
328 define Image
/Build
/ALFA
329 $(call MkuImageLzma
,$(2),$(3))
330 $(call Sysupgrade
/RKuImage
,$(1),$(2),$(4),$(5))
331 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
332 rm -rf
$(KDIR
)/$(1); \
333 mkdir
-p
$(KDIR
)/$(1); \
335 cp
$(KDIR_TMP
)/vmlinux-
$(2).uImage
$(KDIR
)/$(1)/$(6); \
336 cp
$(KDIR
)/root.
$(1) $(KDIR
)/$(1)/$(7); \
337 $(TAR
) zcf
$(call factoryname
,$(1),$(2)) -C
$(KDIR
)/$(1) $(6) $(7); \
339 echo WRM7222C | dd bs
=32 count
=1 conv
=sync
; \
341 ) >> $(call factoryname
,$(1),$(2)); \
345 define Image
/Build
/TPLINKOLD
/loader
346 $(call Image
/BuildLoaderAlone
,$(1),gz
,$(2),0x22000,0)
349 define Image
/Build
/TPLINKOLD
350 [ -e
"$(KDIR)/loader-$(2).gz" ]
351 $(call MkuImageOKLI
,$(2))
353 dd if
=$(KDIR
)/loader-
$(2).gz bs
=7680 count
=1 conv
=sync
; \
354 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).okli conv
=sync
; \
355 ) > $(KDIR_TMP
)/kernel-
$(2).bin
356 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
357 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
)\
358 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
359 -r
$(KDIR
)/root.
$(1) \
360 -o
$(call factoryname
,$(1),$(2))
361 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
362 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
363 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
364 -r
$(KDIR
)/root.
$(1) \
365 -o
$(call sysupname
,$(1),$(2))
368 define Image
/Build
/TPLINKOLD
/initramfs
369 $(call Image
/BuildLoader
,$(2),gz
,$(3),0x80060000)
370 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw
-c \
371 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
372 -k
$(KDIR
)/loader-
$(2).gz \
373 -o
$(call imgname
,$(1),$(2))-uImage.bin
376 define Image
/Build
/TPLINK
/loader
377 $(call Image
/BuildLoaderAlone
,$(1),gz
,$(2),0x22000,0)
380 define Image
/Build
/TPLINK
381 [ -e
"$(KDIR)/loader-$(2).gz" ]
382 $(call MkuImageOKLI
,$(2))
384 dd if
=$(KDIR
)/loader-
$(2).gz bs
=7680 count
=1 conv
=sync
; \
385 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).okli conv
=sync
; \
386 ) > $(KDIR_TMP
)/kernel-
$(2).bin
387 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
388 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
)\
389 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
390 -r
$(KDIR
)/root.
$(1) \
391 -a
$(call rootfs_align
,$(1)) -j \
392 -o
$(call factoryname
,$(1),$(2))
393 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
394 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
395 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
396 -r
$(KDIR
)/root.
$(1) \
397 -a
$(call rootfs_align
,$(1)) -j \
398 -o
$(call sysupname
,$(1),$(2))
401 define Image
/Build
/TPLINK
/initramfs
402 $(call Image
/BuildLoader
,$(2),gz
,$(3),0x80060000)
403 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw
-c \
404 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
405 -k
$(KDIR
)/loader-
$(2).gz \
406 -o
$(call imgname
,$(1),$(2))-uImage.bin
409 define Image
/Build
/TPLINK-LZMA
410 $(call PatchKernelLzma
,$(2),$(3))
411 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
412 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
)\
413 -k
$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
414 -r
$(KDIR
)/root.
$(1) \
415 -a
$(call rootfs_align
,$(1)) -j \
416 -o
$(call factoryname
,$(1),$(2))
417 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
418 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s \
419 -k
$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
420 -r
$(KDIR
)/root.
$(1) \
421 -a
$(call rootfs_align
,$(1)) -j \
422 -o
$(call sysupname
,$(1),$(2))
425 define Image
/Build
/TPLINK-LZMA
/initramfs
426 $(call PatchKernelLzma
,$(2),$(3))
427 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw
-c \
428 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s \
429 -k
$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
430 -o
$(call imgname
,$(1),$(2))-uImage.bin
433 define Image
/Build
/CyberTAN
434 $(call MkuImageGzip
,$(2),$(3))
435 $(STAGING_DIR_HOST
)/bin
/trx
-o
$(KDIR
)/image.tmp
-f
$(KDIR_TMP
)/vmlinux-
$(2).uImage \
436 -x
32 -a
0x10000 -x
-32 -f
$(KDIR
)/root.
$(1)
437 -$(STAGING_DIR_HOST
)/bin
/addpattern
-B
$(2) -v v
$(4) \
438 -i
$(KDIR
)/image.tmp \
439 -o
$(call sysupname
,$(1),$(2))
440 -$(STAGING_DIR_HOST
)/bin
/addpattern
-B
$(2) -v v
$(4) -g \
441 -i
$(KDIR
)/image.tmp \
442 -o
$(call factoryname
,$(1),$(2))
446 define Image
/Build
/Netgear
/Build_uImage
447 $(call MkuImageLzma
,$(1),$(2) $(3))
449 mkdir
-p
$(KDIR
)/$(1)/image
450 $(STAGING_DIR_HOST
)/bin
/wndr3700 \
451 $(KDIR_TMP
)/vmlinux-
$(1).uImage \
452 $(KDIR
)/$(1)/image
/uImage \
454 $(STAGING_DIR_HOST
)/bin
/mksquashfs-lzma \
455 $(KDIR
)/$(1) $(KDIR_TMP
)/vmlinux-
$(1).uImage.squashfs.tmp \
456 -nopad
-noappend
-root-owned
-be
458 mkimage
-A mips
-O linux
-T filesystem
-C none \
459 -a
0xbf070000 -e
0xbf070000 \
460 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
461 -d
$(KDIR_TMP
)/vmlinux-
$(1).uImage.squashfs.tmp \
462 $(KDIR_TMP
)/vmlinux-
$(1).uImage.squashfs.tmp2
463 $(STAGING_DIR_HOST
)/bin
/wndr3700 \
464 $(KDIR_TMP
)/vmlinux-
$(1).uImage.squashfs.tmp2 \
465 $(KDIR_TMP
)/vmlinux-
$(1).uImage.squashfs \
467 -rm -f
$(KDIR_TMP
)/vmlinux-
$(1).uImage.squashfs.tmp
*
470 define Image
/Build
/Netgear
/Estimate_uImage
471 $(call Image
/Build
/Netgear
/Build_uImage
,$(1)_est
,$(2),$(3),$(4))
474 kk
=`echo '$(3)' | sed -e 's/.*[:,]\([0-9]*\)k(kernel).*/\1/'`; \
475 rk
=`echo '$(3)' | sed -e 's/.*[:,]\([0-9]*\)k(rootfs).*/\1/'`; \
476 let
'tk = kk + rk'; \
477 s
=`stat -c'%s' '$(KDIR_TMP)/vmlinux-$(1)_est.uImage.squashfs'`; \
478 c
=`echo '$(3)' | wc -c`; \
479 let
'kk = (((s + c) / (64 * 1024) + 1) * 64)'; \
480 let
'rk = tk - kk'; \
481 echo
'$(3)' | sed
-e
"s/[0-9]*k(kernel)/$$$${kk}k(kernel)/" \
482 -e
"s/[0-9]*k(rootfs)/$$$${rk}k(rootfs)/" > \
483 '$(KDIR_TMP)/$(1)_mtdparts'; \
484 let
'k = kk * 1024'; \
485 echo
"$$$${k}" > '$(KDIR_TMP)/$(1)_kernel_maxsize'; \
486 let
'r = rk * 1024'; \
487 echo
"$$$${r}" > '$(KDIR_TMP)/$(1)_rootfs_maxsize'; \
489 -rm -f
$(KDIR_TMP
)/vmlinux-
$(1)_est \
490 $(KDIR_TMP
)/vmlinux-
$(1)_est.bin.lzma \
491 $(KDIR_TMP
)/vmlinux-
$(1)_est.uImage \
492 $(KDIR_TMP
)/vmlinux-
$(1)_est.uImage.squashfs
495 define Image
/Build
/Netgear
496 $(call Image
/Build
/Netgear
/Estimate_uImage
,$(2),$(3),$(4),$(5))
497 $(call Image
/Build
/Netgear
/Build_uImage
,$(2),$(3),`cat $(KDIR_TMP)/$(2)_mtdparts`,$(5))
498 if
[ `stat -c%s '$(KDIR_TMP)/vmlinux-$(2).uImage.squashfs'` -gt \
499 `cat '$(KDIR_TMP)/$(2)_kernel_maxsize'` ]; then \
500 echo
"$(KDIR_TMP)/vmlinux-$(2).uImage.squashfs is too big" >& 2; \
501 else if
[ `stat -c%s '$(KDIR)/root.$(1)'` -gt \
502 `cat '$(KDIR_TMP)/$(2)_rootfs_maxsize'` ]; then \
503 echo
"$(KDIR)/root.$(1) is too big" >& 2; \
507 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage.squashfs \
508 bs
=`cat '$(KDIR_TMP)/$(2)_kernel_maxsize'` conv
=sync
; \
509 dd if
=$(KDIR
)/root.
$(1) bs
=64k
; \
510 ) > $(call sysupname
,$(1),$(2)); \
512 [ -n
"$$$$r" ] && dashr
="-$$$$r" || dashr
= ; \
513 $(STAGING_DIR_HOST
)/bin
/mkdniimg \
514 -B
$(6) -v OpenWrt.
$(REVISION
) -r
"$$$$r" $(8) \
515 -i
$(call sysupname
,$(1),$(2)) \
516 -o
$(call imgname
,$(1),$(2))-factory
$$$$dashr.img
; \
521 define Image
/Build
/Netgear
/initramfs
522 $(call MkuImageLzma
,$(2),$(3) $(4))
523 $(STAGING_DIR_HOST
)/bin
/wndr3700 \
524 $(KDIR_TMP
)/vmlinux-
$(2).uImage \
525 $(call imgname
,$(1),$(2))-uImage.bin \
529 ifdef CONFIG_PACKAGE_uboot-ar71xx-nbg460n_550n_550nh
530 define Image
/Build
/ZyXEL
531 $(call MkuImageLzma
,$(2),$(3))
532 $(call Sysupgrade
/KRuImage
,$(1),$(2),917504,2752512)
533 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
534 if
[ ! -f
$(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-u-boot.bin
]; then \
535 echo
"Warning: $(IMG_PREFIX)-$(2)-u-boot.bin not found"; \
537 $(STAGING_DIR_HOST
)/bin
/mkzynfw \
539 -b
$(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-u-boot.bin \
540 -r
$(call sysupname
,$(1),$(2)):0x10000 \
541 -o
$(call factoryname
,$(1),$(2)); \
546 define Image
/Build
/OpenMesh
547 $(call MkuImageLzma
,$(2))
548 -sh
$(TOPDIR
)/scripts
/om2p-fwupgradecfg-gen.sh \
549 "$(BUILD_DIR)/om2p-fwupgrade.cfg" \
550 "$(KDIR_TMP)/vmlinux-$(2).uImage" \
552 -sh
$(TOPDIR
)/scripts
/combined-ext-image.sh \
553 "$(3)" "$(call factoryname,$(1),$(2))" \
554 "$(BUILD_DIR)/om2p-fwupgrade.cfg" "fwupgrade.cfg" \
555 "$(KDIR_TMP)/vmlinux-$(2).uImage" "kernel" \
556 "$(KDIR)/root.$(1)" "rootfs"
559 define Image
/Build
/Zcomax
560 $(call MkuImageLzma
,$(2),$(3))
561 $(call Sysupgrade
/RKuImage
,$(1),$(2),1507328,6356992)
562 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
563 $(STAGING_DIR_HOST
)/bin
/mkzcfw \
565 -k
$(KDIR_TMP
)/vmlinux-
$(2).uImage \
566 -r
$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) \
567 -o
$(call imgname
,$(1),$(2))-factory.img
; \
571 define Image
/Build
/Template
/initramfs
/initramfs
572 $(call Image
/Build
/$(1)/initramfs
,initramfs
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
575 define Image
/Build
/Template
/all/squashfs
576 $(call Image
/Build
/$(1),squashfs
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
579 define Image
/Build
/Template
/all/jffs2-64k
580 $(call Image
/Build
/$(1),jffs2-64k
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
583 define Image
/Build
/Template
/all/jffs2-128k
584 $(call Image
/Build
/$(1),jffs2-128k
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
587 define Image
/Build
/Template
/squashfs-only
/loader
588 $(call Image
/Build
/$(1)/loader
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
591 define Image
/Build
/Template
/squashfs-only
/squashfs
592 $(call Image
/Build
/$(1),squashfs
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
595 define Image
/Build
/Template
/64k
/loader
596 $(call Image
/Build
/$(1)/loader
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
599 define Image
/Build
/Template
/64k
/squashfs
600 $(call Image
/Build
/$(1),squashfs-64k
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
603 define Image
/Build
/Template
/64k
/jffs2-64k
604 $(call Image
/Build
/$(1),jffs2-64k
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
607 define Image
/Build
/Template
/64kraw
/loader
608 $(call Image
/Build
/$(1)/loader
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
611 define Image
/Build
/Template
/64kraw
/squashfs
612 $(call Image
/Build
/$(1),squashfs-raw
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
615 define Image
/Build
/Template
/64kraw
/jffs2-64k
616 $(call Image
/Build
/$(1),jffs2-64k
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
619 define Image
/Build
/Template
/128k
/squashfs
620 $(call Image
/Build
/$(1),squashfs
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
623 define Image
/Build
/Template
/128k
/jffs2-128k
624 $(call Image
/Build
/$(1),jffs2-128k
,$(2),$(3),$(4),$(5),$(6),$(7),$(8))
627 alfa_nx_cmdline
=board
=ALFA-NX console
=ttyS0
,115200 $(alfa_mtdlayout_8M
)
628 define Image
/Build
/Profile
/ALFANX
629 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),ALFA
,alfa-nx
,$(alfa_nx_cmdline
),1638400,6291456,vmlinux.gz.uImage
,pb9x-2.6
.31-jffs2
)
632 alfa_ap96_cmdline
=board
=ALFA-AP96 console
=ttyS0
,115200
633 alfa_ap96_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,256k
(u-boot-env
)ro
,13312k
(rootfs
),2048k
(kernel
),512k
(caldata
)ro
,15360k@
0x80000(firmware
)
634 define Image
/Build
/Profile
/ALFAAP96
635 $(call Image
/Build
/Template
/$(fs_128k
)/$(1),AthLzma
,alfa-ap96
,$(alfa_ap96_cmdline
),$(alfa_ap96_mtdlayout
),2097152,13631488,RKuImage
)
638 ap113_mtd_layout
=64k
(u-boot
),3008k
(rootfs
),896k
(uImage
),64k
(NVRAM
),64k
(ART
),3904k@
0x10000(firmware
)
639 ap113_cmdline
=board
=AP113 console
=ttyS0
,115200
640 define Image
/Build
/Profile
/AP113
641 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthLzma
,ap113
,$(ap113_cmdline
),$(ap113_mtd_layout
),917504,3080192,RK
)
644 ap121_mtdlayout_2M
=mtdparts
=spi0.0
:64k
(u-boot
)ro
,1216k
(rootfs
),704k
(kernel
),64k
(art
)ro
,1920k@
0x10000(firmware
)
645 ap121_mtdlayout_4M
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,2752k
(rootfs
),896k
(kernel
),64k
(nvram
),64k
(art
)ro
,3648k@
0x50000(firmware
)
647 ap121_cmdline
=board
=AP121 console
=ttyATH0
,115200
648 define Image
/Build
/Profile
/AP121
649 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthLzma
,ap121-2M
,$(ap121_cmdline
),$(ap121_mtdlayout_2M
),720896,1245184,RKuImage
)
650 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthLzma
,ap121-4M
,$(ap121_cmdline
),$(ap121_mtdlayout_4M
),917504,2818048,RKuImage
)
653 ap121_mini_cmdline
=board
=AP121-MINI console
=ttyATH0
,115200
654 define Image
/Build
/Profile
/AP121MINI
655 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthLzma
,ap121-mini
,$(ap121_mini_cmdline
),$(ap121_mtdlayout_4M
),917504,2818048,RKuImage
)
658 ap81_cmdline
=board
=AP81 console
=ttyS0
,115200
659 define Image
/Build
/Profile
/AP81
660 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthGzip
,ap81
,$(ap81_cmdline
),,1310720,6619136,KRuImage
)
663 ap83_cmdline
=board
=AP83 console
=ttyS0
,115200
664 define Image
/Build
/Profile
/AP83
665 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthGzip
,ap83
,$(ap83_cmdline
),,1310720,6619136,KRuImage
)
668 ap96_cmdline
=board
=AP96 console
=ttyS0
,115200
669 ap96_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(u-boot-env
)ro
,6144k
(rootfs
),1728k
(kernel
),64k
(art
)ro
,7872k@
0x40000(firmware
)
670 define Image
/Build
/Profile
/AP96
671 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthGzip
,ap96
,$(ap96_cmdline
),$(ap96_mtdlayout
),1769472,6291456,RKuImage
)
674 db120_cmdline
=board
=DB120 console
=ttyS0
,115200
675 db120_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,6336k
(rootfs
),1408k
(kernel
),64k
(nvram
),64k
(art
)ro
,7744k@
0x50000(firmware
)
676 define Image
/Build
/Profile
/DB120
677 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthLzma
,db120
,$(db120_cmdline
),$(db120_mtdlayout
),1441792,6488064,RKuImage
)
680 pb42_cmdline
=board
=PB42 console
=ttyS0
,115200
681 define Image
/Build
/Profile
/PB42
682 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),PB4X
,pb42
,$(pb42_cmdline
))
685 pb44_cmdline
=board
=PB44 console
=ttyS0
,115200
686 define Image
/Build
/Profile
/PB44
687 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),PB4X
,pb44
,$(pb44_cmdline
))
690 pb92_cmdline
=board
=PB92 console
=ttyS0
,115200
691 pb92_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,2752k
(rootfs
),896k
(kernel
),64k
(nvram
),64k
(art
)ro
,3648k@
0x50000(firmware
)
692 define Image
/Build
/Profile
/PB92
693 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthLzma
,pb92
,$(pb92_cmdline
),$(pb92_mtdlayout
),917504,2818048,KRuImage
)
696 wp543_cmdline
=console
=ttyS0
,115200
697 define Image
/Build
/Profile
/WP543
698 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),MyLoader
,wp543
,$(wp543_cmdline
),0x200000,2M
)
699 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),MyLoader
,wp543
,$(wp543_cmdline
),0x400000,4M
)
700 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),MyLoader
,wp543
,$(wp543_cmdline
),0x800000,8M
)
701 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),MyLoader
,wp543
,$(wp543_cmdline
),0x1000000,16M
)
704 wpe72_cmdline
=console
=ttyS0
,115200
705 define Image
/Build
/Profile
/WPE72
706 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),MyLoader
,wpe72
,$(wpe72_cmdline
),0x800000,8M
)
709 dir600a1_cmdline
=board
=DIR-600-A1 console
=ttyS0
,115200
710 define Image
/Build
/Profile
/DIR600A1
711 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Cameo7240
,dir-600-a1
,$(dir600a1_cmdline
),"AP91-AR7240-RT-090223-00")
714 dir601a1_cmdline
=board
=DIR-600-A1 console
=ttyS0
,115200
715 define Image
/Build
/Profile
/DIR601A1
716 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Cameo7240
,dir-601-a1
,$(dir600a1_cmdline
),"AP91-AR7240-RT-090223-02")
719 dir615e4_cmdline
=board
=DIR-615-E4 console
=ttyS0
,115200
720 define Image
/Build
/Profile
/DIR615E4
721 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Cameo7240
,dir-615-e4
,$(dir615e4_cmdline
),"AP99-AR7240-RT-091105-05")
724 eap7660d_cmdline
=board
=EAP7660D console
=ttyS0
,115200
725 define Image
/Build
/Profile
/EAP7660D
726 $(call Image
/Build
/Template
/$(fs_128k
)/$(1),PB4X
,eap7660d
,$(eap7660d_cmdline
))
729 hornetub_cmdline
=board
=HORNET-UB console
=ttyATH0
,115200 $(alfa_mtdlayout_8M
)
730 define Image
/Build
/Profile
/HORNETUB
731 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),ALFA
,hornet-ub
,$(hornetub_cmdline
),1638400,6291456,kernel_image
,rootfs_image
)
734 ja76pf_cmdline
=board
=JA76PF console
=ttyS0
,115200
735 define Image
/Build
/Profile
/JA76PF
736 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),PB4X
,ja76pf
,$(ja76pf_cmdline
))
739 ja76pf2_cmdline
=board
=JA76PF2 console
=ttyS0
,115200
740 define Image
/Build
/Profile
/JA76PF2
741 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),PB4X
,ja76pf2
,$(ja76pf2_cmdline
))
744 jwap003_cmdline
=board
=JWAP003 console
=ttyS0
,115200
745 define Image
/Build
/Profile
/JWAP003
746 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),PB4X
,jwap003
,$(jwap003_cmdline
))
749 fr54rtr_cmdline
=board
=DIR-600-A1 console
=ttyS0
,115200
750 define Image
/Build
/Profile
/FR54RTR
751 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Cameo7240
,fr-54rtr
,$(fr54rtr_cmdline
),"AP91-AR7240-RT-090223-01")
754 dir615c1_cmdline
=board
=DIR-615-C1 console
=ttyS0
,115200
755 define Image
/Build
/Profile
/DIR615C1
756 $(call Image
/Build
/Template
/$(fs_squash
)/$(1),Cameo913x
,dir-615-c1
,$(dir615c1_cmdline
),"AP81-AR9130-RT-070614-02")
759 rw2458n_cmdline
=board
=RW2458N console
=ttyS0
,115200
760 define Image
/Build
/Profile
/RW2458N
761 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNTXM
,rw2458n
,$(rw2458n_cmdline
),XM
,UBNTXM
,ar7240
)
764 tew632brp_cmdline
=board
=TEW-632BRP console
=ttyS0
,115200
765 define Image
/Build
/Profile
/TEW632BRP
766 $(call Image
/Build
/Template
/$(fs_squash
)/$(1),Cameo913x
,tew-632brp
,$(tew632brp_cmdline
),"AP81-AR9130-RT-070614-00")
769 tew652brp_cmdline
=board
=TEW-632BRP console
=ttyS0
,115200
770 define Image
/Build
/Profile
/TEW652BRP
771 $(call Image
/Build
/Template
/$(fs_squash
)/$(1),Cameo913x
,tew-652brp
,$(tew652brp_cmdline
),"AP81-AR9130-RT-080609-05")
772 $(call Image
/Build
/Template
/$(fs_squash
)/$(1),Cameo913x
,tew-652brp-recovery
,$(tew652brp_cmdline
),"AP81-AR9130-RT-070614-02")
775 a05rbw300n_cmdline
=board
=TEW-632BRP console
=ttyS0
,115200
776 define Image
/Build
/Profile
/A02RBW300N
777 $(call Image
/Build
/Template
/$(fs_squash
)/$(1),Cameo913x
,a02-rb-w300n
,$(a05rbw300n_cmdline
),"AP81-AR9130-RT-070614-03")
780 ubntairrouter_cmdline
=board
=UBNT-AR console
=ttyS0
,115200
781 define Image
/Build
/Profile
/UBNTAIRROUTER
782 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNTXM
,ubnt-airrouter
,$(ubntairrouter_cmdline
),XM
,UBNTXM
,ar7240
)
785 ubntrs_cmdline
=board
=UBNT-RS console
=ttyS0
,115200
786 define Image
/Build
/Profile
/UBNTRS
787 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNT
,ubnt-rs
,$(ubntrs_cmdline
),RS
,RSx
,ar7100
)
790 ubntrspro_cmdline
=board
=UBNT-RSPRO console
=ttyS0
,115200
791 define Image
/Build
/Profile
/UBNTRSPRO
792 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNT
,ubnt-rspro
,$(ubntrspro_cmdline
),RSPRO
,RSPRO
,ar7100pro
)
795 ubntlssr71_cmdline
=board
=UBNT-LS-SR71 console
=ttyS0
,115200
796 define Image
/Build
/Profile
/UBNTLSSR71
797 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNT
,ubnt-ls-sr71
,$(ubntlssr71_cmdline
),LS-SR71
,LS-SR71
,ar7100
)
800 ubntbulletm_cmdline
=board
=UBNT-BM console
=ttyS0
,115200
801 define Image
/Build
/Profile
/UBNTBULLETM
802 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNTXM
,ubnt-bullet-m
,$(ubntbulletm_cmdline
),XM
,XM
,ar7240
)
805 ubntrocketm_cmdline
=board
=UBNT-RM console
=ttyS0
,115200
806 define Image
/Build
/Profile
/UBNTROCKETM
807 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNTXM
,ubnt-rocket-m
,$(ubntrocketm_cmdline
),XM
,XM
,ar7240
)
810 ubntnanom_cmdline
=board
=UBNT-NM console
=ttyS0
,115200
811 define Image
/Build
/Profile
/UBNTNANOM
812 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNTXM
,ubnt-nano-m
,$(ubntnanom_cmdline
),XM
,XM
,ar7240
)
815 ubntunifi_cmdline
=board
=UBNT-UF console
=ttyS0
,115200
816 define Image
/Build
/Profile
/UBNTUNIFI
817 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),UBNTXM
,ubnt-unifi
,$(ubntunifi_cmdline
),XM
,XM
,ar7240
)
820 define Image
/Build
/Profile
/UBNT
821 $(call Image
/Build
/Profile
/UBNTAIRROUTER
,$(1))
822 $(call Image
/Build
/Profile
/UBNTRS
,$(1))
823 $(call Image
/Build
/Profile
/UBNTRSPRO
,$(1))
824 $(call Image
/Build
/Profile
/UBNTLSSR71
,$(1))
825 $(call Image
/Build
/Profile
/UBNTBULLETM
,$(1))
826 $(call Image
/Build
/Profile
/UBNTROCKETM
,$(1))
827 $(call Image
/Build
/Profile
/UBNTNANOM
,$(1))
828 $(call Image
/Build
/Profile
/UBNTUNIFI
,$(1))
831 mzkw04nu_cmdline
=board
=MZK-W04NU console
=ttyS0
,115200
832 define Image
/Build
/Profile
/MZKW04NU
833 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Planex
,mzk-w04nu
,$(mzkw04nu_cmdline
))
836 mzkw300nh_cmdline
=board
=MZK-W300NH console
=ttyS0
,115200
837 define Image
/Build
/Profile
/MZKW300NH
838 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Planex
,mzk-w300nh
,$(mzkw300nh_cmdline
))
841 nbg460n_cmdline
=board
=NBG460N console
=ttyS0
,115200
842 define Image
/Build
/Profile
/NBG_460N_550N_550NH
843 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),ZyXEL
,nbg460n_550n_550nh
,$(nbg460n_cmdline
),NBG-460N
)
846 define Image
/Build
/Profile
/OM2P
847 $(call Image
/Build
/Template
/$(fs_squash
)/$(1),OpenMesh
,om2p
,OM2P
)
850 tlmr11u_cmdline
=board
=TL-MR11U console
=ttyATH0
,115200
851 define Image
/Build
/Profile
/TLMR11U
852 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK-LZMA
,tl-mr11u-v1
,$(tlmr11u_cmdline
),0x00110101,1,4Mlzma
)
855 tlmr3020_cmdline
=board
=TL-MR3020 console
=ttyATH0
,115200
856 define Image
/Build
/Profile
/TLMR3020
857 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),TPLINK-LZMA
,tl-mr3020-v1
,$(tlmr3020_cmdline
),0x30200001,1,4Mlzma
)
860 tlmr3220_cmdline
=board
=TL-MR3220 console
=ttyS0
,115200
861 define Image
/Build
/Profile
/TLMR3220
862 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-mr3220-v1
,$(tlmr3220_cmdline
),0x32200001,1,4M
)
865 tlmr3420_cmdline
=board
=TL-MR3420 console
=ttyS0
,115200
866 define Image
/Build
/Profile
/TLMR3420
867 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-mr3420-v1
,$(tlmr3420_cmdline
),0x34200001,1,4M
)
870 tlwa701_cmdline
=board
=TL-WA901ND console
=ttyS0
,115200
871 define Image
/Build
/Profile
/TLWA701
872 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wa701n-v1
,$(tlwa701_cmdline
),0x07010001,1,4M
)
875 tlwa901_cmdline
=board
=TL-WA901ND console
=ttyS0
,115200
876 tlwa901v2_cmdline
=board
=TL-WA901ND-v2 console
=ttyS0
,115200
877 define Image
/Build
/Profile
/TLWA901
878 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wa901nd-v1
,$(tlwa901_cmdline
),0x09010001,1,4M
)
879 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wa901nd-v2
,$(tlwa901v2_cmdline
),0x09010002,1,4M
)
882 tlwr703_cmdline
=board
=TL-WR703N console
=ttyATH0
,115200
883 define Image
/Build
/Profile
/TLWR703
884 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK-LZMA
,tl-wr703n-v1
,$(tlwr703_cmdline
),0x07030101,1,4Mlzma
)
887 tlwr740_cmdline
=board
=TL-WR741ND console
=ttyS0
,115200
888 tlwr740v4_cmdline
=board
=TL-WR741ND-v4 console
=ttyATH0
,115200
889 define Image
/Build
/Profile
/TLWR740
890 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr740n-v1
,$(tlwr740_cmdline
),0x07400001,1,4M
)
891 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr740n-v3
,$(tlwr740_cmdline
),0x07400003,1,4M
)
892 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK-LZMA
,tl-wr740n-v4
,$(tlwr740v4_cmdline
),0x07400004,1,4Mlzma
)
895 tlwr741_cmdline
=board
=TL-WR741ND console
=ttyS0
,115200
896 tlwr741v4_cmdline
=board
=TL-WR741ND-v4 console
=ttyATH0
,115200
897 define Image
/Build
/Profile
/TLWR741
898 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr741nd-v1
,$(tlwr741_cmdline
),0x07410001,1,4M
)
899 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr741nd-v2
,$(tlwr741_cmdline
),0x07410001,1,4M
)
900 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK-LZMA
,tl-wr741nd-v4
,$(tlwr741v4_cmdline
),0x07410004,1,4Mlzma
)
903 define Image
/Build
/Profile
/TLWR743
904 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr743nd-v1
,$(tlwr741_cmdline
),0x07430001,1,4M
)
907 tlwr841v15_cmdline
=board
=TL-WR841N-v1.5 console
=ttyS0
,115200
908 tlwr841v3_cmdline
=board
=TL-WR941ND console
=ttyS0
,115200
909 tlwr841v5_cmdline
=board
=TL-WR741ND console
=ttyS0
,115200
910 tlwr841v7_cmdline
=board
=TL-WR841N-v7 console
=ttyS0
,115200
911 define Image
/Build
/Profile
/TLWR841
912 $(call Image
/Build
/Template
/$(fs_squash
)/$(1),TPLINKOLD
,tl-wr841n-v1.5
,$(tlwr841v15_cmdline
),0x08410002,2,4M
)
913 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr841nd-v3
,$(tlwr841v3_cmdline
),0x08410003,3,4M
)
914 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr841nd-v5
,$(tlwr841v5_cmdline
),0x08410005,1,4M
)
915 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr841nd-v7
,$(tlwr841v7_cmdline
),0x08410007,1,4M
)
918 tlwr842_cmdline
=board
=TL-MR3420 console
=ttyS0
,115200
919 define Image
/Build
/Profile
/TLWR842
920 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr842n-v1
,$(tlwr842_cmdline
),0x08420001,1,8M
)
923 tlwr941v2_cmdline
=board
=TL-WR941ND console
=ttyS0
,115200
924 tlwr941v4_cmdline
=board
=TL-WR741ND console
=ttyS0
,115200
925 define Image
/Build
/Profile
/TLWR941
926 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr941nd-v2
,$(tlwr941v2_cmdline
),0x09410002,2,4M
)
927 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr941nd-v3
,$(tlwr941v2_cmdline
),0x09410002,2,4M
)
928 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr941nd-v4
,$(tlwr941v4_cmdline
),0x09410004,1,4M
)
931 tlwr1043_cmdline
=board
=TL-WR1043ND console
=ttyS0
,115200
932 define Image
/Build
/Profile
/TLWR1043
933 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK
,tl-wr1043nd-v1
,$(tlwr1043_cmdline
),0x10430001,1,8M
)
936 tlwr2543_cmdline
=board
=TL-WR2543N console
=ttyS0
,115200
937 define Image
/Build
/Profile
/TLWR2543
938 $(call Image
/Build
/Template
/$(fs_64kraw
)/$(1),TPLINK-LZMA
,tl-wr2543n-v1
,$(tlwr2543_cmdline
),0x25430001,1,8Mlzma
)
941 wndr3700_cmdline
=board
=WNDR3700 console
=ttyS0
,115200
942 wndr3700_mtdlayout
=mtdparts
=spi0.0
:320k
(u-boot
)ro
,128k
(u-boot-env
)ro
,1024k
(kernel
),6656k
(rootfs
),64k
(art
)ro
,7680k@
0x70000(firmware
)
943 wndr3700v2_mtdlayout
=mtdparts
=spi0.0
:320k
(u-boot
)ro
,128k
(u-boot-env
)ro
,1024k
(kernel
),14848k
(rootfs
),64k
(art
)ro
,15872k@
0x70000(firmware
)
944 define Image
/Build
/Profile
/WNDR3700
945 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Netgear
,wndr3700
,$(wndr3700_cmdline
),$(wndr3700_mtdlayout
),3700,WNDR3700
,"" NA
,)
946 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Netgear
,wndr3700v2
,$(wndr3700_cmdline
),$(wndr3700v2_mtdlayout
),3701,WNDR3700v2
,"",-H
29763654+16+64)
947 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Netgear
,wndrmac
,$(wndr3700_cmdline
),$(wndr3700v2_mtdlayout
),3701,WNDRMAC
,"",-H
29763654+16+64)
948 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Netgear
,wndr3800
,$(wndr3700_cmdline
),$(wndr3700v2_mtdlayout
),3701,WNDR3800
,"",-H
29763654+16+128)
949 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Netgear
,wndrmacv2
,$(wndr3700_cmdline
),$(wndr3700v2_mtdlayout
),3701,WNDRMACv2
,"",-H
29763654+16+128)
952 wr400n_cmdline
=board
=WRT400N console
=ttyS0
,115200
953 define Image
/Build
/Profile
/WRT400N
954 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),WRT400N
,wrt400n
,$(wr400n_cmdline
))
957 dir825b1_cmdline
=board
=DIR-825-B1 console
=ttyS0
,115200
958 define Image
/Build
/Profile
/DIR825B1
959 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),DIR825B1
,dir-825-b1
,$(dir825b1_cmdline
),01AP94-AR7161-RT-080619-00
,00AP94-AR7161-RT-080619-00
)
962 tew673gru_cmdline
=board
=TEW-673GRU console
=ttyS0
,115200
963 define Image
/Build
/Profile
/TEW673GRU
964 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),DIR825B1
,tew-673gru
,$(tew673gru_cmdline
),01AP94-AR7161-RT-080619-01
,00AP94-AR7161-RT-080619-01
)
967 wrt160nl_cmdline
=board
=WRT160NL console
=ttyS0
,115200
968 define Image
/Build
/Profile
/WRT160NL
969 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),CyberTAN
,wrt160nl
,$(wrt160nl_cmdline
),1.00.01)
972 whrg301n_cmdline
=board
=WHR-G301N console
=ttyS0
,115200
973 define Image
/Build
/Profile
/WHRG301N
974 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),WHRHPG300N
,whr-g301n
,$(whrg301n_cmdline
),$(whrhpg300n_mtdlayout
),WHR-G301N
)
977 whrhpg300n_cmdline
=board
=WHR-HP-G300N console
=ttyS0
,115200
978 whrhpg300n_mtdlayout
=mtdparts
=spi0.0
:248k
(u-boot
)ro
,8k
(u-boot-env
)ro
,960k
(kernel
),2816k
(rootfs
),64k
(art
)ro
,3712k@
0x40000(firmware
)
979 define Image
/Build
/Profile
/WHRHPG300N
980 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),WHRHPG300N
,whr-hp-g300n
,$(whrhpg300n_cmdline
),$(whrhpg300n_mtdlayout
),WHR-HP-G300N
)
983 whrhpgn_cmdline
=board
=WHR-HP-GN console
=ttyS0
,115200
984 define Image
/Build
/Profile
/WHRHPGN
985 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),WHRHPG300N
,whr-hp-gn
,$(whrhpgn_cmdline
),$(whrhpg300n_mtdlayout
),WHR-HP-GN
)
988 wzrhpg300nh_cmdline
=board
=WZR-HP-G300NH console
=ttyS0
,115200
989 define Image
/Build
/Profile
/WZRHPG300NH
990 $(call Image
/Build
/Template
/$(fs_128k
)/$(1),WZRHPG30XNH
,wzr-hp-g300nh
,$(wzrhpg300nh_cmdline
),WZR-HP-G300NH
)
993 wzrhpg300nh2_cmdline
=board
=WZR-HP-G300NH2 console
=ttyS0
,115200
994 define Image
/Build
/Profile
/WZRHPG300NH2
995 $(call Image
/Build
/Template
/$(fs_128k
)/$(1),WZRHPG30XNH
,wzr-hp-g300nh2
,$(wzrhpg300nh2_cmdline
),WZR-HP-G300NH2
)
998 wzrhpag300h_cmdline
=board
=WZR-HP-AG300H console
=ttyS0
,115200
999 define Image
/Build
/Profile
/WZRHPAG300H
1000 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),WZRHPG30XNH
,wzr-hp-ag300h
,$(wzrhpag300h_cmdline
),WZR-HP-AG300H
)
1003 wzrhpg450h_cmdline
=board
=WZR-HP-G450H console
=ttyS0
,115200
1004 define Image
/Build
/Profile
/WZRHPG450H
1005 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),WZRHPG30XNH
,wzr-hp-g450h
,$(wzrhpg450h_cmdline
),WZR-HP-AG450H
)
1008 zcn1523h_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,6208k
(rootfs
),1472k
(kernel
),64k
(configure
)ro
,64k
(mfg
)ro
,64k
(art
)ro
,7680k@
0x50000(firmware
)
1009 zcn1523h28_cmdline
=board
=ZCN-1523H-2 console
=ttyS0
,115200 $(zcn1523h_mtdlayout
)
1010 define Image
/Build
/Profile
/ZCN1523H28
1011 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Zcomax
,zcn-1523h-2-8
,$(zcn1523h28_cmdline
))
1014 zcn1523h516_cmdline
=board
=ZCN-1523H-5 console
=ttyS0
,115200 $(zcn1523h_mtdlayout
)
1015 define Image
/Build
/Profile
/ZCN1523H516
1016 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),Zcomax
,zcn-1523h-5-16
,$(zcn1523h516_cmdline
))
1019 all0258n_cmdline
=board
=ALL0258N console
=ttyS0
,115200
1020 define Image
/Build
/Profile
/ALL0258N
1021 $(call Image
/Build
/Template
/$(fs_64k
)/$(1),AthLzma
,all0258n
,$(all0258n_cmdline
),,917504,5505024,KRuImage
)
1024 define Image
/Build
/Profile
/Default
1025 $(call Image
/Build
/Profile
/ALFAAP96
,$(1))
1026 $(call Image
/Build
/Profile
/ALFANX
,$(1))
1027 $(call Image
/Build
/Profile
/ALL0258N
,$(1))
1028 $(call Image
/Build
/Profile
/AP113
,$(1))
1029 $(call Image
/Build
/Profile
/AP121
,$(1))
1030 $(call Image
/Build
/Profile
/AP121MINI
,$(1))
1031 $(call Image
/Build
/Profile
/AP81
,$(1))
1032 $(call Image
/Build
/Profile
/AP83
,$(1))
1033 $(call Image
/Build
/Profile
/A02RBW300N
,$(1))
1034 $(call Image
/Build
/Profile
/DB120
,$(1))
1035 $(call Image
/Build
/Profile
/DIR600A1
,$(1))
1036 $(call Image
/Build
/Profile
/DIR601A1
,$(1))
1037 $(call Image
/Build
/Profile
/DIR615C1
,$(1))
1038 $(call Image
/Build
/Profile
/DIR615E4
,$(1))
1039 $(call Image
/Build
/Profile
/DIR825B1
,$(1))
1040 $(call Image
/Build
/Profile
/EAP7660D
,$(1))
1041 $(call Image
/Build
/Profile
/FR54RTR
,$(1))
1042 $(call Image
/Build
/Profile
/HORNETUB
,$(1))
1043 $(call Image
/Build
/Profile
/JA76PF
,$(1))
1044 $(call Image
/Build
/Profile
/JA76PF2
,$(1))
1045 $(call Image
/Build
/Profile
/JWAP003
,$(1))
1046 $(call Image
/Build
/Profile
/MZKW04NU
,$(1))
1047 $(call Image
/Build
/Profile
/MZKW300NH
,$(1))
1048 $(call Image
/Build
/Profile
/NBG_460N_550N_550NH
,$(1))
1049 $(call Image
/Build
/Profile
/OM2P
,$(1))
1050 $(call Image
/Build
/Profile
/PB42
,$(1))
1051 $(call Image
/Build
/Profile
/PB44
,$(1))
1052 $(call Image
/Build
/Profile
/PB92
,$(1))
1053 $(call Image
/Build
/Profile
/RW2458N
,$(1))
1054 $(call Image
/Build
/Profile
/TEW632BRP
,$(1))
1055 $(call Image
/Build
/Profile
/TEW652BRP
,$(1))
1056 $(call Image
/Build
/Profile
/TEW673GRU
,$(1))
1057 $(call Image
/Build
/Profile
/TLMR11U
,$(1))
1058 $(call Image
/Build
/Profile
/TLMR3020
,$(1))
1059 $(call Image
/Build
/Profile
/TLMR3220
,$(1))
1060 $(call Image
/Build
/Profile
/TLMR3420
,$(1))
1061 $(call Image
/Build
/Profile
/TLWA701
,$(1))
1062 $(call Image
/Build
/Profile
/TLWA901
,$(1))
1063 $(call Image
/Build
/Profile
/TLWR703
,$(1))
1064 $(call Image
/Build
/Profile
/TLWR740
,$(1))
1065 $(call Image
/Build
/Profile
/TLWR741
,$(1))
1066 $(call Image
/Build
/Profile
/TLWR743
,$(1))
1067 $(call Image
/Build
/Profile
/TLWR841
,$(1))
1068 $(call Image
/Build
/Profile
/TLWR842
,$(1))
1069 $(call Image
/Build
/Profile
/TLWR941
,$(1))
1070 $(call Image
/Build
/Profile
/TLWR1043
,$(1))
1071 $(call Image
/Build
/Profile
/TLWR2543
,$(1))
1072 $(call Image
/Build
/Profile
/UBNT
,$(1))
1073 $(call Image
/Build
/Profile
/WP543
,$(1))
1074 $(call Image
/Build
/Profile
/WPE72
,$(1))
1075 $(call Image
/Build
/Profile
/WNDR3700
,$(1))
1076 $(call Image
/Build
/Profile
/AP96
,$(1))
1077 $(call Image
/Build
/Profile
/WRT400N
,$(1))
1078 $(call Image
/Build
/Profile
/WRT160NL
,$(1))
1079 $(call Image
/Build
/Profile
/WHRG301N
,$(1))
1080 $(call Image
/Build
/Profile
/WHRHPG300N
,$(1))
1081 $(call Image
/Build
/Profile
/WHRHPGN
,$(1))
1082 $(call Image
/Build
/Profile
/WZRHPG300NH
,$(1))
1083 $(call Image
/Build
/Profile
/WZRHPG300NH2
,$(1))
1084 $(call Image
/Build
/Profile
/WZRHPAG300H
,$(1))
1085 $(call Image
/Build
/Profile
/WZRHPG450H
,$(1))
1086 $(call Image
/Build
/Profile
/ZCN1523H28
,$(1))
1087 $(call Image
/Build
/Profile
/ZCN1523H516
,$(1))
1090 define Image
/Build
/Profile
/Minimal
1091 $(call Image
/Build
/Profile
/Default
,$(1))
1094 define Image
/Build
/Profile
/Madwifi
1095 $(call Image
/Build
/Profile
/EAP7660D
,$(1))
1096 $(call Image
/Build
/Profile
/UBNTRS
,$(1))
1097 $(call Image
/Build
/Profile
/UBNTRSPRO
,$(1))
1098 $(call Image
/Build
/Profile
/UBNTLSSR71
,$(1))
1099 $(call Image
/Build
/Profile
/WP543
,$(1))
1102 define Image
/Build
/squashfs
1103 cp
$(KDIR
)/root.squashfs
$(KDIR
)/root.squashfs-raw
1104 cp
$(KDIR
)/root.squashfs
$(KDIR
)/root.squashfs-64k
1105 $(STAGING_DIR_HOST
)/bin
/padjffs2
$(KDIR
)/root.squashfs-64k
64
1106 cp
$(KDIR
)/root.squashfs-64k
$(BIN_DIR
)/$(IMG_PREFIX
)-root.squashfs-64k
1107 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
1110 define Image
/Build
/Initramfs
1111 $(call Image
/Build
/Profile
/$(PROFILE
),initramfs
)
1114 define Image
/Prepare
1115 gzip
-9 -c
$(KDIR
)/vmlinux
> $(KDIR
)/vmlinux.bin.gz
1116 $(call CompressLzma
,$(KDIR
)/vmlinux
,$(KDIR
)/vmlinux.bin.lzma
)
1117 $(call Image
/Build
/Profile
/Default
,loader
)
1121 $(call Image
/Build
/$(1))
1122 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) bs
=128k conv
=sync
1123 $(call Image
/Build
/Profile
/$(PROFILE
),$(1))
1126 $(eval
$(call BuildImage
))