22507b04809ec036c149531d4b1405aa9545d662
[oweals/openwrt.git] / target / linux / bcm53xx / image / Makefile
1 #
2 # Copyright (C) 2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 define Image/Prepare
11         rm -f $(KDIR)/fs_mark
12         echo -ne '\xde\xad\xc0\xde' > $(KDIR)/fs_mark
13         $(call prepare_generic_squashfs,$(KDIR)/fs_mark)
14
15         # For UBI we want only one extra block
16         rm -f $(KDIR)/ubi_mark
17         echo -ne '\xde\xad\xc0\xde' > $(KDIR)/ubi_mark
18 endef
19
20 define Build/lzma-d16
21         $(STAGING_DIR_HOST)/bin/lzma e $@ -d16 $(1) $@.new
22         mv $@.new $@
23 endef
24
25 define Build/trx-serial
26         $(STAGING_DIR_HOST)/bin/trx \
27                 -o $@.new \
28                 -m 33554432 \
29                 -f $(IMAGE_KERNEL) -a 1024 \
30                 -f $@ -a 0x10000 -A $(KDIR)/fs_mark
31         mv $@.new $@
32 endef
33
34 define Build/trx-nand
35         # kernel: always use 4 MiB (-28 B or TRX header) to allow upgrades even
36         #         if it grows up between releases
37         # root: UBI with one extra block containing UBI mark to trigger erasing
38         #       rest of partition
39         $(STAGING_DIR_HOST)/bin/trx \
40                 -o $@.new \
41                 -m 33554432 \
42                 -f $(IMAGE_KERNEL) -a 0x20000 -b 0x400000 \
43                 -f $@ \
44                 -A $(KDIR)/ubi_mark -a 0x20000
45         mv $@.new $@
46 endef
47
48 define Build/asus-trx
49         $(STAGING_DIR_HOST)/bin/asustrx \
50                 -p $(PRODUCTID) -i $@ -o $@.new
51         mv $@.new $@
52 endef
53
54 define Build/seama-nand
55         # Seama entity
56         $(STAGING_DIR_HOST)/bin/oseama \
57                 entity $@.entity \
58                 -m "dev=/dev/mtdblock/7" \
59                 -m "type=firmware" \
60                 -f $(IMAGE_KERNEL) \
61                 -b 0x400000 \
62                 -f $@ \
63                 -f $(KDIR)/ubi_mark
64         # Seama container
65         $(STAGING_DIR_HOST)/bin/seama \
66                 -s $@ \
67                 -m "signature=$(SIGNATURE)" \
68                 -i $@.entity
69 endef
70
71 DEVICE_VARS += PRODUCTID SIGNATURE NETGEAR_BOARD_ID NETGEAR_REGION
72
73 USB2_PACKAGES := kmod-usb-ohci kmod-usb2
74 USB3_PACKAGES := kmod-usb-ohci kmod-usb2 kmod-usb3
75
76 define Device/Default
77   # .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names
78   # extract the full dtb name based on the device info
79   DEVICE_DTS := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(1).dtb)))
80   KERNEL := kernel-bin | append-dtb | lzma-d16
81   KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
82   FILESYSTEMS := squashfs
83   KERNEL_NAME := zImage
84   IMAGE_NAME = $$(IMAGE_PREFIX)-$$(1).$$(2)
85   IMAGES := trx
86   BLOCKSIZE := 128KiB
87   PAGESIZE := 2048
88   UBINIZE_OPTS :=
89   IMAGE/trx := append-ubi | trx-nand
90 endef
91
92 define Device/asus
93   IMAGES := trx
94   IMAGE/trx := append-ubi | trx-nand | asus-trx
95 endef
96
97 define Device/asus-rt-ac56u
98   DEVICE_TITLE := Asus RT-AC56U
99   DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
100 endef
101 TARGET_DEVICES += asus-rt-ac56u
102
103 define Device/asus-rt-ac68u
104   DEVICE_TITLE := Asus RT-AC68U
105   DEVICE_PACKAGES := $(USB3_PACKAGES)
106 endef
107 TARGET_DEVICES += asus-rt-ac68u
108
109 define Device/asus-rt-ac87u
110   DEVICE_TITLE := Asus RT-AC87U
111   DEVICE_PACKAGES := $(USB3_PACKAGES)
112 endef
113 TARGET_DEVICES += asus-rt-ac87u
114
115 define Device/asus-rt-n18u
116   DEVICE_TITLE := Asus RT-N18U
117   DEVICE_PACKAGES := $(USB3_PACKAGES)
118 endef
119 TARGET_DEVICES += asus-rt-n18u
120
121 define Device/buffalo-wxr-1900dhp
122   DEVICE_TITLE := Buffalo WXR-1900DHP
123   DEVICE_PACKAGES := $(USB3_PACKAGES)
124 endef
125 TARGET_DEVICES += buffalo-wxr-1900dhp
126
127 define Device/buffalo-wzr-600dhp2
128   DEVICE_TITLE := Buffalo WZR-600DHP2
129   DEVICE_PACKAGES := kmod-b43 $(USB2_PACKAGES)
130 endef
131 TARGET_DEVICES += buffalo-wzr-600dhp2
132
133 define Device/buffalo-wzr-900dhp
134   DEVICE_TITLE := Buffalo WZR-900DHP
135   DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
136 endef
137 TARGET_DEVICES += buffalo-wzr-900dhp
138
139 define Device/buffalo-wzr-1750dhp
140   DEVICE_TITLE := Buffalo WZR-1750DHP
141   DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
142 endef
143 TARGET_DEVICES += buffalo-wzr-1750dhp
144
145 define Device/dlink
146   IMAGES := bin
147   IMAGE/bin := append-ubi | seama-nand
148 endef
149
150 define Device/dlink-dir-885l
151   DEVICE_TITLE := D-Link DIR-885L
152   DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
153   $(Device/dlink)
154   SIGNATURE := wrgac42_dlink.2015_dir885l
155 endef
156 TARGET_DEVICES += dlink-dir-885l
157
158 define Device/linksys-ea6300-v1
159   DEVICE_TITLE := Linksys EA6300 V1
160   DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
161 endef
162 TARGET_DEVICES += linksys-ea6300-v1
163
164 define Device/netgear
165   IMAGES := chk
166   IMAGE/chk := append-ubi | trx-nand | netgear-chk
167   NETGEAR_REGION := 1
168 endef
169
170 define Device/netgear-r6250
171   DEVICE_TITLE := Netgear R6250
172   DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
173   $(Device/netgear)
174   NETGEAR_BOARD_ID := U12H245T00_NETGEAR
175 endef
176
177 define Device/netgear-r6300-v2
178   DEVICE_TITLE := Netgear R6300 V2
179   DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
180   $(Device/netgear)
181   NETGEAR_BOARD_ID := U12H240T00_NETGEAR
182 endef
183
184 define Device/netgear-r7000
185   DEVICE_TITLE := Netgear R7000
186   DEVICE_PACKAGES := $(USB3_PACKAGES)
187   $(Device/netgear)
188   NETGEAR_BOARD_ID := U12H270T00_NETGEAR
189 endef
190 TARGET_DEVICES += netgear-r7000
191
192 define Device/netgear-r7900
193   DEVICE_TITLE := Netgear R7900
194   DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
195   $(Device/netgear)
196   NETGEAR_BOARD_ID := U12H315T30_NETGEAR
197 endef
198 TARGET_DEVICES += netgear-r7900
199
200 define Device/netgear-r8000
201   DEVICE_TITLE := Netgear R8000
202   DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
203   $(Device/netgear)
204   NETGEAR_BOARD_ID := U12H315T00_NETGEAR
205 endef
206
207 define Device/netgear-r8500
208   DEVICE_TITLE := Netgear R8500
209   DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
210   $(Device/netgear)
211   NETGEAR_BOARD_ID := U12H334T00_NETGEAR
212 endef
213 # TARGET_DEVICES += netgear-r8500
214
215 define Device/smartrg-sr400ac
216   DEVICE_TITLE := SmartRG SR400ac
217   DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
218   IMAGES := trx
219   IMAGE/trx := append-rootfs | trx-serial
220 endef
221
222 define Device/tenda-ac9
223   DEVICE_TITLE := Tenda AC9
224   DEVICE_PACKAGES := $(USB2_PACKAGES)
225   IMAGES := trx
226   IMAGE/trx := append-rootfs | trx-serial
227 endef
228 TARGET_DEVICES += tenda-ac9
229
230 TARGET_DEVICES += \
231         netgear-r6250 netgear-r6300-v2 netgear-r8000 \
232         smartrg-sr400ac
233
234 $(eval $(call BuildImage))