65ed708459e7e6026713437430fc248c692cd070
[openwrt/staging/chunkeey.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),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 CONSOLE = ttyS0,115200
197 endef
198 TARGET_DEVICES += ubnt-air-gateway-pro
199
200 define Device/ubdev01
201 $(Device/ubnt-xm)
202 DEVICE_TITLE := Ubiquiti ubDEV01
203 MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,7488k(firmware),64k(certs),256k(cfg)ro,64k(EEPROM)ro
204 BOARDNAME := UBNT-UF
205 UBNT_BOARD := UBDEV01
206 UBNT_TYPE := XM
207 UBNT_CHIP := ar7240
208 endef
209
210 TARGET_DEVICES += ubdev01
211
212 define Device/ubnt-routerstation
213 DEVICE_TITLE := Ubiquiti RouterStation
214 DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
215 IMAGE_SIZE := 16128k
216 IMAGES := sysupgrade.bin factory.bin
217 IMAGE/factory.bin = append-rootfs | pad-rootfs | mkubntimage
218 IMAGE/sysupgrade.bin = append-rootfs | pad-rootfs | combined-image | check-size $$$$(IMAGE_SIZE)
219 KERNEL := kernel-bin | patch-cmdline | lzma | pad-to $$(BLOCKSIZE)
220 endef
221
222 define Device/ubnt-rs
223 $(Device/ubnt-routerstation)
224 DEVICE_TITLE := Ubiquiti RouterStation
225 BOARDNAME := UBNT-RS
226 DEVICE_PROFILE := UBNT UBNTRS
227 UBNT_BOARD := RS
228 UBNT_TYPE := RSx
229 UBNT_CHIP := ar7100
230 endef
231
232 define Device/ubnt-rspro
233 $(Device/ubnt-routerstation)
234 DEVICE_TITLE := Ubiquiti RouterStation Pro
235 BOARDNAME := UBNT-RSPRO
236 DEVICE_PROFILE := UBNT UBNTRSPRO
237 UBNT_BOARD := RSPRO
238 UBNT_TYPE := RSPRO
239 UBNT_CHIP := ar7100pro
240 endef
241
242 define Device/ubnt-ls-sr71
243 $(Device/ubnt-routerstation)
244 DEVICE_TITLE := Ubiquiti LS-SR71
245 BOARDNAME := UBNT-LS-SR71
246 DEVICE_PROFILE := UBNT
247 UBNT_BOARD := LS-SR71
248 UBNT_TYPE := LS-SR71
249 UBNT_CHIP := ar7100
250 endef
251
252 TARGET_DEVICES += ubnt-rs ubnt-rspro ubnt-ls-sr71
253
254 define Device/ubnt-uap-pro
255 DEVICE_TITLE := Ubiquiti UAP Pro
256 KERNEL_SIZE := 1536k
257 IMAGE_SIZE := 15744k
258 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)
259 UBNT_TYPE := BZ
260 UBNT_CHIP := ar934x
261 BOARDNAME := UAP-PRO
262 DEVICE_PROFILE := UBNT UAPPRO
263 KERNEL := kernel-bin | patch-cmdline | lzma | uImage lzma | jffs2 kernel0
264 IMAGES := sysupgrade.bin factory.bin
265 IMAGE/sysupgrade.bin = append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
266 IMAGE/factory.bin = $$(IMAGE/sysupgrade.bin) | mkubntimage2
267 endef
268
269 define Device/ubnt-unifi-outdoor-plus
270 $(Device/ubnt-uap-pro)
271 DEVICE_TITLE := Ubiquiti UniFi Outdoor Plus
272 UBNT_CHIP := ar7240
273 BOARDNAME := UBNT-UOP
274 DEVICE_PROFILE := UBNT
275 endef
276
277 TARGET_DEVICES += ubnt-uap-pro ubnt-unifi-outdoor-plus