768477160a74dff19c97b6a3a1c6f406b37418c0
[openwrt/staging/chunkeey.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/netgear
324 DEVICE_VENDOR := NETGEAR
325 IMAGES := chk
326 IMAGE/chk := append-ubi | trx-nand | netgear-chk
327 NETGEAR_REGION := 1
328 endef
329
330 define Device/netgear_r6250
331 DEVICE_MODEL := R6250
332 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
333 $(Device/netgear)
334 NETGEAR_BOARD_ID := U12H245T00_NETGEAR
335 endef
336 TARGET_DEVICES += netgear_r6250
337
338 define Device/netgear_r6300-v2
339 DEVICE_MODEL := R6300
340 DEVICE_VARIANT := v2
341 DEVICE_PACKAGES := $(B43) $(USB3_PACKAGES)
342 $(Device/netgear)
343 NETGEAR_BOARD_ID := U12H240T00_NETGEAR
344 endef
345 TARGET_DEVICES += netgear_r6300-v2
346
347 define Device/netgear_r7000
348 DEVICE_MODEL := R7000
349 DEVICE_PACKAGES := $(USB3_PACKAGES)
350 $(Device/netgear)
351 NETGEAR_BOARD_ID := U12H270T00_NETGEAR
352 endef
353 TARGET_DEVICES += netgear_r7000
354
355 define Device/netgear_r7900
356 DEVICE_MODEL := R7900
357 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
358 $(Device/netgear)
359 NETGEAR_BOARD_ID := U12H315T30_NETGEAR
360 endef
361 TARGET_DEVICES += netgear_r7900
362
363 define Device/netgear_r8000
364 DEVICE_MODEL := R8000
365 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
366 $(Device/netgear)
367 NETGEAR_BOARD_ID := U12H315T00_NETGEAR
368 endef
369 TARGET_DEVICES += netgear_r8000
370
371 define Device/netgear_r8500
372 DEVICE_MODEL := R8500
373 DEVICE_PACKAGES := $(BRCMFMAC_4366B1) $(USB3_PACKAGES)
374 $(Device/netgear)
375 NETGEAR_BOARD_ID := U12H334T00_NETGEAR
376 DEFAULT := n
377 endef
378 TARGET_DEVICES += netgear_r8500
379
380 define Device/smartrg_sr400ac
381 DEVICE_VENDOR := SmartRG
382 DEVICE_MODEL := SR400ac
383 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
384 IMAGES := trx
385 IMAGE/trx := append-rootfs | trx-serial
386 KERNEL_INITRAMFS_SUFFIX := .bin
387 KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma-d16
388 endef
389 TARGET_DEVICES += smartrg_sr400ac
390
391 define Device/phicomm_k3
392 DEVICE_VENDOR := PHICOMM
393 DEVICE_MODEL := K3
394 DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES)
395 IMAGES := trx
396 endef
397 TARGET_DEVICES += phicomm_k3
398
399 define Device/tenda_ac9
400 DEVICE_VENDOR := Tenda
401 DEVICE_MODEL := AC9
402 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
403 IMAGES := trx
404 IMAGE/trx := append-rootfs | trx-serial
405 endef
406 TARGET_DEVICES += tenda_ac9
407
408 define Device/tplink_archer-c5-v2
409 DEVICE_VENDOR := TP-LINK
410 DEVICE_MODEL := Archer C5
411 DEVICE_VARIANT := v2
412 DEVICE_PACKAGES := $(B43) $(USB2_PACKAGES)
413 IMAGES := bin
414 IMAGE/bin := append-rootfs | bcm53xx-tplink-safeloader
415 TPLINK_BOARD := ARCHER-C5-V2
416 BROKEN := y
417 endef
418 TARGET_DEVICES += tplink_archer-c5-v2
419
420 define Device/tplink_archer-c9-v1
421 DEVICE_VENDOR := TP-LINK
422 DEVICE_MODEL := Archer C9
423 DEVICE_VARIANT := v1
424 DEVICE_PACKAGES := $(USB3_PACKAGES)
425 IMAGES := bin
426 IMAGE/bin := append-rootfs | bcm53xx-tplink-safeloader
427 TPLINK_BOARD := ARCHERC9
428 BROKEN := y
429 endef
430 TARGET_DEVICES += tplink_archer-c9-v1
431
432 $(eval $(call BuildImage))