bcm53xx: build factory images for WZR-900DHP series
[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 define Build/trx-serial
53 $(STAGING_DIR_HOST)/bin/trx \
54 -o $@.new \
55 -m 33554432 \
56 -f $(IMAGE_KERNEL) -a 1024 \
57 -f $@ -a 0x10000 -A $(KDIR)/fs_mark
58 mv $@.new $@
59 endef
60
61 define Build/trx-nand
62 # kernel: always use 4 MiB (-28 B or TRX header) to allow upgrades even
63 # if it grows up between releases
64 # root: UBI with one extra block containing UBI mark to trigger erasing
65 # rest of partition
66 $(STAGING_DIR_HOST)/bin/trx \
67 -o $@.new \
68 -m 33554432 \
69 -f $(IMAGE_KERNEL) -a 0x20000 -b 0x400000 \
70 -f $@ \
71 -A $(KDIR)/ubi_mark -a 0x20000
72 mv $@.new $@
73 endef
74
75 define Build/asus-trx
76 $(STAGING_DIR_HOST)/bin/asustrx \
77 -p $(PRODUCTID) -i $@ -o $@.new
78 mv $@.new $@
79 endef
80
81 define Build/seama-nand
82 # Seama entity
83 $(STAGING_DIR_HOST)/bin/oseama \
84 entity $@.entity \
85 -m "dev=/dev/mtdblock/7" \
86 -m "type=firmware" \
87 -f $(IMAGE_KERNEL) \
88 -b 0x400000 \
89 -f $@ \
90 -f $(KDIR)/ubi_mark
91 # Seama container
92 $(STAGING_DIR_HOST)/bin/seama \
93 -s $@ \
94 -m "signature=$(SIGNATURE)" \
95 -i $@.entity
96 endef
97
98 DEVICE_VARS += PRODUCTID SIGNATURE NETGEAR_BOARD_ID NETGEAR_REGION TPLINK_BOARD
99 DEVICE_VARS += BUFFALO_TAG_PLATFORM BUFFALO_TAG_VERSION BUFFALO_TAG_MINOR
100
101 BRCMFMAC_43602A1 := kmod-brcmfmac brcmfmac-firmware-43602a1-pcie
102 BRCMFMAC_4366B1 := kmod-brcmfmac brcmfmac-firmware-4366b1-pcie
103 USB2_PACKAGES := kmod-usb-ohci kmod-usb2 kmod-phy-bcm-ns-usb2
104 USB2_PACKAGES += kmod-usb-ledtrig-usbport
105 USB3_PACKAGES := $(USB2_PACKAGES) kmod-usb3 kmod-phy-bcm-ns-usb3
106
107 define Device/Default
108 # .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names
109 # extract the full dtb name based on the device info
110 DEVICE_DTS := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(1).dtb)))
111 KERNEL := kernel-bin | append-dtb | lzma-d16
112 KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
113 FILESYSTEMS := squashfs
114 KERNEL_NAME := zImage
115 IMAGE_NAME = $$(IMAGE_PREFIX)-$$(1).$$(2)
116 IMAGES := trx
117 BLOCKSIZE := 128k
118 PAGESIZE := 2048
119 IMAGE/trx := append-ubi | trx-nand
120 endef
121
122 define Device/asus
123 IMAGES := trx
124 IMAGE/trx := append-ubi | trx-nand | asus-trx
125 endef
126
127 define Device/asus-rt-ac56u
128 DEVICE_TITLE := Asus RT-AC56U
129 DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
130 endef
131 TARGET_DEVICES += asus-rt-ac56u
132
133 define Device/asus-rt-ac68u
134 DEVICE_TITLE := Asus RT-AC68U
135 DEVICE_PACKAGES := $(USB3_PACKAGES)
136 endef
137 TARGET_DEVICES += asus-rt-ac68u
138
139 define Device/asus-rt-ac87u
140 DEVICE_TITLE := Asus RT-AC87U
141 DEVICE_PACKAGES := $(USB3_PACKAGES)
142 endef
143 TARGET_DEVICES += asus-rt-ac87u
144
145 define Device/asus-rt-n18u
146 DEVICE_TITLE := Asus RT-N18U
147 DEVICE_PACKAGES := $(USB3_PACKAGES)
148 endef
149 TARGET_DEVICES += asus-rt-n18u
150
151 define Device/buffalo-wxr-1900dhp
152 DEVICE_TITLE := Buffalo WXR-1900DHP
153 DEVICE_PACKAGES := $(USB3_PACKAGES)
154 endef
155 TARGET_DEVICES += buffalo-wxr-1900dhp
156
157 define Device/buffalo-wzr-600dhp2
158 DEVICE_TITLE := Buffalo WZR-600DHP2
159 DEVICE_PACKAGES := kmod-b43 $(USB2_PACKAGES)
160 endef
161 TARGET_DEVICES += buffalo-wzr-600dhp2
162
163 define Device/buffalo-wzr-900dhp
164 DEVICE_TITLE := Buffalo WZR-900DHP
165 DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
166 BUFFALO_TAG_PLATFORM := bcm
167 BUFFALO_TAG_VERSION := 9.99
168 BUFFALO_TAG_MINOR := 9.99
169 IMAGES += factory-DHP-EU.bin factory-DHP2-JP.bin
170 IMAGE/factory-DHP-EU.bin := \
171 append-ubi | trx-nand | buffalo-wzr-header WZR-900DHP EU | \
172 buffalo-enc WZR-900DHP $$(BUFFALO_TAG_VERSION) | \
173 buffalo-tag-dhp WZR-900DHP EU mlang20 | buffalo-enc-tag | \
174 buffalo-dhp-image
175 IMAGE/factory-DHP2-JP.bin := \
176 append-ubi | trx-nand | buffalo-wzr-header WZR-900DHP2 JP | \
177 buffalo-enc WZR-900DHP2 $$(BUFFALO_TAG_VERSION) | \
178 buffalo-tag-dhp WZR-900DHP2 JP jp | buffalo-enc-tag | \
179 buffalo-dhp-image
180 endef
181 TARGET_DEVICES += buffalo-wzr-900dhp
182
183 define Device/buffalo-wzr-1750dhp
184 DEVICE_TITLE := Buffalo WZR-1750DHP
185 DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
186 endef
187 TARGET_DEVICES += buffalo-wzr-1750dhp
188
189 define Device/dlink
190 IMAGES := bin
191 IMAGE/bin := append-ubi | seama-nand
192 endef
193
194 define Device/dlink-dir-885l
195 DEVICE_TITLE := D-Link DIR-885L
196 DEVICE_PACKAGES := $(BRCMFMAC_4366B1) $(USB3_PACKAGES)
197 $(Device/dlink)
198 SIGNATURE := wrgac42_dlink.2015_dir885l
199 endef
200 TARGET_DEVICES += dlink-dir-885l
201
202 define Device/linksys-ea6300-v1
203 DEVICE_TITLE := Linksys EA6300 V1
204 DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
205 endef
206 # Disabled due to problems with 2 TRX partitions
207 # TARGET_DEVICES += linksys-ea6300-v1
208
209 define Device/netgear
210 IMAGES := chk
211 IMAGE/chk := append-ubi | trx-nand | netgear-chk
212 NETGEAR_REGION := 1
213 endef
214
215 define Device/netgear-r6250
216 DEVICE_TITLE := Netgear R6250
217 DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
218 $(Device/netgear)
219 NETGEAR_BOARD_ID := U12H245T00_NETGEAR
220 endef
221
222 define Device/netgear-r6300-v2
223 DEVICE_TITLE := Netgear R6300 V2
224 DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
225 $(Device/netgear)
226 NETGEAR_BOARD_ID := U12H240T00_NETGEAR
227 endef
228
229 define Device/netgear-r7000
230 DEVICE_TITLE := Netgear R7000
231 DEVICE_PACKAGES := $(USB3_PACKAGES)
232 $(Device/netgear)
233 NETGEAR_BOARD_ID := U12H270T00_NETGEAR
234 endef
235 TARGET_DEVICES += netgear-r7000
236
237 define Device/netgear-r7900
238 DEVICE_TITLE := Netgear R7900
239 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
240 $(Device/netgear)
241 NETGEAR_BOARD_ID := U12H315T30_NETGEAR
242 endef
243 TARGET_DEVICES += netgear-r7900
244
245 define Device/netgear-r8000
246 DEVICE_TITLE := Netgear R8000
247 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
248 $(Device/netgear)
249 NETGEAR_BOARD_ID := U12H315T00_NETGEAR
250 endef
251
252 define Device/netgear-r8500
253 DEVICE_TITLE := Netgear R8500
254 DEVICE_PACKAGES := $(BRCMFMAC_4366B1) $(USB3_PACKAGES)
255 $(Device/netgear)
256 NETGEAR_BOARD_ID := U12H334T00_NETGEAR
257 endef
258 # TARGET_DEVICES += netgear-r8500
259
260 define Device/smartrg-sr400ac
261 DEVICE_TITLE := SmartRG SR400ac
262 DEVICE_PACKAGES := $(BRCMFMAC_43602A1) $(USB3_PACKAGES)
263 IMAGES := trx
264 IMAGE/trx := append-rootfs | trx-serial
265 endef
266
267 define Device/tenda-ac9
268 DEVICE_TITLE := Tenda AC9
269 DEVICE_PACKAGES := kmod-b43 $(USB2_PACKAGES)
270 IMAGES := trx
271 IMAGE/trx := append-rootfs | trx-serial
272 endef
273 TARGET_DEVICES += tenda-ac9
274
275 define Device/tplink-archer-c9-v1
276 DEVICE_TITLE := TP-LINK Archer C9 V1
277 DEVICE_PACKAGES := $(USB3_PACKAGES)
278 IMAGES := bin
279 IMAGE/bin := append-rootfs | bcm53xx-tplink-safeloader
280 TPLINK_BOARD := ARCHERC9
281 endef
282 TARGET_DEVICES += tplink-archer-c9-v1
283
284 TARGET_DEVICES += \
285 netgear-r6250 netgear-r6300-v2 netgear-r8000 \
286 smartrg-sr400ac
287
288 $(eval $(call BuildImage))