brcm47xx: image: use "-" separator for device version
[openwrt/svn-archive/archive.git] / target / linux / brcm47xx / image / Makefile
1 #
2 # Copyright (C) 2006-2012 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 Build/Clean
11 $(MAKE) -C lzma-loader clean
12 endef
13
14 define Image/Prepare
15 # Optimized LZMA compression (with dictionary), handled by lzma-loader.
16 cat $(KDIR)/vmlinux | $(STAGING_DIR_HOST)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
17
18 # Less optimal LZMA compression (no dictionary), handled by CFE.
19 $(STAGING_DIR_HOST)/bin/lzma e -so -d16 $(KDIR)/vmlinux > $(KDIR)/vmlinux-nodictionary.lzma
20
21 gzip -nc9 $(KDIR)/vmlinux > $(KDIR)/vmlinux.gz
22 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
23 cat $(KDIR)/vmlinux-initramfs | $(STAGING_DIR_HOST)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux-initramfs.lzma
24 $(STAGING_DIR_HOST)/bin/lzma e -so -d16 $(KDIR)/vmlinux-initramfs > $(KDIR)/vmlinux-initramfs-nodictionary.lzma
25 endif
26 rm -f $(KDIR)/loader.gz
27 $(MAKE) -C lzma-loader \
28 BUILD_DIR="$(KDIR)" \
29 TARGET="$(KDIR)" \
30 clean install
31 echo -ne "\\x00" >> $(KDIR)/loader.gz
32 rm -f $(KDIR)/fs_mark
33 echo -ne '\xde\xad\xc0\xde' > $(KDIR)/fs_mark
34 $(call prepare_generic_squashfs,$(KDIR)/fs_mark)
35 endef
36
37 define Image/Build/wgt634u
38 dd if=$(KDIR)/loader.elf of=$(BIN_DIR)/openwrt-wgt634u-$(2).bin bs=131072 conv=sync
39 cat $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx >> $(BIN_DIR)/openwrt-wgt634u-$(2).bin
40 endef
41
42 define Image/Build/dwl3150
43 cp $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx $(BIN_DIR)/openwrt-dwl3150-$(2).bin
44 echo "BCM-5352-2050-0000000-01" >> $(BIN_DIR)/openwrt-dwl3150-$(2).bin
45 endef
46
47 # $(1): filesystem type.
48 # $(2): device model (used for output file).
49 # $(3): pattern (device specific magic).
50 # $(4): version.
51 # $(5): simplified filesystem type (without block size).
52 define Image/Build/CyberTAN
53 $(STAGING_DIR_HOST)/bin/addpattern -4 -p $(3) -v v$(4) -i $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx -o $(BIN_DIR)/openwrt-$(2)-$(5).bin $(if $(6),-s $(6))
54 endef
55 define Image/Build/CyberTAN2
56 $(STAGING_DIR_HOST)/bin/addpattern -4 -p $(3) -v v$(4) -i $(BIN_DIR)/openwrt-$(2)-$(5).noheader.bin -o $(BIN_DIR)/openwrt-$(2)-$(5).bin $(if $(6),-s $(6))
57 endef
58 define Image/Build/CyberTANHead
59 $(STAGING_DIR_HOST)/bin/addpattern -5 -p $(3) -v v$(4) -i /dev/null -o $(KDIR)/openwrt-$(2)-header.bin $(if $(6),-s $(6))
60 endef
61
62 define Image/Build/Motorola
63 $(STAGING_DIR_HOST)/bin/motorola-bin -$(3) $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx $(BIN_DIR)/openwrt-$(2)-$(4).bin
64 endef
65
66 define Image/Build/USR
67 $(STAGING_DIR_HOST)/bin/trx2usr $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx $(BIN_DIR)/openwrt-$(2)-$(3).bin
68 endef
69
70 define Image/Build/Edi
71 $(STAGING_DIR_HOST)/bin/trx2edips $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx $(BIN_DIR)/openwrt-$(2)-$(3).bin
72 endef
73
74 define Image/Build/Huawei
75 dd if=/dev/zero of=$(BIN_DIR)/openwrt-$(2)-$(3)-gz.bin bs=92 count=1
76 echo -ne 'HDR0\x08\x00\x00\x00' >> $(BIN_DIR)/openwrt-$(2)-$(3)-gz.bin
77 cat $(BIN_DIR)/$(IMG_PREFIX)-$(1)-gz.trx >> $(BIN_DIR)/openwrt-$(2)-$(3)-gz.bin
78 endef
79
80 # $(1): filesystem type.
81 # $(2): device model (used for output file).
82 # $(3): board_id (device specific magic).
83 # $(4): region.
84 # $(5): simplified filesystem type (without block size).
85 define Image/Build/Chk
86 $(STAGING_DIR_HOST)/bin/mkchkimg -o $(BIN_DIR)/openwrt-$(2)-$(5).chk -k $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx -b $(3) -r $(4)
87 endef
88
89 define trxalign/jffs2-128k
90 -a 0x20000 -f $(KDIR)/root.$(1)
91 endef
92 define trxalign/jffs2-64k
93 -a 0x10000 -f $(KDIR)/root.$(1)
94 endef
95 define trxalign/squashfs
96 -a 1024 -f $(KDIR)/root.$(1) $(if $(2),-f $(2)) -a 0x10000 -A $(KDIR)/fs_mark
97 endef
98
99 define Image/Build/trxV2
100 $(call Image/Build/CyberTANHead,$(1),$(2),$(3),$(4),$(5),$(if $(6),$(6)))
101 $(STAGING_DIR_HOST)/bin/trx -2 -o $(BIN_DIR)/openwrt-$(2)-$(5).noheader.bin \
102 -f $(KDIR)/loader.gz -f $(KDIR)/vmlinux.lzma \
103 $(call trxalign/$(1),$(1),$(KDIR)/openwrt-$(2)-header.bin)
104 $(call Image/Build/CyberTAN2,$(1),$(2),$(3),$(4),$(5),$(if $(6),$(6)))
105 endef
106
107 #################################################
108 # Images
109 #################################################
110
111 define Build/trx-with-loader
112 $(STAGING_DIR_HOST)/bin/trx \
113 -o $@ \
114 -f $(KDIR)/loader.gz \
115 -f $(word 1,$^) \
116 $(call trxalign/$(FILESYSTEM),$(FILESYSTEM))
117 endef
118
119 define Build/linksys-bin
120 $(STAGING_DIR_HOST)/bin/addpattern -4 -p $(DEVICE_ID) -v v$(VERSION) -i $@ -o $@.new
121 mv $@.new $@
122 endef
123
124 define Build/netgear-chk
125 $(STAGING_DIR_HOST)/bin/mkchkimg \
126 -o $@.new \
127 -k $@ \
128 -b $(BOARD_ID) \
129 -r $(REGION)
130 mv $@.new $@
131 endef
132
133 #################################################
134 # Devices
135 #################################################
136
137 DEVICE_VARS += DEVICE_ID VERSION
138 DEVICE_VARS += BOARD_ID REGION
139
140 define Device/Default
141 KERNEL := kernel-bin
142 IMAGE_NAME = $$(IMAGE_PREFIX)-$$(1).$$(2)
143 KERNEL_NAME = vmlinux.lzma
144 FILESYSTEMS := $(FS_64K)
145 IMAGES := trx
146 IMAGE/trx := trx-with-loader
147 endef
148
149 define Device/linksys
150 IMAGES := bin
151 IMAGE/bin := trx-with-loader | linksys-bin
152 endef
153
154 define LinksysDevice
155 define Device/linksys-$(1)
156 $$(Device/linksys)
157 DEVICE_ID := $(2)
158 VERSION := $(3)
159 endef
160 TARGET_DEVICES += linksys-$(1)
161 endef
162
163 define Device/netgear
164 IMAGES := chk
165 IMAGE/chk := trx-with-loader | netgear-chk
166 endef
167
168 define NetgearDevice
169 define Device/netgear-$(1)
170 $$(Device/netgear)
171 BOARD_ID := $(2)
172 REGION := $(3)
173 endef
174 TARGET_DEVICES += netgear-$(1)
175 endef
176
177 #################################################
178 # Subtarget generic
179 #################################################
180
181 ifeq ($(SUBTARGET),generic)
182 # BCM4705 with tg3
183 $(eval $(call LinksysDevice,wrt300n-v1.1,EWC2,1.51.2))
184 $(eval $(call LinksysDevice,wrt310n-v1,310N,1.0.10))
185 $(eval $(call LinksysDevice,wrt350n-v1,EWCG,1.04.1))
186 $(eval $(call LinksysDevice,wrt610n-v1,610N,1.0.1))
187
188 # BCMA SoC with SSB WiFi
189 $(eval $(call LinksysDevice,wrt610n-v2,610N,2.0.0))
190 $(eval $(call LinksysDevice,e3000-v1,61XN,1.0.3))
191 endif
192
193 #################################################
194 # Subtarget legacy
195 #################################################
196
197 # $(1): filesystem type.
198 define Image/Build/legacy/devices-with-128k-blocks
199 $(call Image/Build/trxV2,$(1),wrt54g3gv2-vf,3G2V,3.00.24,$(patsubst jffs2-%,jffs2,$(1)),6)
200 $(call Image/Build/wgt634u,$(1),$(patsubst jffs2-%,jffs2,$(1)))
201 endef
202
203 # $(1): filesystem type.
204 define Image/Build/legacy/devices-with-64k-blocks
205 $(call Image/Build/dwl3150,$(1),$(patsubst jffs2-%,jffs2,$(1)))
206 $(call Image/Build/Edi,$(1),ps1208mfg,$(patsubst jffs2-%,jffs2,$(1)))
207 $(call Image/Build/Huawei,$(1),e970,$(1))
208 $(call Image/Build/Motorola,$(1),wa840g,2,$(patsubst jffs2-%,jffs2,$(1)))
209 $(call Image/Build/Motorola,$(1),we800g,3,$(patsubst jffs2-%,jffs2,$(1)))
210 $(call Image/Build/Motorola,$(1),wr850g,1,$(1))
211 $(call Image/Build/USR,$(1),usr5461,$(1))
212 endef
213
214 # $(1): filesystem type.
215 define Image/Build/legacy/jffs2-64k
216 $(call Image/Build/legacy/devices-with-64k-blocks,$(1))
217 endef
218
219 # $(1): filesystem type.
220 define Image/Build/legacy/jffs2-128k
221 $(call Image/Build/legacy/devices-with-128k-blocks,$(1))
222 endef
223
224 # $(1): filesystem type.
225 define Image/Build/legacy/squashfs
226 $(call Image/Build/legacy/devices-with-64k-blocks,$(1))
227 $(call Image/Build/legacy/devices-with-128k-blocks,$(1))
228 endef
229
230 define Device/linksys-wrt54gs
231 $(Device/linksys)
232 FILESYSTEMS := $(FS_128K)
233 DEVICE_ID := W54S
234 VERSION := 4.80.1
235 endef
236
237 define Device/linksys-wrtsl54gs
238 $(Device/linksys)
239 FILESYSTEMS := $(FS_128K)
240 DEVICE_ID := W54U
241 VERSION := 2.08.1
242 endef
243
244 ifeq ($(SUBTARGET),legacy)
245 TARGET_DEVICES += \
246 linksys-wrt54gs \
247 linksys-wrtsl54gs
248
249 $(eval $(call LinksysDevice,wrt54g3g,W54F,2.20.1))
250 $(eval $(call LinksysDevice,wrt54g3g-em,W3GN,2.20.1))
251 $(eval $(call LinksysDevice,wrt54g,W54G,4.71.1))
252 $(eval $(call LinksysDevice,wrt54gs-v4,W54s,1.09.1))
253 $(eval $(call LinksysDevice,wrt150n,N150,1.51.3))
254 $(eval $(call LinksysDevice,wrt160n-v1,N150,1.50.1))
255 $(eval $(call LinksysDevice,wrt300n-v1,EWCB,1.03.6))
256 $(eval $(call NetgearDevice,wgr614-v8,U12H072T00_NETGEAR,2))
257 $(eval $(call NetgearDevice,wndr3300-v1,U12H093T00_NETGEAR,2))
258 $(eval $(call NetgearDevice,wnr834b-v2,U12H081T00_NETGEAR,2))
259 endif
260
261 #################################################
262 # Subtarget mips74k
263 #################################################
264
265 ifeq ($(SUBTARGET),mips74k)
266 $(eval $(call LinksysDevice,wrt160n-v3,N150,3.0.3))
267 $(eval $(call LinksysDevice,wrt310n-v2,310N,2.0.1))
268 $(eval $(call LinksysDevice,wrt320n-v1,320N,1.0.5))
269 $(eval $(call LinksysDevice,e900-v1,E900,1.0.4))
270 $(eval $(call LinksysDevice,e1000-v1-v2-v2.1,E100,1.1.3))
271 $(eval $(call LinksysDevice,e1200-v1,E120,1.0.3))
272 $(eval $(call LinksysDevice,e1200-v2-new,E122,1.0.4))
273 $(eval $(call LinksysDevice,e1500-v1,E150,1.0.5))
274 $(eval $(call LinksysDevice,e1550-v1,1550,1.0.3))
275 $(eval $(call LinksysDevice,e2000-v1,32XN,1.0.4))
276 $(eval $(call LinksysDevice,e2500-v1,E25X,1.0.7))
277 $(eval $(call LinksysDevice,e2500-v2,E25X,2.0.0))
278 $(eval $(call LinksysDevice,e2500-v2.1,25RU,2.1.0))
279 $(eval $(call LinksysDevice,e2500-v3,25V3,3.0.0))
280 $(eval $(call LinksysDevice,e3200-v1,3200,1.0.1))
281 $(eval $(call LinksysDevice,e4200-v1,4200,1.0.5))
282 $(eval $(call NetgearDevice,wgr614-v10_north-america,U12H139T01_NETGEAR,2))
283 $(eval $(call NetgearDevice,wgr614-v10_other-regions,U12H139T01_NETGEAR,1))
284 $(eval $(call NetgearDevice,wndr3400-v1,U12H155T00_NETGEAR,2))
285 $(eval $(call NetgearDevice,wndr3400-v2,U12H187T00_NETGEAR,2))
286 $(eval $(call NetgearDevice,wndr3400-v3,U12H208T00_NETGEAR,1))
287 $(eval $(call NetgearDevice,wndr3700-v3,U12H194T00_NETGEAR,2))
288 $(eval $(call NetgearDevice,wndr4000,U12H181T00_NETGEAR,2))
289 $(eval $(call NetgearDevice,wnr1000-v3,U12H139T00_NETGEAR,2))
290 $(eval $(call NetgearDevice,wnr2000v2,U12H114T00_NETGEAR,2))
291 $(eval $(call NetgearDevice,wnr3000rp,U12H163T01_NETGEAR,1))
292 $(eval $(call NetgearDevice,wnr3500l-v1-north-america,U12H136T99_NETGEAR,2))
293 $(eval $(call NetgearDevice,wnr3500l-v1-other-regions,U12H136T99_NETGEAR,1))
294 $(eval $(call NetgearDevice,wnr3500l-v2,U12H172T00_NETGEAR,1))
295 $(eval $(call NetgearDevice,wnr3500-v2,U12H127T00_NETGEAR,2))
296 endif
297
298 #################################################
299 # Shared BuildImage defines
300 #################################################
301
302 define Image/Build/Initramfs
303 $(STAGING_DIR_HOST)/bin/trx -o $(BIN_DIR)/$(IMG_PREFIX)-initramfs.trx -f $(KDIR)/loader.gz -f $(KDIR)/vmlinux-initramfs.lzma
304 $(STAGING_DIR_HOST)/bin/trx -o $(BIN_DIR)/$(IMG_PREFIX)-initramfs-noloader-nodictionary.trx -f $(KDIR)/vmlinux-initramfs-nodictionary.lzma
305 endef
306
307 # $(1): filesystem type.
308 define Image/Build
309 $(STAGING_DIR_HOST)/bin/trx -o $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx \
310 -f $(KDIR)/loader.gz -f $(KDIR)/vmlinux.lzma \
311 $(call trxalign/$(1),$(1))
312 $(STAGING_DIR_HOST)/bin/trx -o $(BIN_DIR)/$(IMG_PREFIX)-$(1)-noloader-nodictionary.trx \
313 -f $(KDIR)/vmlinux-nodictionary.lzma \
314 $(call trxalign/$(1),$(1))
315 $(STAGING_DIR_HOST)/bin/trx -o $(BIN_DIR)/$(IMG_PREFIX)-$(1)-gz.trx \
316 -f $(KDIR)/vmlinux.gz \
317 $(call trxalign/$(1),$(1))
318 $(call Image/Build/$(SUBTARGET)/$(1),$(1))
319 # $(call Image/Build/Chk,$(1),wgr614_v9,U12H094T00_NETGEAR,2,$(patsubst jffs2-%,jffs2,$(1)))
320 # $(call Image/Build/Chk,$(1),wndr3400_vcna,U12H155T01_NETGEAR,2,$(patsubst jffs2-%,jffs2,$(1)))
321 # $(call Image/Build/Chk,$(1),wnr3500U,U12H136T00_NETGEAR,2,$(patsubst jffs2-%,jffs2,$(1)))
322 # $(call Image/Build/Chk,$(1),wnr3500v2_VC,U12H127T70_NETGEAR,2,$(patsubst jffs2-%,jffs2,$(1)))
323 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
324 $(call Image/Build/Initramfs)
325 endif
326 endef
327
328 $(eval $(call BuildImage))