aad177bf4a6138db443bd4eee6023a43468c8dbd
[openwrt/staging/dedeckeh.git] / target / linux / ath79 / image / generic-ubnt.mk
1 DEVICE_VARS += UBNT_BOARD UBNT_CHIP UBNT_TYPE UBNT_VERSION UBNT_REVISION
2
3 # On M (XW) devices the U-Boot as of version 1.1.4-s1039 doesn't like
4 # VERSION_DIST being on the place of major(?) version number, so we need to
5 # use some number.
6 UBNT_REVISION := $(VERSION_DIST)-$(REVISION)
7
8 # mkubntimage is using the kernel image direct
9 # routerboard creates partitions out of the ubnt header
10 define Build/mkubntimage
11 -$(STAGING_DIR_HOST)/bin/mkfwimage -B $(UBNT_BOARD) \
12 -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-$(VERSION_DIST)-$(REVISION) \
13 -k $(IMAGE_KERNEL) -r $@ -o $@
14 endef
15
16 # all UBNT XM/WA devices expect the kernel image to have 1024k while flash, when
17 # booting the image, the size doesn't matter.
18 define Build/mkubntimage-split
19 -[ -f $@ ] && ( \
20 dd if=$@ of=$@.old1 bs=1024k count=1; \
21 dd if=$@ of=$@.old2 bs=1024k skip=1; \
22 $(STAGING_DIR_HOST)/bin/mkfwimage -B $(UBNT_BOARD) \
23 -v $(UBNT_TYPE).$(UBNT_CHIP).v$(UBNT_VERSION)-$(UBNT_REVISION) \
24 -k $@.old1 -r $@.old2 -o $@; \
25 rm $@.old1 $@.old2 )
26 endef
27
28 # UBNT_BOARD e.g. one of (XS2, XS5, RS, XM)
29 # UBNT_TYPE e.g. one of (BZ, XM, XW)
30 # UBNT_CHIP e.g. one of (ar7240, ar933x, ar934x)
31 # UBNT_VERSION e.g. one of (6.0.0, 8.5.0)
32 define Device/ubnt
33 DEVICE_VENDOR := Ubiquiti
34 DEVICE_PACKAGES := kmod-usb2
35 IMAGES += factory.bin
36 IMAGE/factory.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | \
37 append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE) | mkubntimage-split
38 endef
39
40 define Device/ubnt-bz
41 $(Device/ubnt)
42 SOC := ar7241
43 IMAGE_SIZE := 7448k
44 UBNT_BOARD := XM
45 UBNT_CHIP := ar7240
46 UBNT_TYPE := BZ
47 UBNT_VERSION := 6.0.0
48 endef
49
50 define Device/ubnt-sw
51 $(Device/ubnt)
52 SOC := ar7242
53 DEVICE_PACKAGES += kmod-usb-ohci
54 IMAGE_SIZE := 7552k
55 UBNT_BOARD := SW
56 UBNT_CHIP := ar7240
57 UBNT_TYPE := SW
58 UBNT_VERSION := 1.4.1
59 KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma | uImage lzma
60 endef
61
62 define Device/ubnt-wa
63 $(Device/ubnt)
64 SOC := ar9342
65 IMAGE_SIZE := 15744k
66 UBNT_BOARD := WA
67 UBNT_CHIP := ar934x
68 UBNT_TYPE := WA
69 UBNT_VERSION := 8.5.0
70 endef
71
72 define Device/ubnt-xm
73 $(Device/ubnt)
74 DEVICE_VARIANT := XM
75 DEVICE_PACKAGES += kmod-usb-ohci
76 IMAGE_SIZE := 7448k
77 UBNT_BOARD := XM
78 UBNT_CHIP := ar7240
79 UBNT_TYPE := XM
80 UBNT_VERSION := 6.0.0
81 KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma | uImage lzma
82 endef
83
84 define Device/ubnt-xw
85 $(Device/ubnt)
86 SOC := ar9342
87 DEVICE_VARIANT := XW
88 IMAGE_SIZE := 7552k
89 UBNT_BOARD := XM
90 UBNT_CHIP := ar934x
91 UBNT_REVISION := 42.$(UBNT_REVISION)
92 UBNT_TYPE := XW
93 UBNT_VERSION := 6.0.4
94 endef
95
96 define Device/ubnt_acb-isp
97 $(Device/ubnt)
98 SOC := qca9533
99 DEVICE_MODEL := airCube ISP
100 IMAGE_SIZE := 15744k
101 UBNT_BOARD := ACB-ISP
102 UBNT_CHIP := qca9533
103 UBNT_TYPE := ACB
104 UBNT_VERSION := 2.5.0
105 endef
106 TARGET_DEVICES += ubnt_acb-isp
107
108 define Device/ubnt_airrouter
109 $(Device/ubnt-xm)
110 SOC := ar7241
111 DEVICE_MODEL := AirRouter
112 SUPPORTED_DEVICES += airrouter
113 endef
114 TARGET_DEVICES += ubnt_airrouter
115
116 define Device/ubnt_bullet-m
117 $(Device/ubnt-xm)
118 SOC := ar7241
119 DEVICE_MODEL := Bullet-M
120 DEVICE_PACKAGES += rssileds
121 SUPPORTED_DEVICES += bullet-m
122 endef
123 TARGET_DEVICES += ubnt_bullet-m
124
125 define Device/ubnt_bullet-m-xw
126 $(Device/ubnt-xw)
127 DEVICE_MODEL := Bullet-M
128 DEVICE_PACKAGES += rssileds
129 SUPPORTED_DEVICES += bullet-m-xw
130 endef
131 TARGET_DEVICES += ubnt_bullet-m-xw
132
133 define Device/ubnt_edgeswitch-5xp
134 $(Device/ubnt-sw)
135 DEVICE_MODEL := EdgeSwitch 5XP
136 endef
137 TARGET_DEVICES += ubnt_edgeswitch-5xp
138
139 define Device/ubnt_edgeswitch-8xp
140 $(Device/ubnt-sw)
141 DEVICE_MODEL := EdgeSwitch 8XP
142 DEVICE_PACKAGES += switch-bcm53xx-mdio
143 endef
144 TARGET_DEVICES += ubnt_edgeswitch-8xp
145
146 define Device/ubnt_lap-120
147 $(Device/ubnt-wa)
148 DEVICE_MODEL := LiteAP ac
149 DEVICE_VARIANT := LAP-120
150 DEVICE_PACKAGES += kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct
151 endef
152 TARGET_DEVICES += ubnt_lap-120
153
154 define Device/ubnt_litebeam-ac-gen2
155 $(Device/ubnt-wa)
156 DEVICE_MODEL := LiteBeam AC
157 DEVICE_VARIANT := Gen2
158 DEVICE_PACKAGES := kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct
159 endef
160 TARGET_DEVICES += ubnt_litebeam-ac-gen2
161
162 define Device/ubnt_nanobeam-ac
163 $(Device/ubnt-wa)
164 DEVICE_MODEL := NanoBeam AC
165 DEVICE_PACKAGES += kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct rssileds
166 endef
167 TARGET_DEVICES += ubnt_nanobeam-ac
168
169 define Device/ubnt_nanostation-ac
170 $(Device/ubnt-wa)
171 DEVICE_MODEL := Nanostation AC
172 DEVICE_PACKAGES += kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct rssileds
173 endef
174 TARGET_DEVICES += ubnt_nanostation-ac
175
176 define Device/ubnt_nanostation-ac-loco
177 $(Device/ubnt-wa)
178 DEVICE_MODEL := Nanostation AC loco
179 DEVICE_PACKAGES += kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct
180 endef
181 TARGET_DEVICES += ubnt_nanostation-ac-loco
182
183 define Device/ubnt_nanostation-loco-m
184 $(Device/ubnt-xm)
185 SOC := ar7241
186 DEVICE_MODEL := Nanostation Loco M
187 DEVICE_PACKAGES += rssileds
188 SUPPORTED_DEVICES += bullet-m
189 endef
190 TARGET_DEVICES += ubnt_nanostation-loco-m
191
192 define Device/ubnt_nanostation-loco-m-xw
193 $(Device/ubnt-xw)
194 DEVICE_MODEL := Nanostation Loco M
195 DEVICE_PACKAGES += rssileds
196 SUPPORTED_DEVICES += loco-m-xw
197 endef
198 TARGET_DEVICES += ubnt_nanostation-loco-m-xw
199
200 define Device/ubnt_nanostation-m
201 $(Device/ubnt-xm)
202 SOC := ar7241
203 DEVICE_MODEL := Nanostation M
204 DEVICE_PACKAGES += rssileds
205 SUPPORTED_DEVICES += nanostation-m
206 endef
207 TARGET_DEVICES += ubnt_nanostation-m
208
209 define Device/ubnt_nanostation-m-xw
210 $(Device/ubnt-xw)
211 DEVICE_MODEL := Nanostation M
212 DEVICE_PACKAGES += rssileds
213 SUPPORTED_DEVICES += nanostation-m-xw
214 endef
215 TARGET_DEVICES += ubnt_nanostation-m-xw
216
217 define Device/ubnt_picostation-m
218 $(Device/ubnt-xm)
219 SOC := ar7241
220 DEVICE_MODEL := Picostation M
221 DEVICE_PACKAGES += rssileds
222 SUPPORTED_DEVICES += bullet-m
223 endef
224 TARGET_DEVICES += ubnt_picostation-m
225
226 define Device/ubnt_rocket-m
227 $(Device/ubnt-xm)
228 SOC := ar7241
229 DEVICE_MODEL := Rocket-M
230 DEVICE_PACKAGES += rssileds
231 SUPPORTED_DEVICES += rocket-m
232 endef
233 TARGET_DEVICES += ubnt_rocket-m
234
235 define Device/ubnt_routerstation_common
236 DEVICE_PACKAGES := -kmod-ath9k -wpad-mini -uboot-envtools kmod-usb-ohci \
237 kmod-usb2 fconfig
238 DEVICE_VENDOR := Ubiquiti
239 SOC := ar7161
240 IMAGE_SIZE := 16128k
241 IMAGES := factory.bin
242 IMAGE/factory.bin := append-rootfs | pad-rootfs | mkubntimage | \
243 check-size $$$$(IMAGE_SIZE)
244 KERNEL := kernel-bin | append-dtb | lzma | pad-to $$(BLOCKSIZE)
245 KERNEL_INITRAMFS := kernel-bin | append-dtb
246 endef
247
248 define Device/ubnt_routerstation
249 $(Device/ubnt_routerstation_common)
250 DEVICE_MODEL := RouterStation
251 UBNT_BOARD := RS
252 UBNT_TYPE := RSx
253 UBNT_CHIP := ar7100
254 DEVICE_PACKAGES += -swconfig
255 SUPPORTED_DEVICES += routerstation
256 endef
257 TARGET_DEVICES += ubnt_routerstation
258
259 define Device/ubnt_routerstation-pro
260 $(Device/ubnt_routerstation_common)
261 DEVICE_MODEL := RouterStation Pro
262 UBNT_BOARD := RSPRO
263 UBNT_TYPE := RSPRO
264 UBNT_CHIP := ar7100pro
265 SUPPORTED_DEVICES += routerstation-pro
266 endef
267 TARGET_DEVICES += ubnt_routerstation-pro
268
269 define Device/ubnt_unifi
270 $(Device/ubnt-bz)
271 DEVICE_MODEL := UniFi
272 SUPPORTED_DEVICES += unifi
273 endef
274 TARGET_DEVICES += ubnt_unifi
275
276 define Device/ubnt_unifiac
277 DEVICE_VENDOR := Ubiquiti
278 SOC := qca9563
279 IMAGE_SIZE := 7744k
280 DEVICE_PACKAGES := kmod-ath10k-ct ath10k-firmware-qca988x-ct
281 endef
282
283 define Device/ubnt_unifiac-lite
284 $(Device/ubnt_unifiac)
285 DEVICE_MODEL := UniFi AC-Lite
286 SUPPORTED_DEVICES += unifiac-lite
287 endef
288 TARGET_DEVICES += ubnt_unifiac-lite
289
290 define Device/ubnt_unifiac-lr
291 $(Device/ubnt_unifiac)
292 DEVICE_MODEL := UniFi AC-LR
293 SUPPORTED_DEVICES += unifiac-lite ubnt,unifiac-lite
294 endef
295 TARGET_DEVICES += ubnt_unifiac-lr
296
297 define Device/ubnt_unifiac-mesh
298 $(Device/ubnt_unifiac)
299 DEVICE_MODEL := UniFi AC-Mesh
300 SUPPORTED_DEVICES += unifiac-lite
301 endef
302 TARGET_DEVICES += ubnt_unifiac-mesh
303
304 define Device/ubnt_unifiac-mesh-pro
305 $(Device/ubnt_unifiac)
306 DEVICE_MODEL := UniFi AC-Mesh Pro
307 SUPPORTED_DEVICES += unifiac-pro
308 endef
309 TARGET_DEVICES += ubnt_unifiac-mesh-pro
310
311 define Device/ubnt_unifiac-pro
312 $(Device/ubnt_unifiac)
313 DEVICE_MODEL := UniFi AC-Pro
314 DEVICE_PACKAGES += kmod-usb2
315 SUPPORTED_DEVICES += unifiac-pro
316 endef
317 TARGET_DEVICES += ubnt_unifiac-pro