image.mk: replace all Build/netgear-chk with a generic implementation
[openwrt/openwrt.git] / target / linux / brcm63xx / image / Makefile
1 #
2 # Copyright (C) 2006-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 LOADADDR = 0x80010000 # RAM start + 64K
11 KERNEL_ENTRY = $(LOADADDR) # Newer kernels add a jmp to the kernel_entry at the start of the binary
12 LOADER_ENTRY = 0x80a00000 # RAM start + 10M, for relocate
13 RAMSIZE = 0x02000000 # 32MB
14 LZMA_TEXT_START = 0x81800000 # 32MB - 8MB
15
16 LOADER_MAKEOPTS= \
17 KDIR=$(KDIR) \
18 LOADADDR=$(LOADADDR) \
19 KERNEL_ENTRY=$(KERNEL_ENTRY) \
20 RAMSIZE=$(RAMSIZE) \
21 LZMA_TEXT_START=$(LZMA_TEXT_START) \
22
23 RELOCATE_MAKEOPTS= \
24 CACHELINE_SIZE=16 \
25 KERNEL_ADDR=$(KERNEL_ENTRY) \
26 CROSS_COMPILE=$(TARGET_CROSS) \
27 LZMA_TEXT_START=$(LOADER_ENTRY)
28
29 define Build/Compile
30 rm -rf $(KDIR)/relocate
31 $(CP) ../../generic/image/relocate $(KDIR)
32 $(MAKE) -C $(KDIR)/relocate $(RELOCATE_MAKEOPTS)
33 endef
34
35 ### Kernel scripts ###
36 define Build/append-dtb
37 $(call Image/BuildDTB,../dts/$(DEVICE_DTS).dts,$@.dtb)
38 cat $@.dtb >> $@
39 endef
40
41 define Build/gzip
42 gzip -9 -c $@ > $@.gz
43 mv $@.gz $@
44 endef
45
46 define Build/hcs-initramfs
47 $(STAGING_DIR_HOST)/bin/hcsmakeimage --magic_bytes=$(HCS_MAGIC_BYTES) \
48 --rev_maj=$(HCS_REV_MAJ) --rev_min=$(HCS_REV_MIN) --input_file=$@ \
49 --output_file=$@.hcs --ldaddress=$(LOADADDR)
50 mv $@.hcs $@
51 endef
52
53 define Build/loader-lzma
54 rm -rf $@.src
55 $(MAKE) -C lzma-loader \
56 $(LOADER_MAKEOPTS) \
57 PKG_BUILD_DIR="$@.src" \
58 TARGET_DIR="$(dir $@)" \
59 LOADER_DATA="$@" \
60 LOADER_NAME="$(notdir $@)" \
61 compile loader.$(1)
62 mv "$@.$(1)" "$@"
63 rm -rf $@.src
64 endef
65
66 define Build/lzma
67 # CFE is a LZMA nazi! It took me hours to find out the parameters!
68 # Also I think lzma has a bug cause it generates different output depending on
69 # if you use stdin / stdout or not. Use files instead of stdio here, cause
70 # otherwise CFE will complain and not boot the image.
71 $(STAGING_DIR_HOST)/bin/lzma e $@ -d22 -fb64 -a1 $@.lzma
72 mv $@.lzma $@
73 endef
74
75 define Build/lzma-cfe
76 # Strip out the length, CFE doesn't like this
77 dd if=$@ of=$@.lzma.cfe bs=5 count=1
78 dd if=$@ of=$@.lzma.cfe ibs=13 obs=5 skip=1 seek=1 conv=notrunc
79 mv $@.lzma.cfe $@
80 endef
81
82 define Build/relocate-kernel
83 # CFE only allows ~4 MiB for the uncompressed kernels, but uncompressed
84 # kernel might get larger than that, so let CFE unpack and load at a
85 # higher address and make the kernel relocate itself to the expected
86 # location.
87 ( \
88 dd if=$(KDIR)/relocate/loader.bin bs=32 conv=sync && \
89 perl -e '@s = stat("$@"); print pack("N", @s[7])' && \
90 cat $@ \
91 ) > $@.relocate
92 mv $@.relocate $@
93 endef
94
95 ### Image scripts ###
96 define rootfspad/jffs2-128k
97 --align-rootfs
98 endef
99 define rootfspad/jffs2-64k
100 --align-rootfs
101 endef
102 define rootfspad/squashfs
103 endef
104
105 define Image/LimitName16
106 $(shell expr substr "$(1)" 1 16)
107 endef
108
109 define Image/FileSystemStrip
110 $(subst root.,,$(notdir $(1)))
111 endef
112
113 define Build/cfe-bin
114 $(STAGING_DIR_HOST)/bin/imagetag -i $(word 1,$^) -f $(word 2,$^) \
115 --output $@ --boardid $(CFE_BOARD_ID) --chipid $(CFE_CHIP_ID) \
116 --entry $(LOADER_ENTRY) --load-addr $(LOADER_ENTRY) \
117 --info1 "$(call Image/LimitName16,$(DEVICE_NAME))" \
118 --info2 "$(call Image/FileSystemStrip,$(word 2,$^))" \
119 $(call rootfspad/$(call Image/FileSystemStrip,$(word 2,$^))) \
120 $(CFE_EXTRAS) $(1)
121 endef
122
123 define Build/cfe-old-bin
124 $(TOPDIR)/scripts/brcmImage.pl -t -p \
125 -o $@ -b $(CFE_BOARD_ID) -c $(CFE_CHIP_ID) \
126 -e $(LOADER_ENTRY) -a $(LOADER_ENTRY) \
127 -k $(word 1,$^) -r $(word 2,$^) \
128 $(CFE_EXTRAS)
129 endef
130
131 define Build/cfe-spw303v-bin
132 $(STAGING_DIR_HOST)/bin/imagetag -i $(word 1,$^) -f $(word 2,$^) \
133 --output $@ --boardid $(CFE_BOARD_ID) --chipid $(CFE_CHIP_ID) \
134 --entry $(LOADER_ENTRY) --load-addr $(LOADER_ENTRY) \
135 $(call rootfspad/$(call Image/FileSystemStrip,$(word 2,$^))) \
136 $(CFE_EXTRAS)
137 endef
138
139 define Build/spw303v-bin
140 $(STAGING_DIR_HOST)/bin/spw303v -i $@ -o $@.spw303v
141 mv $@.spw303v $@
142 endef
143
144 define Build/xor-image
145 $(STAGING_DIR_HOST)/bin/xorimage -i $@ -o $@.xor
146 mv $@.xor $@
147 endef
148
149 define Build/zyxel-bin
150 $(STAGING_DIR_HOST)/bin/zyxbcm -i $@ -o $@.zyxel
151 mv $@.zyxel $@
152 endef
153
154 define Build/redboot-bin
155 # Prepare kernel and rootfs
156 dd if=$(word 1,$^) of=$(BIN_DIR)/$(REDBOOT_PREFIX)-vmlinux.gz bs=65536 conv=sync
157 dd if=$(word 2,$^) of=$(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^)) bs=64k conv=sync
158 echo -ne \\xDE\\xAD\\xC0\\xDE >> $(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^))
159 # Generate the scripted image
160 $(TOPDIR)/scripts/redboot-script.pl \
161 -k $(BIN_DIR)/$(REDBOOT_PREFIX)-vmlinux.gz \
162 -r $(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^)) \
163 -a $(strip $(LOADADDR)) -f 0xbe430000 -l 0x7c0000 \
164 -s 0x1000 -t 20 -o $@.redbootscript
165 dd if="$@.redbootscript" of="$@.redbootscript.padded" bs=4096 conv=sync
166 cat \
167 "$@.redbootscript.padded" \
168 "$(BIN_DIR)/$(REDBOOT_PREFIX)-vmlinux.gz" \
169 "$(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^))" \
170 > "$@"
171 endef
172
173 # Shared device definition: applies to every defined device
174 define Device/Default
175 PROFILES = Default $$(DEVICE_PROFILE)
176 KERNEL_INITRAMFS_IMAGE = $$(KERNEL_INITRAMFS_PREFIX).elf
177 DEVICE_PROFILE :=
178 DEVICE_NAME :=
179 DEVICE_DTS :=
180 endef
181 DEVICE_VARS += DEVICE_PROFILE DEVICE_NAME DEVICE_DTS
182
183 # BCM33xx HCS devices: only generates ramdisks (unsupported bin images)
184 define Device/bcm33xxHcsRamdisk
185 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-lzma bin | hcs-initramfs
186 IMAGES :=
187 HCS_MAGIC_BYTES :=
188 HCS_REV_MIN :=
189 HCS_REV_MAJ :=
190 endef
191 DEVICE_VARS += HCS_MAGIC_BYTES HCS_REV_MIN HCS_REV_MAJ
192
193 # Shared BCM63xx CFE device definitios
194 define Device/bcm63xxCfeCommon
195 FILESYSTEMS := squashfs jffs2-64k jffs2-128k
196 KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma | lzma-cfe
197 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-lzma elf
198 endef
199
200 # BCM63xx CFE devices: only generates ramdisks (unsupported bin images)
201 define Device/bcm63xxCfeRamdisk
202 $(Device/bcm63xxCfeCommon)
203 IMAGES :=
204 endef
205
206 # BCM63xx CFE devices: both ramdisks and parallel/spi bin images
207 # New versions of CFE bootloader compatible with imagetag
208 define Device/bcm63xxCfe
209 $(Device/bcm63xxCfeCommon)
210 IMAGES := cfe.bin
211 IMAGE/cfe.bin := cfe-bin
212 CFE_BOARD_ID :=
213 CFE_CHIP_ID :=
214 CFE_EXTRAS :=
215 endef
216 DEVICE_VARS += CFE_BOARD_ID CFE_CHIP_ID CFE_EXTRAS
217
218 # BCM63xx CFE BC221 devices: both ramdisks and parallel/spi bin images
219 # Generates a generic image and a layout version 5 image
220 define Device/bcm63xxCfeBc221
221 $(Device/bcm63xxCfeCommon)
222 IMAGES := cfe.bin cfe-bc221.bin
223 IMAGE/cfe.bin := cfe-bin
224 IMAGE/cfe-bc221.bin := cfe-bin --layoutver 5
225 CFE_BOARD_ID :=
226 CFE_CHIP_ID :=
227 CFE_EXTRAS :=
228 endef
229
230 # BCM63xx CFE MultiFlash devices: both ramdisks and parallel/spi bin images
231 # Generates generic images padded for 4M/8M/16M flashes
232 define Device/bcm63xxCfeMultiFlash
233 $(Device/bcm63xxCfeCommon)
234 IMAGES := cfe-4M.bin cfe-8M.bin cfe-16M.bin
235 IMAGE/cfe-4M.bin := cfe-bin --pad 2
236 IMAGE/cfe-8M.bin := cfe-bin --pad 4
237 IMAGE/cfe-16M.bin := cfe-bin --pad 8
238 CFE_BOARD_ID :=
239 CFE_CHIP_ID :=
240 CFE_EXTRAS :=
241 endef
242
243 # BCM63xx CFE NETGEAR devices: both ramdisks and parallel/spi bin images
244 # factory.chk: netgear images for bootloader/original firmware upgrades
245 # sysupgrade.bin: openwrt images for sysupgrades
246 define Device/bcm63xxCfeNetgear
247 $(Device/bcm63xxCfeCommon)
248 IMAGES := factory.chk sysupgrade.bin
249 IMAGE/factory.chk := cfe-bin | netgear-chk
250 IMAGE/sysupgrade.bin := cfe-bin
251 CFE_BOARD_ID :=
252 CFE_CHIP_ID :=
253 CFE_EXTRAS :=
254 NETGEAR_BOARD_ID :=
255 NETGEAR_REGION :=
256 endef
257 DEVICE_VARS += NETGEAR_BOARD_ID NETGEAR_REGION
258
259 # BCM63xx Old CFE devices: both ramdisks and parallel/spi bin images
260 # Old versions of CFE bootloader not compatible with imagetag
261 define Device/bcm63xxCfeOld
262 $(Device/bcm63xxCfeCommon)
263 IMAGES := cfe-old.bin
264 IMAGE/cfe-old.bin := cfe-old-bin
265 CFE_BOARD_ID :=
266 CFE_CHIP_ID :=
267 CFE_EXTRAS :=
268 endef
269
270 # BCM63xx CFE SPW303V devices: both ramdisks and parallel/spi bin images
271 # factory.bin: SPW303V images for bootloader/original firmware upgrades
272 # sysupgrade.bin: openwrt images for sysupgrades
273 define Device/bcm63xxCfeSpw303v
274 $(Device/bcm63xxCfeCommon)
275 IMAGES := factory.bin sysupgrade.bin
276 IMAGE/factory.bin := cfe-spw303v-bin | spw303v-bin | xor-image
277 IMAGE/sysupgrade.bin := cfe-spw303v-bin | spw303v-bin
278 CFE_BOARD_ID :=
279 CFE_CHIP_ID :=
280 CFE_EXTRAS :=
281 endef
282
283 # BCM63xx CFE ZyXEL devices: both ramdisks and parallel/spi bin images
284 # factory.bin: ZyXEL specific CFE images (sysupgrade compatible)
285 define Device/bcm63xxCfeZyxel
286 $(Device/bcm63xxCfeCommon)
287 IMAGES := factory.bin
288 IMAGE/factory.bin := cfe-bin | zyxel-bin
289 CFE_BOARD_ID :=
290 CFE_CHIP_ID :=
291 CFE_EXTRAS :=
292 endef
293
294 # BCM63xx RedBoot devices: both ramdisks and parallel/spi bin images
295 # Generates images compatible with RedBoot bootloader
296 define Device/bcm63xxRedBoot
297 FILESYSTEMS := squashfs
298 KERNEL := kernel-bin | append-dtb | gzip
299 IMAGES := redboot.bin
300 IMAGE/redboot.bin := redboot-bin
301 REDBOOT_PREFIX := $$(IMAGE_PREFIX)
302 endef
303 DEVICE_VARS += REDBOOT_PREFIX
304
305 ### Device macros ###
306 # $(1) = profile
307 # $(2) = image name
308 # $(3) = dts
309 # $(4) = hcs magic bytes
310 # $(5) = hcs rev min
311 # $(6) = hcs rev major
312 define bcm33xxHcsRamdisk
313 define Device/$(2)
314 $$(Device/bcm33xxHcsRamdisk)
315 DEVICE_PROFILE := $(1)
316 DEVICE_NAME := $(2)
317 DEVICE_DTS := $(3)
318 HCS_MAGIC_BYTES := $(4)
319 HCS_REV_MIN := $(5)
320 HCS_REV_MAJ := $(6)
321 endef
322 TARGET_DEVICES += $(2)
323 endef
324
325 # $(1) = profile
326 # $(2) = image name
327 # $(3) = dts
328 define bcm63xxCfeRamdisk
329 define Device/$(2)
330 $$(Device/bcm63xxCfeRamdisk)
331 DEVICE_PROFILE := $(1)
332 DEVICE_NAME := $(2)
333 DEVICE_DTS := $(3)
334 endef
335 TARGET_DEVICES += $(2)
336 endef
337
338 # $(1) = profile
339 # $(2) = image name
340 # $(3) = dts
341 # $(4) = cfe board name
342 # $(5) = cfe chip id
343 # $(6) = cfe additional options
344 define bcm63xxCfe
345 define Device/$(2)
346 $$(Device/bcm63xxCfe)
347 DEVICE_PROFILE := $(1)
348 DEVICE_NAME := $(2)
349 DEVICE_DTS := $(3)
350 CFE_BOARD_ID := $(4)
351 CFE_CHIP_ID := $(5)
352 CFE_EXTRAS := $(6)
353 endef
354 TARGET_DEVICES += $(2)
355 endef
356
357 # $(1) = profile
358 # $(2) = image name
359 # $(3) = dts
360 # $(4) = cfe board name
361 # $(5) = cfe chip id
362 # $(6) = cfe additional options
363 define bcm63xxCfeMultiFlash
364 define Device/$(2)
365 $$(Device/bcm63xxCfeMultiFlash)
366 DEVICE_PROFILE := $(1)
367 DEVICE_NAME := $(2)
368 DEVICE_DTS := $(3)
369 CFE_BOARD_ID := $(4)
370 CFE_CHIP_ID := $(5)
371 CFE_EXTRAS := $(6)
372 endef
373 TARGET_DEVICES += $(2)
374 endef
375
376 # $(1) = profile
377 # $(2) = image name
378 # $(3) = dts
379 # $(4) = cfe board name
380 # $(5) = cfe chip id
381 # $(6) = cfe additional options
382 define bcm63xxCfeBc221
383 define Device/$(2)
384 $$(Device/bcm63xxCfeBc221)
385 DEVICE_PROFILE := $(1)
386 DEVICE_NAME := $(2)
387 DEVICE_DTS := $(3)
388 CFE_BOARD_ID := $(4)
389 CFE_CHIP_ID := $(5)
390 CFE_EXTRAS := $(6)
391 endef
392 TARGET_DEVICES += $(2)
393 endef
394
395 # $(1) = profile
396 # $(2) = image name
397 # $(3) = dts
398 # $(4) = cfe board name
399 # $(5) = cfe chip id
400 # $(6) = cfe additional options
401 # $(7) = netgear id
402 # $(8) = netgear region
403 define bcm63xxCfeNetgear
404 define Device/$(2)
405 $$(Device/bcm63xxCfeNetgear)
406 DEVICE_PROFILE := $(1)
407 DEVICE_NAME := $(2)
408 DEVICE_DTS := $(3)
409 CFE_BOARD_ID := $(4)
410 CFE_CHIP_ID := $(5)
411 CFE_EXTRAS := $(6)
412 NETGEAR_BOARD_ID := $(7)
413 NETGEAR_REGION := $(8)
414 endef
415 TARGET_DEVICES += $(2)
416 endef
417
418 # $(1) = profile
419 # $(2) = image name
420 # $(3) = dts
421 # $(4) = cfe board name
422 # $(5) = cfe chip id
423 # $(6) = cfe additional options
424 define bcm63xxCfeOld
425 define Device/$(2)
426 $$(Device/bcm63xxCfeOld)
427 DEVICE_PROFILE := $(1)
428 DEVICE_NAME := $(2)
429 DEVICE_DTS := $(3)
430 CFE_BOARD_ID := $(4)
431 CFE_CHIP_ID := $(5)
432 CFE_EXTRAS := $(6)
433 endef
434 TARGET_DEVICES += $(2)
435 endef
436
437 # $(1) = profile
438 # $(2) = image name
439 # $(3) = dts
440 # $(4) = cfe board name
441 # $(5) = cfe chip id
442 # $(6) = cfe additional options
443 define bcm63xxCfeSpw303v
444 define Device/$(2)
445 $$(Device/bcm63xxCfeSpw303v)
446 DEVICE_PROFILE := $(1)
447 DEVICE_NAME := $(2)
448 DEVICE_DTS := $(3)
449 CFE_BOARD_ID := $(4)
450 CFE_CHIP_ID := $(5)
451 CFE_EXTRAS := $(6)
452 endef
453 TARGET_DEVICES += $(2)
454 endef
455
456 # $(1) = profile
457 # $(2) = image name
458 # $(3) = dts
459 # $(4) = cfe board name
460 # $(5) = cfe chip id
461 # $(6) = cfe additional options
462 define bcm63xxCfeZyxel
463 define Device/$(2)
464 $$(Device/bcm63xxCfeZyxel)
465 DEVICE_PROFILE := $(1)
466 DEVICE_NAME := $(2)
467 DEVICE_DTS := $(3)
468 CFE_BOARD_ID := $(4)
469 CFE_CHIP_ID := $(5)
470 CFE_EXTRAS := $(6)
471 endef
472 TARGET_DEVICES += $(2)
473 endef
474
475 # $(1) = profile
476 # $(2) = image name
477 # $(3) = dts
478 define bcm63xxRedBoot
479 define Device/$(2)
480 $$(Device/bcm63xxRedBoot)
481 DEVICE_PROFILE := $(1)
482 DEVICE_NAME := $(2)
483 DEVICE_DTS := $(3)
484 endef
485 TARGET_DEVICES += $(2)
486 endef
487
488 ### Devices ###
489 # Generic 963281TAN
490 $(eval $(call bcm63xxCfeMultiFlash,963281TAN,963281TAN-generic,bcm963281TAN,963281TAN,6328))
491 # Generic 96328avng
492 $(eval $(call bcm63xxCfeMultiFlash,96328avng,96328avng-generic,bcm96328avng,96328avng,6328))
493 # Generic 96338GW
494 $(eval $(call bcm63xxCfe,96338GW,96338GW-generic,bcm96338GW,6338GW,6338))
495 # Generic 96338W
496 $(eval $(call bcm63xxCfe,96338W,96338W-generic,bcm96338W,6338W,6338))
497 # Generic 96345GW2
498 $(eval $(call bcm63xxCfeBc221,96345GW2,96345GW2-generic,bcm96345GW2,96345GW2,6345))
499 # Generic 96348GW
500 $(eval $(call bcm63xxCfeBc221,96348GW,96348GW-generic,bcm96348GW,96348GW,6348))
501 # Generic 96348GW-10
502 $(eval $(call bcm63xxCfe,96348GW_10,96348GW-10-generic,bcm96348GW-10,96348GW-10,6348))
503 # Generic 96348GW-11
504 $(eval $(call bcm63xxCfe,96348GW_11,96348GW-11-generic,bcm96348GW-11,96348GW-11,6348))
505 # Generic 96348R
506 $(eval $(call bcm63xxCfe,96348R,96348R-generic,bcm96348R,96348R,6348))
507 # Generic 96358VW
508 $(eval $(call bcm63xxCfe,96358VW,96358VW-generic,bcm96358VW,96358VW,6358))
509 # Generic 96358VW2
510 $(eval $(call bcm63xxCfe,96358VW2,96358VW2-generic,bcm96358VW2,96358VW2,6358))
511 # Generic 96368MVNgr
512 $(eval $(call bcm63xxCfe,96368MVNgr,96368MVNgr-generic,bcm96368MVNgr,96368MVNgr,6368))
513 # Generic 96368MVWG
514 $(eval $(call bcm63xxCfe,96368MVWG,96368MVWG-generic,bcm96368MVWG,96368MVWG,6368))
515
516 # ADB P.DG A4001N
517 $(eval $(call bcm63xxCfe,A4001N,A4001N,a4001n,96328dg2x2,6328,--pad 4))
518 # ADB P.DG A4001N1
519 $(eval $(call bcm63xxCfe,A4001N1,A4001N1,a4001n1,963281T_TEF,6328,--pad 8))
520 # Alcatel RG100A
521 $(eval $(call bcm63xxCfe,RG100A,RG100A,rg100a,96358VW2,6358,--block-size 0x20000 --image-offset 0x20000))
522 # Asmax AR 1004g
523 $(eval $(call bcm63xxCfe,AR1004G,AR1004G,ar1004g,96348GW-10,6348))
524 # Belkin F5D7633
525 $(eval $(call bcm63xxCfe,F5D7633,F5D7633,f5d7633,96348GW-10,6348,--block-size 0x20000 --image-offset 0x20000))
526 # Broadcom BCM96318REF
527 $(eval $(call bcm63xxCfeRamdisk,BCM96318REF,BCM96318REF,bcm96318ref,96318REF,6318))
528 # Broadcom BCM96318REF_P300
529 $(eval $(call bcm63xxCfeRamdisk,BCM96318REF_P300,BCM96318ref_P300,bcm96318ref_p300,96318REF_P300,6318))
530 # Broadcom BCM963268BU_P300
531 $(eval $(call bcm63xxCfeRamdisk,BCM963268BU_P300,BCM963268BU_P300,bcm963268bu_p300,963268BU_P300,63268))
532 # Broadcom BCM963269BHR
533 $(eval $(call bcm63xxCfeRamdisk,BCM963269BHR,BCM963269BHR,bcm963269bhr,963269BHR,63268))
534 # BT Home Hub 2.0 A
535 $(eval $(call bcm63xxCfe,BTHOMEHUB2A,HomeHub2A,homehub2a,HOMEHUB2A,6358,--image-offset 0x20000 --block-size 0x20000))
536 # BT Voyager V2110, V2110_AA, V2110_ROI
537 $(eval $(call bcm63xxCfe,BTV2110,BTV2110,v2110,V2110,6348,--layoutver 5))
538 # BT Voyager V2500V, V2500V_SIP_CLUB, V2500V_AA
539 $(eval $(call bcm63xxCfe,BTV2500V,BTV2500V,v2500v-bb,V2500V_BB,6348,--layoutver 5))
540 # Comtrend AR-5381u
541 $(eval $(call bcm63xxCfe,AR5381u,AR-5381u,ar-5381u,96328A-1241N,6328,--pad 8))
542 # Comtrend AR-5387un
543 $(eval $(call bcm63xxCfe,AR5387un,AR-5387un,ar-5387un,96328A-1441N1,6328,--pad 8))
544 # Comtrend 536, 5621
545 $(eval $(call bcm63xxCfe,CT536_CT5621,CT536_CT5621,ct536plus,96348GW-11,6348))
546 # Comtrend CT-5365
547 $(eval $(call bcm63xxCfe,CT5365,CT-5365,ct-5365,96348A-122,6348))
548 # Comtrend CT-6373
549 $(eval $(call bcm63xxCfe,CT6373,CT-6373,ct-6373,CT6373-1,6358))
550 # Comtrend VR-3025u
551 $(eval $(call bcm63xxCfe,VR3025u,VR-3025u,vr-3025u,96368M-1541N,6368,--pad 16 --image-offset 0x20000 --block-size 0x20000))
552 # Comtrend VR-3025un
553 $(eval $(call bcm63xxCfe,VR3025un,VR-3025un,vr-3025un,96368M-1341N,6368,--pad 4))
554 # Comtrend WAP-5813n
555 $(eval $(call bcm63xxCfe,WAP5813n,WAP-5813n,wap-5813n,96369R-1231N,6368,--pad 4))
556 # D-Link DSL-2640B, rev B2
557 $(eval $(call bcm63xxCfe,DSL2640B-B2,DSL2640B_B,dsl-2640b-b,D-4P-W,6348))
558 # D-Link DSL-2640U, rev C1
559 $(eval $(call bcm63xxCfe,DSL2640U,DSL2640U,dsl-2640u,96338W2_E7T,6338))
560 # D-Link DSL-2650U
561 $(eval $(call bcm63xxCfe,DSL2650U,DSL2650U,dsl-2650u,96358VW2,6358))
562 # D-Link DSL-2740B/DSL-2741B, rev C2
563 $(eval $(call bcm63xxCfe,DSL274XB_C,DSL274XB-C2,dsl-274xb-c,96358GW,6358))
564 # D-Link DSL-2740B/DSL-2741B, rev C3
565 $(eval $(call bcm63xxCfe,DSL274XB_C,DSL274XB-C3,dsl-274xb-c,AW4139,6358))
566 # D-Link DSL-2740B/DSL-2741B, rev F1
567 $(eval $(call bcm63xxCfe,DSL274XB_F,DSL274XB-F1-EU,dsl-274xb-f,AW4339U,6328,--signature2 "4.06.01.EUF1" --pad 4))
568 $(eval $(call bcm63xxCfe,DSL274XB_F,DSL274XB-F1-AU,dsl-274xb-f,AW4339U,6328,--signature2 "4.06.01.AUF1" --pad 4))
569 # D-Link DSL-2750B/DSL-2751, rev D1
570 $(eval $(call bcm63xxCfe,DSL275XB_D,DSL275XB-D1,dsl-275xb-d,AW5200B,6318,--pad 4))
571 # D-Link DVA-G3810BN/TL
572 $(eval $(call bcm63xxCfe,DVAG3810BN,DVAG3810BN,dva-g3810bn_tl,96358VW,6358))
573 # Davolink DV-201AMR
574 $(eval $(call bcm63xxCfeOld,DV201AMR,DV-201AMR,dv-201amr,DV201AMR,6348))
575 # Dynalink RTA770BW (Siemens SE515)
576 $(eval $(call bcm63xxCfeRamdisk,RTA770BW,RTA770BW,rta770bw,RTA770BW,6345,--layoutver 5))
577 # Dynalink RTA770W
578 $(eval $(call bcm63xxCfeRamdisk,RTA770W,RTA770W,rta770w,RTA770W,6345,--layoutver 5))
579 # Dynalink RTA1025W (numerous routers)
580 $(eval $(call bcm63xxCfe,RTA1025W,RTA1025W_16,rta1025w,RTA1025W_16,6348,--layoutver 5))
581 # Dynalink RTA1320 (numerous routers)
582 $(eval $(call bcm63xxCfe,RTA1320,RTA1320_16M,rta1320,RTA1320_16M,6338,--layoutver 5))
583 # Huawei HG520v
584 $(eval $(call bcm63xxCfe,HG520v,HG520v,hg520v,HW6358GW_B,6358,--rsa-signature "EchoLife_HG520v"))
585 # Huawei HG553
586 $(eval $(call bcm63xxCfe,HG553,HG553,hg553,HW553,6358,--rsa-signature "EchoLife_HG553" --image-offset 0x20000 --block-size 0x20000 --tag-version 7))
587 # Huawei HG556a
588 $(eval $(call bcm63xxCfe,HG556a_AB,HG556a_A,hg556a-a,HW556,6358,--rsa-signature "EchoLife_HG556a" --image-offset 0x20000 --block-size 0x10000 --tag-version 8))
589 $(eval $(call bcm63xxCfe,HG556a_AB,HG556a_B,hg556a-b,HW556,6358,--rsa-signature "EchoLife_HG556a" --image-offset 0x20000 --block-size 0x20000 --tag-version 8))
590 $(eval $(call bcm63xxCfe,HG556a_C,HG556a_C,hg556a-c,HW556,6358,--rsa-signature "EchoLife_HG556a" --image-offset 0x20000 --block-size 0x20000 --tag-version 8))
591 # Huawei HG655b
592 $(eval $(call bcm63xxCfe,HG655b,HG655b,hg655b,HW65x,6368,--image-offset 0x20000 --tag-version 7 --pad 4))
593 # Inteno VG50
594 $(eval $(call bcm63xxCfeRamdisk,VG50,vg50,vg50,VW6339GU,63268))
595 # Inventel Livebox 1
596 $(eval $(call bcm63xxRedBoot,Livebox,livebox,livebox-blue-5g))
597 # Netgear CVG834G
598 $(eval $(call bcm33xxHcsRamdisk,CVG834G,cvg834g,cvg834g,a020,0001,0022))
599 # Netgear DG834GT/PN
600 $(eval $(call bcm63xxCfe,DG834GTPN,DG834GT_PN,dg834gtpn,96348GW-10,6348))
601 # Netgear DG834G v4
602 $(eval $(call bcm63xxCfeRamdisk,DG834GV4,DG834GTv4,dg834g_v4,96348W3,6348))
603 # Netgear DGND3700 v1
604 $(eval $(call bcm63xxCfeNetgear,DGND3700v1_3800B,DGND3700v1,dgnd3700v1,96368MVWG,6368,--image-offset 0x20000 --block-size 0x20000,U12L144T01_NETGEAR_NEWLED,1))
605 # Netgear DGND3800B
606 $(eval $(call bcm63xxCfeNetgear,DGND3700v1_3800B,DGND3800B,dgnd3700v1,96368MVWG,6368,--image-offset 0x20000 --block-size 0x20000,U12L144T11_NETGEAR_NEWLED,1))
607 # Pirelli Alice Gate VoIP 2 Plus Wi-Fi AGPF-S0
608 $(eval $(call bcm63xxCfe,AGPF_S0,AGV2+W,agpf-s0,AGPF-S0,6358,--block-size 0x20000 --image-offset 0x20000 --signature2 IMAGE --tag-version 8))
609 # Pirelli A226G
610 $(eval $(call bcm63xxCfe,A226G,A226G,a226g,DWV-S0,6358,--signature2 IMAGE --tag-version 8))
611 # Pirelli A226M/A226M-FWB
612 $(eval $(call bcm63xxCfe,A226M,A226M,a226m,DWV-S0,6358,--signature2 IMAGE --tag-version 8))
613 $(eval $(call bcm63xxCfe,A226M,A226M-FWB,a226m-fwb,DWV-S0,6358,--block-size 0x20000 --image-offset 0x20000 --signature2 IMAGE --tag-version 8))
614 # Sagem F@ST2404
615 $(eval $(call bcm63xxCfe,FAST2404,F@ST2404,fast2404,F@ST2404,6348))
616 # Sagem F@ST2504n
617 $(eval $(call bcm63xxCfe,FAST2504n,F@ST2504n,fast2504n,F@ST2504n,6362))
618 # Sagem F@ST2604
619 $(eval $(call bcm63xxCfe,FAST2604,F@ST2604,fast2604,F@ST2604,6348))
620 # Sagem F@ST2704N V1 / Plusnet F@ST2704N V1
621 $(eval $(call bcm63xxCfe,FAST2704N,FAST2704N,fast2704n,F@ST2704N,6318,--pad 4))
622 # Sagem F@ST2704V2
623 $(eval $(call bcm63xxCfe,FAST2704V2,F@ST2704V2,fast2704v2,F@ST2704V2,6328))
624 # SFR Neufbox 4
625 $(eval $(call bcm63xxCfe,Neufbox4,NEUFBOX4-SER,nb4-ser-r0,96358VW,6358,--rsa-signature "OpenWRT-$(REVISION)"))
626 $(eval $(call bcm63xxCfe,Neufbox4,NEUFBOX4-FXC,nb4-fxc-r1,96358VW,6358,--rsa-signature "OpenWRT-$(REVISION)"))
627 # SFR Neufbox 6
628 $(eval $(call bcm63xxCfe,Neufbox6,NEUFBOX6,nb6-ser-r0,NB6-SER-r0,6362,--rsa-signature "OpenWRT-$(REVISION)"))
629 # T-Com Speedport W 303V Typ B
630 $(eval $(call bcm63xxCfeSpw303v,SPW303V,SPW303V,spw303v,96358-502V,6358,--pad 4))
631 # T-Com Speedport W 500V
632 $(eval $(call bcm63xxCfe,SPW500V,SPW500V,spw500v,96348GW,6348))
633 # Tecom GW6000
634 $(eval $(call bcm63xxCfe,GW6000,GW6000,gw6000,96348GW,6348))
635 # Tecom GW6200
636 $(eval $(call bcm63xxCfe,GW6200,GW6200,gw6200,96348GW,6348,--rsa-signature "$(shell printf '\x99')"))
637 # Telsey CPVA502+
638 $(eval $(call bcm63xxCfeRamdisk,CPVA502PLUS,CVPA502PLUS,cpva502plus,CPVA502+,6348,--signature "Telsey Tlc" --signature2 "99.99.999" --second-image-flag "0"))
639 # Telsey CPVA642-type (e.g. CPA-ZNTE60T)
640 $(eval $(call bcm63xxCfe,CPVA642,CPA-ZNTE60T,cpva642,CPVA642,6358,--signature "Telsey Tlc" --signature2 "99.99.999" --second-image-flag "0" --pad 4))
641 # Telsey MAGIC (Alice W-Gate)
642 $(eval $(call bcm63xxCfeRamdisk,MAGIC,MAGIC,magic,MAGIC,6348))
643 # TP-Link TD-W8900GB
644 $(eval $(call bcm63xxCfe,TDW8900GB,TD-W8900GB,td-w8900gb,96348GW-11,6348,--rsa-signature "$(shell printf 'PRID\x89\x10\x00\x02')" --image-offset 0x20000))
645 # USRobotics 9108
646 $(eval $(call bcm63xxCfe,USR9108,USR9108,usr9108,96348GW-A,6348))
647 # ZyXEL P870HW-51a v2
648 $(eval $(call bcm63xxCfeZyxel,P870HW_51a_v2,P870HW-51a_v2,p870hw-51a-v2,96368VVW,6368,--rsa-signature "ZyXEL" --signature "ZyXEL_0001"))
649
650 $(eval $(call BuildImage))