ipq40xx: convert to multi-variable device title
[openwrt/staging/dedeckeh.git] / target / linux / ipq40xx / image / Makefile
1 include $(TOPDIR)/rules.mk
2 include $(INCLUDE_DIR)/image.mk
3
4 DEVICE_VARS += RAS_BOARD RAS_ROOTFS_SIZE RAS_VERSION
5
6 define Device/Default
7 PROFILES := Default
8 KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
9 KERNEL_INITRAMFS_PREFIX := $$(IMG_PREFIX)-$(1)-initramfs
10 KERNEL_PREFIX := $$(IMAGE_PREFIX)
11 KERNEL_LOADADDR := 0x80208000
12 SUPPORTED_DEVICES := $(subst _,$(comma),$(1))
13 IMAGE/sysupgrade.bin = sysupgrade-tar | append-metadata
14 IMAGE/sysupgrade.bin/squashfs :=
15 endef
16
17 define Device/FitImage
18 KERNEL_SUFFIX := -fit-uImage.itb
19 KERNEL = kernel-bin | gzip | fit gzip $$(DTS_DIR)/$$(DEVICE_DTS).dtb
20 KERNEL_NAME := Image
21 endef
22
23 define Device/FitImageLzma
24 KERNEL_SUFFIX := -fit-uImage.itb
25 KERNEL = kernel-bin | lzma | fit lzma $$(DTS_DIR)/$$(DEVICE_DTS).dtb
26 KERNEL_NAME := Image
27 endef
28
29 define Device/FitzImage
30 KERNEL_SUFFIX := -fit-zImage.itb
31 KERNEL = kernel-bin | fit none $$(DTS_DIR)/$$(DEVICE_DTS).dtb
32 KERNEL_NAME := zImage
33 endef
34
35 define Device/UbiFit
36 KERNEL_IN_UBI := 1
37 IMAGES := nand-factory.ubi nand-sysupgrade.bin
38 IMAGE/nand-factory.ubi := append-ubi
39 IMAGE/nand-sysupgrade.bin := sysupgrade-tar | append-metadata
40 endef
41
42 define Device/DniImage
43 KERNEL_SUFFIX := -fit-uImage.itb
44 KERNEL = kernel-bin | gzip | fit gzip $$(DTS_DIR)/$$(DEVICE_DTS).dtb
45 KERNEL_NAME := Image
46 NETGEAR_BOARD_ID :=
47 NETGEAR_HW_ID :=
48 IMAGES := factory.img sysupgrade.bin
49 IMAGE/factory.img := append-kernel | pad-offset 64k 64 | append-uImage-fakehdr filesystem | append-rootfs | pad-rootfs | netgear-dni
50 IMAGE/sysupgrade.bin := append-kernel | pad-offset 64k 64 | append-uImage-fakehdr filesystem | append-rootfs | pad-rootfs | append-metadata
51 endef
52 DEVICE_VARS += NETGEAR_BOARD_ID NETGEAR_HW_ID
53
54 define Build/SenaoFW
55 -$(STAGING_DIR_HOST)/bin/mksenaofw \
56 -n $(BOARD_NAME) -r $(VENDOR_ID) -p $(1) \
57 -c $(DATECODE) -w $(2) -x $(CW_VER) -t 0 \
58 -e $@ \
59 -o $@.new
60 @cp $@.new $@
61 endef
62
63 define Device/8dev_jalapeno
64 $(call Device/FitImage)
65 $(call Device/UbiFit)
66 DEVICE_VENDOR := 8devices
67 DEVICE_MODEL := Jalapeno
68 DEVICE_DTS := qcom-ipq4018-jalapeno
69 BLOCKSIZE := 128k
70 PAGESIZE := 2048
71 endef
72 TARGET_DEVICES += 8dev_jalapeno
73
74 define Device/alfa-network_ap120c-ac
75 $(call Device/FitImage)
76 $(call Device/UbiFit)
77 DEVICE_VENDOR := ALFA Network
78 DEVICE_MODEL := AP120C-AC
79 DEVICE_DTS := qcom-ipq4018-ap120c-ac
80 DEVICE_PACKAGES := ipq-wifi-alfa-network_ap120c-ac kmod-usb-acm \
81 kmod-tpm-i2c-atmel uboot-envtools
82 BLOCKSIZE := 128k
83 PAGESIZE := 2048
84 IMAGE_SIZE := 65536k
85 IMAGES := nand-factory.bin nand-sysupgrade.bin
86 IMAGE/nand-factory.bin := append-ubi | qsdk-ipq-factory-nand
87 endef
88 TARGET_DEVICES += alfa-network_ap120c-ac
89
90 define Device/asus_map-ac2200
91 $(call Device/FitImageLzma)
92 DEVICE_VENDOR := ASUS
93 DEVICE_MODEL := Lyra (MAP-AC2200)
94 DEVICE_DTS := qcom-ipq4019-map-ac2200
95 IMAGES := sysupgrade.bin
96 DEVICE_PACKAGES := ipq-wifi-asus_map-ac2200 ath10k-firmware-qca9888-ct kmod-ath3k
97 endef
98 TARGET_DEVICES += asus_map-ac2200
99
100 define Device/asus_rt-ac58u
101 $(call Device/FitImageLzma)
102 DEVICE_VENDOR := ASUS
103 DEVICE_MODEL := RT-AC58U
104 DEVICE_DTS := qcom-ipq4018-rt-ac58u
105 BLOCKSIZE := 128k
106 PAGESIZE := 2048
107 DTB_SIZE := 65536
108 IMAGE_SIZE := 20439364
109 FILESYSTEMS := squashfs
110 # Someone - in their infinite wisdom - decided to put the firmware
111 # version in front of the image name \03\00\00\04 => Version 3.0.0.4
112 # Since u-boot works with strings we either need another fixup step
113 # to add a version... or we are very careful not to add '\0' into that
114 # string and call it a day.... Yeah, we do the latter!
115 UIMAGE_NAME:=$(shell echo -e '\03\01\01\01RT-AC58U')
116 IMAGES := sysupgrade.bin
117 DEVICE_PACKAGES := kmod-usb-ledtrig-usbport
118 endef
119 TARGET_DEVICES += asus_rt-ac58u
120
121 define Device/avm_fritzbox-4040
122 $(call Device/FitImageLzma)
123 DEVICE_VENDOR := AVM
124 DEVICE_MODEL := FRITZ!Box 4040
125 DEVICE_DTS := qcom-ipq4018-fritz4040
126 BOARD_NAME := fritz4040
127 IMAGE_SIZE := 29753344
128 UBOOT_PATH := $(STAGING_DIR_IMAGE)/uboot-fritz4040.bin
129 UBOOT_PARTITION_SIZE := 524288
130 IMAGES = eva.bin sysupgrade.bin
131 IMAGE/eva.bin := append-uboot | pad-to $$$$(UBOOT_PARTITION_SIZE) | append-kernel | append-rootfs | pad-rootfs
132 IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
133 DEVICE_PACKAGES := fritz-tffs fritz-caldata
134 endef
135 TARGET_DEVICES += avm_fritzbox-4040
136
137 define Device/avm_fritzbox-7530
138 $(call Device/FitImageLzma)
139 DEVICE_VENDOR := AVM
140 DEVICE_MODEL := FRITZ!Box 7530
141 DEVICE_DTS := qcom-ipq4019-fritzbox-7530
142 DEVICE_PACKAGES := fritz-caldata fritz-tffs-nand ipq-wifi-avm_fritzbox-7530
143 IMAGES := sysupgrade.bin
144 endef
145 TARGET_DEVICES += avm_fritzbox-7530
146
147 define Device/avm_fritzrepeater-3000
148 $(call Device/FitImageLzma)
149 DEVICE_VENDOR := AVM
150 DEVICE_MODEL := FRITZ!Repeater 3000
151 DEVICE_DTS := qcom-ipq4019-fritzrepeater-3000
152 DEVICE_PACKAGES := ath10k-firmware-qca9984-ct fritz-caldata fritz-tffs-nand ipq-wifi-avm_fritzrepeater-3000
153 IMAGES := sysupgrade.bin
154 endef
155 TARGET_DEVICES += avm_fritzrepeater-3000
156
157 define Device/compex_wpj428
158 $(call Device/FitImage)
159 DEVICE_VENDOR := Compex
160 DEVICE_MODEL := WPJ428
161 DEVICE_DTS := qcom-ipq4028-wpj428
162 DEVICE_DTS_CONFIG := config@4
163 BLOCKSIZE := 64k
164 IMAGE_SIZE := 31232k
165 KERNEL_SIZE := 4096k
166 IMAGES = sysupgrade.bin
167 IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
168 DEVICE_PACKAGES := kmod-gpio-beeper
169 endef
170 TARGET_DEVICES += compex_wpj428
171
172 define Device/engenius_eap1300
173 $(call Device/FitImage)
174 DEVICE_VENDOR := EnGenius
175 DEVICE_MODEL := EAP1300
176 DEVICE_DTS_CONFIG := config@4
177 BOARD_NAME := eap1300
178 DEVICE_DTS := qcom-ipq4018-eap1300
179 KERNEL_SIZE := 5120k
180 IMAGE_SIZE := 25344k
181 IMAGES := sysupgrade.bin
182 IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
183 DEVICE_PACKAGES := ipq-wifi-engenius_eap1300
184 endef
185 TARGET_DEVICES += engenius_eap1300
186
187 define Device/engenius_ens620ext
188 $(call Device/FitImage)
189 DEVICE_VENDOR := EnGenius
190 DEVICE_MODEL := ENS620EXT
191 DEVICE_DTS := qcom-ipq4018-ens620ext
192 DEVICE_DTS_CONFIG := config@4
193 BLOCKSIZE := 64k
194 PAGESIZE := 256
195 BOARD_NAME := ENS620EXT
196 VENDOR_ID := 0x0101
197 PRODUCT_ID := 0x79
198 PRODUCT_ID_NEW := 0xA4
199 DATECODE := 190507
200 FW_VER := 3.1.2
201 FW_VER_NEW := 3.5.6
202 CW_VER := 1.8.99
203 IMAGE_SIZE := 21823488
204 KERNEL_SIZE := 5120k
205 FILESYSTEMS := squashfs
206 IMAGES := sysupgrade.bin factory_30.bin factory_35.bin
207 IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE) | append-metadata
208 IMAGE/factory_30.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE) | SenaoFW $$$$(PRODUCT_ID) $$$$(FW_VER)
209 IMAGE/factory_35.bin := qsdk-ipq-factory-nor | check-size $$$$(IMAGE_SIZE) | SenaoFW $$$$(PRODUCT_ID_NEW) $$$$(FW_VER_NEW)
210 DEVICE_PACKAGES := ipq-wifi-engenius_ens620ext
211 endef
212 TARGET_DEVICES += engenius_ens620ext
213
214 define Device/glinet_gl-b1300
215 $(call Device/FitImage)
216 DEVICE_VENDOR := GL.iNet
217 DEVICE_MODEL := GL-B1300
218 BOARD_NAME := gl-b1300
219 DEVICE_DTS := qcom-ipq4029-gl-b1300
220 KERNEL_SIZE := 4096k
221 IMAGE_SIZE := 26624k
222 IMAGES := sysupgrade.bin
223 IMAGE/sysupgrade.bin := append-kernel |append-rootfs | pad-rootfs | append-metadata
224 endef
225 TARGET_DEVICES += glinet_gl-b1300
226
227 define Device/linksys_ea6350v3
228 # The Linksys EA6350v3 has a uboot bootloader that does not
229 # support either booting lzma kernel images nor booting UBI
230 # partitions. This uboot, however, supports raw kernel images and
231 # gzipped images.
232 #
233 # As for the time of writing this, the device will boot the kernel
234 # from a fixed address with a fixed length of 3MiB. Also, the
235 # device has a hard-coded kernel command line that requieres the
236 # rootfs and alt_rootfs to be in mtd11 and mtd13 respectively.
237 # Oh... and the kernel partition overlaps with the rootfs
238 # partition (the same for alt_kernel and alt_rootfs).
239 #
240 # If you are planing re-partitioning the device, you may want to
241 # keep those details in mind:
242 # 1. The kernel adresses you should honor are 0x00000000 and
243 # 0x02800000 respectively.
244 # 2. The kernel size (plus the dtb) cannot exceed 3.00MiB in size.
245 # 3. You can use 'zImage', but not a raw 'Image' packed with lzma.
246 # 4. The kernel command line from uboot is harcoded to boot with
247 # rootfs either in mtd11 or mtd13.
248 $(call Device/FitzImage)
249 DEVICE_VENDOR := Linksys
250 DEVICE_MODEL := EA6350
251 DEVICE_VARIANT := v3
252 DEVICE_DTS := qcom-ipq4018-ea6350v3
253 BLOCKSIZE := 128k
254 PAGESIZE := 2048
255 KERNEL_SIZE := 3145728
256 IMAGE_SIZE := 38797312
257 UBINIZE_OPTS := -E 5
258 IMAGES := factory.bin sysupgrade.bin
259 IMAGE/factory.bin := append-kernel | append-uImage-fakehdr filesystem | pad-to $$$${KERNEL_SIZE} | append-ubi | linksys-image type=EA6350v3
260 DEVICE_PACKAGES := ipq-wifi-linksys_ea6350v3 uboot-envtools
261 endef
262 TARGET_DEVICES += linksys_ea6350v3
263
264 define Device/linksys_ea8300
265 $(call Device/FitzImage)
266 DEVICE_VENDOR := Linksys
267 DEVICE_MODEL := EA8300
268 DEVICE_DTS := qcom-ipq4019-linksys_ea8300
269 KERNEL_SIZE := 3072k
270 IMAGE_SIZE := 87040k
271 BLOCKSIZE := 128k
272 PAGESIZE := 2048
273 UBINIZE_OPTS := -E 5 # EOD marks to "hide" factory sig at EOF
274 IMAGES := sysupgrade.bin factory.bin
275 IMAGE/factory.bin := append-kernel | pad-to $$$${KERNEL_SIZE} | append-ubi | linksys-image type=EA8300
276 DEVICE_PACKAGES := uboot-envtools ath10k-firmware-qca9888-ct ipq-wifi-linksys_ea8300 kmod-usb-ledtrig-usbport
277 endef
278 TARGET_DEVICES += linksys_ea8300
279
280 define Device/meraki_mr33
281 $(call Device/FitImage)
282 DEVICE_VENDOR := Cisco Meraki
283 DEVICE_MODEL := MR33
284 DEVICE_DTS := qcom-ipq4029-mr33
285 BLOCKSIZE := 131072
286 PAGESIZE := 2048
287 IMAGES = sysupgrade.bin
288 DEVICE_PACKAGES := -swconfig ath10k-firmware-qca9887-ct
289 endef
290 TARGET_DEVICES += meraki_mr33
291
292 define Device/netgear_ex61x0v2
293 $(call Device/DniImage)
294 DEVICE_DTS_CONFIG := config@4
295 NETGEAR_BOARD_ID := EX6150v2series
296 NETGEAR_HW_ID := 29765285+16+0+128+2x2
297 endef
298
299 define Device/netgear_ex6100v2
300 $(call Device/netgear_ex61x0v2)
301 DEVICE_VENDOR := Netgear
302 DEVICE_MODEL := EX6100
303 DEVICE_VARIANT := v2
304 DEVICE_DTS := qcom-ipq4018-ex6100v2
305 endef
306 TARGET_DEVICES += netgear_ex6100v2
307
308 define Device/netgear_ex6150v2
309 $(call Device/netgear_ex61x0v2)
310 DEVICE_VENDOR := Netgear
311 DEVICE_MODEL := EX6150
312 DEVICE_VARIANT := v2
313 DEVICE_DTS := qcom-ipq4018-ex6150v2
314 endef
315 TARGET_DEVICES += netgear_ex6150v2
316
317 define Device/openmesh_a42
318 $(call Device/FitImageLzma)
319 DEVICE_VENDOR := OpenMesh
320 DEVICE_MODEL := A42
321 DEVICE_DTS := qcom-ipq4018-a42
322 DEVICE_DTS_CONFIG := config@om.a42
323 BLOCKSIZE := 64k
324 KERNEL = kernel-bin | lzma | fit lzma $$(DTS_DIR)/$$(DEVICE_DTS).dtb | pad-to $$(BLOCKSIZE)
325 IMAGE_SIZE := 15616k
326 IMAGES = factory.bin sysupgrade.bin
327 IMAGE/factory.bin := append-rootfs | pad-rootfs | openmesh-image ce_type=A42
328 IMAGE/sysupgrade.bin/squashfs := append-rootfs | pad-rootfs | sysupgrade-tar rootfs=$$$$@ | append-metadata
329 DEVICE_PACKAGES := uboot-envtools
330 endef
331 TARGET_DEVICES += openmesh_a42
332
333 define Device/openmesh_a62
334 $(call Device/FitImageLzma)
335 DEVICE_VENDOR := OpenMesh
336 DEVICE_MODEL := A62
337 DEVICE_DTS := qcom-ipq4019-a62
338 DEVICE_DTS_CONFIG := config@om.a62
339 BLOCKSIZE := 64k
340 KERNEL = kernel-bin | lzma | fit lzma $$(DTS_DIR)/$$(DEVICE_DTS).dtb | pad-to $$(BLOCKSIZE)
341 IMAGE_SIZE := 15552k
342 IMAGES = factory.bin sysupgrade.bin
343 IMAGE/factory.bin := append-rootfs | pad-rootfs | openmesh-image ce_type=A62
344 IMAGE/sysupgrade.bin/squashfs := append-rootfs | pad-rootfs | sysupgrade-tar rootfs=$$$$@ | append-metadata
345 DEVICE_PACKAGES := ath10k-firmware-qca9888-ct uboot-envtools
346 endef
347
348 TARGET_DEVICES += openmesh_a62
349
350 define Device/qcom_ap-dk01.1-c1
351 DEVICE_VENDOR := Qualcomm Atheros
352 DEVICE_MODEL := AP-DK01.1
353 DEVICE_VARIANT := C1
354 BOARD_NAME := ap-dk01.1-c1
355 DEVICE_DTS := qcom-ipq4019-ap.dk01.1-c1
356 KERNEL_INSTALL := 1
357 KERNEL_SIZE := 4096k
358 IMAGE_SIZE := 26624k
359 $(call Device/FitImage)
360 IMAGES := sysupgrade.bin
361 IMAGE/sysupgrade.bin := append-kernel | pad-to $$$${KERNEL_SIZE} | append-rootfs | pad-rootfs | append-metadata
362 endef
363 TARGET_DEVICES += qcom_ap-dk01.1-c1
364
365 define Device/qcom_ap-dk04.1-c1
366 $(call Device/FitImage)
367 $(call Device/UbiFit)
368 DEVICE_VENDOR := Qualcomm Atheros
369 DEVICE_MODEL := AP-DK04.1
370 DEVICE_VARIANT := C1
371 DEVICE_DTS := qcom-ipq4019-ap.dk04.1-c1
372 KERNEL_INSTALL := 1
373 KERNEL_SIZE := 4048k
374 BLOCKSIZE := 128k
375 PAGESIZE := 2048
376 BOARD_NAME := ap-dk04.1-c1
377 endef
378 TARGET_DEVICES += qcom_ap-dk04.1-c1
379
380 define Device/qxwlan_e2600ac-c1
381 $(call Device/FitImage)
382 DEVICE_VENDOR := Qxwlan
383 DEVICE_MODEL := E2600AC
384 DEVICE_VARIANT := C1
385 BOARD_NAME := e2600ac-c1
386 DEVICE_DTS := qcom-ipq4019-qxwlan-e2600ac-c1
387 KERNEL_SIZE := 4096k
388 IMAGE_SIZE := 31232k
389 IMAGES := sysupgrade.bin
390 IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
391 DEVICE_PACKAGES := ipq-wifi-qxwlan_e2600ac
392 endef
393 TARGET_DEVICES += qxwlan_e2600ac-c1
394
395 define Device/qxwlan_e2600ac-c2
396 $(call Device/FitImage)
397 $(call Device/UbiFit)
398 DEVICE_VENDOR := Qxwlan
399 DEVICE_MODEL := E2600AC
400 DEVICE_VARIANT := C2
401 DEVICE_DTS := qcom-ipq4019-qxwlan-e2600ac-c2
402 KERNEL_INSTALL := 1
403 BLOCKSIZE := 128k
404 PAGESIZE := 2048
405 DEVICE_PACKAGES := ipq-wifi-qxwlan_e2600ac
406 endef
407 TARGET_DEVICES += qxwlan_e2600ac-c2
408
409 define Device/zyxel_nbg6617
410 $(call Device/FitImageLzma)
411 DEVICE_VENDOR := ZyXEL
412 DEVICE_MODEL := NBG6617
413 DEVICE_DTS := qcom-ipq4018-nbg6617
414 ROOTFS_SIZE := 24960k
415 RAS_BOARD := NBG6617
416 RAS_ROOTFS_SIZE := 19840k
417 RAS_VERSION := "$(VERSION_DIST) $(REVISION)"
418 IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
419 IMAGES := sysupgrade.bin factory.bin
420 # The ZyXEL firmware allows flashing thru the web-gui only when the rootfs is
421 # at least as large as the one of the initial firmware image (not the current
422 # one on the device). This only applies to the Web-UI, the bootlaoder ignores
423 # this minimum-size. However, the larger image can be flashed both ways.
424 IMAGE/factory.bin := append-rootfs | pad-rootfs | pad-to 64k | check-size $$$$(ROOTFS_SIZE) | zyxel-ras-image separate-kernel
425 IMAGE/sysupgrade.bin/squashfs := append-rootfs | pad-rootfs | check-size $$$$(ROOTFS_SIZE) | sysupgrade-tar rootfs=$$$$@ | append-metadata
426 DEVICE_PACKAGES := uboot-envtools kmod-usb-ledtrig-usbport
427 endef
428 TARGET_DEVICES += zyxel_nbg6617
429
430 define Device/zyxel_wre6606
431 $(call Device/FitImage)
432 DEVICE_VENDOR := ZyXEL
433 DEVICE_MODEL := WRE6606
434 DEVICE_DTS_CONFIG := config@4
435 DEVICE_DTS := qcom-ipq4018-wre6606
436 IMAGES := sysupgrade.bin
437 IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
438 endef
439 TARGET_DEVICES += zyxel_wre6606
440
441 $(eval $(call BuildImage))