00141118a166654c01b0984896d14ab3bf9183ea
[openwrt/openwrt.git] / target / linux / bcm53xx / image / Makefile
1 #
2 # Copyright (C) 2013 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 define Image/Prepare
11 rm -f $(KDIR)/fs_mark
12 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/fs_mark
13 $(call prepare_generic_squashfs,$(KDIR)/fs_mark)
14
15 # For UBI we want only one extra block
16 rm -f $(KDIR)/ubi_mark
17 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/ubi_mark
18 endef
19
20 define Build/lzma-d16
21 $(STAGING_DIR_HOST)/bin/lzma e $@ -d16 $(1) $@.new
22 mv $@.new $@
23 endef
24
25 # Similar to Build/tplink-safeloader but uses TRX instead of clean kernel
26 define Build/bcm53xx-tplink-safeloader
27 $(STAGING_DIR_HOST)/bin/trx \
28 -o $@.trx \
29 -m 33554432 \
30 -f $(IMAGE_KERNEL) -a 1024
31 $(STAGING_DIR_HOST)/bin/tplink-safeloader \
32 -B $(TPLINK_BOARD) \
33 -k $@.trx \
34 -r $@ \
35 -j \
36 -o $@.new
37 mv $@.new $@
38 rm $@.trx
39 endef
40
41 define Build/buffalo-wzr-header
42 $(eval product=$(word 1,$(1)))
43 $(eval region=$(word 2,$(1)))
44 ( \
45 echo $(product)_$(BUFFALO_TAG_VERSION)_$(BUFFALO_TAG_MINOR)_$(region)_$(BUFFALO_TAG_PLATFORM); \
46 echo filelen=$$(stat -c%s $@); \
47 cat $@ \
48 ) > $@.new
49 mv $@.new $@
50 endef
51
52 # TRX with only one (kernel) partition
53 define Build/trx
54 $(STAGING_DIR_HOST)/bin/trx \
55 -o $@.new \
56 -m 33554432 \
57 -f $@
58 mv $@.new $@
59 endef
60
61 define Build/trx-serial
62 $(STAGING_DIR_HOST)/bin/otrx create $@.new \
63 -f $(IMAGE_KERNEL) -a 1024 \
64 -f $@ -a 0x10000 -A $(KDIR)/fs_mark
65 mv $@.new $@
66 endef
67
68 define Build/trx-nand
69 # kernel: always use 4 MiB (-28 B or TRX header) to allow upgrades even
70 # if it grows up between releases
71 # root: UBI with one extra block containing UBI mark to trigger erasing
72 # rest of partition
73 $(STAGING_DIR_HOST)/bin/otrx create $@.new \
74 -f $(IMAGE_KERNEL) -a 0x20000 -b 0x400000 \
75 -f $@ \
76 -A $(KDIR)/ubi_mark -a 0x20000
77 mv $@.new $@
78 endef
79
80 define Build/asus-trx
81 $(STAGING_DIR_HOST)/bin/asustrx \
82 -p $(ASUS_PRODUCTID) -i $@ -o $@.new
83 mv $@.new $@
84 endef
85
86 define Build/luxul-lxl
87 $(STAGING_DIR_HOST)/bin/lxlfw create $@.new \
88 -i $@ \
89 -b $(LUXUL_BOARD)
90 mv $@.new $@
91 endef
92
93 define Build/seama-nand
94 # Seama entity
95 $(STAGING_DIR_HOST)/bin/oseama \
96 entity $@.entity \
97 -m "dev=/dev/mtdblock/7" \
98 -m "type=firmware" \
99 -f $(IMAGE_KERNEL) \
100 -b 0x400000 \
101 -f $@ \
102 -f $(KDIR)/ubi_mark
103 # Seama container
104 $(STAGING_DIR_HOST)/bin/seama \
105 -s $@ \
106 -m "signature=$(SIGNATURE)" \
107 -i $@.entity
108 endef
109
110 DEVICE_VARS += ASUS_PRODUCTID
111 DEVICE_VARS += BUFFALO_TAG_PLATFORM BUFFALO_TAG_VERSION BUFFALO_TAG_MINOR
112 DEVICE_VARS += SIGNATURE
113 DEVICE_VARS += NETGEAR_BOARD_ID NETGEAR_REGION TPLINK_BOARD
114 DEVICE_VARS += LUXUL_BOARD
115
116 IEEE8021X := wpad-basic-wolfssl
117 B43 := $(IEEE8021X) kmod-b43
118 BRCMFMAC_43602A1 := $(IEEE8021X) kmod-brcmfmac brcmfmac-firmware-43602a1-pcie
119 BRCMFMAC_4366B1 := $(IEEE8021X) kmod-brcmfmac brcmfmac-firmware-4366b1-pcie
120 BRCMFMAC_4366C0 := $(IEEE8021X) kmod-brcmfmac brcmfmac-firmware-4366c0-pcie
121 USB2_PACKAGES := kmod-usb-ohci kmod-usb2 kmod-phy-bcm-ns-usb2
122 USB2_PACKAGES += kmod-usb-ledtrig-usbport
123 USB3_PACKAGES := $(USB2_PACKAGES) kmod-usb3 kmod-phy-bcm-ns-usb3
124
125 define Device/Default
126 # .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names
127 # extract the full dtb name based on the device info
128 DEVICE_DTS := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(subst _,-,$(1)).dtb)))
129 KERNEL := kernel-bin | append-dtb | lzma-d16
130 KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
131 KERNEL_INITRAMFS_SUFFIX := .trx
132 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma-d16 | trx
133 FILESYSTEMS := squashfs
134 KERNEL_NAME := zImage
135 IMAGE_NAME = $$(IMAGE_PREFIX)-$$(1).$$(2)
136 IMAGES := trx
137 BLOCKSIZE := 128k
138 PAGESIZE := 2048
139 IMAGE/trx := append-ubi | trx-nand
140 endef
141
142 define Device/asus
143 DEVICE_VENDOR := ASUS
144 IMAGES := trx
145 IMAGE/trx := append-ubi | trx-nand | asus-trx
146 endef
147
148 define Device/asus_rt-ac56u
149 $(call Device/asus)
150 DEVICE_MODEL := RT-AC56U
151 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
152 ASUS_PRODUCTID := RT-AC56U
153 endef
154 TARGET_DEVICES += asus_rt-ac56u
155
156 define Device/asus_rt-ac68u
157 $(call Device/asus)
158 DEVICE_MODEL := RT-AC68U
159 DEVICE_PACKAGES := $(USB3_PACKAGES)
160 ASUS_PRODUCTID := RT-AC68U
161 endef
162 TARGET_DEVICES += asus_rt-ac68u
163
164 define Device/asus_rt-ac87u
165 $(call Device/asus)
166 DEVICE_MODEL := RT-AC87U
167 DEVICE_PACKAGES := $(USB3_PACKAGES)
168 ASUS_PRODUCTID := RT-AC87U
169 endef
170 TARGET_DEVICES += asus_rt-ac87u
171
172 define Device/asus_rt-n18u
173 $(call Device/asus)
174 DEVICE_MODEL := RT-N18U
175 DEVICE_PACKAGES := $(USB3_PACKAGES)
176 ASUS_PRODUCTID := RT-N18U
177 endef
178 TARGET_DEVICES += asus_rt-n18u
179
180 # Buffalo devices have TFTP recovery mode which can work nicely with initramfs
181 # kernels.
182 # We should have two initramfs images for Buffalo: plain initramfs kernel and
183 # TRX with initramfs kernel. It's not possible right now so let's just build
184 # plain initramfs kernel as it may be more useful.
185 define Device/buffalo/Default
186 DEVICE_VENDOR := Buffalo
187 KERNEL_INITRAMFS_SUFFIX = $$(KERNEL_SUFFIX)
188 KERNEL_INITRAMFS = $$(KERNEL)
189 endef
190
191 define Device/buffalo_wxr-1900dhp
192 $(call Device/buffalo/Default)
193 DEVICE_MODEL := WXR-1900DHP
194 DEVICE_PACKAGES := $(USB3_PACKAGES)
195 endef
196 TARGET_DEVICES += buffalo_wxr-1900dhp
197
198 define Device/buffalo_wzr-600dhp2
199 $(call Device/buffalo/Default)
200 DEVICE_MODEL := WZR-600DHP2
201 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
202 endef
203 TARGET_DEVICES += buffalo_wzr-600dhp2
204
205 define Device/buffalo_wzr-900dhp
206 $(call Device/buffalo/Default)
207 DEVICE_MODEL := WZR-900DHP
208 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
209 BUFFALO_TAG_PLATFORM := bcm
210 BUFFALO_TAG_VERSION := 9.99
211 BUFFALO_TAG_MINOR := 9.99
212 IMAGES += factory-DHP-EU.bin factory-DHP2-JP.bin
213 IMAGE/factory-DHP-EU.bin := \
214 append-ubi | trx-nand | buffalo-wzr-header WZR-900DHP EU | \
215 buffalo-enc WZR-900DHP $$(BUFFALO_TAG_VERSION) | \
216 buffalo-tag-dhp WZR-900DHP EU mlang20 | buffalo-enc-tag | \
217 buffalo-dhp-image
218 IMAGE/factory-DHP2-JP.bin := \
219 append-ubi | trx-nand | buffalo-wzr-header WZR-900DHP2 JP | \
220 buffalo-enc WZR-900DHP2 $$(BUFFALO_TAG_VERSION) | \
221 buffalo-tag-dhp WZR-900DHP2 JP jp | buffalo-enc-tag | \
222 buffalo-dhp-image
223 endef
224 TARGET_DEVICES += buffalo_wzr-900dhp
225
226 define Device/buffalo_wzr-1750dhp
227 $(call Device/buffalo/Default)
228 DEVICE_MODEL := WZR-1750DHP
229 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
230 endef
231 TARGET_DEVICES += buffalo_wzr-1750dhp
232
233 define Device/dlink
234 DEVICE_VENDOR := D-Link
235 IMAGES := bin
236 IMAGE/bin := append-ubi | seama-nand
237 endef
238
239 define Device/dlink_dir-885l
240 DEVICE_MODEL := DIR-885L
241 DEVICE_PACKAGES := $(BRCMFMAC_4366B1) $(USB3_PACKAGES)
242 $(Device/dlink)
243 SIGNATURE := wrgac42_dlink.2015_dir885l
244 endef
245 TARGET_DEVICES += dlink_dir-885l
246
247 # Linksys devices are disabled due to problem with 2 TRX partitions
248 define Device/linksys_ea6300-v1
249 DEVICE_VENDOR := Linksys
250 DEVICE_MODEL := EA6300
251 DEVICE_VARIANT := v1
252 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
253 BROKEN := y
254 endef
255 TARGET_DEVICES += linksys_ea6300-v1
256
257 define Device/linksys_ea6500-v2
258 DEVICE_VENDOR := Linksys
259 DEVICE_MODEL := EA6500
260 DEVICE_VARIANT := v2
261 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
262 endef
263 TARGET_DEVICES += linksys_ea6500-v2
264
265 define Device/linksys_ea9200
266 DEVICE_VENDOR := Linksys
267 DEVICE_MODEL := EA9200
268 DEVICE_VARIANT := v1
269 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
270 BROKEN := y
271 endef
272 TARGET_DEVICES += linksys_ea9200
273
274 define Device/linksys_ea9500
275 DEVICE_VENDOR := Linksys
276 DEVICE_MODEL := EA9500
277 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
278 DEVICE_DTS := bcm47094-linksys-panamera
279 BROKEN := y
280 endef
281 TARGET_DEVICES += linksys_ea9500
282
283 define Device/luxul
284 DEVICE_VENDOR := Luxul
285 IMAGES := lxl
286 IMAGE/lxl := append-ubi | trx-nand | luxul-lxl
287 endef
288
289 define Device/luxul_abr-4500
290 $(Device/luxul)
291 DEVICE_MODEL := ABR-4500
292 DEVICE_PACKAGES := $(USB3_PACKAGES)
293 LUXUL_BOARD := ABR-4500
294 endef
295 TARGET_DEVICES += luxul_abr-4500
296
297 define Device/luxul_xap-1610
298 $(Device/luxul)
299 DEVICE_MODEL := XAP-1610
300 DEVICE_PACKAGES := $(BRCMFMAC_4366C0)
301 IMAGE/lxl := append-rootfs | trx-serial | luxul-lxl
302 LUXUL_BOARD := XAP-1610
303 endef
304 TARGET_DEVICES += luxul_xap-1610
305
306 define Device/luxul_xbr-4500
307 $(Device/luxul)
308 DEVICE_MODEL := XBR-4500
309 DEVICE_PACKAGES := $(USB3_PACKAGES)
310 LUXUL_BOARD := XBR-4500
311 endef
312 TARGET_DEVICES += luxul_xbr-4500
313
314 define Device/luxul_xwr-3150
315 $(Device/luxul)
316 DEVICE_MODEL := XWR-3150
317 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
318 DEVICE_DTS := bcm47094-luxul-xwr-3150-v1
319 LUXUL_BOARD := XWR-3150
320 endef
321 TARGET_DEVICES += luxul_xwr-3150
322
323 define Device/meraki_mr32
324 DEVICE_VENDOR := Meraki
325 DEVICE_MODEL := MR32
326 DEVICE_PACKAGES := $(B43) kmod-i2c-bcm-iproc kmod-i2c-gpio kmod-eeprom-at24 \
327 kmod-leds-pwm kmod-hwmon-ina2xx kmod-bluetooth
328 DEVICE_DTS := bcm53016-meraki-mr32
329 # Meraki FW r23 tries to resize the part.safe partition before it will
330 # flash the image. This is a bit of a problem, since resizing will fail
331 # if the partition is smaller than the old one.
332 KERNEL_LOADADDR := 0x00008000
333 KERNEL_INITRAMFS_SUFFIX := .bin
334 KERNEL_INITRAMFS := kernel-bin | fit none $$(DTS_DIR)/$$(DEVICE_DTS).dtb | \
335 pad-to 10362880
336 KERNEL := kernel-bin | fit none $$(DTS_DIR)/$$(DEVICE_DTS).dtb
337 IMAGES := sysupgrade.bin
338 IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
339
340 # Currently the only device that uses the new image check
341 SUPPORTED_DEVICES := meraki,mr32
342
343 # The loader is specifically looking for fdt@2:
344 # [ 3.190000] find_itb_subimage: error finding fdt@2: FDT_ERR_NOTFOUND
345 # The image won't boot, if it isn't found. :(
346 DEVICE_FDT_NUM := 2
347 endef
348 TARGET_DEVICES += meraki_mr32
349
350 define Device/netgear
351 DEVICE_VENDOR := NETGEAR
352 IMAGES := chk
353 IMAGE/chk := append-ubi | trx-nand | netgear-chk
354 NETGEAR_REGION := 1
355 endef
356
357 define Device/netgear_r6250
358 DEVICE_MODEL := R6250
359 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
360 $(Device/netgear)
361 NETGEAR_BOARD_ID := U12H245T00_NETGEAR
362 endef
363 TARGET_DEVICES += netgear_r6250
364
365 define Device/netgear_r6300-v2
366 DEVICE_MODEL := R6300
367 DEVICE_VARIANT := v2
368 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
369 $(Device/netgear)
370 NETGEAR_BOARD_ID := U12H240T00_NETGEAR
371 endef
372 TARGET_DEVICES += netgear_r6300-v2
373
374 define Device/netgear_r7000
375 DEVICE_MODEL := R7000
376 DEVICE_PACKAGES := $(USB3_PACKAGES)
377 $(Device/netgear)
378 NETGEAR_BOARD_ID := U12H270T00_NETGEAR
379 endef
380 TARGET_DEVICES += netgear_r7000
381
382 define Device/netgear_r7900
383 DEVICE_MODEL := R7900
384 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
385 $(Device/netgear)
386 NETGEAR_BOARD_ID := U12H315T30_NETGEAR
387 endef
388 TARGET_DEVICES += netgear_r7900
389
390 define Device/netgear_r8000
391 DEVICE_MODEL := R8000
392 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
393 $(Device/netgear)
394 NETGEAR_BOARD_ID := U12H315T00_NETGEAR
395 endef
396 TARGET_DEVICES += netgear_r8000
397
398 define Device/netgear_r8500
399 DEVICE_MODEL := R8500
400 DEVICE_PACKAGES := $(BRCMFMAC_4366B1) $(USB3_PACKAGES)
401 $(Device/netgear)
402 NETGEAR_BOARD_ID := U12H334T00_NETGEAR
403 DEFAULT := n
404 endef
405 TARGET_DEVICES += netgear_r8500
406
407 define Device/smartrg_sr400ac
408 DEVICE_VENDOR := SmartRG
409 DEVICE_MODEL := SR400ac
410 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
411 IMAGES := trx
412 IMAGE/trx := append-rootfs | trx-serial
413 KERNEL_INITRAMFS_SUFFIX := .bin
414 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma-d16
415 endef
416 TARGET_DEVICES += smartrg_sr400ac
417
418 define Device/phicomm_k3
419 DEVICE_VENDOR := PHICOMM
420 DEVICE_MODEL := K3
421 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
422 IMAGES := trx
423 endef
424 TARGET_DEVICES += phicomm_k3
425
426 define Device/tenda_ac9
427 DEVICE_VENDOR := Tenda
428 DEVICE_MODEL := AC9
429 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
430 IMAGES := trx
431 IMAGE/trx := append-rootfs | trx-serial
432 endef
433 TARGET_DEVICES += tenda_ac9
434
435 define Device/tplink_archer-c5-v2
436 DEVICE_VENDOR := TP-Link
437 DEVICE_MODEL := Archer C5
438 DEVICE_VARIANT := v2
439 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
440 IMAGES := bin
441 IMAGE/bin := append-rootfs | bcm53xx-tplink-safeloader
442 TPLINK_BOARD := ARCHER-C5-V2
443 BROKEN := y
444 endef
445 TARGET_DEVICES += tplink_archer-c5-v2
446
447 define Device/tplink_archer-c9-v1
448 DEVICE_VENDOR := TP-Link
449 DEVICE_MODEL := Archer C9
450 DEVICE_VARIANT := v1
451 DEVICE_PACKAGES := $(USB3_PACKAGES)
452 IMAGES := bin
453 IMAGE/bin := append-rootfs | bcm53xx-tplink-safeloader
454 TPLINK_BOARD := ARCHERC9
455 BROKEN := y
456 endef
457 TARGET_DEVICES += tplink_archer-c9-v1
458
459 $(eval $(call BuildImage))