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
10 IMAGE_PROFILE
:=$(if
$(PROFILE
),$(PROFILE
),Default
)
12 JFFS2_BLOCKSIZE
= 64k
128k
256k
14 KERNEL_LOADADDR
= 0x80060000
16 DEVICE_VARS
+= NETGEAR_KERNEL_MAGIC NETGEAR_BOARD NETGEAR_ID CMDLINE CONSOLE
18 define Build
/netgear-squashfs
19 rm -rf
$@.fs
$@.squashfs
21 cp
$@
$@.fs
/image
/uImage
22 $(STAGING_DIR_HOST
)/bin
/mksquashfs-lzma \
24 -noappend
-root-owned
-be
-b
65536
25 dd if
=/dev
/zero bs
=1k count
=1 >> $@.squashfs
27 -A mips
-O linux
-T filesystem
-C none \
28 -M
$(NETGEAR_KERNEL_MAGIC
) \
29 -a
0xbf070000 -e
0xbf070000 \
30 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
32 rm -rf
$@.squashfs
$@.fs
35 define Build
/netgear-uImage
36 $(call Build
/uImage
,$(1) -M
$(NETGEAR_KERNEL_MAGIC
))
39 define Build
/netgear-image
40 $(STAGING_DIR_HOST
)/bin
/mkdniimg \
41 -B
$(NETGEAR_BOARD
) -v OpenWrt.
$(REVISION
) \
42 $(if
$(NETGEAR_ID
),-H
$(NETGEAR_ID
)) \
50 DEVICE_PROFILE
= $$(BOARDNAME
)
51 PROFILES
= Default Minimal
$$(DEVICE_PROFILE
)
53 IMAGES
:= sysupgrade.bin
55 FILESYSTEMS
= $(filter-out jffs2-
%,$(TARGET_FILESYSTEMS
)) jffs2-
$$(BLOCKSIZE
)
56 CONSOLE
= ttyS0
,115200
57 CMDLINE
= $$(if
$$(BOARDNAME
),board
=$$(BOARDNAME
)) $$(if
$$(MTDPARTS
),mtdparts
=$$(MTDPARTS
)) $$(if
$$(CONSOLE
),console
=$$(CONSOLE
))
58 KERNEL
:= kernel-bin | patch-cmdline | lzma | uImage lzma
59 IMAGES
:= sysupgrade.bin
60 IMAGE
/sysupgrade.bin
= append-kernel
$$$$(BLOCKSIZE
) | append-rootfs | pad-rootfs | check-size
$$$$(IMAGE_SIZE
)
63 define Device
/carambola2
64 BOARDNAME
= CARAMBOLA2
66 CONSOLE
= ttyATH0
,115200
67 MTDPARTS
= spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,16000k
(firmware
),64k
(art
)ro
69 TARGET_DEVICES
+= carambola2
71 define Device
/wndr3700
73 NETGEAR_KERNEL_MAGIC
= 0x33373030
74 NETGEAR_BOARD
= WNDR3700
75 MTDPARTS
= spi0.0
:320k
(u-boot
)ro
,128k
(u-boot-env
)ro
,7680k
(firmware
),64k
(art
)ro
76 IMAGES
:= sysupgrade.bin factory.img factory-NA.img
77 KERNEL
:= kernel-bin | patch-cmdline | lzma
-d20 | netgear-uImage lzma
78 IMAGE
/sysupgrade.bin
= append-kernel
$$$$(BLOCKSIZE
) | netgear-squashfs | append-rootfs | pad-rootfs | check-size
$$$$(IMAGE_SIZE
)
79 IMAGE
/factory.img
= $$(IMAGE
/sysupgrade.bin
) | netgear-image
80 IMAGE
/factory-NA.img
= $$(IMAGE
/sysupgrade.bin
) | netgear-image NA
83 define Device
/wndr3700v2
85 NETGEAR_BOARD
= WNDR3700v2
86 NETGEAR_KERNEL_MAGIC
= 0x33373031
87 NETGEAR_ID
= 29763654+16+64
88 MTDPARTS
= spi0.0
:320k
(u-boot
)ro
,128k
(u-boot-env
)ro
,15872k
(firmware
),64k
(art
)ro
89 IMAGES
:= sysupgrade.bin factory.img
92 define Device
/wndr3800
94 NETGEAR_BOARD
= WNDR3800
95 NETGEAR_ID
= 29763654+16+128
98 define Device
/wndr3800ch
100 NETGEAR_BOARD
= WNDR3800CH
103 define Device
/wndrmac
105 NETGEAR_BOARD
= WNDRMAC
108 define Device
/wndrmacv2
110 NETGEAR_BOARD
= WNDRMACv2
113 TARGET_DEVICES
+= wndr3700 wndr3700v2 wndr3800 wndr3800ch wndrmac wndrmacv2
115 rootfs_type
=$(patsubst jffs2-
%,jffs2
,$(patsubst squashfs-
%,squashfs
,$(1)))
120 $(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(call rootfs_type
,$(1))
124 $(patsubst %-256k
,0x40000,$(patsubst %-128k
,0x20000,$(patsubst %-64k
,0x10000,$(patsubst squashfs
%,0x4,$(patsubst root.
%,%,$(1))))))
128 $(call imgname
,$(1),$(2))-sysupgrade.bin
132 $(call imgname
,$(1),$(2))-factory.bin
138 $(if
$(1),board
=$(1) )$(if
$(2),console
=$(2)$(COMMA
)$(3))
142 $(shell sz
=`echo '$(2)' | sed -ne 's/.*[:$(COMMA)]\([0-9]*\)k[@]*[0-9a-zx]*($(1)).*/\1/p'`; [ -n
"$$sz" ] && echo
$$(($$sz * 1024)))
147 # $(1) : name of image build method to be used, e.g., TPLINK-LZMA, AthLzma.
148 # $(2) : name of the build template to be used, e.g. 64k, 64kraw, 128k, etc.
149 # $(3) : name of the profile to be defined.
151 # $(5)~$(7) : arguments for $(mkcmdline)
152 # board=$(1) console=$(2),$(3)
153 # $(8)~$(14): extra arguments.
155 # $(1): action name, e.g. loader, buildkernel, squashfs, etc.
156 define Image
/Build
/Profile
/$(3)
157 $$(call Image
/Build
/Template
/$(2)/$$(1),$(1),$(4),$$(call mkcmdline
,$(5),$(6),$(7)),$(8),$(9),$(10),$(11),$(12),$(13),$(14))
159 SINGLE_PROFILES
+= $(3)
162 # $(1), name of the MultiProfile to be added.
163 # $(2), name of Profiles to be included in the MultiProfile.
165 define Image
/Build
/Profile
/$(1)
167 $$(call Image
/Build
/Profile
/$p,$$(1))
172 LOADER_MAKE
:= $(NO_TRACE_MAKE
) -C lzma-loader KDIR
=$(KDIR
)
174 KDIR_TMP
:=$(KDIR
)/tmp
175 VMLINUX
:=$(BIN_DIR
)/$(IMG_PREFIX
)-vmlinux
176 UIMAGE
:=$(BIN_DIR
)/$(IMG_PREFIX
)-uImage
180 # $(3): extra arguments for lzma.
182 $(STAGING_DIR_HOST
)/bin
/lzma e
$(1) -lc1
-lp2
-pb2
$(3) $(2)
186 cp
$(KDIR
)/vmlinux
$(3) $(KDIR_TMP
)/vmlinux
$(3)-$(1)
187 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR_TMP
)/vmlinux
$(3)-$(1) "$(strip $(2))"
190 define PatchKernel
/initramfs
191 $(call PatchKernel
,$(1),$(2),-initramfs
)
192 cp
$(KDIR_TMP
)/vmlinux-initramfs-
$(1) $(call imgname
,initramfs
,$(1)).bin
196 # $(2): kernel command line.
197 # $(3): extra argumetns for lzma.
198 # $(4): name suffix, e.g. "-initramfs".
199 define PatchKernelLzma
200 cp
$(KDIR
)/vmlinux
$(4) $(KDIR_TMP
)/vmlinux
$(4)-$(1)
201 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR_TMP
)/vmlinux
$(4)-$(1) "$(strip $(2))"
202 $(call CompressLzma
,$(KDIR_TMP
)/vmlinux
$(4)-$(1),$(KDIR_TMP
)/vmlinux
$(4)-$(1).bin.lzma
,$(3))
205 define PatchKernelGzip
206 cp
$(KDIR
)/vmlinux
$(3) $(KDIR_TMP
)/vmlinux
$(3)-$(1)
207 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR_TMP
)/vmlinux
$(3)-$(1) "$(strip $(2))"
208 gzip
-9 -c
$(KDIR_TMP
)/vmlinux
$(3)-$(1) > $(KDIR_TMP
)/vmlinux
$(3)-$(1).bin.gz
211 ifneq ($(SUBTARGET
),mikrotik
)
212 # $(1): compression method of the data.
213 # $(2): extra arguments.
214 # $(3): input data file.
217 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C
$(1) $(2) \
218 -e
0x80060000 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
223 # $(2): kernel command line.
224 # $(3): extra arguments for lzma.
225 # $(4): name suffix, e.g. "-initramfs".
226 # $(5): extra arguments for mkimage.
228 $(call PatchKernelLzma
,$(1),$(2),$(3),$(4))
229 $(call MkuImage
,lzma
,$(5),$(KDIR_TMP
)/vmlinux
$(4)-$(1).bin.lzma
,$(KDIR_TMP
)/vmlinux
$(4)-$(1).uImage
)
232 define MkuImageLzma
/initramfs
233 $(call PatchKernelLzma
,$(1),$(2),$(3),-initramfs
)
234 $(call MkuImage
,lzma
,$(4),$(KDIR_TMP
)/vmlinux-initramfs-
$(1).bin.lzma
,$(call imgname
,initramfs
,$(1))-uImage.bin
)
238 $(call PatchKernelGzip
,$(1),$(2))
239 $(call MkuImage
,gzip
,,$(KDIR_TMP
)/vmlinux-
$(1).bin.gz
,$(KDIR_TMP
)/vmlinux-
$(1).uImage
)
242 define MkuImageGzip
/initramfs
243 $(call PatchKernelGzip
,$(1),$(2),-initramfs
)
244 $(call MkuImage
,gzip
,,$(KDIR_TMP
)/vmlinux-initramfs-
$(1).bin.gz
,$(call imgname
,initramfs
,$(1))-uImage.bin
)
248 $(call MkuImage
,lzma
,-M
0x4f4b4c49,$(KDIR
)/vmlinux.bin.lzma
,$(KDIR_TMP
)/vmlinux-
$(1).okli
)
252 # $(1): name of the 1st file.
253 # $(2): size limit of the 1st file if it is greater than 262144, or
254 # the erase size of the flash if it is greater than zero and less
256 # $(3): name of the 2nd file.
257 # $(4): size limit of the 2nd file if $(2) is greater than 262144, otherwise
258 # it is the size limit of the output file
259 # $(5): name of the output file.
260 # $(6): padding size.
262 if
[ $(2) -eq
0 ]; then \
263 filename
="$(3)"; fstype
=$$$${filename
##*\.}; \
264 case
"$$$${fstype}" in \
265 "jffs2-64k") bs
=65536;; \
266 "jffs2-128k") bs
=131072;; \
267 "jffs2-256k") bs
=262144;; \
268 *) bs
=`stat -c%s $(1)`;; \
270 ( dd if
=$(1) bs
=$$$${bs} conv
=sync
; cat
$(3) ) > $(5); \
271 if
[ -n
"$(6)" ]; then \
272 case
"$$$${fstype}" in \
274 padjffs2
$(5) $(6); \
278 if
[ `stat -c%s $(5)` -gt
$(4) ]; then \
279 echo
"Warning: $(5) is too big (> $(4) bytes)" >&2; \
282 else if
[ $(2) -gt
262144 ]; then \
283 if
[ `stat -c%s "$(1)"` -gt
$(2) ]; then \
284 echo
"Warning: $(1) is too big (> $(2) bytes)" >&2; \
285 else if
[ `stat -c%s $(3)` -gt
$(4) ]; then \
286 echo
"Warning: $(3) is too big (> $(4) bytes)" >&2; \
288 ( dd if
=$(1) bs
=$(2) conv
=sync
; dd if
=$(3) ) > $(5); \
291 ( dd if
=$(1) bs
=$(2) conv
=sync
; dd if
=$(3) ) > $(5); \
292 if
[ `stat -c%s $(5)` -gt
$(4) ]; then \
293 echo
"Warning: $(5) is too big (> $(4) bytes)" >&2; \
301 # $(3): kernel image size limit.
302 # $(4): rootfs image size limit.
303 # $(5): padding argument for padjffs2.
304 Sysupgrade
/KR
=$(call CatFiles
,$(2),$(3),$(KDIR
)/root.
$(1),$(4),$(call sysupname
,$(1),$(5)))
305 Sysupgrade
/KRuImage
=$(call CatFiles
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
,$(3),$(KDIR
)/root.
$(1),$(4),$(call sysupname
,$(1),$(2)),$(5))
306 Sysupgrade
/RKuImage
=$(call CatFiles
,$(KDIR
)/root.
$(1),$(4),$(KDIR_TMP
)/vmlinux-
$(2).uImage
,$(3),$(call sysupname
,$(1),$(2)))
308 # $(1): ubinize ini file
309 # $(2): working directory
311 # $(4): physical erase block size
312 # $(5): minimum I/O unit size
313 # $(6): custom options
316 ( cd
$(2); $(STAGING_DIR_HOST
)/bin
/ubinize
-o
$(3) -p
$(4) -m
$(5) $(6) $(1))
320 # Embed lzma-compressed kernel inside lzma-loader.
322 # $(1), suffix of output filename, e.g. generic, lowercase board name, etc.
323 # $(2), suffix of target file to build, e.g. bin, gz, elf
324 # $(3), kernel command line to pass from lzma-loader to kernel
326 # $(5), suffix of kernel filename, e.g. -initramfs, or empty
327 define Image
/BuildLoader
328 -rm -rf
$(KDIR
)/lzma-loader
329 $(LOADER_MAKE
) LOADER
=loader-
$(1).
$(2) KERNEL_CMDLINE
="$(3)"\
330 LZMA_TEXT_START
=0x80a00000 LOADADDR
=0x80060000 \
331 LOADER_DATA
="$(KDIR)/vmlinux$(5).bin.lzma" BOARD
="$(1)" \
333 -$(CP
) $(KDIR
)/loader-
$(1).
$(2) $(KDIR
)/loader-
$(1)$(5).
$(2)
337 # Build lzma-loader alone which will search for lzma-compressed kernel identified by
338 # uImage header with magic "OKLI" at boot time.
340 # $(4), offset into the flash space to start searching uImage magic "OKLI".
341 # $(5), size of search range starting at $(4). With 0 as the value, uImage
342 # header is expected to be at precisely $(4)
343 define Image
/BuildLoaderAlone
344 -rm -rf
$(KDIR
)/lzma-loader
345 $(LOADER_MAKE
) LOADER
=loader-
$(1).
$(2) KERNEL_CMDLINE
="$(3)" \
346 LZMA_TEXT_START
=0x80a00000 LOADADDR
=0x80060000 \
347 BOARD
="$(1)" FLASH_OFFS
=$(4) FLASH_MAX
=$(5) \
356 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
)
357 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
)
358 alfa_mtdlayout_16M
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,15936k
(firmware
),64k
(nvram
),64k
(art
)ro
359 all0258n_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
),64k
(u-boot-env
),6272k
(firmware
),1536k
(failsafe
),64k
(art
)
360 all0315n_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,256k
(u-boot-env
),13568k
(firmware
),2048k
(failsafe
),256k
(art
)ro
361 ap81_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,5120k
(rootfs
),2688k
(kernel
),64k
(art
)ro
,7808k@
0x50000(firmware
)
362 ap83_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,128k
(u-boot-env
)ro
,4096k
(rootfs
),3648k
(kernel
),64k
(art
)ro
,7744k@
0x60000(firmware
)
363 ap96_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(u-boot-env
)ro
,6144k
(rootfs
),1728k
(kernel
),64k
(art
)ro
,7872k@
0x40000(firmware
)
364 ap113_mtd_layout
=mtdparts
=spi0.0
:64k
(u-boot
),3008k
(rootfs
),896k
(uImage
),64k
(NVRAM
),64k
(ART
),3904k@
0x10000(firmware
)
365 ap121_mtdlayout_2M
=mtdparts
=spi0.0
:64k
(u-boot
)ro
,1216k
(rootfs
),704k
(kernel
),64k
(art
)ro
,1920k@
0x10000(firmware
)
366 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
)
367 ap132_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1408k
(kernel
),6400k
(rootfs
),64k
(art
),7808k@
0x50000(firmware
)
368 ap135_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,14528k
(rootfs
),1472k
(kernel
),64k
(art
)ro
,16000k@
0x50000(firmware
)
369 ap136_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,6336k
(rootfs
),1408k
(kernel
),64k
(mib0
),64k
(art
)ro
,7744k@
0x50000(firmware
)
370 bxu2000n2_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1408k
(kernel
),8448k
(rootfs
),6016k
(user
),64k
(cfg
),64k
(oem
),64k
(art
)ro
371 cameo_ap81_mtdlayout
=mtdparts
=spi0.0
:128k
(u-boot
)ro
,64k
(config
)ro
,3840k
(firmware
),64k
(art
)ro
372 cameo_ap91_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(nvram
)ro
,3712k
(firmware
),64k
(mac
)ro
,64k
(art
)ro
373 cameo_ap99_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(nvram
)ro
,3520k
(firmware
),64k
(mac
)ro
,192k
(lp
)ro
,64k
(art
)ro
374 cameo_ap121_mtdlayout
=mtdparts
=spi0.0
:64k
(u-boot
)ro
,64k
(art
)ro
,64k
(mac
)ro
,64k
(nvram
)ro
,192k
(language
)ro
,3648k
(firmware
)
375 cameo_ap121_mtdlayout_8M
=mtdparts
=spi0.0
:64k
(u-boot
)ro
,64k
(art
)ro
,64k
(mac
)ro
,64k
(nvram
)ro
,256k
(language
)ro
,7680k@
0x80000(firmware
)
376 cameo_db120_mtdlayout
=mtdparts
=spi0.0
:64k
(uboot
)ro
,64k
(nvram
)ro
,15936k
(firmware
),192k
(lang
)ro
,64k
(mac
)ro
,64k
(art
)ro
377 cameo_db120_mtdlayout_8M
=mtdparts
=spi0.0
:64k
(uboot
)ro
,64k
(nvram
)ro
,7872k
(firmware
),128k
(lang
)ro
,64k
(art
)ro
378 cap4200ag_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
),64k
(u-boot-env
),320k
(custom
)ro
,1536k
(kernel
),12096k
(rootfs
),2048k
(failsafe
),64k
(art
),13632k@
0xa0000(firmware
)
379 cpe510_mtdlayout
=mtdparts
=spi0.0
:128k
(u-boot
)ro
,64k
(pation-table
)ro
,64k
(product-info
)ro
,1536k
(kernel
),6144k
(rootfs
),192k
(config
)ro
,64k
(ART
)ro
,7680k@
0x40000(firmware
)
380 eap300v2_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
),320k
(custom
),13632k
(firmware
),2048k
(failsafe
),64k
(art
)ro
381 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
)
382 dgl_5500_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(nvram
)ro
,15296k
(firmware
),192k
(lang
)ro
,512k
(my-dlink
)ro
,64k
(mac
)ro
,64k
(art
)ro
383 cameo_ap94_mtdlayout
=mtdparts
=spi0.0
:256k
(uboot
)ro
,64k
(config
)ro
,6208k
(firmware
),64k
(caldata
)ro
,1600k
(unknown
)ro
,64k@
0x7f0000(caldata_copy
)
384 cameo_ap94_mtdlayout_fat
=mtdparts
=spi0.0
:256k
(uboot
)ro
,64k
(config
)ro
,7808k
(firmware
),64k
(caldata
)ro
,64k@
0x660000(caldata_orig
),6208k@
0x50000(firmware_orig
)
385 esr900_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1408k
(kernel
),13248k
(rootfs
),1024k
(manufacture
)ro
,64k
(backup
)ro
,320k
(storage
)ro
,64k
(caldata
)ro
,14656k@
0x40000(firmware
)
386 esr1750_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1408k
(kernel
),13248k
(rootfs
),1024k
(manufacture
)ro
,64k
(backup
)ro
,320k
(storage
)ro
,64k
(caldata
)ro
,14656k@
0x40000(firmware
)
387 ew-dorin_mtdlayout_4M
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
),3712k
(firmware
),64k
(art
)
388 ew-dorin_mtdlayout_16M
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
),16000k
(firmware
),64k
(art
)
389 f9k1115v2_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
),14464k
(rootfs
),1408k
(kernel
),64k
(nvram
)ro
,64k
(envram
)ro
,64k
(art
)ro
,15872k@
0x50000(firmware
)
390 dlrtdev_mtdlayout
=mtdparts
=spi0.0
:256k
(uboot
)ro
,64k
(config
)ro
,6208k
(firmware
),64k
(caldata
)ro
,640k
(certs
),960k
(unknown
)ro
,64k@
0x7f0000(caldata_copy
)
391 dlrtdev_mtdlayout_fat
=mtdparts
=spi0.0
:256k
(uboot
)ro
,64k
(config
)ro
,7168k
(firmware
),640k
(certs
),64k
(caldata
)ro
,64k@
0x660000(caldata_orig
),6208k@
0x50000(firmware_orig
)
392 dragino2_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,16000k
(firmware
),64k
(config
)ro
,64k
(art
)ro
393 hiwifi_hc6361_mtdlayout
=mtdparts
=spi0.0
:64k
(u-boot
)ro
,64k
(bdinfo
)ro
,1280k
(kernel
),14848k
(rootfs
),64k
(backup
)ro
,64k
(art
)ro
,16128k@
0x20000(firmware
)
394 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
)
395 planex_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,7744k
(firmware
),128k
(art
)ro
396 ubntxm_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,7552k
(firmware
),256k
(cfg
)ro
,64k
(EEPROM
)ro
397 uap_pro_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1536k
(kernel
),14208k
(rootfs
),256k
(cfg
)ro
,64k
(EEPROM
)ro
,15744k@
0x50000(firmware
)
398 ubdev_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,7488k
(firmware
),64k
(certs
),256k
(cfg
)ro
,64k
(EEPROM
)ro
399 whrhpg300n_mtdlayout
=mtdparts
=spi0.0
:248k
(u-boot
)ro
,8k
(u-boot-env
)ro
,3712k
(firmware
),64k
(art
)ro
400 wlr8100_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1408k
(kernel
),14080k
(rootfs
),192k
(unknown
)ro
,64k
(art
)ro
,384k
(unknown2
)ro
,15488k@
0x40000(firmware
)
401 wndap360_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,1728k
(kernel
),6016k
(rootfs
),64k
(nvram
)ro
,64k
(art
)ro
,7744k@
0x50000(firmware
)
402 wnr2200_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,7808k
(firmware
),64k
(art
)ro
403 wnr2000v3_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,3712k
(firmware
),64k
(art
)ro
404 wnr2000v4_mtdlayout
=mtdparts
=spi0.0
:192k
(u-boot
)ro
,64k
(u-boot-env
)ro
,3776k
(firmware
),64k
(art
)ro
405 r6100_mtdlayout
=mtdparts
=ar934x-nfc
:128k
(u-boot
)ro
,256k
(caldata
),256k
(caldata-backup
),512k
(config
),512k
(pot
),2048k
(kernel
),122240k
(ubi
),25600k@
0x1a0000(firmware
),2048k
(language
),3072k
(traffic_meter
)
406 wndr4300_mtdlayout
=mtdparts
=ar934x-nfc
:256k
(u-boot
)ro
,256k
(u-boot-env
)ro
,256k
(caldata
),512k
(pot
),2048k
(language
),512k
(config
),3072k
(traffic_meter
),2048k
(kernel
),23552k
(ubi
),25600k@
0x6c0000(firmware
),256k
(caldata_backup
),-(reserved
)
407 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
)
408 mynet_n600_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
)ro
,64k
(devdata
)ro
,64k
(devconf
)ro
,15872k
(firmware
),64k
(radiocfg
)ro
409 mynet_rext_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,7808k
(firmware
),64k
(nvram
)ro
,64k
(ART
)ro
,6848k@
0x130000(filesystem
)
410 zyx_nbg6716_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(env
)ro
,64k
(RFdata
)ro
,-(nbu
);ar934x-nfc
:2048k
(zyxel_rfsd
),2048k
(romd
),1024k
(header
),2048k
(kernel
),-(ubi
)
411 qihoo_c301_mtdlayout
=mtdparts
=spi0.0
:256k
(u-boot
)ro
,64k
(u-boot-env
),64k
(devdata
),64k
(devconf
),15744k
(firmware
),64k
(warm_start
),64k
(action_image_config
),64k
(radiocfg
)ro
;spi0.1
:15360k
(upgrade2
),1024k
(privatedata
)
414 define Image
/BuildKernel
415 cp
$(KDIR
)/vmlinux.elf
$(VMLINUX
).elf
416 cp
$(KDIR
)/vmlinux
$(VMLINUX
).bin
417 dd if
=$(KDIR
)/vmlinux.bin.lzma of
=$(VMLINUX
).lzma bs
=65536 conv
=sync
418 dd if
=$(KDIR
)/vmlinux.bin.gz of
=$(VMLINUX
).gz bs
=65536 conv
=sync
419 $(call MkuImage
,gzip
,,$(KDIR
)/vmlinux.bin.gz
,$(UIMAGE
)-gzip.bin
)
420 $(call MkuImage
,lzma
,,$(KDIR
)/vmlinux.bin.lzma
,$(UIMAGE
)-lzma.bin
)
421 cp
$(KDIR
)/loader-generic.elf
$(VMLINUX
)-lzma.elf
422 -mkdir
-p
$(KDIR_TMP
)
423 $(call Image
/Build
/Profile
/$(IMAGE_PROFILE
),buildkernel
)
424 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),)
425 cp
$(KDIR
)/vmlinux-initramfs.elf
$(VMLINUX
)-initramfs.elf
426 cp
$(KDIR
)/vmlinux-initramfs
$(VMLINUX
)-initramfs.bin
427 dd if
=$(KDIR
)/vmlinux-initramfs.bin.lzma of
=$(VMLINUX
)-initramfs.lzma bs
=65536 conv
=sync
428 dd if
=$(KDIR
)/vmlinux-initramfs.bin.gz of
=$(VMLINUX
)-initramfs.gz bs
=65536 conv
=sync
429 $(call MkuImage
,gzip
,,$(KDIR
)/vmlinux-initramfs.bin.gz
,$(UIMAGE
)-initramfs-gzip.bin
)
430 $(call MkuImage
,lzma
,,$(KDIR
)/vmlinux-initramfs.bin.lzma
,$(UIMAGE
)-initramfs-lzma.bin
)
431 cp
$(KDIR
)/loader-generic-initramfs.elf
$(VMLINUX
)-initramfs-lzma.elf
432 $(call Image
/Build
/Initramfs
)
436 Image
/Build
/WRT400N
/buildkernel
=$(call MkuImageLzma
,$(2),$(3))
438 define Image
/Build
/WRT400N
439 $(call Sysupgrade
/KRuImage
,$(1),$(2),1310720,6488064)
440 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
441 wrt400n
$(KDIR_TMP
)/vmlinux-
$(2).uImage
$(KDIR
)/root.
$(1) $(call factoryname
,$(1),$(2)); \
446 define Image
/Build
/CameoAP94
/buildkernel
447 $(call MkuImageLzma
,$(2),$(3) $(4))
448 $(call MkuImageLzma
,$(2)-fat
,$(3) $(5))
451 define Image
/Build
/CameoAP94
452 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
453 $(eval fwsize_fat
=$(call mtdpartsize
,firmware
,$(5)))
454 $(call Sysupgrade
/KRuImage
,$(1),$(2),0,$$$$(($(fwsize
)-4*64*1024)),64)
455 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
457 dd if
=$(call sysupname
,$(1),$(2)); \
459 ) > $(call imgname
,$(1),$(2))-backup-loader.bin
; \
460 if
[ `stat -c%s $(call sysupname,$(1),$(2))` -gt
4194304 ]; then \
461 echo
"Warning: $(call sysupname,$(1),$(2)) is too big" >&2; \
464 dd if
=$(call sysupname
,$(1),$(2)) bs
=4096k conv
=sync
; \
466 ) > $(call factoryname
,$(1),$(2)); \
469 $(call CatFiles
,$(KDIR_TMP
)/vmlinux-
$(2)-fat.uImage
,0,$(KDIR
)/root.
$(1),$$$$(($(fwsize_fat
)-4*64*1024)),$(KDIR_TMP
)/$(2)-fat.bin
,64)
470 if
[ -e
"$(KDIR_TMP)/$(2)-fat.bin" ]; then \
471 echo
-n
"" > $(KDIR_TMP
)/$(2)-fat.dummy
; \
472 sh
$(TOPDIR
)/scripts
/combined-image.sh \
473 "$(KDIR_TMP)/$(2)-fat.bin" \
474 "$(KDIR_TMP)/$(2)-fat.dummy" \
475 $(call sysupname
,$(1),$(2)-fat
); \
479 define Image
/Build
/WZRHP
480 $(call Sysupgrade
/KRuImage
,$(1),$(2),0,$$$$(($(3)-4*$(4)*1024)),$(4))
481 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
483 echo
-n
-e
"# Airstation Public Fmt1\x00\x00\x00\x00\x00\x00\x00\x00"; \
484 dd if
=$(call sysupname
,$(1),$(2)); \
485 ) > $(call imgname
,$(1),$(2))-tftp.bin
; \
486 buffalo-enc
-p
$(5) -v
1.99 \
487 -i
$(call sysupname
,$(1),$(2)) \
488 -o
$(KDIR_TMP
)/$(2).enc
; \
489 buffalo-tag
-b
$(5) -p
$(5) -a ath
-v
1.99 -m
1.01 -l mlang8 \
490 -w
3 -c
0x80041000 -d
0x801e8000 -f
1 -r M_ \
491 -i
$(KDIR_TMP
)/$(2).enc \
492 -o
$(call factoryname
,$(1),$(2)); \
496 Image
/Build
/WZRHP64K
/buildkernel
=$(call MkuImageLzma
,$(2),$(3))
497 Image
/Build
/WZRHP64K
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
498 Image
/Build
/WZRHP64K
=$(call Image
/Build
/WZRHP
,$(1),$(2),33095680,64,$(4))
500 Image
/Build
/WZRHP128K
/buildkernel
=$(call MkuImageLzma
,$(2),$(3))
501 Image
/Build
/WZRHP128K
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
502 Image
/Build
/WZRHP128K
=$(call Image
/Build
/WZRHP
,$(1),$(2),33030144,128,$(4))
505 Image
/Build
/WHRHPG300N
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
506 Image
/Build
/WHRHPG300N
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
508 define Image
/Build
/WHRHPG300N
509 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
510 $(call Sysupgrade
/KRuImage
,$(1),$(2),0,$$$$(($(fwsize
)-4*64*1024)),64)
511 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
513 echo
-n
-e
"# Airstation Public Fmt1\x00\x00\x00\x00\x00\x00\x00\x00"; \
514 dd if
=$(call sysupname
,$(1),$(2)); \
515 ) > $(call imgname
,$(1),$(2))-tftp.bin
; \
516 buffalo-enc
-p
$(5) -v
1.99 \
517 -i
$(call sysupname
,$(1),$(2)) \
518 -o
$(KDIR_TMP
)/$(2).enc
; \
519 buffalo-tag
-b
$(5) -p
$(5) -a ath
-v
1.99 -m
1.01 -l mlang8 \
520 -w
3 -c
0x80041000 -d
0x801e8000 -f
1 -r M_ \
521 -i
$(KDIR_TMP
)/$(2).enc \
522 -o
$(call factoryname
,$(1),$(2)); \
527 define Image
/Build
/Cameo
528 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
529 $(call Sysupgrade
/KRuImage
,$(1),$(2),0,$$$$(($(fwsize
)-4*64*1024)),64)
530 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
531 factory_size
=$$$$(($(fwsize
) - $(6))); \
533 dd if
=$(call sysupname
,$(1),$(2)) bs
=$$$${factory_size} conv
=sync
; \
535 ) > $(call factoryname
,$(1),$(2)); \
539 Image
/Build
/CameoAP81
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(cameo_ap81_mtdlayout
))
540 Image
/Build
/CameoAP81
=$(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(cameo_ap81_mtdlayout
),$(4),65536)
541 Image
/Build
/CameoAP81
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(cameo_ap81_mtdlayout
))
543 Image
/Build
/CameoAP91
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(cameo_ap91_mtdlayout
))
544 Image
/Build
/CameoAP91
=$(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(cameo_ap91_mtdlayout
),$(4),65536)
545 Image
/Build
/CameoAP91
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(cameo_ap91_mtdlayout
))
547 Image
/Build
/CameoAP99
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(cameo_ap99_mtdlayout
))
548 Image
/Build
/CameoAP99
=$(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(cameo_ap99_mtdlayout
),$(4),65536)
549 Image
/Build
/CameoAP99
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(cameo_ap99_mtdlayout
))
551 Image
/Build
/CameoAP135
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
552 Image
/Build
/CameoAP135
=$(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(4),$(5),26)
553 Image
/Build
/CameoAP135
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
555 Image
/Build
/CameoDB120
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(cameo_db120_mtdlayout
))
556 Image
/Build
/CameoDB120
=$(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(cameo_db120_mtdlayout
),$(4),26)
557 Image
/Build
/CameoDB120
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(cameo_db120_mtdlayout
))
559 Image
/Build
/CameoDB120_8M
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(cameo_db120_mtdlayout_8M
))
560 Image
/Build
/CameoDB120_8M
=$(call Image
/Build
/Cameo
,$(1),$(2),$(3),$(cameo_db120_mtdlayout_8M
),$(4),26)
561 Image
/Build
/CameoDB120_8M
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(cameo_db120_mtdlayout_8M
))
563 define Image
/Build
/CameoHornet
564 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
565 $(call Sysupgrade
/KRuImage
,$(1),$(2),0,$$$$(($(fwsize
)-4*64*1024)),64)
566 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
568 [ -n
"$$$$r" ] && dashr
="-$$$$r" || dashr
=; \
569 [ -z
"$$$$r" ] && r
="DEF"; \
570 mkcameofw
-M HORNET
-R
"$$$$r" -S
$(5) -V
$(6) -c \
571 -K
$(8) -I
$(fwsize
) \
572 -k
"$(call sysupname,$(1),$(2))" \
573 -o
$(call imgname
,$(1),$(2))-factory
$$$$dashr.bin
; \
579 Image
/Build
/CameoAP121
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(cameo_ap121_mtdlayout
))
580 Image
/Build
/CameoAP121
=$(call Image
/Build
/CameoHornet
,$(1),$(2),$(3),$(cameo_ap121_mtdlayout
),$(4),$(5),$(6),0xe0000)
581 Image
/Build
/CameoAP121
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(cameo_ap121_mtdlayout
))
583 Image
/Build
/CameoAP121_8M
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(cameo_ap121_mtdlayout_8M
))
584 Image
/Build
/CameoAP121_8M
=$(call Image
/Build
/CameoHornet
,$(1),$(2),$(3),$(cameo_ap121_mtdlayout_8M
),$(4),$(5),$(6),0x100000)
585 Image
/Build
/CameoAP121_8M
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(cameo_ap121_mtdlayout_8M
))
588 define Image
/Build
/Ath
589 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
590 $(eval rootsize
=$(call mtdpartsize
,rootfs
,$(4)))
591 $(eval kernsize
=$(call mtdpartsize
,kernel
,$(4)))
592 $(call Sysupgrade
/$(5),$(1),$(2),$(if
$(6),$(6),$(kernsize
)),$(if
$(rootsize
),$(rootsize
),$(fwsize
)))
593 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
594 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage \
595 of
=$(call imgname
,kernel
,$(2)).bin bs
=64k conv
=sync
; \
596 dd if
=$(KDIR
)/root.
$(1) \
597 of
=$(call imgname
,$(1),$(2)-rootfs
).bin bs
=128k conv
=sync
; \
601 Image
/Build
/AthGzip
/buildkernel
=$(call MkuImageGzip
,$(2),$(3) $(4))
602 Image
/Build
/AthGzip
=$(call Image
/Build
/Ath
,$(1),$(2),$(3),$(4),$(5),$(6),$(7))
603 Image
/Build
/AthGzip
/initramfs
=$(call MkuImageGzip
/initramfs
,$(2),$(3) $(4))
605 Image
/Build
/AthLzma
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
606 Image
/Build
/AthLzma
=$(call Image
/Build
/Ath
,$(1),$(2),$(3),$(4),$(5),$(6),$(7))
607 Image
/Build
/AthLzma
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
610 Image
/Build
/Belkin
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
611 Image
/Build
/Belkin
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
613 define Image
/Build
/Belkin
614 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
615 $(eval kernsize
=$(call mtdpartsize
,kernel
,$(4)))
616 $(eval rootsize
=$(call mtdpartsize
,rootfs
,$(4)))
617 $(call Sysupgrade
/RKuImage
,$(1),$(2),$(kernsize
),$(rootsize
))
618 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
619 edimax_fw_header
-m
$(5) -v
"OpenWrt$(REVISION)" \
621 -i
$(KDIR_TMP
)/vmlinux-
$(2).uImage \
622 -o
$(KDIR_TMP
)/$(2)-uImage
; \
623 edimax_fw_header
-m
$(5) -v
"OpenWrt$(REVISION)" \
625 -i
$(KDIR
)/root.
$(1) \
626 -o
$(KDIR_TMP
)/$(2)-rootfs
; \
628 dd if
=$(KDIR_TMP
)/$(2)-rootfs
; \
629 dd if
=$(KDIR_TMP
)/$(2)-uImage
; \
630 ) > "$(call factoryname,$(1),$(2))"; \
634 define Image
/Build
/EnGenius
635 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
636 $(eval rootsize
=$(call mtdpartsize
,rootfs
,$(4)))
637 $(eval kernsize
=$(call mtdpartsize
,kernel
,$(4)))
638 $(call Sysupgrade
/$(5),$(1),$(2),$(if
$(6),$(6),$(kernsize
)),$(if
$(rootsize
),$(rootsize
),$(fwsize
)))
639 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
640 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage \
641 of
=$(call imgname
,kernel
,$(2)).bin bs
=64k conv
=sync
; \
642 dd if
=$(KDIR
)/root.
$(1) \
643 of
=$(call imgname
,$(1),$(2)-rootfs
).bin bs
=128k conv
=sync
; \
644 mksenaofw
-e
$(call sysupname
,$(1),$(2)) \
645 -o
$(call imgname
,$(1),$(2))-factory.dlf \
646 -r
0x101 -p
$(7) -t
2; \
650 Image
/Build
/EnGenius
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
651 Image
/Build
/EnGenius
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
654 define MkuImageHiWiFi
655 # Field ih_name needs to start with "tw150v1"
656 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C
$(1) $(2) \
657 -e
0x80060000 -n
'tw150v1 MIPS OpenWrt Linux-$(LINUX_VERSION)' \
661 define MkuImageLzmaHiWiFi
662 $(call PatchKernelLzma
,$(1),$(2),$(3),$(4))
663 $(call MkuImageHiWiFi
,lzma
,$(5),$(KDIR_TMP
)/vmlinux
$(4)-$(1).bin.lzma
,$(KDIR_TMP
)/vmlinux
$(4)-$(1).uImage
)
666 Image
/Build
/HiWiFi
/buildkernel
=$(call MkuImageLzmaHiWiFi
,$(2),$(3) $(4))
667 Image
/Build
/HiWiFi
=$(call Image
/Build
/Ath
,$(1),$(2),$(3),$(4),$(5),$(6),$(7))
668 Image
/Build
/HiWiFi
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
670 Image
/Build
/PB4X
/buildkernel
=$(call PatchKernelLzma
,$(2),$(3))
672 define Image
/Build
/PB4X
673 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
674 of
=$(call imgname
,kernel
,$(2)).bin bs
=64k conv
=sync
675 dd if
=$(KDIR
)/root.
$(1) \
676 of
=$(call imgname
,$(1),$(2)-rootfs
).bin bs
=128k conv
=sync
677 -sh
$(TOPDIR
)/scripts
/combined-image.sh \
678 "$(call imgname,kernel,$(2)).bin" \
679 "$(call imgname,$(1),$(2)-rootfs).bin" \
680 $(call sysupname
,$(1),$(2))
684 Image
/Build
/MyLoader
/buildkernel
=$(call PatchKernelLzma
,$(2),$(3))
685 Image
/Build
/MyLoader
/initramfs
=$(call PatchKernel
/initramfs
,$(2),$(3))
687 define Image
/Build
/MyLoader
688 $(eval fwsize
=$(shell echo
$$(($(4)-0x30000-4*64*1024))))
689 $(eval fwimage
=$(KDIR_TMP
)/$(2)-$(5)-firmware.bin
)
690 $(call CatFiles
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
,65536,$(KDIR
)/root.
$(1),$(fwsize
),$(fwimage
))
691 if
[ -e
"$(fwimage)" ]; then \
692 $(STAGING_DIR_HOST
)/bin
/mkmylofw
-B
$(2) -s
$(4) -v \
693 -p0x680000
:0x160000:al
:0x80060000:firmware
:$(KDIR_TMP
)/vmlinux-
$(2).uImage \
694 -p0x050000
:0x630000:::rootfs
:$(KDIR
)/root.
$(1) \
695 -p0x7e0000
:0x010000 \
696 -p0x7f0000
:0x010000 \
697 $(call imgname
,$(1),$(2))-$(5)-factory.img
; \
698 echo
-n
"" > $(KDIR_TMP
)/empty.bin
; \
699 sh
$(TOPDIR
)/scripts
/combined-image.sh \
700 $(fwimage
) $(KDIR_TMP
)/empty.bin \
701 $(call imgname
,$(1),$(2))-$(5)-sysupgrade.bin
; \
706 Image
/Build
/UAPPRO
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(uap_pro_mtdlayout
))
708 define Image
/Build
/UAPPRO
/buildkernel
709 $(call MkuImageLzma
,$(2),$(3) $(uap_pro_mtdlayout
))
710 -rm -rf
$(KDIR_TMP
)/$(2)
711 mkdir
-p
$(KDIR_TMP
)/$(2)/image
712 cp
$(KDIR_TMP
)/vmlinux-
$(2).uImage
$(KDIR_TMP
)/$(2)/image
/kernel0
713 $(STAGING_DIR_HOST
)/bin
/mkfs.jffs2 \
714 --pad
--big-endian
--squash-uids
-v
-e
64KiB \
715 -o
$(KDIR_TMP
)/$(2)-kernel.jffs2 \
716 -d
$(KDIR_TMP
)/$(2)/image \
717 2>&1 1>/dev
/null | awk
'/^.+$$$$/'
718 -rm -rf
$(KDIR_TMP
)/$(2)
719 $(STAGING_DIR_HOST
)/bin
/padjffs2
$(KDIR_TMP
)/$(2)-kernel.jffs2
-J
64
722 define Image
/Build
/UAPPRO
723 $(call CatFiles
,$(KDIR_TMP
)/$(2)-kernel.jffs2
,1572864,$(KDIR
)/root.
$(1),14548992,$(call sysupname
,$(1),$(2)))
724 -$(STAGING_DIR_HOST
)/bin
/mkfwimage2
-f
0x9f000000 \
725 -v
$(5).
$(6).v6.0
.0-OpenWrt-
$(REVISION
) \
726 -p jffs2
:0x50000:0xf60000:0:0:$(call sysupname
,$(1),$(2)) \
727 -o
$(call factoryname
,$(1),$(2))
730 # $(4) = board (XS2, XS5, RS, XM)
731 # $(5) = series (BZ, XM, XW)
732 # $(6) = chip (ar7240, ar934x)
733 define Image
/Build
/UBNT2
734 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(3)))
735 $(call Sysupgrade
/KRuImage
,$(1),$(2),0,$$$$(($(fwsize
)-4*64*1024)),64)
736 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
737 dd if
=$(call sysupname
,$(1),$(2)) of
=$(KDIR_TMP
)/$(2)-mtdpart-kernel.bin bs
=1024k count
=1; \
738 dd if
=$(call sysupname
,$(1),$(2)) of
=$(KDIR_TMP
)/$(2)-mtdpart-rootfs.bin bs
=1024k skip
=1; \
739 $(STAGING_DIR_HOST
)/bin
/mkfwimage \
740 -B
$(4) -v
$(5).
$(6).v6.0
.0-OpenWrt-
$(REVISION
) \
741 -k
$(KDIR_TMP
)/$(2)-mtdpart-kernel.bin \
742 -r
$(KDIR_TMP
)/$(2)-mtdpart-rootfs.bin \
743 -o
$(call factoryname
,$(1),$(2)); \
747 Image
/Build
/UBNTXM
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(ubntxm_mtdlayout
))
748 Image
/Build
/UBNTXM
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(ubntxm_mtdlayout
))
749 Image
/Build
/UBNTXM
=$(call Image
/Build
/UBNT2
,$(1),$(2),$(ubntxm_mtdlayout
),$(4),$(5),$(6),$(7))
751 Image
/Build
/UBDEV
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(ubdev_mtdlayout
))
752 Image
/Build
/UBDEV
=$(call Image
/Build
/UBNT2
,$(1),$(2),$(ubdev_mtdlayout
),$(4),$(5),$(6),$(7))
755 Image
/Build
/UBNT
/buildkernel
=$(call PatchKernelLzma
,$(2),$(3))
757 define Image
/Build
/UBNT
758 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma of
=$(KDIR_TMP
)/vmlinux-
$(2).lzma bs
=64k conv
=sync
759 -$(STAGING_DIR_HOST
)/bin
/mkfwimage \
760 -B
$(4) -v
$(5).
$(6).OpenWrt.
$(REVISION
) \
761 -k
$(KDIR_TMP
)/vmlinux-
$(2).lzma \
762 -r
$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) \
763 -o
$(call factoryname
,$(1),$(2))
764 -sh
$(TOPDIR
)/scripts
/combined-image.sh \
765 "$(KDIR_TMP)/vmlinux-$(2).lzma" \
766 "$(BIN_DIR)/$(IMG_PREFIX)-root.$(1)" \
767 $(call sysupname
,$(1),$(2))
771 Image
/Build
/Planex
/initramfs
=$(call MkuImageGzip
/initramfs
,$(2),$(3) $(planex_mtdlayout
))
772 Image
/Build
/Planex
/loader
=$(call Image
/BuildLoaderAlone
,$(1),gz
,$(2) $(planex_mtdlayout
),0x52000,0)
774 define Image
/Build
/Planex
/buildkernel
775 [ -e
"$(KDIR)/loader-$(2).gz" ]
776 $(call MkuImageOKLI
,$(2))
778 dd if
=$(KDIR
)/loader-
$(2).gz bs
=8128 count
=1 conv
=sync
; \
779 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).okli
; \
780 ) > $(KDIR_TMP
)/kernel-
$(2).bin
781 $(call MkuImage
,gzip
,,$(KDIR_TMP
)/kernel-
$(2).bin
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
)
784 define Image
/Build
/Planex
785 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(planex_mtdlayout
)))
786 $(call Sysupgrade
/KRuImage
,$(1),$(2),0,$$$$(($(fwsize
)-4*64*1024)),64)
787 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
788 $(STAGING_DIR_HOST
)/bin
/mkplanexfw \
791 -i
$(call sysupname
,$(1),$(2)) \
792 -o
$(call factoryname
,$(1),$(2)); \
797 Image
/Build
/ALFA
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
798 Image
/Build
/ALFA
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
800 define Image
/Build
/ALFA
801 $(call Sysupgrade
/RKuImage
,$(1),$(2),$(5),$(6))
802 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
803 rm -rf
$(KDIR
)/$(1); \
804 mkdir
-p
$(KDIR
)/$(1); \
806 cp
$(KDIR_TMP
)/vmlinux-
$(2).uImage
$(KDIR
)/$(1)/$(7); \
807 cp
$(KDIR
)/root.
$(1) $(KDIR
)/$(1)/$(8); \
808 $(TAR
) zcf
$(call factoryname
,$(1),$(2)) -C
$(KDIR
)/$(1) $(7) $(8); \
810 echo WRM7222C | dd bs
=32 count
=1 conv
=sync
; \
812 ) >> $(call factoryname
,$(1),$(2)); \
817 Image
/Build
/Seama
/loader
=$(call Image
/BuildLoader
,$(1),bin
,$(2) $(3),0x80060000)
819 define Image
/Build
/Seama
820 [ -e
"$(KDIR)/loader-$(2).bin" ]
821 $(call CompressLzma
,$(KDIR
)/loader-
$(2).bin
,$(KDIR_TMP
)/loader-
$(2).bin.lzma
)
822 -rm -f
$(KDIR_TMP
)/image-
$(2).tmp
823 $(call CatFiles
,$(KDIR_TMP
)/loader-
$(2).bin.lzma
,$$$$(($(6) - 64)),$(KDIR
)/root.
$(1),$(7),$(KDIR_TMP
)/image-
$(2).tmp
)
824 [ -e
"$(KDIR_TMP)/image-$(2).tmp" ] && { \
825 head
-c
-4 "$(KDIR_TMP)/image-$(2).tmp" > "$(KDIR_TMP)/image-$(2).no-jffs2mark.tmp"; \
826 $(STAGING_DIR_HOST
)/bin
/seama \
827 -i
$(KDIR_TMP
)/image-
$(2).no-jffs2mark.tmp \
828 -m
"dev=/dev/mtdblock/1" -m
"type=firmware"; \
829 $(STAGING_DIR_HOST
)/bin
/seama \
830 -s
$(call imgname
,$(1),$(2))-factory.bin \
831 -m
"signature=$(5)" \
832 -i
$(KDIR_TMP
)/image-
$(2).no-jffs2mark.tmp.seama
; \
833 tail
-c
4 "$(KDIR_TMP)/image-$(2).tmp" >> $(call imgname
,$(1),$(2))-factory.bin
; \
835 cat
$(KDIR_TMP
)/loader-
$(2).bin.lzma
> $(KDIR_TMP
)/image-
$(2)-sysupgrade.tmp
836 $(STAGING_DIR_HOST
)/bin
/seama \
837 -i
$(KDIR_TMP
)/image-
$(2)-sysupgrade.tmp \
838 -m
"dev=/dev/mtdblock/1" -m
"type=firmware"
839 $(call CatFiles
,$(KDIR_TMP
)/image-
$(2)-sysupgrade.tmp.seama
,$(6),$(KDIR
)/root.
$(1),$(7),$(call sysupname
,$(1),$(2)))
842 define Image
/Build
/Seama
/initramfs
843 $(call PatchKernelLzma
,$(2),$(3) $(4),,-initramfs
)
844 $(STAGING_DIR_HOST
)/bin
/seama \
845 -i
$(KDIR_TMP
)/vmlinux-initramfs-
$(2).bin.lzma \
846 -m
"dev=/dev/mtdblock/1" -m
"type=firmware"
847 cat
$(KDIR_TMP
)/vmlinux-initramfs-
$(2).bin.lzma.seama
> $(call imgname
,initramfs
,$(2))-seama.bin
850 Image
/Build
/Senao
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
851 Image
/Build
/Senao
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
853 define Image
/Build
/Senao
854 mkdir
-p
$(KDIR_TMP
)/$(2)/
855 touch
$(KDIR_TMP
)/$(2)/FWINFO-OpenWrt-
$(REVISION
)-$(2)
856 -$(CP
) .
/$(2)/* $(KDIR_TMP
)/$(2)/
857 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage \
858 of
=$(KDIR_TMP
)/$(2)/openwrt-senao-
$(2)-uImage-lzma.bin bs
=64k conv
=sync
859 dd if
=$(KDIR
)/root.
$(1) \
860 of
=$(KDIR_TMP
)/$(2)/openwrt-senao-
$(2)-root.
$(1) bs
=64k conv
=sync
862 cd
$(KDIR_TMP
)/$(2)/; \
863 $(TAR
) -cz
-f
$(call factoryname
,$(1),$(2)) * \
865 -rm -rf
$(KDIR_TMP
)/$(2)/
866 -sh
$(TOPDIR
)/scripts
/combined-image.sh \
867 $(KDIR_TMP
)/vmlinux-
$(2).uImage \
869 $(call sysupname
,$(1),$(2))
872 Image
/Build
/TPLINKOLD
/loader
=$(call Image
/BuildLoaderAlone
,$(1),gz
,$(2),0x22000,0)
874 define Image
/Build
/TPLINKOLD
875 [ -e
"$(KDIR)/loader-$(2).gz" ]
876 $(call MkuImageOKLI
,$(2))
878 dd if
=$(KDIR
)/loader-
$(2).gz bs
=7680 count
=1 conv
=sync
; \
879 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).okli conv
=sync
; \
880 ) > $(KDIR_TMP
)/kernel-
$(2).bin
881 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
882 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
)\
884 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
885 -r
$(KDIR
)/root.
$(1) \
886 -o
$(call factoryname
,$(1),$(2))
887 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
888 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
890 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
891 -r
$(KDIR
)/root.
$(1) \
892 -o
$(call sysupname
,$(1),$(2))
895 define Image
/Build
/TPLINKOLD
/initramfs
896 $(call Image
/BuildLoader
,$(2),gz
,$(3),0x80060000,-initramfs
)
897 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw
-c \
898 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
899 -k
$(KDIR
)/loader-
$(2)-initramfs.gz \
900 -o
$(call imgname
,$(1),$(2))-initramfs-uImage.bin
904 Image
/Build
/TPLINK
/loader
=$(call Image
/BuildLoaderAlone
,$(1),gz
,$(2),0x22000,0)
906 define Image
/Build
/TPLINK
907 [ -e
"$(KDIR)/loader-$(2).gz" ]
908 $(call MkuImageOKLI
,$(2))
910 dd if
=$(KDIR
)/loader-
$(2).gz bs
=7680 count
=1 conv
=sync
; \
911 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).okli conv
=sync
; \
912 ) > $(KDIR_TMP
)/kernel-
$(2).bin
913 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
914 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
)\
916 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
917 -r
$(KDIR
)/root.
$(1) \
918 -a
$(call rootfs_align
,$(1)) -j \
919 -o
$(call factoryname
,$(1),$(2))
920 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
921 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
923 -k
$(KDIR_TMP
)/kernel-
$(2).bin \
924 -r
$(KDIR
)/root.
$(1) \
925 -a
$(call rootfs_align
,$(1)) -j \
926 -o
$(call sysupname
,$(1),$(2))
929 define Image
/Build
/TPLINK
/initramfs
930 $(call Image
/BuildLoader
,$(2),gz
,$(3),0x80060000,-initramfs
)
931 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw
-c \
932 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) -s\
933 -k
$(KDIR
)/loader-
$(2)-initramfs.gz \
934 -o
$(call imgname
,$(1),$(2))-uImage.bin
938 Image
/Build
/TPLINK-LZMA
/buildkernel
=$(call PatchKernelLzma
,$(2),$(3))
940 define Image
/Build
/TPLINK-LZMA
941 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
942 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) $(7) \
944 -k
$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
945 -r
$(KDIR
)/root.
$(1) \
946 -a
$(call rootfs_align
,$(1)) -j \
947 -o
$(call factoryname
,$(1),$(2))
948 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
949 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) $(7) -s \
951 -k
$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
952 -r
$(KDIR
)/root.
$(1) \
953 -a
$(call rootfs_align
,$(1)) -j \
954 -o
$(call sysupname
,$(1),$(2))
957 define Image
/Build
/TPLINK-LZMA
/initramfs
958 $(call PatchKernelLzma
,$(2),$(3),,-initramfs
)
959 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw
-c \
960 -H
$(4) -W
$(5) -F
$(6) -N OpenWrt
-V
$(REVISION
) $(7) -s \
961 -k
$(KDIR_TMP
)/vmlinux-initramfs-
$(2).bin.lzma \
962 -o
$(call imgname
,$(1),$(2))-uImage.bin
966 Image
/Build
/TPLINK-SAFELOADER
/buildkernel
=$(call PatchKernelLzma
,$(2),$(3) $(4))
968 define Image
/Build
/TPLINK-SAFELOADER
969 -rm -rf
$(KDIR
)/lzma-loader
970 $(LOADER_MAKE
) LOADER
=loader-
$(2).elf\
971 LZMA_TEXT_START
=0x80a00000 LOADADDR
=0x80060000 \
972 LOADER_DATA
="$(KDIR_TMP)/vmlinux-$(2).bin.lzma" BOARD
="$(2)" \
975 -$(STAGING_DIR_HOST
)/bin
/tplink-safeloader \
977 -k
$(KDIR
)/loader-
$(2).elf \
978 -r
$(KDIR
)/root.
$(1) \
981 -o
$(call factoryname
,$(1),$(2))
982 -$(STAGING_DIR_HOST
)/bin
/tplink-safeloader \
984 -k
$(KDIR
)/loader-
$(2).elf \
985 -r
$(KDIR
)/root.
$(1) \
988 -o
$(call sysupname
,$(1),$(2))
992 define Image
/Build
/CyberTAN
993 echo
-n
'' > $(KDIR_TMP
)/empty.bin
994 $(STAGING_DIR_HOST
)/bin
/trx
-o
$(KDIR
)/image.tmp \
995 -f
$(KDIR_TMP
)/vmlinux-
$(2).uImage
-F
$(KDIR_TMP
)/empty.bin \
996 -x
32 -a
0x10000 -x
-32 -f
$(KDIR
)/root.
$(1)
997 -$(STAGING_DIR_HOST
)/bin
/addpattern
-B
$(2) -v v
$(5) \
998 -i
$(KDIR
)/image.tmp \
999 -o
$(call sysupname
,$(1),$(2))
1000 $(STAGING_DIR_HOST
)/bin
/trx
-o
$(KDIR
)/image.tmp
-f
$(KDIR_TMP
)/vmlinux-
$(2).uImage \
1001 -x
32 -a
0x10000 -x
-32 -f
$(KDIR
)/root.
$(1)
1002 -$(STAGING_DIR_HOST
)/bin
/addpattern
-B
$(2) -v v
$(5) -g \
1003 -i
$(KDIR
)/image.tmp \
1004 -o
$(call factoryname
,$(1),$(2))
1005 rm $(KDIR
)/image.tmp
1008 Image
/Build
/CyberTANGZIP
/loader
=$(call Image
/BuildLoader
,$(1),gz
,$(2),0x80060000)
1009 Image
/Build
/CyberTANGZIP
/buildkernel
=$(call MkuImage
,gzip
,,$(KDIR
)/loader-
$(2).gz
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
)
1010 Image
/Build
/CyberTANGZIP
=$(call Image
/Build
/CyberTAN
,$(1),$(2),$(3),$(4),$(5))
1012 Image
/Build
/CyberTANLZMA
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
1013 Image
/Build
/CyberTANLZMA
=$(call Image
/Build
/CyberTAN
,$(1),$(2),$(3),$(4),$(5))
1016 Image
/Build
/Netgear
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4),,-M
$(5))
1018 define Image
/Build
/Netgear
/buildkernel
1019 $(call MkuImageLzma
,$(2),$(3) $(4),-d20
,,-M
$(5))
1020 -rm -rf
$(KDIR_TMP
)/$(2)
1021 mkdir
-p
$(KDIR_TMP
)/$(2)/image
1022 cat
$(KDIR_TMP
)/vmlinux-
$(2).uImage
> $(KDIR_TMP
)/$(2)/image
/uImage
1023 $(STAGING_DIR_HOST
)/bin
/mksquashfs-lzma \
1024 $(KDIR_TMP
)/$(2) $(KDIR_TMP
)/vmlinux-
$(2).uImage.squashfs.tmp1 \
1025 -noappend
-root-owned
-be
-b
65536
1027 cat
$(KDIR_TMP
)/vmlinux-
$(2).uImage.squashfs.tmp1
; \
1028 dd if
=/dev
/zero bs
=1k count
=1 \
1029 ) > $(KDIR_TMP
)/vmlinux-
$(2).uImage.squashfs.tmp2
1030 mkimage
-A mips
-O linux
-T filesystem
-C none
-M
$(5) \
1031 -a
0xbf070000 -e
0xbf070000 \
1032 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
1033 -d
$(KDIR_TMP
)/vmlinux-
$(2).uImage.squashfs.tmp2 \
1034 $(KDIR_TMP
)/vmlinux-
$(2).uImage.squashfs
1037 define Image
/Build
/Netgear
1038 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
1039 $(call CatFiles
,$(KDIR_TMP
)/vmlinux-
$(2).uImage.squashfs
,0,$(KDIR
)/root.
$(1),$(fwsize
),$(call sysupname
,$(1),$(2)),64)
1040 if
[ -e
$(call sysupname
,$(1),$(2)) ]; then \
1041 for r in
$(7) ; do \
1042 [ -n
"$$$$r" ] && dashr
="-$$$$r" || dashr
= ; \
1043 $(STAGING_DIR_HOST
)/bin
/mkdniimg \
1044 -B
$(6) -v OpenWrt.
$(REVISION
) -r
"$$$$r" $(8) \
1045 -i
$(call sysupname
,$(1),$(2)) \
1046 -o
$(call imgname
,$(1),$(2))-factory
$$$$dashr.img
; \
1052 Image
/Build
/NetgearLzma
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4),,-M
$(5))
1053 Image
/Build
/NetgearLzma
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4),-d20
,,-M
$(5))
1055 define Image
/Build
/NetgearLzma
1056 $(eval fwsize
=$(call mtdpartsize
,firmware
,$(4)))
1057 $(call CatFiles
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
,0,$(KDIR
)/root.
$(1),$(fwsize
),$(call sysupname
,$(1),$(2)),64)
1061 Image
/Build
/NetgearNAND
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4),,-M
$(5))
1064 # $(2): Board name (small caps)
1065 # $(3): Kernel board specific cmdline
1066 # $(4): Kernel mtdparts definition
1067 # $(5): U-Boot magic
1068 define Image
/Build
/NetgearNAND
/buildkernel
1069 $(eval kernelsize
=$(call mtdpartsize
,kernel
,$(4)))
1070 $(call PatchKernelLzma
,$(2),$(3) $(4),-d20
)
1071 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).bin.lzma \
1072 of
=$(KDIR_TMP
)/vmlinux-
$(2).bin.tmp \
1073 bs
=$$$$(($(kernelsize
)-131072-2*64-1)) \
1075 $(call MkuImage
,lzma
,-M
$(5),$(KDIR_TMP
)/vmlinux-
$(2).bin.tmp
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
)
1076 echo
-ne
'\xff' >> $(KDIR_TMP
)/vmlinux-
$(2).uImage
1077 # create a fake rootfs image
1078 dd if
=/dev
/zero of
=$(KDIR_TMP
)/fakeroot-
$(2) bs
=131072 count
=1
1079 mkimage
-A mips
-O linux
-T filesystem
-C none \
1080 -a
0xbf070000 -e
0xbf070000 \
1081 -n
'MIPS OpenWrt fakeroot' \
1082 -d
$(KDIR_TMP
)/fakeroot-
$(2) \
1084 $(KDIR_TMP
)/fakeroot-
$(2).uImage
1085 # append the fake rootfs image to the kernel, it will reside in the last
1086 # erase block of the kernel partition
1087 cat
$(KDIR_TMP
)/fakeroot-
$(2).uImage
>> $(KDIR_TMP
)/vmlinux-
$(2).uImage
1091 # $(1): rootfs image suffix
1092 # $(2): Board name (small caps)
1093 # $(3): Kernel board specific cmdline
1094 # $(4): Kernel mtdparts definition
1095 # $(5): U-Boot magic
1096 # $(6): Board name (upper caps)
1097 # $(7): firmware region code (not used yet)
1098 # $(8): DNI Hardware version
1099 # $(9): suffix of the configuration file for ubinize
1100 define Image
/Build
/NetgearNAND
1101 $(eval firmwaresize
=$(call mtdpartsize
,firmware
,$(4)))
1102 $(eval kernelsize
=$(call mtdpartsize
,kernel
,$(4)))
1103 $(eval imageraw
=$(KDIR_TMP
)/$(2)-raw.img
)
1104 $(CP
) $(KDIR
)/root.squashfs-raw
$(KDIR_TMP
)/root.squashfs
1105 echo
-ne
'\xde\xad\xc0\xde' > $(KDIR_TMP
)/jffs2.eof
1106 $(call ubinize
,ubinize-
$(9).ini
,$(KDIR_TMP
),$(KDIR_TMP
)/$(2)-root.ubi
,128KiB
,2048,-E
5)
1108 dd if
=$(KDIR_TMP
)/vmlinux-
$(2).uImage
; \
1109 dd if
=$(KDIR_TMP
)/$(2)-root.ubi \
1111 $(STAGING_DIR_HOST
)/bin
/mkdniimg \
1112 -B
$(6) -v OpenWrt.
$(REVISION
) -r
"$$$$r" $(8) \
1114 -o
$(call imgname
,ubi
,$(2))-factory.img
1116 $(call Image
/Build
/SysupgradeNAND
,$(2),squashfs
,$(KDIR_TMP
)/vmlinux-
$(2).uImage
)
1120 ifdef CONFIG_PACKAGE_uboot-ar71xx-nbg460n_550n_550nh
1121 Image
/Build
/ZyXEL
/buildkernel
=$(call MkuImageLzma
,$(2),$(3))
1123 define Image
/Build
/ZyXEL
1124 $(call Sysupgrade
/KRuImage
,$(1),$(2),917504,2752512)
1125 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
1126 if
[ ! -f
$(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-u-boot.bin
]; then \
1127 echo
"Warning: $(IMG_PREFIX)-$(2)-u-boot.bin not found" >&2; \
1129 $(STAGING_DIR_HOST
)/bin
/mkzynfw \
1131 -b
$(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-u-boot.bin \
1132 -r
$(call sysupname
,$(1),$(2)):0x10000 \
1133 -o
$(call factoryname
,$(1),$(2)); \
1139 define Image
/Build
/ZyXELNAND
/buildkernel
1140 $(eval kernelsize
=$(call mtdpartsize
,kernel
,$(5)))
1141 $(call MkuImageLzma
,$(2),$(3) $(5) $(6))
1142 mkdir
-p
$(KDIR_TMP
)/$(2)/image
/boot
1143 cp
$(KDIR_TMP
)/vmlinux-
$(2).uImage
$(KDIR_TMP
)/$(2)/image
/boot
/vmlinux.lzma.uImage
1144 $(STAGING_DIR_HOST
)/bin
/mkfs.jffs2 \
1145 --pad
=$(kernelsize
) --big-endian
--squash-uids
-v
-e
128KiB \
1146 -o
$(KDIR_TMP
)/$(2)-kernel.jffs2 \
1147 -d
$(KDIR_TMP
)/$(2)/image \
1148 2>&1 1>/dev
/null | awk
'/^.+$$$$/'
1149 -rm -rf
$(KDIR_TMP
)/$(2)
1152 define Image
/Build
/ZyXELNAND
1153 if
[ "$(1)" != "squashfs" ]; then \
1154 echo Only squashfs is supported
; \
1157 $(eval firmwaresize
=$(call mtdpartsize
,firmware
,$(4)))
1158 $(eval kernelsize
=$(call mtdpartsize
,kernel
,$(4)))
1159 $(eval imageraw
=$(KDIR_TMP
)/$(2)-raw.img
)
1160 $(CP
) $(KDIR
)/root.
$(1) $(KDIR_TMP
)/ubi_root.img
1161 $(call ubinize
,ubinize-
$(2).ini
,$(KDIR_TMP
),$(KDIR_TMP
)/$(2)-root.ubi
,128KiB
,2048,-E
5)
1163 dd if
=$(KDIR_TMP
)/$(2)-kernel.jffs2
; \
1164 dd if
=$(KDIR_TMP
)/$(2)-root.ubi \
1166 dd if
=$(imageraw
) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(1)-factory.bin \
1168 $(call Image
/Build
/SysupgradeNAND
,$(2),squashfs
,$(KDIR_TMP
)/$(2)-kernel.jffs2
)
1172 Image
/Build
/OpenMesh
/buildkernel
=$(call MkuImageLzma
,$(2))
1174 define Image
/Build
/OpenMesh
1175 -sh
$(TOPDIR
)/scripts
/om-fwupgradecfg-gen.sh \
1177 "$(BUILD_DIR)/fwupgrade.cfg-$(4)" \
1178 "$(KDIR_TMP)/vmlinux-$(2).uImage" \
1180 -sh
$(TOPDIR
)/scripts
/combined-ext-image.sh \
1181 "$(4)" "$(call factoryname,$(1),$(2))" \
1182 "$(BUILD_DIR)/fwupgrade.cfg-$(4)" "fwupgrade.cfg" \
1183 "$(KDIR_TMP)/vmlinux-$(2).uImage" "kernel" \
1184 "$(KDIR)/root.$(1)" "rootfs"
1188 Image
/Build
/Zcomax
/buildkernel
=$(call MkuImageLzma
,$(2),$(3) $(4))
1189 Image
/Build
/Zcomax
/initramfs
=$(call MkuImageLzma
/initramfs
,$(2),$(3) $(4))
1191 define Image
/Build
/Zcomax
1192 $(call Sysupgrade
/RKuImage
,$(1),$(2),1507328,6356992)
1193 if
[ -e
"$(call sysupname,$(1),$(2))" ]; then \
1194 $(STAGING_DIR_HOST
)/bin
/mkzcfw \
1196 -k
$(KDIR_TMP
)/vmlinux-
$(2).uImage \
1197 -r
$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) \
1198 -o
$(call imgname
,$(1),$(2))-factory.img
; \
1203 # $(1): template name to be defined, etc. squashfs-only, 64k, 64kraw, etc.
1204 # $(2): jffs2 blocksize.
1205 define Jffs2Template
1206 define Image
/Build
/Template
/$(1)/jffs2-
$(2)
1207 $$(call Image
/Build
/$$(1),jffs2-
$(2),$$(2),$$(3),$$(4),$$(5),$$(6),$$(7),$$(8),$$(9),$$(10))
1211 # $(1): template name to be defined.
1212 # $(2): squashfs suffix to be used.
1213 # $(3): jffs2 suffix to be used.
1214 define BuildTemplate
1215 # $(1) : name of build method.
1216 # $(2) : board name.
1217 # $(3) : kernel command line.
1218 # $(4)~$(8): extra arguments.
1219 define Image
/Build
/Template
/$(1)/initramfs
1220 $$(call Image
/Build
/$$(1)/initramfs
,initramfs
,$$(2),$$(3),$$(4),$$(5),$$(6),$$(7),$$(8),$$(9),$$(10))
1222 define Image
/Build
/Template
/$(1)/loader
1223 $$(call Image
/Build
/$$(1)/loader
,$$(2),$$(3),$$(4),$$(5),$$(6),$$(7),$$(8),$$(9),$$(10))
1225 define Image
/Build
/Template
/$(1)/buildkernel
1226 $$(call Image
/Build
/$$(1)/buildkernel
,,$$(2),$$(3),$$(4),$$(5),$$(6),$$(7),$$(8),$$(9),$$(10))
1228 define Image
/Build
/Template
/$(1)/squashfs
1229 $$(call Image
/Build
/$$(1),squashfs
$(2),$$(2),$$(3),$$(4),$$(5),$$(6),$$(7),$$(8),$$(9),$$(10))
1231 $(if
$(3),$(foreach bs
,$(3),$(eval
$(call Jffs2Template
,$(1),$(bs
)))))
1234 $(eval
$(call BuildTemplate
,squashfs-only
))
1235 $(eval
$(call BuildTemplate
,64k
,-64k
,64k
))
1236 $(eval
$(call BuildTemplate
,64kraw
,-raw
,64k
))
1237 $(eval
$(call BuildTemplate
,64kraw-nojffs
,-raw
))
1238 $(eval
$(call BuildTemplate
,128k
,,128k
))
1239 $(eval
$(call BuildTemplate
,128kraw
,-raw
,128k
))
1240 $(eval
$(call BuildTemplate
,256k
,,256k
))
1241 $(eval
$(call BuildTemplate
,all,,64k
128k
256k
))
1243 ifeq ($(SUBTARGET
),generic
)
1244 $(eval
$(call SingleProfile
,ALFA
,64k
,ALFANX
,alfa-nx
,ALFA-NX
,ttyS0
,115200,$$(alfa_mtdlayout_8M
),1638400,6291456,vmlinux.gz.uImage
,pb9x-2.6
.31-jffs2
))
1245 $(eval
$(call SingleProfile
,ALFA
,64k
,HORNETUB
,hornet-ub
,HORNET-UB
,ttyATH0
,115200,$$(alfa_mtdlayout_8M
),1638400,6291456,kernel_image
,rootfs_image
))
1246 $(eval
$(call SingleProfile
,ALFA
,64k
,TUBE2H8M
,tube2h-8M
,TUBE2H
,ttyATH0
,115200,$$(alfa_mtdlayout_8M
),1638400,6291456,kernel.image
,rootfs.image
))
1248 $(eval
$(call SingleProfile
,AthGzip
,64k
,AP81
,ap81
,AP81
,ttyS0
,115200,$$(ap81_mtdlayout
),RKuImage
))
1249 $(eval
$(call SingleProfile
,AthGzip
,64k
,AP83
,ap83
,AP83
,ttyS0
,115200,$$(ap83_mtdlayout
),RKuImage
))
1250 $(eval
$(call SingleProfile
,AthGzip
,64k
,AP96
,ap96
,AP96
,ttyS0
,115200,$$(ap96_mtdlayout
),RKuImage
))
1251 $(eval
$(call SingleProfile
,AthGzip
,64k
,WNDAP360
,wndap360
,WNDAP360
,ttyS0
,9600,$$(wndap360_mtdlayout
),KRuImage
))
1253 $(eval
$(call SingleProfile
,AthLzma
,64k
,ALFAAP96
,alfa-ap96
,ALFA-AP96
,ttyS0
,115200,$$(alfa_ap96_mtdlayout
),RKuImage
))
1254 $(eval
$(call SingleProfile
,AthLzma
,64k
,ALL0258N
,all0258n
,ALL0258N
,ttyS0
,115200,$$(all0258n_mtdlayout
),KRuImage
,65536))
1255 $(eval
$(call SingleProfile
,AthLzma
,256k
,ALL0315N
,all0315n
,ALL0315N
,ttyS0
,115200,$$(all0315n_mtdlayout
),KRuImage
,262144))
1256 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP113
,ap113
,AP113
,ttyS0
,115200,$$(ap113_mtd_layout
),RK
))
1257 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP121_2M
,ap121-2M
,AP121
,ttyATH0
,115200,$$(ap121_mtdlayout_2M
),RKuImage
))
1258 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP121_4M
,ap121-4M
,AP121
,ttyATH0
,115200,$$(ap121_mtdlayout_4M
),RKuImage
))
1259 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP121MINI
,ap121-mini
,AP121-MINI
,ttyATH0
,115200,$$(ap121_mtdlayout_4M
),RKuImage
))
1260 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP132
,ap132
,AP132
,ttyS0
,115200,$$(ap132_mtdlayout
),KRuImage
))
1261 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP135
,ap135-020
,AP135-020
,ttyS0
,115200,$$(ap135_mtdlayout
),RKuImage
))
1262 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP136_010
,ap136-010
,AP136-010
,ttyS0
,115200,$$(ap136_mtdlayout
),RKuImage
))
1263 $(eval
$(call SingleProfile
,AthLzma
,64k
,AP136_020
,ap136-020
,AP136-020
,ttyS0
,115200,$$(ap136_mtdlayout
),RKuImage
))
1264 $(eval
$(call SingleProfile
,AthLzma
,64k
,BXU2000N2
,bxu2000n-2-a1
,BXU2000n-2-A1
,ttyS0
,115200,$$(bxu2000n2_mtdlayout
),RKuImage
))
1265 $(eval
$(call SingleProfile
,AthLzma
,64k
,CAP4200AG
,cap4200ag
,CAP4200AG
,ttyS0
,115200,$$(cap4200ag_mtdlayout
),KRuImage
))
1266 $(eval
$(call SingleProfile
,AthLzma
,64k
,DB120
,db120
,DB120
,ttyS0
,115200,$$(db120_mtdlayout
),RKuImage
))
1267 $(eval
$(call SingleProfile
,AthLzma
,64k
,DRAGINO2
,dragino2
,DRAGINO2
,ttyATH0
,115200,$$(dragino2_mtdlayout
),KRuImage
,65536))
1268 $(eval
$(call SingleProfile
,AthLzma
,64k
,EWDORINAP
,ew-dorin
,EW-DORIN
,ttyATH0
,115200,$$(ew-dorin_mtdlayout_4M
),KRuImage
,65536))
1269 $(eval
$(call SingleProfile
,AthLzma
,64k
,EWDORINRT
,ew-dorin-router
,EW-DORIN-ROUTER
,ttyATH0
,115200,$$(ew-dorin_mtdlayout_4M
),KRuImage
,65536))
1270 $(eval
$(call SingleProfile
,AthLzma
,64k
,EWDORIN16M
,ew-dorin-16M
,EW-DORIN
,ttyATH0
,115200,$$(ew-dorin_mtdlayout_16M
),KRuImage
,65536))
1271 $(eval
$(call SingleProfile
,AthLzma
,64k
,HORNETUBx2
,hornet-ub-x2
,HORNET-UB
,ttyATH0
,115200,$$(alfa_mtdlayout_16M
),KRuImage
,65536))
1272 $(eval
$(call SingleProfile
,AthLzma
,64k
,PB92
,pb92
,PB92
,ttyS0
,115200,$$(pb92_mtdlayout
),KRuImage
))
1273 $(eval
$(call SingleProfile
,AthLzma
,64k
,TUBE2H16M
,tube2h-16M
,TUBE2H
,ttyATH0
,115200,$$(alfa_mtdlayout_16M
),KRuImage
,65536))
1274 $(eval
$(call SingleProfile
,AthLzma
,64k
,WLR8100
,wlr8100
,WLR8100
,ttyS0
,115200,$$(wlr8100_mtdlayout
),KRuImage
))
1276 $(eval
$(call SingleProfile
,Belkin
,64k
,F9K1115V2
,f9k1115v2
,F9K1115V2
,ttyS0
,115200,$$(f9k1115v2_mtdlayout
),BR-6679BAC
))
1278 $(eval
$(call SingleProfile
,CameoAP91
,64kraw
,DIR600A1
,dir-600-a1
,DIR-600-A1
,ttyS0
,115200,"AP91-AR7240-RT-090223-00"))
1279 $(eval
$(call SingleProfile
,CameoAP91
,64kraw
,DIR601A1
,dir-601-a1
,DIR-600-A1
,ttyS0
,115200,"AP91-AR7240-RT-090223-02"))
1280 $(eval
$(call SingleProfile
,CameoAP91
,64kraw
,FR54RTR
,fr-54rtr
,DIR-600-A1
,ttyS0
,115200,"AP91-AR7240-RT-090223-01"))
1282 $(eval
$(call SingleProfile
,CameoAP99
,64kraw
,DIR615E1
,dir-615-e1
,DIR-615-E1
,ttyS0
,115200,"AP93-AR7240-RT-081028-00"))
1283 $(eval
$(call SingleProfile
,CameoAP99
,64kraw
,DIR615E4
,dir-615-e4
,DIR-615-E4
,ttyS0
,115200,"AP99-AR7240-RT-091105-05"))
1285 $(eval
$(call SingleProfile
,CameoAP81
,64kraw-nojffs
,A02RBW300N
,a02-rb-w300n
,TEW-632BRP
,ttyS0
,115200,"AP81-AR9130-RT-070614-03"))
1286 $(eval
$(call SingleProfile
,CameoAP81
,64kraw-nojffs
,DIR615C1
,dir-615-c1
,DIR-615-C1
,ttyS0
,115200,"AP81-AR9130-RT-070614-02"))
1287 $(eval
$(call SingleProfile
,CameoAP81
,64kraw-nojffs
,TEW632BRP
,tew-632brp
,TEW-632BRP
,ttyS0
,115200,"AP81-AR9130-RT-070614-00"))
1288 $(eval
$(call SingleProfile
,CameoAP81
,64kraw-nojffs
,TEW652BRP_FW
,tew-652brp
,TEW-632BRP
,ttyS0
,115200,"AP81-AR9130-RT-080609-05"))
1289 $(eval
$(call SingleProfile
,CameoAP81
,64kraw-nojffs
,TEW652BRP_RECOVERY
,tew-652brp-recovery
,TEW-632BRP
,ttyS0
,115200,"AP81-AR9130-RT-070614-02"))
1291 $(eval
$(call SingleProfile
,CameoAP121
,64kraw-nojffs
,TEW712BR
,tew-712br
,TEW-712BR
,ttyATH0
,115200,"HORNET-RT-TEW712BR-3",1.99,""))
1292 $(eval
$(call SingleProfile
,CameoAP121
,64kraw-nojffs
,DIR601B1
,dir-601-b1
,TEW-712BR
,ttyATH0
,115200,"HORNET-RT-DIR601B1-3",2.99.99,"" "NA"))
1293 $(eval
$(call SingleProfile
,CameoAP121_8M
,64kraw-nojffs
,DIR505A1
,dir-505-a1
,DIR-505-A1
,ttyATH0
,115200,"HORNET-PACKET-DIR505A1-3",1.99.99,""))
1295 $(eval
$(call SingleProfile
,CameoAP135
,64kraw
,DGL5500A1
,dgl-5500-a1
,DGL-5500-A1
,ttyS0
,115200,$$(dgl_5500_mtdlayout
),"00AP135AR9558-RT-130508-00"))
1297 $(eval
$(call SingleProfile
,CameoDB120
,64kraw
,DHP1565A1
,dhp-1565-a1
,DHP-1565-A1
,ttyS0
,115200,"00DB120AR9344-RT-101214-00"))
1298 $(eval
$(call SingleProfile
,CameoDB120
,64kraw
,DIR825C1
,dir-825-c1
,DIR-825-C1
,ttyS0
,115200,"00DB120AR9344-RT-101214-00"))
1299 $(eval
$(call SingleProfile
,CameoDB120
,64kraw
,DIR835A1
,dir-835-a1
,DIR-835-A1
,ttyS0
,115200,"00DB120AR9344-RT-101214-00"))
1301 $(eval
$(call SingleProfile
,CameoDB120_8M
,64kraw
,TEW732BR
,tew-732br
,TEW-732BR
,ttyS0
,115200,"00DB120AR9341-RT-120906-NA"))
1303 $(eval
$(call SingleProfile
,CyberTANGZIP
,64k
,WRT160NL
,wrt160nl
,WRT160NL
,ttyS0
,115200,,1.00.01))
1305 $(eval
$(call SingleProfile
,CyberTANLZMA
,64k
,MYNETREXT
,mynet-rext
,MYNET-REXT
,ttyS0
,115200,$$(mynet_rext_mtdlayout
) root
=31:4,1.00.01))
1307 $(eval
$(call SingleProfile
,CameoAP94
,64kraw
,DIR825B1
,dir-825-b1
,DIR-825-B1
,ttyS0
,115200,$$(cameo_ap94_mtdlayout
),$$(cameo_ap94_mtdlayout_fat
),01AP94-AR7161-RT-080619-00
,00AP94-AR7161-RT-080619-00
))
1308 $(eval
$(call SingleProfile
,CameoAP94
,64kraw
,TEW673GRU
,tew-673gru
,TEW-673GRU
,ttyS0
,115200,$$(cameo_ap94_mtdlayout
),$$(cameo_ap94_mtdlayout_fat
),01AP94-AR7161-RT-080619-01
,00AP94-AR7161-RT-080619-01
))
1309 $(eval
$(call SingleProfile
,CameoAP94
,64kraw
,DLRTDEV01
,dlrtdev01
,DIR-825-B1
,ttyS0
,115200,$$(dlrtdev_mtdlayout
),$$(dlrtdev_mtdlayout_fat
),01AP94-AR7161-RT-080619-00
,00AP94-AR7161-RT-080619-00
))
1311 $(eval
$(call SingleProfile
,EnGenius
,64k
,ESR900
,esr900
,ESR900
,ttyS0
,115200,$$(esr900_mtdlayout
),KRuImage
,,0x4e))
1312 $(eval
$(call SingleProfile
,EnGenius
,64k
,ESR1750
,esr1750
,ESR1750
,ttyS0
,115200,$$(esr1750_mtdlayout
),KRuImage
,,0x61))
1314 $(eval
$(call SingleProfile
,HiWiFi
,64k
,HIWIFI_HC6361
,hiwifi-hc6361
,HiWiFi-HC6361
,ttyATH0
,115200,$$(hiwifi_hc6361_mtdlayout
),KRuImage
))
1316 $(eval
$(call SingleProfile
,MyLoader
,64k
,WP543_2M
,wp543
,,ttyS0
,115200,0x200000,2M
))
1317 $(eval
$(call SingleProfile
,MyLoader
,64k
,WP543_4M
,wp543
,,ttyS0
,115200,0x400000,4M
))
1318 $(eval
$(call SingleProfile
,MyLoader
,64k
,WP543_8M
,wp543
,,ttyS0
,115200,0x800000,8M
))
1319 $(eval
$(call SingleProfile
,MyLoader
,64k
,WP543_16M
,wp543
,,ttyS0
,115200,0x1000000,16M
))
1320 $(eval
$(call SingleProfile
,MyLoader
,64k
,WPE72_4M
,wpe72
,,ttyS0
,115200,0x400000,4M
))
1321 $(eval
$(call SingleProfile
,MyLoader
,64k
,WPE72_8M
,wpe72
,,ttyS0
,115200,0x800000,8M
))
1322 $(eval
$(call SingleProfile
,MyLoader
,64k
,WPE72_16M
,wpe72
,,ttyS0
,115200,0x1000000,16M
))
1324 $(eval
$(call SingleProfile
,MyLoader
,64k
,WPJ558_8M
,wpj558
,WPJ558
,ttyS0
,115200,0x800000,8M
))
1325 $(eval
$(call SingleProfile
,MyLoader
,64k
,WPJ558_16M
,wpj558
,WPJ558
,ttyS0
,115200,0x1000000,16M
))
1327 $(eval
$(call SingleProfile
,Netgear
,64kraw
,WNR2000V3
,wnr2000v3
,WNR2000V3
,ttyS0
,115200,$$(wnr2000v3_mtdlayout
),0x32303033,WNR2000V3
,"" NA
,))
1328 $(eval
$(call SingleProfile
,NetgearLzma
,64kraw
,WNR2000V4
,wnr2000v4
,WNR2000V4
,ttyS0
,115200,$$(wnr2000v4_mtdlayout
),0x32303034,WNR2000V4
,"" NA
,))
1329 $(eval
$(call SingleProfile
,Netgear
,64kraw
,WNR2200
,wnr2200
,WNR2200
,ttyS0
,115200,$$(wnr2200_mtdlayout
),0x32323030,WNR2200
,"" NA
,))
1330 $(eval
$(call SingleProfile
,Netgear
,64kraw
,REALWNR612V2
,wnr612v2
,WNR612V2
,ttyS0
,115200,$$(wnr2000v3_mtdlayout
),0x32303631,WNR612V2
,"",))
1331 $(eval
$(call SingleProfile
,Netgear
,64kraw
,N150R
,n150r
,WNR612V2
,ttyS0
,115200,$$(wnr2000v3_mtdlayout
),0x32303631,N150R
,"",))
1332 $(eval
$(call SingleProfile
,Netgear
,64kraw
,REALWNR1000V2
,wnr1000v2
,WNR1000V2
,ttyS0
,115200,$$(wnr2000v3_mtdlayout
),0x31303031,WNR1000V2
,"",))
1333 $(eval
$(call SingleProfile
,Netgear
,64kraw
,WNR1000V2_VC
,wnr1000v2-vc
,WNR1000V2
,ttyS0
,115200,$$(wnr2000v3_mtdlayout
),0x31303030,WNR1000V2-VC
,"",))
1335 $(eval
$(call SingleProfile
,OpenMesh
,squashfs-only
,OM2P
,om2p
,,,,OM2P
))
1336 $(eval
$(call SingleProfile
,OpenMesh
,squashfs-only
,OM5P
,om5p
,,,,OM5P
))
1337 $(eval
$(call SingleProfile
,OpenMesh
,squashfs-only
,MR600
,mr600
,,,,MR600
))
1338 $(eval
$(call SingleProfile
,OpenMesh
,squashfs-only
,MR900
,mr900
,,,,MR900
))
1340 $(eval
$(call SingleProfile
,PB4X
,128k
,ALL0305
,all0305
,ALL0305
,ttyS0
,115200))
1341 $(eval
$(call SingleProfile
,PB4X
,128k
,EAP7660D
,eap7660d
,EAP7660D
,ttyS0
,115200))
1342 $(eval
$(call SingleProfile
,PB4X
,64k
,JA76PF
,ja76pf
,JA76PF
,ttyS0
,115200))
1343 $(eval
$(call SingleProfile
,PB4X
,64k
,JA76PF2
,ja76pf2
,JA76PF2
,ttyS0
,115200))
1344 $(eval
$(call SingleProfile
,PB4X
,64k
,JWAP003
,jwap003
,JWAP003
,ttyS0
,115200))
1345 $(eval
$(call SingleProfile
,PB4X
,64k
,PB42
,pb42
,PB42
,ttyS0
,115200))
1346 $(eval
$(call SingleProfile
,PB4X
,64k
,PB44
,pb44
,PB44
,ttyS0
,115200))
1348 $(eval
$(call SingleProfile
,Planex
,64kraw
,MZKW04NU
,mzk-w04nu
,MZK-W04NU
,ttyS0
,115200))
1349 $(eval
$(call SingleProfile
,Planex
,64kraw
,MZKW300NH
,mzk-w300nh
,MZK-W300NH
,ttyS0
,115200))
1351 $(eval
$(call SingleProfile
,Seama
,64k
,MYNETN600
,mynet-n600
,MYNET-N600
,ttyS0
,115200,$$(mynet_n600_mtdlayout
),wrgnd16_wd_db600
,1310720,16187392))
1352 $(eval
$(call SingleProfile
,Seama
,64k
,MYNETN750
,mynet-n750
,MYNET-N750
,ttyS0
,115200,$$(mynet_n600_mtdlayout
),wrgnd13_wd_av
,1310720,16187392))
1354 $(eval
$(call SingleProfile
,Seama
,64k
,QIHOO360
,qihoo-c301
,QIHOO-C301
,ttyS0
,115200,$$(qihoo_c301_mtdlayout
),wrgac26_qihoo360_360rg
,1310720,16121856))
1356 $(eval
$(call SingleProfile
,Senao
,squashfs-only
,EAP300V2
,eap300v2
,EAP300V2
,ttyS0
,115200,$$(eap300v2_mtdlayout
)))
1358 $(eval
$(call SingleProfile
,TPLINKOLD
,squashfs-only
,TLWR841NV15
,tl-wr841nd-v1.5
,TL-WR841N-v1.5
,ttyS0
,115200,0x08410002,2,4M
))
1360 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,RNXN360RT
,rnx-n360rt
,TL-WR941ND
,ttyS0
,115200,0x09410002,0x00420001,4M
))
1361 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLMR3220V1
,tl-mr3220-v1
,TL-MR3220
,ttyS0
,115200,0x32200001,1,4M
))
1362 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLMR3420V1
,tl-mr3420-v1
,TL-MR3420
,ttyS0
,115200,0x34200001,1,4M
))
1363 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWA701NV1
,tl-wa701n-v1
,TL-WA901ND
,ttyS0
,115200,0x07010001,1,4M
))
1364 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWA730REV1
,tl-wa730rev1
,TL-WA901ND
,ttyS0
,115200,0x07300001,1,4M
))
1365 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWA7510NV1
,tl-wa7510n
,TL-WA7510N
,ttyS0
,115200,0x75100001,1,4M
))
1366 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWA801NV1
,tl-wa801nd-v1
,TL-WA901ND
,ttyS0
,115200,0x08010001,1,4M
))
1367 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWA830RV1
,tl-wa830re-v1
,TL-WA901ND
,ttyS0
,115200,0x08300010,1,4M
))
1368 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWA901NV1
,tl-wa901nd-v1
,TL-WA901ND
,ttyS0
,115200,0x09010001,1,4M
))
1369 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWA901NV2
,tl-wa901nd-v2
,TL-WA901ND-v2
,ttyS0
,115200,0x09010002,1,4M
))
1370 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR740NV1
,tl-wr740n-v1
,TL-WR741ND
,ttyS0
,115200,0x07400001,1,4M
))
1371 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR740NV3
,tl-wr740n-v3
,TL-WR741ND
,ttyS0
,115200,0x07400003,1,4M
))
1372 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR741NV1
,tl-wr741nd-v1
,TL-WR741ND
,ttyS0
,115200,0x07410001,1,4M
))
1373 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR741NV2
,tl-wr741nd-v2
,TL-WR741ND
,ttyS0
,115200,0x07410001,1,4M
))
1374 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR743NV1
,tl-wr743nd-v1
,TL-WR741ND
,ttyS0
,115200,0x07430001,1,4M
))
1375 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR841NV3
,tl-wr841nd-v3
,TL-WR941ND
,ttyS0
,115200,0x08410003,3,4M
))
1376 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR841NV5
,tl-wr841nd-v5
,TL-WR741ND
,ttyS0
,115200,0x08410005,1,4M
))
1377 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR841NV7
,tl-wr841nd-v7
,TL-WR841N-v7
,ttyS0
,115200,0x08410007,1,4M
))
1378 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR842V1
,tl-wr842n-v1
,TL-MR3420
,ttyS0
,115200,0x08420001,1,8M
))
1379 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR941NV2
,tl-wr941nd-v2
,TL-WR941ND
,ttyS0
,115200,0x09410002,2,4M
))
1380 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR941NV3
,tl-wr941nd-v3
,TL-WR941ND
,ttyS0
,115200,0x09410002,2,4M
))
1381 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR941NV4
,tl-wr941nd-v4
,TL-WR741ND
,ttyS0
,115200,0x09410004,1,4M
))
1382 $(eval
$(call SingleProfile
,TPLINK
,64kraw
,TLWR1043V1
,tl-wr1043nd-v1
,TL-WR1043ND
,ttyS0
,115200,0x10430001,1,8M
))
1384 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,ARCHERC5
,archer-c5
,ARCHER-C5
,ttyS0
,115200,0xc5000001,1,16Mlzma
))
1385 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,ARCHERC7V1
,archer-c7-v1
,ARCHER-C7
,ttyS0
,115200,0x75000001,1,8Mlzma
))
1386 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,ARCHERC7V2
,archer-c7-v2
,ARCHER-C7
,ttyS0
,115200,0xc7000002,1,16Mlzma
))
1387 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,ELM150
,el-m150
,EL-M150
,ttyATH0
,115200,0x01500101,1,8Mlzma
))
1388 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,ELMINI
,el-mini
,EL-MINI
,ttyATH0
,115200,0x01530001,1,8Mlzma
))
1389 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,GLINET6408A
,gl-inet-6408A-v1
,GL-INET
,ttyATH0
,115200,0x08000001,1,8Mlzma
))
1390 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,GLINET6416A
,gl-inet-6416A-v1
,GL-INET
,ttyATH0
,115200,0x08000001,1,16Mlzma
))
1391 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR10U
,tl-mr10u-v1
,TL-MR10U
,ttyATH0
,115200,0x00100101,1,4Mlzma
))
1392 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR11UV1
,tl-mr11u-v1
,TL-MR11U
,ttyATH0
,115200,0x00110101,1,4Mlzma
))
1393 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR11UV2
,tl-mr11u-v2
,TL-MR11U
,ttyATH0
,115200,0x00110102,1,4Mlzma
))
1394 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR13U
,tl-mr13u-v1
,TL-MR13U
,ttyATH0
,115200,0x00130101,1,4Mlzma
))
1395 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR3020
,tl-mr3020-v1
,TL-MR3020
,ttyATH0
,115200,0x30200001,1,4Mlzma
))
1396 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR3040V1
,tl-mr3040-v1
,TL-MR3040
,ttyATH0
,115200,0x30400001,1,4Mlzma
))
1397 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR3040V2
,tl-mr3040-v2
,TL-MR3040-v2
,ttyATH0
,115200,0x30400002,1,4Mlzma
))
1398 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR3220V2
,tl-mr3220-v2
,TL-MR3220-v2
,ttyATH0
,115200,0x32200002,1,4Mlzma
))
1399 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLMR3420V2
,tl-mr3420-v2
,TL-MR3420-v2
,ttyS0
,115200,0x34200002,1,4Mlzma
))
1400 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWA701NV2
,tl-wa701nd-v2
,TL-WA701ND-v2
,ttyATH0
,115200,0x07010002,1,4Mlzma
))
1401 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR703
,tl-wr703n-v1
,TL-WR703N
,ttyATH0
,115200,0x07030101,1,4Mlzma
))
1402 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR710
,tl-wr710n-v1
,TL-WR710N
,ttyATH0
,115200,0x07100001,1,8Mlzma
))
1403 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR720NV3
,tl-wr720n-v3
,TL-WR720N-v3
,ttyATH0
,115200,0x07200103,1,4Mlzma
))
1404 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR740NV4
,tl-wr740n-v4
,TL-WR741ND-v4
,ttyATH0
,115200,0x07400004,1,4Mlzma
))
1405 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR741NV4
,tl-wr741nd-v4
,TL-WR741ND-v4
,ttyATH0
,115200,0x07410004,1,4Mlzma
))
1406 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR743NV2
,tl-wr743nd-v2
,TL-WR741ND-v4
,ttyATH0
,115200,0x07430002,1,4Mlzma
))
1407 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWA750
,tl-wa750re-v1
,TL-WA750RE
,ttyS0
,115200,0x07500001,1,4Mlzma
))
1408 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR841NV8
,tl-wr841n-v8
,TL-WR841N-v8
,ttyS0
,115200,0x08410008,1,4Mlzma
))
1409 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWA830RV2
,tl-wa830re-v2
,TL-WA830RE-v2
,ttyS0
,115200,0x08300002,1,4Mlzma
))
1410 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR841NV9
,tl-wr841n-v9
,TL-WR841N-v9
,ttyS0
,115200,0x08410009,1,4Mlzma
))
1411 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR847NV8
,tl-wr847n-v8
,TL-WR841N-v8
,ttyS0
,115200,0x08470008,1,4Mlzma
))
1412 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR842V2
,tl-wr842n-v2
,TL-WR842N-v2
,ttyS0
,115200,0x8420002,1,8Mlzma
))
1413 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR843NV1
,tl-wr843nd-v1
,TL-WR841N-v8
,ttyS0
,115200,0x08430001,1,4Mlzma
))
1414 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWA801NV2
,tl-wa801nd-v2
,TL-WA801ND-v2
,ttyS0
,115200,0x08010002,1,4Mlzma
))
1415 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWA850
,tl-wa850re-v1
,TL-WA850RE
,ttyS0
,115200,0x08500001,1,4Mlzma
))
1416 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWA860
,tl-wa860re-v1
,TL-WA860RE
,ttyS0
,115200,0x08600001,1,4Mlzma
))
1417 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWA901NV3
,tl-wa901nd-v3
,TL-WA901ND-v3
,ttyS0
,115200,0x09010003,1,4Mlzma
))
1418 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR941NV6
,tl-wr941nd-v6
,TL-WDR3500
,ttyS0
,115200,0x09410006,1,4Mlzma
))
1419 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR1041
,tl-wr1041n-v2
,TL-WR1041N-v2
,ttyS0
,115200,0x10410002,1,4Mlzma
))
1420 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR1043V2
,tl-wr1043nd-v2
,TL-WR1043ND-v2
,ttyS0
,115200,0x10430002,1,8M
))
1421 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWR2543
,tl-wr2543-v1
,TL-WR2543N
,ttyS0
,115200,0x25430001,1,8Mlzma
,-v
3.13.99))
1422 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWDR3500V1
,tl-wdr3500-v1
,TL-WDR3500
,ttyS0
,115200,0x35000001,1,8Mlzma
))
1423 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWDR3600V1
,tl-wdr3600-v1
,TL-WDR4300
,ttyS0
,115200,0x36000001,1,8Mlzma
))
1424 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWDR4300V1
,tl-wdr4300-v1
,TL-WDR4300
,ttyS0
,115200,0x43000001,1,8Mlzma
))
1425 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWDR4300V1IL
,tl-wdr4300-v1-il
,TL-WDR4300
,ttyS0
,115200,0x43008001,1,8Mlzma
))
1426 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWDR4310V1
,tl-wdr4310-v1
,TL-WDR4300
,ttyS0
,115200,0x43100001,1,8Mlzma
))
1427 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,TLWDR4900V2
,tl-wdr4900-v2
,TL-WDR4900-v2
,ttyS0
,115200,0x49000002,1,8Mlzma
))
1428 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,MW4530RV1
,mw4530r-v1
,TL-WDR4300
,ttyS0
,115200,0x45300001,1,8Mlzma
))
1430 $(eval
$(call SingleProfile
,TPLINK-SAFELOADER
,64kraw
,CPE510
,cpe210-220-510-520
,CPE510
,ttyS0
,115200,$$(cpe510_mtdlayout
),CPE510
))
1432 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,SMART-300
,smart-300
,SMART-300
,ttyS0
,115200,0x93410001,1,8Mlzma
))
1434 $(eval
$(call SingleProfile
,TPLINK-LZMA
,64kraw
,OOLITE
,oolite
,GS-OOLITE
,ttyATH0
,115200,0x3C000101,1,16Mlzma
))
1436 $(eval
$(call SingleProfile
,UAPPRO
,64k
,UAPPRO
,ubnt-uap-pro
,UAP-PRO
,ttyS0
,115200,BZ
,BZ
,ar934x
))
1437 $(eval
$(call SingleProfile
,UAPPRO
,64k
,UBNTUNIFIOUTDOORPLUS
,ubnt-unifi-outdoor-plus
,UBNT-UOP
,ttyS0
,115200,BZ
,BZ
,ar7240
))
1439 $(eval
$(call SingleProfile
,UBDEV
,64kraw
,UBDEV01
,ubdev01
,UBNT-UF
,ttyS0
,115200,XM
,XM
,ar7240
))
1441 $(eval
$(call SingleProfile
,UBNT
,64k
,UBNTRS
,ubnt-rs
,UBNT-RS
,ttyS0
,115200,RS
,RSx
,ar7100
))
1442 $(eval
$(call SingleProfile
,UBNT
,64k
,UBNTRSPRO
,ubnt-rspro
,UBNT-RSPRO
,ttyS0
,115200,RSPRO
,RSPRO
,ar7100pro
))
1443 $(eval
$(call SingleProfile
,UBNT
,64k
,UBNTLSSR71
,ubnt-ls-sr71
,UBNT-LS-SR71
,ttyS0
,115200,LS-SR71
,LS-SR71
,ar7100
))
1445 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,RW2458N
,rw2458n
,RW2458N
,ttyS0
,115200,XM
,XM
,ar7240
))
1446 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTAIRROUTER
,ubnt-airrouter
,UBNT-AR
,ttyS0
,115200,XM
,XM
,ar7240
))
1447 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTBULLETM
,ubnt-bullet-m
,UBNT-BM
,ttyS0
,115200,XM
,XM
,ar7240
))
1448 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTROCKETM
,ubnt-rocket-m
,UBNT-RM
,ttyS0
,115200,XM
,XM
,ar7240
))
1449 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTNANOM
,ubnt-nano-m
,UBNT-NM
,ttyS0
,115200,XM
,XM
,ar7240
))
1450 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTUNIFI
,ubnt-unifi
,UBNT-UF
,ttyS0
,115200,XM
,BZ
,ar7240
))
1451 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTUNIFIOUTDOOR
,ubnt-unifi-outdoor
,UBNT-U20
,ttyS0
,115200,XM
,BZ
,ar7240
))
1452 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTNANOMXW
,ubnt-nano-m-xw
,UBNT-NM-XW
,ttyS0
,115200,XM
,XW
,ar934x
))
1453 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTLOCOXW
,ubnt-loco-m-xw
,UBNT-LOCO-XW
,ttyS0
,115200,XM
,XW
,ar934x
))
1454 $(eval
$(call SingleProfile
,UBNTXM
,64kraw
,UBNTAIRGW
,ubnt-air-gateway
,UBNT-AGW
,ttyATH0
,115200,XM
,AirGW
,ar933x
))
1456 $(eval
$(call SingleProfile
,WHRHPG300N
,64kraw
,WHRG301N
,whr-g301n
,WHR-G301N
,ttyS0
,115200,$$(whrhpg300n_mtdlayout
),WHR-G301N
))
1457 $(eval
$(call SingleProfile
,WHRHPG300N
,64kraw
,WHRHPG300N
,whr-hp-g300n
,WHR-HP-G300N
,ttyS0
,115200,$$(whrhpg300n_mtdlayout
),WHR-HP-G300N
))
1458 $(eval
$(call SingleProfile
,WHRHPG300N
,64kraw
,WHRHPGN
,whr-hp-gn
,WHR-HP-GN
,ttyS0
,115200,$$(whrhpg300n_mtdlayout
),WHR-HP-GN
))
1459 $(eval
$(call SingleProfile
,WHRHPG300N
,64kraw
,WLAEAG300N
,wlae-ag300n
,WLAE-AG300N
,ttyS0
,115200,$$(whrhpg300n_mtdlayout
),WLAE-AG300N
))
1461 $(eval
$(call SingleProfile
,WRT400N
,64k
,WRT400N
,wrt400n
,WRT400N
,ttyS0
,115200))
1463 $(eval
$(call SingleProfile
,WZRHP128K
,128kraw
,WZRHPG300NH
,wzr-hp-g300nh
,WZR-HP-G300NH
,ttyS0
,115200,WZR-HP-G300NH
))
1464 $(eval
$(call SingleProfile
,WZRHP64K
,64kraw
,WZRHPG300NH2
,wzr-hp-g300nh2
,WZR-HP-G300NH2
,ttyS0
,115200,WZR-HP-G300NH2
))
1465 $(eval
$(call SingleProfile
,WZRHP64K
,64kraw
,WZRHPAG300H
,wzr-hp-ag300h
,WZR-HP-AG300H
,ttyS0
,115200,WZR-HP-AG300H
))
1466 $(eval
$(call SingleProfile
,WZRHP64K
,64kraw
,WZRHPG450H
,wzr-hp-g450h
,WZR-HP-G450H
,ttyS0
,115200,WZR-HP-AG450H
))
1467 $(eval
$(call SingleProfile
,WZRHP64K
,64kraw
,WZR600DHP
,wzr-600dhp
,WZR-HP-AG300H
,ttyS0
,115200,WZR-600DHP
))
1468 $(eval
$(call SingleProfile
,WZRHP64K
,64kraw
,WZR450HP2
,wzr-450hp2
,WZR-450HP2
,ttyS0
,115200,WZR-450HP2
))
1470 $(eval
$(call SingleProfile
,Zcomax
,64k
,ZCN1523H28
,zcn-1523h-2-8
,ZCN-1523H-2
,ttyS0
,115200,$$(zcn1523h_mtdlayout
)))
1471 $(eval
$(call SingleProfile
,Zcomax
,64k
,ZCN1523H516
,zcn-1523h-5-16
,ZCN-1523H-5
,ttyS0
,115200,$$(zcn1523h_mtdlayout
)))
1473 $(eval
$(call SingleProfile
,ZyXEL
,64k
,NBG_460N_550N_550NH
,nbg460n_550n_550nh
,NBG460N
,ttyS0
,115200,NBG-460N
))
1475 $(eval
$(call MultiProfile
,AP121
,AP121_2M AP121_4M
))
1476 $(eval
$(call MultiProfile
,AP136
,AP136_010 AP136_020
))
1477 $(eval
$(call MultiProfile
,ARCHERC7
, ARCHERC5 ARCHERC7V1 ARCHERC7V2
))
1478 $(eval
$(call MultiProfile
,EWDORIN
, EWDORINAP EWDORINRT EWDORIN16M
))
1479 $(eval
$(call MultiProfile
,OPENMESH
,OM2P OM5P MR600 MR900
))
1480 $(eval
$(call MultiProfile
,GLINET
,GLINET6408A GLINET6416A
))
1481 $(eval
$(call MultiProfile
,TEW652BRP
,TEW652BRP_FW TEW652BRP_RECOVERY
))
1482 $(eval
$(call MultiProfile
,TLMR11U
,TLMR11UV1 TLMR11UV2
))
1483 $(eval
$(call MultiProfile
,TLMR3040
,TLMR3040V1 TLMR3040V2
))
1484 $(eval
$(call MultiProfile
,TLMR3220
,TLMR3220V1 TLMR3220V2
))
1485 $(eval
$(call MultiProfile
,TLMR3420
,TLMR3420V1 TLMR3420V2
))
1486 $(eval
$(call MultiProfile
,TLWA701
,TLWA701NV1 TLWA701NV2
))
1487 $(eval
$(call MultiProfile
,TLWA730RE
,TLWA730REV1
))
1488 $(eval
$(call MultiProfile
,TLWA801
,TLWA801NV1 TLWA801NV2
))
1489 $(eval
$(call MultiProfile
,TLWA830
,TLWA830RV1 TLWA830RV2
))
1490 $(eval
$(call MultiProfile
,TLWA901
,TLWA901NV1 TLWA901NV2 TLWA901NV3
))
1491 $(eval
$(call MultiProfile
,TLWA7510
,TLWA7510NV1
))
1492 $(eval
$(call MultiProfile
,TLWR720
,TLWR720NV3
))
1493 $(eval
$(call MultiProfile
,TLWR740
,TLWR740NV1 TLWR740NV3 TLWR740NV4
))
1494 $(eval
$(call MultiProfile
,TLWR741
,TLWR741NV1 TLWR741NV2 TLWR741NV4
))
1495 $(eval
$(call MultiProfile
,TLWR743
,TLWR743NV1 TLWR743NV2
))
1496 $(eval
$(call MultiProfile
,TLWR841
,TLWR841NV15 TLWR841NV3 TLWR841NV5 TLWR841NV7 TLWR841NV8 TLWR841NV9 TLWR847NV8
))
1497 $(eval
$(call MultiProfile
,TLWR842
,TLWR842V1 TLWR842V2
))
1498 $(eval
$(call MultiProfile
,TLWR843
,TLWR843NV1
))
1499 $(eval
$(call MultiProfile
,TLWR941
,TLWR941NV2 TLWR941NV3 TLWR941NV4 TLWR941NV6
))
1500 $(eval
$(call MultiProfile
,TLWR1043
,TLWR1043V1 TLWR1043V2
))
1501 $(eval
$(call MultiProfile
,TLWDR4300
,TLWDR3500V1 TLWDR3600V1 TLWDR4300V1 TLWDR4300V1IL TLWDR4310V1 MW4530RV1
))
1502 $(eval
$(call MultiProfile
,TUBE2H
,TUBE2H8M TUBE2H16M
))
1503 $(eval
$(call MultiProfile
,UBNT
,UBNTAIRROUTER UBNTRS UBNTRSPRO UBNTLSSR71 UBNTBULLETM UBNTROCKETM UBNTNANOM UBNTNANOMXW UBNTLOCOXW UBNTUNIFI UBNTUNIFIOUTDOOR UBNTUNIFIOUTDOORPLUS UAPPRO UBNTAIRGW
))
1504 $(eval
$(call MultiProfile
,WNR612V2
,REALWNR612V2 N150R
))
1505 $(eval
$(call MultiProfile
,WNR1000V2
,REALWNR1000V2 WNR1000V2_VC
))
1506 $(eval
$(call MultiProfile
,WP543
,WP543_2M WP543_4M WP543_8M WP543_16M
))
1507 $(eval
$(call MultiProfile
,WPE72
,WPE72_4M WPE72_8M WPE72_16M
))
1508 $(eval
$(call MultiProfile
,WPJ558
,WPJ558_8M WPJ558_16M
))
1510 $(eval
$(call MultiProfile
,Minimal
,$(SINGLE_PROFILES
)))
1511 $(eval
$(call MultiProfile
,Madwifi
,EAP7660D UBNTRS UBNTRSPRO UBNTLSSR71 WP543
))
1512 endif # ifeq ($(SUBTARGET),generic)
1514 ifeq ($(SUBTARGET
),nand
)
1515 $(eval
$(call SingleProfile
,NetgearNAND
,64k
,WNDR3700V4
,wndr3700v4
,WNDR3700_V4
,ttyS0
,115200,$$(wndr4300_mtdlayout
),0x33373033,WNDR3700v4
,"",-H
29763948+128+128,wndr4300
))
1516 $(eval
$(call SingleProfile
,NetgearNAND
,64k
,WNDR4300V1
,wndr4300
,WNDR4300
,ttyS0
,115200,$$(wndr4300_mtdlayout
),0x33373033,WNDR4300
,"",-H
29763948+0+128+128+2x2
+3x3
,wndr4300
))
1517 $(eval
$(call SingleProfile
,NetgearNAND
,64k
,R6100
,r6100
,R6100
,ttyS0
,115200,$$(r6100_mtdlayout
),0x36303030,R6100
,"",-H
29764434+0+128+128+2x2
+2x2
,wndr4300
))
1519 $(eval
$(call SingleProfile
,ZyXELNAND
,128k
,NBG6716
,nbg6716
,NBG6716
,ttyS0
,115200,NBG6716
,$$(zyx_nbg6716_mtdlayout
),mem
=256M
))
1521 $(eval
$(call MultiProfile
,WNDR4300
,WNDR3700V4 WNDR4300V1
))
1522 endif # ifeq ($(SUBTARGET),nand)
1525 $(eval
$(call MultiProfile
,Default
,$(SINGLE_PROFILES
)))
1527 define Image
/Build
/squashfs
1528 cp
$(KDIR
)/root.squashfs
$(KDIR
)/root.squashfs-raw
1529 cp
$(KDIR
)/root.squashfs
$(KDIR
)/root.squashfs-64k
1530 $(STAGING_DIR_HOST
)/bin
/padjffs2
$(KDIR
)/root.squashfs-64k
64
1531 cp
$(KDIR
)/root.squashfs-64k
$(BIN_DIR
)/$(IMG_PREFIX
)-root.squashfs-64k
1532 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
1533 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) bs
=128k conv
=sync
1536 define Image
/Build
/jffs2
1537 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-root.
$(1) bs
=128k conv
=sync
1540 define Image
/Build
/Initramfs
1541 $(call Image
/Build
/Profile
/$(IMAGE_PROFILE
),initramfs
)
1544 define Image
/Prepare
1545 gzip
-9 -c
$(KDIR
)/vmlinux
> $(KDIR
)/vmlinux.bin.gz
1546 $(call CompressLzma
,$(KDIR
)/vmlinux
,$(KDIR
)/vmlinux.bin.lzma
)
1547 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),)
1548 gzip
-9 -c
$(KDIR
)/vmlinux-initramfs
> $(KDIR
)/vmlinux-initramfs.bin.gz
1549 $(call CompressLzma
,$(KDIR
)/vmlinux-initramfs
,$(KDIR
)/vmlinux-initramfs.bin.lzma
)
1550 $(call Image
/BuildLoader
,generic
,elf
,,,-initramfs
)
1552 $(call Image
/BuildLoader
,generic
,elf
)
1553 $(call Image
/Build
/Profile
/$(if
$(CONFIG_IB
),Default
,$(IMAGE_PROFILE
)),loader
)
1556 # $(1): filesystem type.
1558 $(call Image
/Build
/$(call rootfs_type
,$(1)),$(1))
1559 $(call Image
/Build
/Profile
/$(IMAGE_PROFILE
),$(1))
1562 $(eval
$(call BuildImage
))