mvebu: add support for the Linksys WRT3200ACM (Rango)
[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 define Build/clearfog-bundle
21 rm -f $@.new
22 $(TAR) -cp --numeric-owner --owner=0 --group=0 --sort=name \
23 $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
24 --file=$@.new -C $(TARGET_DIR)/ .
25 $(TAR) -rp --numeric-owner --owner=0 --group=0 --sort=name \
26 $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
27 --file=$@.new -C $(dir $(IMAGE_KERNEL)) $(notdir $(IMAGE_KERNEL)) $(notdir $(IMAGE_KERNEL).dtb)
28 gzip -9n -c $@.new > $@
29 endef
30
31 # SD-Card Images:
32 # these values are optimized for a 4GB labeled sdcard that actually holds 7744512 sectors of 512 byte
33 # MBR: 2048 sectors
34 # Partition 1: 32768 sectors
35 # Partition 2: 98304 sectors (configurable)
36
37 define Build/boot-scr
38 rm -f $@.bootscript
39 mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d boot.script $@.bootscript
40 endef
41
42 define Build/boot-img
43 rm -f $@.boot
44 mkfs.fat -C $@.boot 16384
45 $(foreach dts,$(DEVICE_DTS), mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb ::$(dts).dtb)
46 mcopy -i $@.boot $(IMAGE_KERNEL) ::zImage
47 mcopy -i $@.boot $@.bootscript ::boot.scr
48 endef
49
50 define Build/sdcard-img
51 ROOTFS_SIZE=$$(( $(CONFIG_TARGET_ROOTFS_PARTSIZE) * 1024 * 2 )); \
52 ./gen_mvebu_sdcard_img.sh $@ \
53 "$(KDIR)/openwrt-mvebu-clearfog-u-boot-spl.kwb" \
54 c 32768 $@.boot \
55 83 $$ROOTFS_SIZE $(IMAGE_ROOTFS)
56 endef
57
58 define Device/Default
59 PROFILES := Default
60 DEVICE_DTS := $(1)
61 BOARD_NAME = $$(DEVICE_DTS)
62 KERNEL_NAME := zImage
63 KERNEL := kernel-bin | append-dtb | uImage none
64 endef
65
66 define Device/UBI
67 IMAGES := sysupgrade.bin
68 IMAGE/sysupgrade.bin := sysupgrade-tar
69 endef
70
71 define Device/UBI-factory
72 $(Device/UBI)
73 UBINIZE_OPTS := -E 5
74 IMAGES += factory.img
75 IMAGE/factory.img := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | pad-to $$$$(PAGESIZE)
76 endef
77
78 define Device/NAND-128K
79 $(Device/UBI)
80 BLOCKSIZE := 128k
81 PAGESIZE := 2048
82 SUBPAGESIZE := 512
83 VID_HDR_OFFSET := 2048
84 endef
85
86 define Device/NAND-256K
87 $(Device/UBI)
88 BLOCKSIZE := 256k
89 PAGESIZE := 4096
90 endef
91
92 define Device/NAND-512K
93 $(Device/UBI)
94 BLOCKSIZE := 512k
95 PAGESIZE := 4096
96 endef
97
98 define Device/linksys
99 DEVICE_TITLE := Linksys $(1)
100 DEVICE_PACKAGES := kmod-mwlwifi wpad-mini swconfig
101 endef
102
103 define Device/armada-385-linksys
104 $(Device/NAND-128K)
105 $(Device/UBI-factory)
106 KERNEL_SIZE := 6144k
107 endef
108
109 define Device/linksys-wrt1200ac
110 $(call Device/linksys,WRT1200AC (Caiman))
111 $(Device/armada-385-linksys)
112 DEVICE_DTS := armada-385-linksys-caiman
113 endef
114 TARGET_DEVICES += linksys-wrt1200ac
115
116 define Device/linksys-wrt1900acv2
117 $(call Device/linksys,WRT1900ACv2 (Cobra))
118 $(Device/armada-385-linksys)
119 DEVICE_DTS := armada-385-linksys-cobra
120 endef
121 TARGET_DEVICES += linksys-wrt1900acv2
122
123 define Device/linksys-wrt3200acm
124 $(call Device/linksys,WRT3200ACM (Rango))
125 $(Device/armada-385-linksys)
126 DEVICE_DTS := armada-385-linksys-rango
127 endef
128 TARGET_DEVICES += linksys-wrt3200acm
129
130 define Device/linksys-wrt1900acs
131 $(call Device/linksys,WRT1900ACS (Shelby))
132 $(Device/armada-385-linksys)
133 DEVICE_DTS := armada-385-linksys-shelby
134 endef
135 TARGET_DEVICES += linksys-wrt1900acs
136
137 define Device/linksys-wrt1900ac
138 $(call Device/linksys,WRT1900AC (Mamba))
139 DEVICE_DTS := armada-xp-linksys-mamba
140 $(Device/NAND-128K)
141 $(Device/UBI-factory)
142 KERNEL_SIZE := 3072k
143 endef
144 TARGET_DEVICES += linksys-wrt1900ac
145
146 define Device/openblocks-ax3
147 $(Device/UBI-factory)
148 DEVICE_DTS := armada-xp-openblocks-ax3-4
149 BLOCKSIZE := 128k
150 PAGESIZE := 1
151 IMAGE/factory.img := append-kernel | pad-to $$(BLOCKSIZE) | append-ubi
152 DEVICE_TITLE := Plat'Home OpenBlocks AX3
153 endef
154 TARGET_DEVICES += openblocks-ax3
155
156 define Device/armada-385-db-ap
157 $(Device/NAND-256K)
158 $(Device/UBI-factory)
159 KERNEL_SIZE := 8192k
160 DEVICE_TITLE := Marvell Armada 385 DB AP (DB-88F6820-AP)
161 endef
162 TARGET_DEVICES += armada-385-db-ap
163
164 define Device/marvell-nand
165 $(Device/NAND-512K)
166 DEVICE_TITLE := Marvell Armada $(1)
167 endef
168
169 Device/armada-370-db = $(call Device/marvell-nand,370 DB (DB-88F6710-BP-DDR3))
170 Device/armada-370-rd = $(call Device/marvell-nand,370 RD (RD-88F6710-A1))
171 Device/armada-xp-db = $(call Device/marvell-nand,XP DB (DB-78460-BP))
172 Device/armada-xp-gp = $(call Device/marvell-nand,XP GP (DB-MV784MP-GP))
173 TARGET_DEVICES += armada-370-db armada-370-rd armada-xp-db armada-xp-gp
174
175 define Device/armada-388-rd
176 DEVICE_TITLE := Marvell Armada 388 RD (RD-88F6820-AP)
177 IMAGES := firmware.bin
178 IMAGE/firmware.bin := append-kernel | pad-to 256k | append-rootfs | pad-rootfs
179 endef
180 TARGET_DEVICES += armada-388-rd
181
182 define Device/armada-388-clearfog
183 KERNEL_INSTALL := 1
184 KERNEL := dtb | kernel-bin
185 DEVICE_TITLE := SolidRun ClearFog
186 DEVICE_PACKAGES := mkf2fs e2fsprogs swconfig kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1
187 IMAGES := bundle.tar.gz sdcard.img.gz
188 IMAGE/bundle.tar.gz := clearfog-bundle
189 IMAGE/sdcard.img.gz := boot-scr | boot-img | sdcard-img | gzip
190 IMAGE_NAME = $$(IMAGE_PREFIX)-$$(2)
191 endef
192 TARGET_DEVICES += armada-388-clearfog
193
194 define Device/globalscale-mirabox
195 $(Device/NAND-512K)
196 DEVICE_DTS := armada-370-mirabox
197 DEVICE_TITLE := Globalscale Mirabox
198 endef
199 TARGET_DEVICES += globalscale-mirabox
200
201 $(eval $(call BuildImage))