235b60c404d91546499716d3447ed7e814f9d779
[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/netgear-chk
140 $(STAGING_DIR_HOST)/bin/mkchkimg -o $@.netgear -k $@ \
141 -b $(NETGEAR_BOARD_ID) -r $(NETGEAR_REGION)
142 mv $@.netgear $@
143 endef
144
145 define Build/spw303v-bin
146 $(STAGING_DIR_HOST)/bin/spw303v -i $@ -o $@.spw303v
147 mv $@.spw303v $@
148 endef
149
150 define Build/xor-image
151 $(STAGING_DIR_HOST)/bin/xorimage -i $@ -o $@.xor
152 mv $@.xor $@
153 endef
154
155 define Build/zyxel-bin
156 $(STAGING_DIR_HOST)/bin/zyxbcm -i $@ -o $@.zyxel
157 mv $@.zyxel $@
158 endef
159
160 define Build/redboot-bin
161 # Prepare kernel and rootfs
162 dd if=$(word 1,$^) of=$(BIN_DIR)/$(REDBOOT_PREFIX)-vmlinux.gz bs=65536 conv=sync
163 dd if=$(word 2,$^) of=$(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^)) bs=64k conv=sync
164 echo -ne \\xDE\\xAD\\xC0\\xDE >> $(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^))
165 # Generate the scripted image
166 $(TOPDIR)/scripts/redboot-script.pl \
167 -k $(BIN_DIR)/$(REDBOOT_PREFIX)-vmlinux.gz \
168 -r $(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^)) \
169 -a $(strip $(LOADADDR)) -f 0xbe430000 -l 0x7c0000 \
170 -s 0x1000 -t 20 -o $@.redbootscript
171 dd if="$@.redbootscript" of="$@.redbootscript.padded" bs=4096 conv=sync
172 cat \
173 "$@.redbootscript.padded" \
174 "$(BIN_DIR)/$(REDBOOT_PREFIX)-vmlinux.gz" \
175 "$(BIN_DIR)/$(REDBOOT_PREFIX)-$(notdir $(word 2,$^))" \
176 > "$@"
177 endef
178
179 # Shared device definition: applies to every defined device
180 define Device/Default
181 PROFILES = Default $$(DEVICE_PROFILE)
182 KERNEL_INITRAMFS_IMAGE = $$(KERNEL_INITRAMFS_PREFIX).elf
183 DEVICE_PROFILE :=
184 DEVICE_NAME :=
185 DEVICE_DTS :=
186 endef
187 DEVICE_VARS += DEVICE_PROFILE DEVICE_NAME DEVICE_DTS
188
189 # BCM33xx HCS devices: only generates ramdisks (unsupported bin images)
190 define Device/bcm33xxHcsRamdisk
191 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-lzma bin | hcs-initramfs
192 IMAGES :=
193 HCS_MAGIC_BYTES :=
194 HCS_REV_MIN :=
195 HCS_REV_MAJ :=
196 endef
197 DEVICE_VARS += HCS_MAGIC_BYTES HCS_REV_MIN HCS_REV_MAJ
198
199 # Shared BCM63xx CFE device definitios
200 define Device/bcm63xxCfeCommon
201 FILESYSTEMS := squashfs jffs2-64k jffs2-128k
202 KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma | lzma-cfe
203 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-lzma elf
204 endef
205
206 # BCM63xx CFE devices: only generates ramdisks (unsupported bin images)
207 define Device/bcm63xxCfeRamdisk
208 $(Device/bcm63xxCfeCommon)
209 IMAGES :=
210 endef
211
212 # BCM63xx CFE devices: both ramdisks and parallel/spi bin images
213 # New versions of CFE bootloader compatible with imagetag
214 define Device/bcm63xxCfe
215 $(Device/bcm63xxCfeCommon)
216 IMAGES := cfe.bin
217 IMAGE/cfe.bin := cfe-bin
218 CFE_BOARD_ID :=
219 CFE_CHIP_ID :=
220 CFE_EXTRAS :=
221 endef
222 DEVICE_VARS += CFE_BOARD_ID CFE_CHIP_ID CFE_EXTRAS
223
224 # BCM63xx CFE BC221 devices: both ramdisks and parallel/spi bin images
225 # Generates a generic image and a layout version 5 image
226 define Device/bcm63xxCfeBc221
227 $(Device/bcm63xxCfeCommon)
228 IMAGES := cfe.bin cfe-bc221.bin
229 IMAGE/cfe.bin := cfe-bin
230 IMAGE/cfe-bc221.bin := cfe-bin --layoutver 5
231 CFE_BOARD_ID :=
232 CFE_CHIP_ID :=
233 CFE_EXTRAS :=
234 endef
235
236 # BCM63xx CFE MultiFlash devices: both ramdisks and parallel/spi bin images
237 # Generates generic images padded for 4M/8M/16M flashes
238 define Device/bcm63xxCfeMultiFlash
239 $(Device/bcm63xxCfeCommon)
240 IMAGES := cfe-4M.bin cfe-8M.bin cfe-16M.bin
241 IMAGE/cfe-4M.bin := cfe-bin --pad 2
242 IMAGE/cfe-8M.bin := cfe-bin --pad 4
243 IMAGE/cfe-16M.bin := cfe-bin --pad 8
244 CFE_BOARD_ID :=
245 CFE_CHIP_ID :=
246 CFE_EXTRAS :=
247 endef
248
249 # BCM63xx CFE NETGEAR devices: both ramdisks and parallel/spi bin images
250 # factory.chk: netgear images for bootloader/original firmware upgrades
251 # sysupgrade.bin: openwrt images for sysupgrades
252 define Device/bcm63xxCfeNetgear
253 $(Device/bcm63xxCfeCommon)
254 IMAGES := factory.chk sysupgrade.bin
255 IMAGE/factory.chk := cfe-bin | netgear-chk
256 IMAGE/sysupgrade.bin := cfe-bin
257 CFE_BOARD_ID :=
258 CFE_CHIP_ID :=
259 CFE_EXTRAS :=
260 NETGEAR_BOARD_ID :=
261 NETGEAR_REGION :=
262 endef
263 DEVICE_VARS += NETGEAR_BOARD_ID NETGEAR_REGION
264
265 # BCM63xx Old CFE devices: both ramdisks and parallel/spi bin images
266 # Old versions of CFE bootloader not compatible with imagetag
267 define Device/bcm63xxCfeOld
268 $(Device/bcm63xxCfeCommon)
269 IMAGES := cfe-old.bin
270 IMAGE/cfe-old.bin := cfe-old-bin
271 CFE_BOARD_ID :=
272 CFE_CHIP_ID :=
273 CFE_EXTRAS :=
274 endef
275
276 # BCM63xx CFE SPW303V devices: both ramdisks and parallel/spi bin images
277 # factory.bin: SPW303V images for bootloader/original firmware upgrades
278 # sysupgrade.bin: openwrt images for sysupgrades
279 define Device/bcm63xxCfeSpw303v
280 $(Device/bcm63xxCfeCommon)
281 IMAGES := factory.bin sysupgrade.bin
282 IMAGE/factory.bin := cfe-spw303v-bin | spw303v-bin | xor-image
283 IMAGE/sysupgrade.bin := cfe-spw303v-bin | spw303v-bin
284 CFE_BOARD_ID :=
285 CFE_CHIP_ID :=
286 CFE_EXTRAS :=
287 endef
288
289 # BCM63xx CFE ZyXEL devices: both ramdisks and parallel/spi bin images
290 # factory.bin: ZyXEL specific CFE images (sysupgrade compatible)
291 define Device/bcm63xxCfeZyxel
292 $(Device/bcm63xxCfeCommon)
293 IMAGES := factory.bin
294 IMAGE/factory.bin := cfe-bin | zyxel-bin
295 CFE_BOARD_ID :=
296 CFE_CHIP_ID :=
297 CFE_EXTRAS :=
298 endef
299
300 # BCM63xx RedBoot devices: both ramdisks and parallel/spi bin images
301 # Generates images compatible with RedBoot bootloader
302 define Device/bcm63xxRedBoot
303 FILESYSTEMS := squashfs
304 KERNEL := kernel-bin | append-dtb | gzip
305 IMAGES := redboot.bin
306 IMAGE/redboot.bin := redboot-bin
307 REDBOOT_PREFIX := $$(IMAGE_PREFIX)
308 endef
309 DEVICE_VARS += REDBOOT_PREFIX
310
311 ### Device macros ###
312 # $(1) = profile
313 # $(2) = image name
314 # $(3) = dts
315 # $(4) = hcs magic bytes
316 # $(5) = hcs rev min
317 # $(6) = hcs rev major
318 define bcm33xxHcsRamdisk
319 define Device/$(2)
320 $$(Device/bcm33xxHcsRamdisk)
321 DEVICE_PROFILE := $(1)
322 DEVICE_NAME := $(2)
323 DEVICE_DTS := $(3)
324 HCS_MAGIC_BYTES := $(4)
325 HCS_REV_MIN := $(5)
326 HCS_REV_MAJ := $(6)
327 endef
328 TARGET_DEVICES += $(2)
329 endef
330
331 # $(1) = profile
332 # $(2) = image name
333 # $(3) = dts
334 define bcm63xxCfeRamdisk
335 define Device/$(2)
336 $$(Device/bcm63xxCfeRamdisk)
337 DEVICE_PROFILE := $(1)
338 DEVICE_NAME := $(2)
339 DEVICE_DTS := $(3)
340 endef
341 TARGET_DEVICES += $(2)
342 endef
343
344 # $(1) = profile
345 # $(2) = image name
346 # $(3) = dts
347 # $(4) = cfe board name
348 # $(5) = cfe chip id
349 # $(6) = cfe additional options
350 define bcm63xxCfe
351 define Device/$(2)
352 $$(Device/bcm63xxCfe)
353 DEVICE_PROFILE := $(1)
354 DEVICE_NAME := $(2)
355 DEVICE_DTS := $(3)
356 CFE_BOARD_ID := $(4)
357 CFE_CHIP_ID := $(5)
358 CFE_EXTRAS := $(6)
359 endef
360 TARGET_DEVICES += $(2)
361 endef
362
363 # $(1) = profile
364 # $(2) = image name
365 # $(3) = dts
366 # $(4) = cfe board name
367 # $(5) = cfe chip id
368 # $(6) = cfe additional options
369 define bcm63xxCfeMultiFlash
370 define Device/$(2)
371 $$(Device/bcm63xxCfeMultiFlash)
372 DEVICE_PROFILE := $(1)
373 DEVICE_NAME := $(2)
374 DEVICE_DTS := $(3)
375 CFE_BOARD_ID := $(4)
376 CFE_CHIP_ID := $(5)
377 CFE_EXTRAS := $(6)
378 endef
379 TARGET_DEVICES += $(2)
380 endef
381
382 # $(1) = profile
383 # $(2) = image name
384 # $(3) = dts
385 # $(4) = cfe board name
386 # $(5) = cfe chip id
387 # $(6) = cfe additional options
388 define bcm63xxCfeBc221
389 define Device/$(2)
390 $$(Device/bcm63xxCfeBc221)
391 DEVICE_PROFILE := $(1)
392 DEVICE_NAME := $(2)
393 DEVICE_DTS := $(3)
394 CFE_BOARD_ID := $(4)
395 CFE_CHIP_ID := $(5)
396 CFE_EXTRAS := $(6)
397 endef
398 TARGET_DEVICES += $(2)
399 endef
400
401 # $(1) = profile
402 # $(2) = image name
403 # $(3) = dts
404 # $(4) = cfe board name
405 # $(5) = cfe chip id
406 # $(6) = cfe additional options
407 # $(7) = netgear id
408 # $(8) = netgear region
409 define bcm63xxCfeNetgear
410 define Device/$(2)
411 $$(Device/bcm63xxCfeNetgear)
412 DEVICE_PROFILE := $(1)
413 DEVICE_NAME := $(2)
414 DEVICE_DTS := $(3)
415 CFE_BOARD_ID := $(4)
416 CFE_CHIP_ID := $(5)
417 CFE_EXTRAS := $(6)
418 NETGEAR_BOARD_ID := $(7)
419 NETGEAR_REGION := $(8)
420 endef
421 TARGET_DEVICES += $(2)
422 endef
423
424 # $(1) = profile
425 # $(2) = image name
426 # $(3) = dts
427 # $(4) = cfe board name
428 # $(5) = cfe chip id
429 # $(6) = cfe additional options
430 define bcm63xxCfeOld
431 define Device/$(2)
432 $$(Device/bcm63xxCfeOld)
433 DEVICE_PROFILE := $(1)
434 DEVICE_NAME := $(2)
435 DEVICE_DTS := $(3)
436 CFE_BOARD_ID := $(4)
437 CFE_CHIP_ID := $(5)
438 CFE_EXTRAS := $(6)
439 endef
440 TARGET_DEVICES += $(2)
441 endef
442
443 # $(1) = profile
444 # $(2) = image name
445 # $(3) = dts
446 # $(4) = cfe board name
447 # $(5) = cfe chip id
448 # $(6) = cfe additional options
449 define bcm63xxCfeSpw303v
450 define Device/$(2)
451 $$(Device/bcm63xxCfeSpw303v)
452 DEVICE_PROFILE := $(1)
453 DEVICE_NAME := $(2)
454 DEVICE_DTS := $(3)
455 CFE_BOARD_ID := $(4)
456 CFE_CHIP_ID := $(5)
457 CFE_EXTRAS := $(6)
458 endef
459 TARGET_DEVICES += $(2)
460 endef
461
462 # $(1) = profile
463 # $(2) = image name
464 # $(3) = dts
465 # $(4) = cfe board name
466 # $(5) = cfe chip id
467 # $(6) = cfe additional options
468 define bcm63xxCfeZyxel
469 define Device/$(2)
470 $$(Device/bcm63xxCfeZyxel)
471 DEVICE_PROFILE := $(1)
472 DEVICE_NAME := $(2)
473 DEVICE_DTS := $(3)
474 CFE_BOARD_ID := $(4)
475 CFE_CHIP_ID := $(5)
476 CFE_EXTRAS := $(6)
477 endef
478 TARGET_DEVICES += $(2)
479 endef
480
481 # $(1) = profile
482 # $(2) = image name
483 # $(3) = dts
484 define bcm63xxRedBoot
485 define Device/$(2)
486 $$(Device/bcm63xxRedBoot)
487 DEVICE_PROFILE := $(1)
488 DEVICE_NAME := $(2)
489 DEVICE_DTS := $(3)
490 endef
491 TARGET_DEVICES += $(2)
492 endef
493
494 ### Devices ###
495 # Generic 963281TAN
496 $(eval $(call bcm63xxCfeMultiFlash,963281TAN,963281TAN-generic,bcm963281TAN,963281TAN,6328))
497 # Generic 96328avng
498 $(eval $(call bcm63xxCfeMultiFlash,96328avng,96328avng-generic,bcm96328avng,96328avng,6328))
499 # Generic 96338GW
500 $(eval $(call bcm63xxCfe,96338GW,96338GW-generic,bcm96338GW,6338GW,6338))
501 # Generic 96338W
502 $(eval $(call bcm63xxCfe,96338W,96338W-generic,bcm96338W,6338W,6338))
503 # Generic 96345GW2
504 $(eval $(call bcm63xxCfeBc221,96345GW2,96345GW2-generic,bcm96345GW2,96345GW2,6345))
505 # Generic 96348GW
506 $(eval $(call bcm63xxCfeBc221,96348GW,96348GW-generic,bcm96348GW,96348GW,6348))
507 # Generic 96348GW-10
508 $(eval $(call bcm63xxCfe,96348GW_10,96348GW-10-generic,bcm96348GW-10,96348GW-10,6348))
509 # Generic 96348GW-11
510 $(eval $(call bcm63xxCfe,96348GW_11,96348GW-11-generic,bcm96348GW-11,96348GW-11,6348))
511 # Generic 96348R
512 $(eval $(call bcm63xxCfe,96348R,96348R-generic,bcm96348R,96348R,6348))
513 # Generic 96358VW
514 $(eval $(call bcm63xxCfe,96358VW,96358VW-generic,bcm96358VW,96358VW,6358))
515 # Generic 96358VW2
516 $(eval $(call bcm63xxCfe,96358VW2,96358VW2-generic,bcm96358VW2,96358VW2,6358))
517 # Generic 96368MVNgr
518 $(eval $(call bcm63xxCfe,96368MVNgr,96368MVNgr-generic,bcm96368MVNgr,96368MVNgr,6368))
519 # Generic 96368MVWG
520 $(eval $(call bcm63xxCfe,96368MVWG,96368MVWG-generic,bcm96368MVWG,96368MVWG,6368))
521
522 # ADB P.DG A4001N
523 $(eval $(call bcm63xxCfe,A4001N,A4001N,a4001n,96328dg2x2,6328,--pad 4))
524 # ADB P.DG A4001N1
525 $(eval $(call bcm63xxCfe,A4001N1,A4001N1,a4001n1,963281T_TEF,6328,--pad 8))
526 # Alcatel RG100A
527 $(eval $(call bcm63xxCfe,RG100A,RG100A,rg100a,96358VW2,6358,--block-size 0x20000 --image-offset 0x20000))
528 # Asmax AR 1004g
529 $(eval $(call bcm63xxCfe,AR1004G,AR1004G,ar1004g,96348GW-10,6348))
530 # Belkin F5D7633
531 $(eval $(call bcm63xxCfe,F5D7633,F5D7633,f5d7633,96348GW-10,6348,--block-size 0x20000 --image-offset 0x20000))
532 # Broadcom BCM96318REF
533 $(eval $(call bcm63xxCfeRamdisk,BCM96318REF,BCM96318REF,bcm96318ref,96318REF,6318))
534 # Broadcom BCM96318REF_P300
535 $(eval $(call bcm63xxCfeRamdisk,BCM96318REF_P300,BCM96318ref_P300,bcm96318ref_p300,96318REF_P300,6318))
536 # Broadcom BCM963268BU_P300
537 $(eval $(call bcm63xxCfeRamdisk,BCM963268BU_P300,BCM963268BU_P300,bcm963268bu_p300,963268BU_P300,63268))
538 # Broadcom BCM963269BHR
539 $(eval $(call bcm63xxCfeRamdisk,BCM963269BHR,BCM963269BHR,bcm963269bhr,963269BHR,63268))
540 # BT Home Hub 2.0 A
541 $(eval $(call bcm63xxCfe,BTHOMEHUB2A,HomeHub2A,homehub2a,HOMEHUB2A,6358,--image-offset 0x20000 --block-size 0x20000))
542 # BT Voyager V2110, V2110_AA, V2110_ROI
543 $(eval $(call bcm63xxCfe,BTV2110,BTV2110,v2110,V2110,6348,--layoutver 5))
544 # BT Voyager V2500V, V2500V_SIP_CLUB, V2500V_AA
545 $(eval $(call bcm63xxCfe,BTV2500V,BTV2500V,v2500v-bb,V2500V_BB,6348,--layoutver 5))
546 # Comtrend AR-5381u
547 $(eval $(call bcm63xxCfe,AR5381u,AR-5381u,ar-5381u,96328A-1241N,6328,--pad 8))
548 # Comtrend AR-5387un
549 $(eval $(call bcm63xxCfe,AR5387un,AR-5387un,ar-5387un,96328A-1441N1,6328,--pad 8))
550 # Comtrend 536, 5621
551 $(eval $(call bcm63xxCfe,CT536_CT5621,CT536_CT5621,ct536plus,96348GW-11,6348))
552 # Comtrend CT-5365
553 $(eval $(call bcm63xxCfe,CT5365,CT-5365,ct-5365,96348A-122,6348))
554 # Comtrend CT-6373
555 $(eval $(call bcm63xxCfe,CT6373,CT-6373,ct-6373,CT6373-1,6358))
556 # Comtrend VR-3025u
557 $(eval $(call bcm63xxCfe,VR3025u,VR-3025u,vr-3025u,96368M-1541N,6368,--pad 16 --image-offset 0x20000 --block-size 0x20000))
558 # Comtrend VR-3025un
559 $(eval $(call bcm63xxCfe,VR3025un,VR-3025un,vr-3025un,96368M-1341N,6368,--pad 4))
560 # Comtrend WAP-5813n
561 $(eval $(call bcm63xxCfe,WAP5813n,WAP-5813n,wap-5813n,96369R-1231N,6368,--pad 4))
562 # D-Link DSL-2640B, rev B2
563 $(eval $(call bcm63xxCfe,DSL2640B-B2,DSL2640B_B,dsl-2640b-b,D-4P-W,6348))
564 # D-Link DSL-2640U, rev C1
565 $(eval $(call bcm63xxCfe,DSL2640U,DSL2640U,dsl-2640u,96338W2_E7T,6338))
566 # D-Link DSL-2650U
567 $(eval $(call bcm63xxCfe,DSL2650U,DSL2650U,dsl-2650u,96358VW2,6358))
568 # D-Link DSL-2740B/DSL-2741B, rev C2
569 $(eval $(call bcm63xxCfe,DSL274XB_C,DSL274XB-C2,dsl-274xb-c,96358GW,6358))
570 # D-Link DSL-2740B/DSL-2741B, rev C3
571 $(eval $(call bcm63xxCfe,DSL274XB_C,DSL274XB-C3,dsl-274xb-c,AW4139,6358))
572 # D-Link DSL-2740B/DSL-2741B, rev F1
573 $(eval $(call bcm63xxCfe,DSL274XB_F,DSL274XB-F1-EU,dsl-274xb-f,AW4339U,6328,--signature2 "4.06.01.EUF1" --pad 4))
574 $(eval $(call bcm63xxCfe,DSL274XB_F,DSL274XB-F1-AU,dsl-274xb-f,AW4339U,6328,--signature2 "4.06.01.AUF1" --pad 4))
575 # D-Link DSL-2750B/DSL-2751, rev D1
576 $(eval $(call bcm63xxCfe,DSL275XB_D,DSL275XB-D1,dsl-275xb-d,AW5200B,6318,--pad 4))
577 # D-Link DVA-G3810BN/TL
578 $(eval $(call bcm63xxCfe,DVAG3810BN,DVAG3810BN,dva-g3810bn_tl,96358VW,6358))
579 # Davolink DV-201AMR
580 $(eval $(call bcm63xxCfeOld,DV201AMR,DV-201AMR,dv-201amr,DV201AMR,6348))
581 # Dynalink RTA770BW (Siemens SE515)
582 $(eval $(call bcm63xxCfeRamdisk,RTA770BW,RTA770BW,rta770bw,RTA770BW,6345,--layoutver 5))
583 # Dynalink RTA770W
584 $(eval $(call bcm63xxCfeRamdisk,RTA770W,RTA770W,rta770w,RTA770W,6345,--layoutver 5))
585 # Dynalink RTA1025W (numerous routers)
586 $(eval $(call bcm63xxCfe,RTA1025W,RTA1025W_16,rta1025w,RTA1025W_16,6348,--layoutver 5))
587 # Dynalink RTA1320 (numerous routers)
588 $(eval $(call bcm63xxCfe,RTA1320,RTA1320_16M,rta1320,RTA1320_16M,6338,--layoutver 5))
589 # Huawei HG520v
590 $(eval $(call bcm63xxCfe,HG520v,HG520v,hg520v,HW6358GW_B,6358,--rsa-signature "EchoLife_HG520v"))
591 # Huawei HG553
592 $(eval $(call bcm63xxCfe,HG553,HG553,hg553,HW553,6358,--rsa-signature "EchoLife_HG553" --image-offset 0x20000 --block-size 0x20000 --tag-version 7))
593 # Huawei HG556a
594 $(eval $(call bcm63xxCfe,HG556a_AB,HG556a_A,hg556a-a,HW556,6358,--rsa-signature "EchoLife_HG556a" --image-offset 0x20000 --block-size 0x10000 --tag-version 8))
595 $(eval $(call bcm63xxCfe,HG556a_AB,HG556a_B,hg556a-b,HW556,6358,--rsa-signature "EchoLife_HG556a" --image-offset 0x20000 --block-size 0x20000 --tag-version 8))
596 $(eval $(call bcm63xxCfe,HG556a_C,HG556a_C,hg556a-c,HW556,6358,--rsa-signature "EchoLife_HG556a" --image-offset 0x20000 --block-size 0x20000 --tag-version 8))
597 # Huawei HG655b
598 $(eval $(call bcm63xxCfe,HG655b,HG655b,hg655b,HW65x,6368,--image-offset 0x20000 --tag-version 7 --pad 4))
599 # Inteno VG50
600 $(eval $(call bcm63xxCfeRamdisk,VG50,vg50,vg50,VW6339GU,63268))
601 # Inventel Livebox 1
602 $(eval $(call bcm63xxRedBoot,Livebox,livebox,livebox-blue-5g))
603 # Netgear CVG834G
604 $(eval $(call bcm33xxHcsRamdisk,CVG834G,cvg834g,cvg834g,a020,0001,0022))
605 # Netgear DG834GT/PN
606 $(eval $(call bcm63xxCfe,DG834GTPN,DG834GT_PN,dg834gtpn,96348GW-10,6348))
607 # Netgear DG834G v4
608 $(eval $(call bcm63xxCfeRamdisk,DG834GV4,DG834GTv4,dg834g_v4,96348W3,6348))
609 # Netgear DGND3700 v1
610 $(eval $(call bcm63xxCfeNetgear,DGND3700v1_3800B,DGND3700v1,dgnd3700v1,96368MVWG,6368,--image-offset 0x20000 --block-size 0x20000,U12L144T01_NETGEAR_NEWLED,1))
611 # Netgear DGND3800B
612 $(eval $(call bcm63xxCfeNetgear,DGND3700v1_3800B,DGND3800B,dgnd3700v1,96368MVWG,6368,--image-offset 0x20000 --block-size 0x20000,U12L144T11_NETGEAR_NEWLED,1))
613 # Pirelli Alice Gate VoIP 2 Plus Wi-Fi AGPF-S0
614 $(eval $(call bcm63xxCfe,AGPF_S0,AGV2+W,agpf-s0,AGPF-S0,6358,--block-size 0x20000 --image-offset 0x20000 --signature2 IMAGE --tag-version 8))
615 # Pirelli A226G
616 $(eval $(call bcm63xxCfe,A226G,A226G,a226g,DWV-S0,6358,--signature2 IMAGE --tag-version 8))
617 # Pirelli A226M/A226M-FWB
618 $(eval $(call bcm63xxCfe,A226M,A226M,a226m,DWV-S0,6358,--signature2 IMAGE --tag-version 8))
619 $(eval $(call bcm63xxCfe,A226M,A226M-FWB,a226m-fwb,DWV-S0,6358,--block-size 0x20000 --image-offset 0x20000 --signature2 IMAGE --tag-version 8))
620 # Sagem F@ST2404
621 $(eval $(call bcm63xxCfe,FAST2404,F@ST2404,fast2404,F@ST2404,6348))
622 # Sagem F@ST2504n
623 $(eval $(call bcm63xxCfe,FAST2504n,F@ST2504n,fast2504n,F@ST2504n,6362))
624 # Sagem F@ST2604
625 $(eval $(call bcm63xxCfe,FAST2604,F@ST2604,fast2604,F@ST2604,6348))
626 # Sagem F@ST2704N V1 / Plusnet F@ST2704N V1
627 $(eval $(call bcm63xxCfe,FAST2704N,FAST2704N,fast2704n,F@ST2704N,6318,--pad 4))
628 # Sagem F@ST2704V2
629 $(eval $(call bcm63xxCfe,FAST2704V2,F@ST2704V2,fast2704v2,F@ST2704V2,6328))
630 # SFR Neufbox 4
631 $(eval $(call bcm63xxCfe,Neufbox4,NEUFBOX4-SER,nb4-ser-r0,96358VW,6358,--rsa-signature "OpenWRT-$(REVISION)"))
632 $(eval $(call bcm63xxCfe,Neufbox4,NEUFBOX4-FXC,nb4-fxc-r1,96358VW,6358,--rsa-signature "OpenWRT-$(REVISION)"))
633 # SFR Neufbox 6
634 $(eval $(call bcm63xxCfe,Neufbox6,NEUFBOX6,nb6-ser-r0,NB6-SER-r0,6362,--rsa-signature "OpenWRT-$(REVISION)"))
635 # T-Com Speedport W 303V Typ B
636 $(eval $(call bcm63xxCfeSpw303v,SPW303V,SPW303V,spw303v,96358-502V,6358,--pad 4))
637 # T-Com Speedport W 500V
638 $(eval $(call bcm63xxCfe,SPW500V,SPW500V,spw500v,96348GW,6348))
639 # Tecom GW6000
640 $(eval $(call bcm63xxCfe,GW6000,GW6000,gw6000,96348GW,6348))
641 # Tecom GW6200
642 $(eval $(call bcm63xxCfe,GW6200,GW6200,gw6200,96348GW,6348,--rsa-signature "$(shell printf '\x99')"))
643 # Telsey CPVA502+
644 $(eval $(call bcm63xxCfeRamdisk,CPVA502PLUS,CVPA502PLUS,cpva502plus,CPVA502+,6348,--signature "Telsey Tlc" --signature2 "99.99.999" --second-image-flag "0"))
645 # Telsey CPVA642-type (e.g. CPA-ZNTE60T)
646 $(eval $(call bcm63xxCfe,CPVA642,CPA-ZNTE60T,cpva642,CPVA642,6358,--signature "Telsey Tlc" --signature2 "99.99.999" --second-image-flag "0" --pad 4))
647 # Telsey MAGIC (Alice W-Gate)
648 $(eval $(call bcm63xxCfeRamdisk,MAGIC,MAGIC,magic,MAGIC,6348))
649 # TP-Link TD-W8900GB
650 $(eval $(call bcm63xxCfe,TDW8900GB,TD-W8900GB,td-w8900gb,96348GW-11,6348,--rsa-signature "$(shell printf 'PRID\x89\x10\x00\x02')" --image-offset 0x20000))
651 # USRobotics 9108
652 $(eval $(call bcm63xxCfe,USR9108,USR9108,usr9108,96348GW-A,6348))
653 # ZyXEL P870HW-51a v2
654 $(eval $(call bcm63xxCfeZyxel,P870HW_51a_v2,P870HW-51a_v2,p870hw-51a-v2,96368VVW,6368,--rsa-signature "ZyXEL" --signature "ZyXEL_0001"))
655
656 $(eval $(call BuildImage))