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