eb3d684c8061ef0a464f4e9f3a1af07a2289cc0f
[openwrt/staging/wigyori.git] / target / linux / kirkwood / image / Makefile
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # Copyright (C) 2009-2013 OpenWrt.org
4
5 include $(TOPDIR)/rules.mk
6 include $(INCLUDE_DIR)/image.mk
7
8 KERNEL_LOADADDR:=0x8000
9
10 # Some info about Ctera firmware:
11 # 1. It's simple tar file (GNU standard), but it must have ".firm" suffix.
12 # 2. It contains two images: kernel and romdisk. Both are required.
13 # 3. Every image has header and trailer file.
14 # 4. The struct of tar firmware is: header kernel trailer header romdisk trailer
15 # 5. In header file are some strings used to describe image. It was decoded from
16 # factory image.
17 # 6. Version format in header file is restricted by Original FW.
18 # 7. Trailer file contains MD5 sum string of header and image file.
19 # 8. Firmware file must have <=24MB size.
20
21 define Build/ctera-firmware
22 mkdir -p $@.tmp
23
24 # Prepare header and trailer file for kernel
25 echo "# CTera firmware information file" > $@.tmp/header
26 echo "image_type=kernel" >> $@.tmp/header
27 echo "arch=Kirkwood" >> $@.tmp/header
28 echo "board=Any" >> $@.tmp/header
29 echo "version=3.1.22.30669" >> $@.tmp/header
30 echo "kernel_cmd=console=ttyS0,115200 earlyprintk" >> $@.tmp/header
31 echo "date=$$(date $(if $(SOURCE_DATE_EPOCH),-d@$(SOURCE_DATE_EPOCH)))" \
32 >> $@.tmp/header
33
34 cp $@ $@.tmp/kernel
35
36 echo "MD5=$$(cat $@.tmp/header $@.tmp/kernel | $(MKHASH) md5)" \
37 > $@.tmp/trailer
38
39 tar $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
40 -H gnu -C $@.tmp -cf $@.tar header kernel trailer
41
42 # Prepare header and trailer file for fake romdisk
43 echo "# CTera firmware information file" > $@.tmp/header
44 echo "image_type=romdisk" >> $@.tmp/header
45 echo "initrd=yes" >> $@.tmp/header
46 echo "arch=Kirkwood" >> $@.tmp/header
47 echo "board=Any" >> $@.tmp/header
48 echo "version=3.1.22.30669" >> $@.tmp/header
49 echo "date=$$(date $(if $(SOURCE_DATE_EPOCH),-d@$(SOURCE_DATE_EPOCH)))" \
50 >> $@.tmp/header
51
52 rm -f $@
53 touch $@
54 $(call Build/append-uImage-fakehdr, ramdisk)
55 cp $@ $@.tmp/romdisk
56
57 echo "MD5=$$(cat $@.tmp/header $@.tmp/romdisk | $(MKHASH) md5)" \
58 > $@.tmp/trailer
59
60 tar $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
61 -H gnu -C $@.tmp -rf $@.tar header romdisk trailer
62
63 mv $@.tar $@
64 rm -rf $@.tmp
65 endef
66
67 define Device/kernel-size-migration
68 DEVICE_COMPAT_VERSION := 2.0
69 DEVICE_COMPAT_MESSAGE := Partition design has changed compared to \
70 older versions (up to 21.02) due to kernel size restrictions. \
71 Upgrade via sysupgrade mechanism is not possible, so new \
72 installation via factory style image is required.
73 endef
74
75 define Device/Default
76 PROFILES := Default
77 DEVICE_DTS = kirkwood-$(lastword $(subst _, ,$(1)))
78 KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
79 KERNEL := kernel-bin | append-dtb | uImage none
80 KERNEL_NAME := zImage
81 KERNEL_SUFFIX := -uImage
82 KERNEL_IN_UBI := 1
83
84 PAGESIZE := 2048
85 SUBPAGESIZE := 512
86 BLOCKSIZE := 128k
87 IMAGES := sysupgrade.bin factory.bin
88 IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
89 IMAGE/factory.bin := append-ubi
90 endef
91
92 define Device/checkpoint_l-50
93 DEVICE_VENDOR := Check Point
94 DEVICE_MODEL := L-50
95 DEVICE_PACKAGES := kmod-ath9k kmod-gpio-button-hotplug kmod-mvsdio \
96 kmod-rtc-s35390a kmod-usb-ledtrig-usbport wpad-basic-wolfssl
97 IMAGES := sysupgrade.bin
98 endef
99 TARGET_DEVICES += checkpoint_l-50
100
101 define Device/cisco_on100
102 DEVICE_VENDOR := Cisco Systems
103 DEVICE_MODEL := ON100
104 KERNEL_SIZE := 5376k
105 KERNEL_IN_UBI :=
106 UBINIZE_OPTS := -E 5
107 IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi
108 DEVICE_PACKAGES := kmod-mvsdio
109 SUPPORTED_DEVICES += on100
110 endef
111 TARGET_DEVICES += cisco_on100
112
113 define Device/cloudengines_pogoe02
114 DEVICE_VENDOR := Cloud Engines
115 DEVICE_MODEL := Pogoplug E02
116 DEVICE_DTS := kirkwood-pogo_e02
117 SUPPORTED_DEVICES += pogo_e02
118 endef
119 TARGET_DEVICES += cloudengines_pogoe02
120
121 define Device/cloudengines_pogoplugv4
122 DEVICE_VENDOR := Cloud Engines
123 DEVICE_MODEL := Pogoplug V4
124 DEVICE_DTS := kirkwood-pogoplug-series-4
125 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4 kmod-mvsdio kmod-usb3 \
126 kmod-gpio-button-hotplug
127 endef
128 TARGET_DEVICES += cloudengines_pogoplugv4
129
130 define Device/ctera_c200-v1
131 DEVICE_VENDOR := Ctera
132 DEVICE_MODEL := C200
133 DEVICE_VARIANT := V1
134 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-gpio-button-hotplug \
135 kmod-hwmon-lm63 kmod-rtc-s35390a kmod-usb-ledtrig-usbport
136 KERNEL := kernel-bin | append-dtb | uImage none | ctera-firmware
137 KERNEL_IN_UBI :=
138 KERNEL_SUFFIX := -factory.firm
139 IMAGES := sysupgrade.bin
140 endef
141 TARGET_DEVICES += ctera_c200-v1
142
143 define Device/globalscale_sheevaplug
144 DEVICE_VENDOR := Globalscale
145 DEVICE_MODEL := Sheevaplug
146 DEVICE_PACKAGES := kmod-mvsdio
147 endef
148 TARGET_DEVICES += globalscale_sheevaplug
149
150 define Device/iom_iconnect-1.1
151 DEVICE_VENDOR := Iomega
152 DEVICE_MODEL := Iconnect
153 DEVICE_DTS := kirkwood-iconnect
154 SUPPORTED_DEVICES += iconnect
155 endef
156 TARGET_DEVICES += iom_iconnect-1.1
157
158 define Device/iom_ix2-200
159 DEVICE_VENDOR := Iomega
160 DEVICE_MODEL := StorCenter ix2-200
161 DEVICE_DTS := kirkwood-iomega_ix2_200
162 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4 \
163 kmod-gpio-button-hotplug kmod-hwmon-lm63
164 PAGESIZE := 512
165 SUBPAGESIZE := 256
166 BLOCKSIZE := 16k
167 KERNEL_SIZE := 3072k
168 KERNEL_IN_UBI :=
169 UBINIZE_OPTS := -E 5
170 IMAGE_SIZE := 31744k
171 IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | \
172 check-size
173 endef
174 TARGET_DEVICES += iom_ix2-200
175
176 define Device/linksys
177 DEVICE_VENDOR := Linksys
178 DEVICE_PACKAGES := kmod-mwl8k wpad-basic-wolfssl kmod-gpio-button-hotplug
179 KERNEL_IN_UBI :=
180 UBINIZE_OPTS := -E 5
181 IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi
182 endef
183
184 define Device/linksys_e4200-v2
185 $(Device/linksys)
186 $(Device/kernel-size-migration)
187 DEVICE_MODEL := E4200
188 DEVICE_VARIANT := v2
189 KERNEL_SIZE := 3072k
190 SUPPORTED_DEVICES += linksys,viper linksys-viper
191 endef
192 TARGET_DEVICES += linksys_e4200-v2
193
194 define Device/linksys_ea3500
195 $(Device/linksys)
196 $(Device/kernel-size-migration)
197 DEVICE_MODEL := EA3500
198 PAGESIZE := 512
199 SUBPAGESIZE := 256
200 BLOCKSIZE := 16k
201 KERNEL_SIZE := 3072k
202 SUPPORTED_DEVICES += linksys,audi linksys-audi
203 endef
204 TARGET_DEVICES += linksys_ea3500
205
206 define Device/linksys_ea4500
207 $(Device/linksys)
208 $(Device/kernel-size-migration)
209 DEVICE_MODEL := EA4500
210 KERNEL_SIZE := 3072k
211 SUPPORTED_DEVICES += linksys,viper linksys-viper
212 endef
213 TARGET_DEVICES += linksys_ea4500
214
215 define Device/netgear_readynas-duo-v2
216 DEVICE_VENDOR := NETGEAR
217 DEVICE_MODEL := ReadyNAS Duo
218 DEVICE_VARIANT := v2
219 DEVICE_DTS := kirkwood-netgear_readynas_duo_v2
220 KERNEL_IN_UBI :=
221 IMAGES := sysupgrade.bin
222 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4 \
223 kmod-gpio-button-hotplug kmod-hwmon-g762 kmod-rtc-rs5c372a kmod-usb3
224 endef
225 TARGET_DEVICES += netgear_readynas-duo-v2
226
227 define Device/raidsonic_ib-nas62x0
228 DEVICE_VENDOR := RaidSonic
229 DEVICE_MODEL := ICY BOX IB-NAS62x0
230 DEVICE_DTS := kirkwood-ib62x0
231 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4
232 SUPPORTED_DEVICES += ib62x0
233 endef
234 TARGET_DEVICES += raidsonic_ib-nas62x0
235
236 define Device/seagate_blackarmor-nas220
237 DEVICE_VENDOR := Seagate
238 DEVICE_MODEL := Blackarmor NAS220
239 DEVICE_PACKAGES := kmod-hwmon-adt7475 kmod-fs-ext4 kmod-ata-marvell-sata \
240 mdadm kmod-gpio-button-hotplug
241 PAGESIZE := 512
242 SUBPAGESIZE := 256
243 BLOCKSIZE := 16k
244 UBINIZE_OPTS := -e 1
245 endef
246 TARGET_DEVICES += seagate_blackarmor-nas220
247
248 define Device/seagate_dockstar
249 DEVICE_VENDOR := Seagate
250 DEVICE_MODEL := FreeAgent Dockstar
251 SUPPORTED_DEVICES += dockstar
252 endef
253 TARGET_DEVICES += seagate_dockstar
254
255 define Device/seagate_goflexnet
256 DEVICE_VENDOR := Seagate
257 DEVICE_MODEL := GoFlexNet
258 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4
259 SUPPORTED_DEVICES += goflexnet
260 endef
261 TARGET_DEVICES += seagate_goflexnet
262
263 define Device/seagate_goflexhome
264 DEVICE_VENDOR := Seagate
265 DEVICE_MODEL := GoFlexHome
266 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4
267 SUPPORTED_DEVICES += goflexhome
268 endef
269 TARGET_DEVICES += seagate_goflexhome
270
271 define Device/zyxel_nsa310b
272 DEVICE_VENDOR := ZyXEL
273 DEVICE_MODEL := NSA310b
274 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-r8169 kmod-fs-ext4 \
275 kmod-gpio-button-hotplug kmod-hwmon-lm85
276 SUPPORTED_DEVICES += nsa310b
277 endef
278 TARGET_DEVICES += zyxel_nsa310b
279
280 define Device/zyxel_nsa310s
281 DEVICE_VENDOR := ZyXEL
282 DEVICE_MODEL := NSA310S
283 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4 kmod-gpio-button-hotplug
284 endef
285 TARGET_DEVICES += zyxel_nsa310s
286
287 define Device/zyxel_nsa325
288 DEVICE_VENDOR := ZyXEL
289 DEVICE_MODEL := NSA325
290 DEVICE_VARIANT := v1/v2
291 DEVICE_PACKAGES := kmod-ata-marvell-sata kmod-fs-ext4 \
292 kmod-gpio-button-hotplug kmod-rtc-pcf8563 kmod-usb3
293 SUPPORTED_DEVICES += nsa325
294 endef
295 TARGET_DEVICES += zyxel_nsa325
296
297 $(eval $(call BuildImage))