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