ath79: cleanup image build code
[openwrt/.git] / target / linux / ath79 / image / generic-ubnt.mk
1 DEVICE_VARS += UBNT_BOARD UBNT_CHIP UBNT_TYPE
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 device 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).v6.0.0-$(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 define Device/ubnt
31   DEVICE_PACKAGES := kmod-usb-core kmod-usb2
32   IMAGE_SIZE := 7552k
33   UBNT_BOARD := XM
34   IMAGES := sysupgrade.bin factory.bin
35   IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
36   IMAGE/factory.bin := $$(IMAGE/sysupgrade.bin) | mkubntimage-split
37 endef
38
39 define Device/ubnt-xm
40   $(Device/ubnt)
41   DEVICE_PACKAGES += kmod-usb-ohci
42   UBNT_TYPE := XM
43   UBNT_CHIP := ar7240
44   ATH_SOC := ar7241
45   KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma | uImage lzma
46 endef
47
48 define Device/ubnt-bz
49   $(Device/ubnt)
50   UBNT_TYPE := BZ
51   UBNT_CHIP := ar7240
52   ATH_SOC := ar7241
53 endef
54
55 define Device/ubnt_bullet-m
56   $(Device/ubnt-xm)
57   DEVICE_TITLE := Ubiquiti Bullet-M
58 endef
59 TARGET_DEVICES += ubnt_bullet-m
60
61 define Device/ubnt_rocket-m
62   $(Device/ubnt-xm)
63   DEVICE_TITLE := Ubiquiti Rocket-M
64 endef
65 TARGET_DEVICES += ubnt_rocket-m
66
67 define Device/ubnt_nano-m
68   $(Device/ubnt-xm)
69   DEVICE_TITLE := Ubiquiti Nano-M
70 endef
71 TARGET_DEVICES += ubnt_nano-m
72
73 define Device/ubnt_unifi
74   $(Device/ubnt-bz)
75   DEVICE_TITLE := Ubiquiti UniFi
76 endef
77 TARGET_DEVICES += ubnt_unifi