[lantiq] adds zyxel p2601hnfx support
[openwrt.git] / target / linux / lantiq / image / Makefile
1
2 # Copyright (C) 2010-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 JFFS2_BLOCKSIZE = 64k 128k 256k
11
12 ase_cmdline=-console=ttyLTQ0,115200 rootfstype=squashfs,jffs2
13 xway_cmdline=-console=ttyLTQ1,115200 rootfstype=squashfs,jffs2
14 falcon_cmdline=-console=ttyLTQ0,115200 rootfstype=squashfs,jffs2
15 sx76x_cmdline=console=ttyLTQ1,115200 rootfstype=squashfs,jffs2
16
17 define CompressLzma
18   $(STAGING_DIR_HOST)/bin/lzma e $(1) $(2)
19 endef
20
21 define PatchKernelLzma
22         cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(1)
23         $(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(1) '$(strip $(2))'
24         $(call CompressLzma,$(KDIR)/vmlinux-$(1),$(KDIR)/vmlinux-$(1).lzma)
25 endef
26
27 define MkBrnImage
28         mkbrncmdline -i $(KDIR)/vmlinux-$(4) -o $(KDIR)/vmlinux-$(4)-brn BRN-BOOT $(6)
29         $(call CompressLzma,$(KDIR)/vmlinux-$(4)-brn,$(KDIR)/vmlinux-$(4)-brn.lzma)
30         mkbrnimg -s $(1) -m $(2) -o $(3) $(KDIR)/vmlinux-$(4)-brn.lzma $(KDIR)/root.$(5)
31 endef
32
33 define MkImageLzma
34         mkimage -A mips -O linux -T kernel -a 0x80002000 -C lzma \
35                 -e 0x80002000 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
36                 -d $(KDIR)/vmlinux-$(1).lzma $(KDIR)/uImage-$(1)
37 endef
38
39 define MkImageEVA
40         lzma2eva 0x80002000 0x80002000 $(KDIR)/vmlinux-$(1).lzma $(KDIR)/$(1).eva.prealign
41         dd if=$(KDIR)/$(1).eva.prealign of=$(KDIR)/$(1).eva bs=64k conv=sync
42         cat ./eva.dummy.squashfs >> $(KDIR)/$(1).eva
43 endef
44
45 define Image/Build/squashfs
46         cat $(KDIR)/uImage-$(2) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
47         $(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image)
48         $(if $(3),$(call MkBrnImage,$(3),$(4),$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(3)-brnImage,$(2),$(1),$(5)))
49 endef
50
51 define Image/BuildEVA/squashfs
52         cat $(KDIR)/$(2).eva $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva
53         $(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image.eva)
54 endef
55
56 define Image/Build/jffs2-64k
57         dd if=$(KDIR)/uImage-$(2) of=$(KDIR)/uImage-$(2)-$(1) bs=64k conv=sync
58         cat $(KDIR)/uImage-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
59 endef
60
61 define Image/Build/jffs2-128k
62         dd if=$(KDIR)/uImage-$(2) of=$(KDIR)/uImage-$(2)-$(1) bs=128k conv=sync
63         cat $(KDIR)/uImage-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
64 endef
65
66 define Image/Build/jffs2-256k
67         dd if=$(KDIR)/uImage-$(2) of=$(KDIR)/uImage-$(2)-$(1) bs=256k conv=sync
68         cat $(KDIR)/uImage-$(2)-$(1) $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
69 endef
70
71 define Image/BuildKernel/Template
72         $(call PatchKernelLzma,$(1),$(if $(2),$(2) machtype=$(1),))
73         $(call MkImageLzma,$(1))
74         $(CP) $(KDIR)/uImage-$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage
75 endef
76
77 define Image/BuildKernelEVA/Template
78         $(call PatchKernelLzma,$(1),$(if $(2),$(2) machtype=$(1),))
79         $(call MkImageEVA,$(1))
80         $(CP) $(KDIR)/$(1).eva $(BIN_DIR)/$(IMG_PREFIX)-$(1).eva
81 endef
82
83 ifeq ($(CONFIG_TARGET_lantiq_danube),y)
84
85 Image/BuildKernel/Profile/EASY50712=$(call Image/BuildKernel/Template,EASY50712,$(xway_cmdline))
86 Image/BuildKernel/Profile/ARV3527P=$(call Image/BuildKernel/Template,ARV3527P,$(xway_cmdline))
87 Image/BuildKernel/Profile/ARV4510PW=$(call Image/BuildKernel/Template,ARV4510PW,$(xway_cmdline))
88 Image/BuildKernel/Profile/ARV4518PW=$(call Image/BuildKernel/Template,ARV4518PW,$(xway_cmdline))
89 Image/BuildKernel/Profile/ARV4519PW=$(call Image/BuildKernel/Template,ARV4519PW,$(xway_cmdline))
90 Image/BuildKernel/Profile/ARV4520PW=$(call Image/BuildKernel/Template,ARV4520PW,$(xway_cmdline))
91 Image/BuildKernel/Profile/ARV4525PW=$(call Image/BuildKernel/Template,ARV4525PW,$(xway_cmdline))
92 Image/BuildKernel/Profile/ARV7525PW=$(call Image/BuildKernel/Template,ARV7525PW,$(xway_cmdline))
93 Image/BuildKernel/Profile/ARV452CPW=$(call Image/BuildKernel/Template,ARV452CPW,$(xway_cmdline))
94 Image/BuildKernel/Profile/ARV7518PW=$(call Image/BuildKernel/Template,ARV7518PW,$(xway_cmdline))
95 Image/BuildKernel/Profile/ARV752DPW=$(call Image/BuildKernel/Template,ARV752DPW,$(xway_cmdline))
96 Image/BuildKernel/Profile/ARV752DPW22=$(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline))
97 Image/BuildKernel/Profile/GIGASX76X=$(call Image/BuildKernel/Template,GIGASX76X,$(sx76x_cmdline))
98 Image/BuildKernel/Profile/BTHOMEHUBV2B=$(call Image/BuildKernel/Template,BTHOMEHUBV2B,$(xway_cmdline))
99 Image/BuildKernel/Profile/BTHOMEHUBV2BOPENRG=$(call Image/BuildKernel/Template,BTHOMEHUBV2BOPENRG,$(xway_cmdline))
100
101 Image/Build/Profile/EASY50712=$(call Image/Build/$(1),$(1),EASY50712)
102 Image/Build/Profile/ARV3527P=$(call Image/Build/$(1),$(1),ARV3527P)
103 Image/Build/Profile/ARV4510PW=$(call Image/Build/$(1),$(1),ARV4510PW)
104 Image/Build/Profile/ARV4518PW=$(call Image/Build/$(1),$(1),ARV4518PW)
105 Image/Build/Profile/ARV4519PW=$(call Image/Build/$(1),$(1),ARV4519PW,BRNDA4519,0x12345678,memsize=32)
106 Image/Build/Profile/ARV4520PW=$(call Image/Build/$(1),$(1),ARV4520PW,BRNDANUBE,0x12345678,memsize=32)
107 Image/Build/Profile/ARV4525PW=$(call Image/Build/$(1),$(1),ARV4525PW,BRNDTW502,0x12345678,memsize=32)
108 Image/Build/Profile/ARV7525PW=$(call Image/Build/$(1),$(1),ARV7525PW)
109 Image/Build/Profile/ARV452CPW=$(call Image/Build/$(1),$(1),ARV452CPW)
110 Image/Build/Profile/ARV7518PW=$(call Image/Build/$(1),$(1),ARV7518PW,BRNDA7519,0x12345678,memsize=64)
111 Image/Build/Profile/ARV752DPW=$(call Image/Build/$(1),$(1),ARV752DPW)
112 Image/Build/Profile/ARV752DPW22=$(call Image/Build/$(1),$(1),ARV752DPW22)
113 Image/Build/Profile/GIGASX76X=$(call Image/Build/$(1),$(1),GIGASX76X)
114 Image/Build/Profile/BTHOMEHUBV2B=$(call Image/Build/$(1),$(1),BTHOMEHUBV2B)
115 Image/Build/Profile/BTHOMEHUBV2BOPENRG=$(call Image/Build/$(1),$(1),BTHOMEHUBV2BOPENRG)
116
117 define Image/BuildKernel/Profile/Generic
118         $(call Image/BuildKernel/Template,EASY50712,$(xway_cmdline))
119         $(call Image/BuildKernel/Template,ARV3527P,$(xway_cmdline))
120         $(call Image/BuildKernel/Template,ARV4510PW,$(xway_cmdline))
121         $(call Image/BuildKernel/Template,ARV4518PW,$(xway_cmdline))
122         $(call Image/BuildKernel/Template,ARV4519PW,$(xway_cmdline))
123         $(call Image/BuildKernel/Template,ARV4520PW,$(xway_cmdline))
124         $(call Image/BuildKernel/Template,ARV452CPW,$(xway_cmdline))
125         $(call Image/BuildKernel/Template,ARV4525PW,$(xway_cmdline))
126         $(call Image/BuildKernel/Template,ARV7525PW,$(xway_cmdline))
127         $(call Image/BuildKernel/Template,ARV7518PW,$(xway_cmdline))
128         $(call Image/BuildKernel/Template,ARV752DPW,$(xway_cmdline))
129         $(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline))
130         $(call Image/BuildKernel/Template,GIGASX76X,$(xway_cmdline))
131         $(call Image/BuildKernel/Template,BTHOMEHUBV2B,$(xway_cmdline))
132         $(call Image/BuildKernel/Template,BTHOMEHUBV2BOPENRG,$(xway_cmdline))
133         $(call Image/BuildKernel/Template,NONE)
134 endef
135
136 define Image/Build/Profile/Generic
137         $(call Image/Build/$(1),$(1),EASY50712)
138         $(call Image/Build/$(1),$(1),ARV3527P)
139         $(call Image/Build/$(1),$(1),ARV4510PW)
140         $(call Image/Build/$(1),$(1),ARV4518PW)
141         $(call Image/Build/$(1),$(1),ARV4519PW,BRNDA4519,0x12345678,memsize=32)
142         $(call Image/Build/$(1),$(1),ARV4520PW)
143         $(call Image/Build/$(1),$(1),ARV452CPW)
144         $(call Image/Build/$(1),$(1),ARV4525PW,BRNDTW502,0x12345678,memsize=32)
145         $(call Image/Build/$(1),$(1),ARV7525PW)
146         $(call Image/Build/$(1),$(1),ARV7518PW,BRNDA7519,0x12345678,memsize=32)
147         $(call Image/Build/$(1),$(1),ARV752DPW)
148         $(call Image/Build/$(1),$(1),ARV752DPW22)
149         $(call Image/Build/$(1),$(1),GIGASX76X)
150         $(call Image/Build/$(1),$(1),BTHOMEHUBV2B)
151         $(call Image/Build/$(1),$(1),BTHOMEHUBV2BOPENRG)
152         $(call Image/Build/$(1),$(1),NONE)
153         $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
154 endef
155 endif
156
157 ifeq ($(CONFIG_TARGET_lantiq_ar9),y)
158 Image/BuildKernel/Profile/WBMR=$(call Image/BuildKernel/Template,WBMR,$(xway_cmdline))
159 Image/BuildKernel/Profile/DGN3500B=$(call Image/BuildKernel/Template,DGN3500B,$(xway_cmdline))
160 Image/BuildKernel/Profile/P2601HNFX=$(call Image/BuildKernel/Template,P2601HNFX,$(xway_cmdline))
161 Image/BuildKernel/Profile/FRITZ7320=$(call Image/BuildKernelEVA/Template,FRITZ7320,$(xway_cmdline))
162
163 Image/Build/Profile/WBMR=$(call Image/Build/$(1),$(1),WBMR)
164 Image/Build/Profile/DGN3500B=$(call Image/Build/$(1),$(1),DGN3500B)
165 Image/Build/Profile/P2601HNFX=$(call Image/Build/$(1),$(1),P2601HNFX)
166 Image/Build/Profile/FRITZ7320=$(call Image/BuildEVA/$(1),$(1),FRITZ7320)
167
168 define Image/BuildKernel/Profile/Generic
169         $(call Image/BuildKernel/Template,WBMR,$(xway_cmdline))
170         $(call Image/BuildKernel/Template,DGN3500B,$(xway_cmdline))
171         $(call Image/BuildKernel/Template,P2601HNFX,$(xway_cmdline))
172         $(call Image/BuildKernelEVA/Template,FRITZ7320,$(xway_cmdline))
173         $(call Image/BuildKernel/Template,NONE)
174 endef
175
176 define Image/Build/Profile/Generic
177         $(call Image/Build/$(1),$(1),WBMR)
178         $(call Image/Build/$(1),$(1),DGN3500B)
179         $(call Image/Build/$(1),$(1),P2601HNFX)
180         $(call Image/BuildEVA/$(1),$(1),FRITZ7320)
181         $(call Image/Build/$(1),$(1),NONE)
182         $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
183 endef
184 endif
185
186 ifeq ($(CONFIG_TARGET_lantiq_falcon)$(CONFIG_TARGET_lantiq_falcon_stable),y)
187
188 Image/BuildKernel/Profile/EASY98000=$(call Image/BuildKernel/Template,EASY98000,$(falcon_cmdline))
189 Image/BuildKernel/Profile/EASY98020=$(call Image/BuildKernel/Template,EASY98020,$(falcon_cmdline))
190
191 Image/Build/Profile/EASY98000=$(call Image/Build/$(1),$(1),EASY98000)
192 Image/Build/Profile/EASY98020=$(call Image/Build/$(1),$(1),EASY98020)
193
194 define Image/BuildKernel/Profile/Generic
195         $(call Image/BuildKernel/Template,EASY98000,$(falcon_cmdline))
196         $(call Image/BuildKernel/Template,EASY98020,$(falcon_cmdline))
197         $(call Image/BuildKernel/Template,NONE)
198 endef
199
200 define Image/Build/Profile/Generic
201         $(call Image/Build/$(1),$(1),EASY98000)
202         $(call Image/Build/$(1),$(1),EASY98020)
203         $(call Image/Build/$(1),$(1),NONE)
204         $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
205 endef
206 endif
207
208 ifeq ($(CONFIG_TARGET_lantiq_ase),y)
209
210 Image/BuildKernel/Profile/EASY50601=$(call Image/BuildKernel/Template,EASY50601,$(ase_cmdline))
211 Image/Build/Profile/EASY50601=$(call Image/Build/$(1),$(1),EASY50601)
212
213 define Image/BuildKernel/Profile/Generic
214         $(call Image/BuildKernel/Template,EASY50601,$(ase_cmdline))
215         $(call Image/BuildKernel/Template,NONE)
216 endef
217
218 define Image/Build/Profile/Generic
219         $(call Image/Build/$(1),$(1),EASY50601)
220         $(call Image/Build/$(1),$(1),NONE)
221         $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
222 endef
223 endif
224
225 ifeq ($(CONFIG_TARGET_lantiq_vr9),y)
226 define Image/BuildKernel/Profile/FRITZ3370
227         $(call Image/BuildKernel/Template,FRITZ3370,$(xway_cmdline))
228         $(call Image/BuildKernelEVA/Template,FRITZ3370,$(xway_cmdline))
229 endef
230
231 Image/Build/Profile/FRITZ3370=$(call Image/Build/$(1),$(1),FRITZ3370)
232
233 define Image/BuildKernel/Profile/Generic
234         $(call Image/BuildKernel/Template,FRITZ3370,$(xway_cmdline))
235         $(call Image/BuildKernel/Template,NONE)
236 endef
237
238 define Image/Build/Profile/Generic
239         $(call Image/Build/$(1),$(1),FRITZ3370)
240         $(call Image/Build/$(1),$(1),NONE)
241         $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).rootfs
242 endef
243 endif
244
245 define Image/BuildKernel
246         $(call Image/BuildKernel/Profile/$(PROFILE))
247 endef
248
249 define Image/Build
250         $(call Image/Build/Profile/$(PROFILE),$(1))
251 endef
252
253 $(eval $(call BuildImage))