ar71xx: add support for MikroTik hAP ac lite
[openwrt/openwrt.git] / target / linux / ar71xx / image / ubnt.mk
1 # UBNT_BOARD e.g. one of (XS2, XS5, RS, XM)
2 # UBNT_TYPE e.g. one of (BZ, XM, XW)
3 # UBNT_CHIP e.g. one of (ar7240, ar933x, ar934x)
4
5 # mkubntimage is using the kernel image direct
6 # routerboard creates partitions out of the ubnt header
7 define Build/mkubntimage
8 -$(STAGING_DIR_HOST)/bin/mkfwimage \
9 -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-OpenWrt-$(REVISION) \
10 -k $(IMAGE_KERNEL) \
11 -r $@ \
12 -o $@
13 endef
14
15 # all UBNT XM device expect the kernel image to have 1024k while flash, when
16 # booting the image, the size doesn't matter.
17 define Build/mkubntimage-split
18 -[ -f $@ ] && ( \
19 dd if=$@ of=$@.old1 bs=1024k count=1; \
20 dd if=$@ of=$@.old2 bs=1024k skip=1; \
21 $(STAGING_DIR_HOST)/bin/mkfwimage \
22 -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-OpenWrt-$(REVISION) \
23 -k $@.old1 \
24 -r $@.old2 \
25 -o $@; \
26 rm $@.old1 $@.old2 )
27 endef
28
29 define Build/mkubntimage2
30 -$(STAGING_DIR_HOST)/bin/mkfwimage2 -f 0x9f000000 \
31 -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-OpenWrt-$(REVISION) \
32 -p jffs2:0x50000:0xf60000:0:0:$@ \
33 -o $@.new
34 @mv $@.new $@
35 endef
36
37 DEVICE_VARS += UBNT_BOARD UBNT_CHIP UBNT_TYPE
38
39 # UBNT_BOARD e.g. one of (XS2, XS5, RS, XM)
40 # UBNT_TYPE e.g. one of (BZ, XM, XW)
41 # UBNT_CHIP e.g. one of (ar7240, ar933x, ar934x)
42 define Device/ubnt-xm
43 DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
44 DEVICE_PROFILE := UBNT
45 IMAGE_SIZE := 7552k
46 MTDPARTS = spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,7552k(firmware),256k(cfg)ro,64k(EEPROM)ro
47 UBNT_TYPE := XM
48 UBNT_BOARD := XM
49 UBNT_CHIP := ar7240
50 IMAGES := sysupgrade.bin factory.bin
51 IMAGE/factory.bin = $$(IMAGE/sysupgrade.bin) | mkubntimage-split
52 IMAGE/sysupgrade.bin = append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
53 endef
54
55 define Device/ubnt-xw
56 DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
57 DEVICE_PROFILE := UBNT
58 IMAGE_SIZE := 7552k
59 MTDPARTS = spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,7552k(firmware),256k(cfg)ro,64k(EEPROM)ro
60 UBNT_TYPE := XW
61 UBNT_BOARD := XM
62 UBNT_CHIP := ar934x
63 IMAGES := sysupgrade.bin factory.bin
64 IMAGE/factory.bin = $$(IMAGE/sysupgrade.bin) | mkubntimage-split
65 IMAGE/sysupgrade.bin = append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
66 endef
67
68 define Device/ubnt-bz
69 DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
70 DEVICE_PROFILE := UBNT
71 IMAGE_SIZE := 7552k
72 MTDPARTS = spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,7552k(firmware),256k(cfg)ro,64k(EEPROM)ro
73 UBNT_TYPE := BZ
74 UBNT_BOARD := XM
75 UBNT_CHIP := ar934x
76 IMAGES := sysupgrade.bin factory.bin
77 IMAGE/factory.bin = $$(IMAGE/sysupgrade.bin) | mkubntimage-split
78 IMAGE/sysupgrade.bin = append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
79 endef
80
81 define Device/ubnt-unifiac
82 DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
83 DEVICE_PROFILE := UBNT
84 IMAGE_SIZE := 7744k
85 MTDPARTS = spi0.0:384k(u-boot)ro,64k(u-boot-env)ro,7744k(firmware),7744k(ubnt-airos)ro,128k(bs)ro,256k(cfg)ro,64k(EEPROM)ro
86 IMAGES := sysupgrade.bin
87 IMAGE/sysupgrade.bin = append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
88 endef
89
90 define Device/rw2458n
91 $(Device/ubnt-xm)
92 DEVICE_TITLE := Ubiquiti RW2458N
93 BOARDNAME := RW2458N
94 endef
95
96 define Device/ubnt-airrouter
97 $(Device/ubnt-xm)
98 DEVICE_TITLE := Ubiquiti AirRouter
99 BOARDNAME := UBNT-AR
100 endef
101
102 define Device/ubnt-bullet-m
103 $(Device/ubnt-xm)
104 DEVICE_TITLE := Ubiquiti Bullet-M
105 BOARDNAME := UBNT-BM
106 endef
107
108 define Device/ubnt-rocket-m
109 $(Device/ubnt-xm)
110 DEVICE_TITLE := Ubiquiti Rocket-M
111 BOARDNAME := UBNT-RM
112 endef
113
114 define Device/ubnt-nano-m
115 $(Device/ubnt-xm)
116 DEVICE_TITLE := Ubiquiti Nano-M
117 BOARDNAME := UBNT-NM
118 endef
119 TARGET_DEVICES += rw2458n ubnt-airrouter ubnt-bullet-m ubnt-rocket-m ubnt-nano-m
120
121 define Device/ubnt-unifi
122 $(Device/ubnt-bz)
123 DEVICE_TITLE := Ubiquiti UniFi
124 BOARDNAME := UBNT-UF
125 DEVICE_PROFILE := UBNT UBNTUNIFI
126 endef
127
128 define Device/ubnt-unifiac-lite
129 $(Device/ubnt-unifiac)
130 DEVICE_TITLE := Ubiquiti UniFi AC-Lite
131 DEVICE_PACKAGES := kmod-ath10k ath10k-firmware-qca988x
132 DEVICE_PROFILE := UBNT UBNTUNIFIACLITE
133 BOARDNAME := UBNT-UF-AC-LITE
134 endef
135
136 define Device/ubnt-unifiac-pro
137 $(Device/ubnt-unifiac)
138 DEVICE_TITLE := Ubiquiti UniFi AC-Pro
139 DEVICE_PACKAGES := kmod-ath10k ath10k-firmware-qca988x kmod-usb-core kmod-usb-ohci kmod-usb2
140 DEVICE_PROFILE := UBNT UBNTUNIFIACPRO
141 BOARDNAME := UBNT-UF-AC-PRO
142 endef
143
144 define Device/ubnt-unifi-outdoor
145 $(Device/ubnt-bz)
146 DEVICE_TITLE := Ubiquiti UniFi Outdoor
147 BOARDNAME := UBNT-U20
148 DEVICE_PROFILE := UBNT UBNTUNIFIOUTDOOR
149 endef
150 TARGET_DEVICES += ubnt-unifi ubnt-unifiac-lite ubnt-unifiac-pro ubnt-unifi-outdoor
151
152 define Device/ubnt-nano-m-xw
153 $(Device/ubnt-xw)
154 DEVICE_TITLE := Ubiquiti Nano M XW
155 BOARDNAME := UBNT-NM-XW
156 endef
157
158 define Device/ubnt-loco-m-xw
159 $(Device/ubnt-xw)
160 DEVICE_TITLE := Ubiquiti Loco XW
161 BOARDNAME := UBNT-LOCO-XW
162 endef
163
164 define Device/ubnt-rocket-m-xw
165 $(Device/ubnt-xw)
166 DEVICE_TITLE := Ubiquiti Rocket M XW
167 BOARDNAME := UBNT-RM-XW
168 endef
169
170 define Device/ubnt-rocket-m-ti
171 $(Device/ubnt-xw)
172 DEVICE_TITLE := Ubiquiti Rocket M TI
173 BOARDNAME := UBNT-RM-TI
174 UBNT_TYPE := TI
175 UBNT_BOARD := XM
176 endef
177 TARGET_DEVICES += ubnt-nano-m-xw ubnt-loco-m-xw ubnt-rocket-m-xw ubnt-rocket-m-ti
178
179 define Device/ubnt-air-gateway
180 $(Device/ubnt-xm)
181 DEVICE_TITLE := Ubiquiti Air Gateway
182 BOARDNAME := UBNT-AGW
183 UBNT_BOARD := XM
184 UBNT_TYPE := AirGW
185 UBNT_CHIP := ar933x
186 CONSOLE = ttyATH0,115200
187 endef
188 TARGET_DEVICES += ubnt-air-gateway
189
190 define Device/ubnt-air-gateway-pro
191 $(Device/ubnt-xm)
192 DEVICE_TITLE := Ubiquiti Air Gateway Pro
193 BOARDNAME := UBNT-AGWP
194 UBNT_TYPE := AirGWP
195 UBNT_CHIP := ar934x
196 endef
197 TARGET_DEVICES += ubnt-air-gateway-pro
198
199 define Device/ubdev01
200 $(Device/ubnt-xm)
201 DEVICE_TITLE := Ubiquiti ubDEV01
202 MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,7488k(firmware),64k(certs),256k(cfg)ro,64k(EEPROM)ro
203 BOARDNAME := UBNT-UF
204 UBNT_BOARD := UBDEV01
205 UBNT_TYPE := XM
206 UBNT_CHIP := ar7240
207 endef
208
209 TARGET_DEVICES += ubdev01
210
211 define Device/ubnt-routerstation
212 DEVICE_TITLE := Ubiquiti RouterStation
213 DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
214 IMAGE_SIZE := 16128k
215 IMAGES := sysupgrade.bin factory.bin
216 IMAGE/factory.bin = append-rootfs | pad-rootfs | mkubntimage
217 IMAGE/sysupgrade.bin = append-rootfs | pad-rootfs | combined-image | check-size $$$$(IMAGE_SIZE)
218 KERNEL := kernel-bin | patch-cmdline | lzma | pad-to $$(BLOCKSIZE)
219 endef
220
221 define Device/ubnt-rs
222 $(Device/ubnt-routerstation)
223 DEVICE_TITLE := Ubiquiti RouterStation
224 BOARDNAME := UBNT-RS
225 DEVICE_PROFILE := UBNT UBNTRS
226 UBNT_BOARD := RS
227 UBNT_TYPE := RSx
228 UBNT_CHIP := ar7100
229 endef
230
231 define Device/ubnt-rspro
232 $(Device/ubnt-routerstation)
233 DEVICE_TITLE := Ubiquiti RouterStation Pro
234 BOARDNAME := UBNT-RSPRO
235 DEVICE_PROFILE := UBNT UBNTRSPRO
236 UBNT_BOARD := RSPRO
237 UBNT_TYPE := RSPRO
238 UBNT_CHIP := ar7100pro
239 endef
240
241 define Device/ubnt-ls-sr71
242 $(Device/ubnt-routerstation)
243 DEVICE_TITLE := Ubiquiti LS-SR71
244 BOARDNAME := UBNT-LS-SR71
245 DEVICE_PROFILE := UBNT
246 UBNT_BOARD := LS-SR71
247 UBNT_TYPE := LS-SR71
248 UBNT_CHIP := ar7100
249 endef
250
251 TARGET_DEVICES += ubnt-rs ubnt-rspro ubnt-ls-sr71
252
253 define Device/ubnt-uap-pro
254 DEVICE_TITLE := Ubiquiti UAP Pro
255 KERNEL_SIZE := 1536k
256 IMAGE_SIZE := 15744k
257 MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,1536k(kernel),14208k(rootfs),256k(cfg)ro,64k(EEPROM)ro,15744k@0x50000(firmware)
258 UBNT_TYPE := BZ
259 UBNT_CHIP := ar934x
260 BOARDNAME := UAP-PRO
261 DEVICE_PROFILE := UBNT UAPPRO
262 KERNEL := kernel-bin | patch-cmdline | lzma | uImage lzma | jffs2 kernel0
263 IMAGES := sysupgrade.bin factory.bin
264 IMAGE/sysupgrade.bin = append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
265 IMAGE/factory.bin = $$(IMAGE/sysupgrade.bin) | mkubntimage2
266 endef
267
268 define Device/ubnt-unifi-outdoor-plus
269 $(Device/ubnt-uap-pro)
270 DEVICE_TITLE := Ubiquiti UniFi Outdoor Plus
271 UBNT_CHIP := ar7240
272 BOARDNAME := UBNT-UOP
273 DEVICE_PROFILE := UBNT
274 endef
275
276 TARGET_DEVICES += ubnt-uap-pro ubnt-unifi-outdoor-plus