ath79: fix build warning
[openwrt/staging/dedeckeh.git] / target / linux / ath79 / image / generic-ubnt.mk
1 DEVICE_VARS += UBNT_BOARD UBNT_CHIP UBNT_TYPE UBNT_VERSION
2
3 # mkubntimage is using the kernel image direct
4 # routerboard creates partitions out of the ubnt header
5 define Build/mkubntimage
6 -$(STAGING_DIR_HOST)/bin/mkfwimage \
7 -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-$(VERSION_DIST)-$(REVISION) \
8 -k $(IMAGE_KERNEL) \
9 -r $@ \
10 -o $@
11 endef
12
13 # all UBNT XM/WA devices expect the kernel image to have 1024k while flash, when
14 # booting the image, the size doesn't matter.
15 define Build/mkubntimage-split
16 -[ -f $@ ] && ( \
17 dd if=$@ of=$@.old1 bs=1024k count=1; \
18 dd if=$@ of=$@.old2 bs=1024k skip=1; \
19 $(STAGING_DIR_HOST)/bin/mkfwimage \
20 -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v$(UBNT_VERSION)-$(VERSION_DIST)-$(REVISION) \
21 -k $@.old1 \
22 -r $@.old2 \
23 -o $@; \
24 rm $@.old1 $@.old2 )
25 endef
26
27 # UBNT_BOARD e.g. one of (XS2, XS5, RS, XM)
28 # UBNT_TYPE e.g. one of (BZ, XM, XW)
29 # UBNT_CHIP e.g. one of (ar7240, ar933x, ar934x)
30 # UBNT_VERSION e.g. one of (6.0.0, 8.5.0)
31 define Device/ubnt
32 DEVICE_PACKAGES := kmod-usb-core kmod-usb2
33 IMAGE_SIZE := 7552k
34 UBNT_BOARD := XM
35 UBNT_VERSION := 6.0.0
36 IMAGES += factory.bin
37 IMAGE/factory.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | \
38 append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE) | mkubntimage-split
39 endef
40
41 define Device/ubnt-xm
42 $(Device/ubnt)
43 DEVICE_PACKAGES += kmod-usb-ohci rssileds
44 UBNT_TYPE := XM
45 UBNT_CHIP := ar7240
46 ATH_SOC := ar7241
47 KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma | uImage lzma
48 endef
49
50 define Device/ubnt-bz
51 $(Device/ubnt)
52 UBNT_TYPE := BZ
53 UBNT_CHIP := ar7240
54 ATH_SOC := ar7241
55 endef
56
57 define Device/ubnt-wa
58 $(Device/ubnt)
59 UBNT_TYPE := WA
60 UBNT_CHIP := ar934x
61 UBNT_BOARD := WA
62 UBNT_VERSION := 8.5.0
63 ATH_SOC := ar9342
64 endef
65
66 define Device/ubnt_bullet-m
67 $(Device/ubnt-xm)
68 DEVICE_TITLE := Ubiquiti Bullet-M
69 SUPPORTED_DEVICES += bullet-m
70 endef
71 TARGET_DEVICES += ubnt_bullet-m
72
73 define Device/ubnt_rocket-m
74 $(Device/ubnt-xm)
75 DEVICE_TITLE := Ubiquiti Rocket-M
76 SUPPORTED_DEVICES += rocket-m
77 endef
78 TARGET_DEVICES += ubnt_rocket-m
79
80 define Device/ubnt_nano-m
81 $(Device/ubnt-xm)
82 DEVICE_TITLE := Ubiquiti Nano-M
83 SUPPORTED_DEVICES += nano-m
84 endef
85 TARGET_DEVICES += ubnt_nano-m
86
87 define Device/ubnt_nanostation-ac
88 $(Device/ubnt-wa)
89 DEVICE_TITLE := Ubiquiti Nanostation AC
90 DEVICE_PACKAGES += kmod-ath10k ath10k-firmware-qca988x
91 IMAGE_SIZE := 15744k
92 IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | mkubntimage-split
93 endef
94 TARGET_DEVICES += ubnt_nanostation-ac
95
96 define Device/ubnt_nanostation-ac-loco
97 $(Device/ubnt-wa)
98 DEVICE_TITLE := Ubiquiti Nanostation AC loco
99 DEVICE_PACKAGES += kmod-ath10k ath10k-firmware-qca988x
100 IMAGE_SIZE := 15744k
101 IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | mkubntimage-split
102 endef
103 TARGET_DEVICES += ubnt_nanostation-ac-loco
104
105 define Device/ubnt_unifi
106 $(Device/ubnt-bz)
107 DEVICE_TITLE := Ubiquiti UniFi
108 SUPPORTED_DEVICES += unifi
109 endef
110 TARGET_DEVICES += ubnt_unifi
111
112 define Device/ubnt_unifiac
113 ATH_SOC := qca9563
114 IMAGE_SIZE := 7744k
115 IMAGES := sysupgrade.bin
116 IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE)
117 DEVICE_PACKAGES := kmod-ath10k-ct ath10k-firmware-qca988x-ct
118 endef
119
120
121 define Device/ubnt_unifiac-lite
122 $(Device/ubnt_unifiac)
123 DEVICE_TITLE := Ubiquiti UniFi AC-Lite
124 SUPPORTED_DEVICES += ubnt-unifiac-lite
125 endef
126 TARGET_DEVICES += ubnt_unifiac-lite
127
128 define Device/ubnt_unifiac-mesh
129 $(Device/ubnt_unifiac)
130 DEVICE_TITLE := Ubiquiti UniFi AC-Mesh
131 SUPPORTED_DEVICES += ubnt-unifiac-mesh
132 endef
133 TARGET_DEVICES += ubnt_unifiac-mesh
134
135 define Device/ubnt_unifiac-mesh-pro
136 $(Device/ubnt_unifiac)
137 DEVICE_TITLE := Ubiquiti UniFi AC-Mesh Pro
138 SUPPORTED_DEVICES += ubnt-unifiac-mesh-pro
139 endef
140 TARGET_DEVICES += ubnt_unifiac-mesh-pro
141
142 define Device/ubnt_unifiac-pro
143 $(Device/ubnt_unifiac)
144 DEVICE_TITLE := Ubiquiti UniFi AC-Pro
145 DEVICE_PACKAGES += kmod-usb-core kmod-usb2
146 SUPPORTED_DEVICES += ubnt-unifiac-pro
147 endef
148 TARGET_DEVICES += ubnt_unifiac-pro
149
150 define Device/ubnt_routerstation_common
151 DEVICE_PACKAGES := -kmod-ath9k -wpad-mini -uboot-envtools kmod-usb-ohci kmod-usb2 fconfig
152 ATH_SOC := ar7161
153 IMAGE_SIZE := 16128k
154 IMAGES := sysupgrade.bin factory.bin
155 IMAGE/factory.bin := append-rootfs | pad-rootfs | mkubntimage | check-size $$$$(IMAGE_SIZE)
156 IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | combined-image | check-size $$$$(IMAGE_SIZE) | append-metadata
157 KERNEL := kernel-bin | append-dtb | lzma | pad-to $$(BLOCKSIZE)
158 KERNEL_INITRAMFS := kernel-bin | append-dtb
159 endef
160
161 define Device/ubnt_routerstation
162 $(Device/ubnt_routerstation_common)
163 DEVICE_TITLE := Ubiquiti RouterStation
164 UBNT_BOARD := RS
165 UBNT_TYPE := RSx
166 UBNT_CHIP := ar7100
167 DEVICE_PACKAGES += -swconfig
168 endef
169 TARGET_DEVICES += ubnt_routerstation
170
171 define Device/ubnt_routerstation-pro
172 $(Device/ubnt_routerstation_common)
173 DEVICE_TITLE := Ubiquiti RouterStation Pro
174 UBNT_BOARD := RSPRO
175 UBNT_TYPE := RSPRO
176 UBNT_CHIP := ar7100pro
177 endef
178 TARGET_DEVICES += ubnt_routerstation-pro