treewide: add only one device when appending to TARGET_DEVICES
[openwrt/openwrt.git] / target / linux / mvebu / image / Makefile
1 #
2 # Copyright (C) 2012-2016 OpenWrt.org
3 # Copyright (C) 2016 LEDE-project.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 JFFS2_BLOCKSIZE = 128k
10
11 include $(TOPDIR)/rules.mk
12 include $(INCLUDE_DIR)/image.mk
13
14 KERNEL_LOADADDR := 0x00008000
15
16 define Build/dtb
17 $(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$@.dtb)
18 endef
19
20 # SD-Card Images:
21 # these values are optimized for a 4GB labeled sdcard that actually holds 7744512 sectors of 512 byte
22 # MBR: 2048 sectors
23 # Partition 1: 32768 sectors
24 # Partition 2: 98304 sectors (configurable)
25
26 define Build/boot-scr-cfpro
27 rm -f $@.bootscript
28 mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d cfpro-boot.script $@.bootscript
29 endef
30
31 define Build/boot-scr-cfbase
32 rm -f $@.bootscript
33 mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d cfbase-boot.script $@.bootscript
34 endef
35
36 define Build/boot-img
37 rm -f $@.boot
38 mkfs.fat -C $@.boot 16384
39 $(foreach dts,$(DEVICE_DTS), mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb ::$(dts).dtb;)
40 mcopy -i $@.boot $(IMAGE_KERNEL) ::zImage
41 mcopy -i $@.boot $@.bootscript ::boot.scr
42 endef
43
44 define Build/sdcard-img
45 ROOTFS_SIZE=$$(( $(CONFIG_TARGET_ROOTFS_PARTSIZE) * 1024 * 2 )); \
46 ./gen_mvebu_sdcard_img.sh $@ \
47 "$(STAGING_DIR_IMAGE)/clearfog-u-boot-spl.kwb" \
48 c 32768 $@.boot \
49 83 $$ROOTFS_SIZE $(IMAGE_ROOTFS)
50 endef
51
52 define Device/Default
53 PROFILES := Default
54 DEVICE_DTS := $(1)
55 BOARD_NAME = $$(DEVICE_DTS)
56 KERNEL_NAME := zImage
57 KERNEL := kernel-bin | append-dtb | uImage none
58 SUPPORTED_DEVICES = $$(DEVICE_DTS)
59 endef
60
61 define Device/UBI
62 IMAGES := sysupgrade.bin
63 IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
64 endef
65
66 define Device/UBI-factory
67 $(Device/UBI)
68 UBINIZE_OPTS := -E 5
69 IMAGES += factory.img
70 IMAGE/factory.img := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | pad-to $$$$(PAGESIZE)
71 endef
72
73 define Device/NAND-128K
74 $(Device/UBI)
75 BLOCKSIZE := 128k
76 PAGESIZE := 2048
77 SUBPAGESIZE := 512
78 VID_HDR_OFFSET := 2048
79 endef
80
81 define Device/NAND-256K
82 $(Device/UBI)
83 BLOCKSIZE := 256k
84 PAGESIZE := 4096
85 endef
86
87 define Device/NAND-512K
88 $(Device/UBI)
89 BLOCKSIZE := 512k
90 PAGESIZE := 4096
91 endef
92
93 define Device/linksys
94 DEVICE_TITLE := Linksys $(1)
95 DEVICE_PACKAGES := kmod-mwlwifi wpad-mini swconfig
96 endef
97
98 define Device/armada-385-linksys
99 $(Device/NAND-128K)
100 $(Device/UBI-factory)
101 KERNEL_SIZE := 6144k
102 endef
103
104 define Device/linksys-wrt1200ac
105 $(call Device/linksys,WRT1200AC (Caiman))
106 $(Device/armada-385-linksys)
107 DEVICE_DTS := armada-385-linksys-caiman
108 endef
109 TARGET_DEVICES += linksys-wrt1200ac
110
111 define Device/linksys-wrt1900acv2
112 $(call Device/linksys,WRT1900ACv2 (Cobra))
113 $(Device/armada-385-linksys)
114 DEVICE_DTS := armada-385-linksys-cobra
115 endef
116 TARGET_DEVICES += linksys-wrt1900acv2
117
118 define Device/linksys-wrt3200acm
119 $(call Device/linksys,WRT3200ACM (Rango))
120 $(Device/armada-385-linksys)
121 DEVICE_DTS := armada-385-linksys-rango
122 DEVICE_PACKAGES += kmod-btmrvl kmod-mwifiex-sdio
123 endef
124 TARGET_DEVICES += linksys-wrt3200acm
125
126 define Device/linksys-wrt1900acs
127 $(call Device/linksys,WRT1900ACS (Shelby))
128 $(Device/armada-385-linksys)
129 DEVICE_DTS := armada-385-linksys-shelby
130 endef
131 TARGET_DEVICES += linksys-wrt1900acs
132
133 define Device/linksys-wrt1900ac
134 $(call Device/linksys,WRT1900AC (Mamba))
135 DEVICE_DTS := armada-xp-linksys-mamba
136 $(Device/NAND-128K)
137 $(Device/UBI-factory)
138 KERNEL_SIZE := 3072k
139 endef
140 TARGET_DEVICES += linksys-wrt1900ac
141
142 define Device/openblocks-ax3-4
143 $(Device/UBI-factory)
144 DEVICE_DTS := armada-xp-openblocks-ax3-4
145 SUPPORTED_DEVICES := $(1)
146 BLOCKSIZE := 128k
147 PAGESIZE := 1
148 IMAGE/factory.img := append-kernel | pad-to $$(BLOCKSIZE) | append-ubi
149 DEVICE_TITLE := Plat'Home OpenBlocks AX3
150 endef
151 TARGET_DEVICES += openblocks-ax3-4
152
153 define Device/armada-385-db-ap
154 $(Device/NAND-256K)
155 $(Device/UBI-factory)
156 KERNEL_SIZE := 8192k
157 DEVICE_TITLE := Marvell Armada 385 DB AP (DB-88F6820-AP)
158 endef
159 TARGET_DEVICES += armada-385-db-ap
160
161 define Device/marvell-nand
162 $(Device/NAND-512K)
163 DEVICE_TITLE := Marvell Armada $(1)
164 endef
165
166 define Device/armada-370-db
167 $(call Device/marvell-nand,370 DB (DB-88F6710-BP-DDR3))
168 endef
169 TARGET_DEVICES += armada-370-db
170
171 define Device/armada-370-rd
172 $(call Device/marvell-nand,370 RD (RD-88F6710-A1))
173 endef
174 TARGET_DEVICES += armada-370-rd
175
176 define Device/armada-xp-db
177 $(call Device/marvell-nand,XP DB (DB-78460-BP))
178 endef
179 TARGET_DEVICES += armada-xp-db
180
181 define Device/armada-xp-gp
182 $(call Device/marvell-nand,XP GP (DB-MV784MP-GP))
183 endef
184 TARGET_DEVICES += armada-xp-gp
185
186 define Device/armada-388-rd
187 DEVICE_TITLE := Marvell Armada 388 RD (RD-88F6820-AP)
188 IMAGES := firmware.bin
189 IMAGE/firmware.bin := append-kernel | pad-to 256k | append-rootfs | pad-rootfs
190 endef
191 TARGET_DEVICES += armada-388-rd
192
193 define Device/armada-388-clearfog-pro
194 KERNEL_INSTALL := 1
195 KERNEL := kernel-bin
196 DEVICE_TITLE := SolidRun ClearFog Pro
197 DEVICE_PACKAGES := mkf2fs e2fsprogs swconfig kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1
198 IMAGES := sdcard.img.gz
199 IMAGE/sdcard.img.gz := boot-scr-cfpro | boot-img | sdcard-img | gzip | append-metadata
200 IMAGE_NAME = $$(IMAGE_PREFIX)-$$(2)
201 DEVICE_DTS := armada-388-clearfog-pro armada-388-clearfog-base
202 endef
203 TARGET_DEVICES += armada-388-clearfog-pro
204
205 define Device/armada-388-clearfog-base
206 KERNEL_INSTALL := 1
207 KERNEL := kernel-bin
208 DEVICE_TITLE := SolidRun ClearFog Base
209 DEVICE_PACKAGES := mkf2fs e2fsprogs kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1
210 IMAGES := sdcard.img.gz
211 IMAGE/sdcard.img.gz := boot-scr-cfbase | boot-img | sdcard-img | gzip | append-metadata
212 IMAGE_NAME = $$(IMAGE_PREFIX)-$$(2)
213 DEVICE_DTS := armada-388-clearfog-pro armada-388-clearfog-base
214 endef
215 TARGET_DEVICES += armada-388-clearfog-base
216
217 define Device/globalscale-mirabox
218 $(Device/NAND-512K)
219 DEVICE_DTS := armada-370-mirabox
220 SUPPORTED_DEVICES := mirabox
221 DEVICE_TITLE := Globalscale Mirabox
222 endef
223 TARGET_DEVICES += globalscale-mirabox
224
225 $(eval $(call BuildImage))