2 # Copyright (C) 2008-2009 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 include $(TOPDIR
)/rules.mk
8 include $(INCLUDE_DIR
)/image.mk
10 IMGNAME
:=$(BIN_DIR
)/openwrt-
$(BOARD
)
13 $(IMGNAME
)-$(2)-$(patsubst jffs2-
%,jffs2
,$(1))
16 VMLINUX
:=$(IMGNAME
)-vmlinux
17 ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),y
)
18 VMLINUX
:=$(IMGNAME
)-vmlinux-initramfs
21 define Image
/BuildKernel
22 cp
$(KDIR
)/vmlinux.elf
$(VMLINUX
).elf
23 cp
$(KDIR
)/vmlinux
$(VMLINUX
).bin
24 gzip
-9 -c
$(KDIR
)/vmlinux
> $(KDIR
)/vmlinux.bin.gz
25 $(STAGING_DIR_HOST
)/bin
/lzma e
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux.bin.l7
26 $(STAGING_DIR_HOST
)/bin
/lzma e
$(KDIR
)/vmlinux
-lc1
-lp2
-pb2
$(KDIR
)/vmlinux.bin.lzma
27 dd if
=$(KDIR
)/vmlinux.bin.l7 of
=$(VMLINUX
).lzma bs
=65536 conv
=sync
28 dd if
=$(KDIR
)/vmlinux.bin.gz of
=$(VMLINUX
).gz bs
=65536 conv
=sync
29 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C gzip
-e \
31 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
32 -d
$(KDIR
)/vmlinux.bin.gz
$(IMGNAME
)-uImage-gzip.bin
33 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C lzma
-e \
35 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
36 -d
$(KDIR
)/vmlinux.bin.lzma
$(IMGNAME
)-uImage-lzma.bin
39 define Image
/Build
/Linksys8M
40 cp
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux-
$(2)
41 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR
)/vmlinux-
$(2) '$(strip $(3))'
42 $(STAGING_DIR_HOST
)/bin
/lzma e
$(KDIR
)/vmlinux-
$(2) $(KDIR
)/vmlinux-
$(2).bin.lzma
43 if
[ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt
1310720 ]; then \
44 echo
"Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big"; \
45 else if
[ `stat -c%s $(KDIR)/root.$(1)` -gt
6488064 ]; then \
46 echo
"Warning: $(KDIR)/root.$(1) is too big"; \
48 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C lzma
-e \
50 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
51 -d
$(KDIR
)/vmlinux-
$(2).bin.lzma
$(KDIR
)/vmlinux-
$(2).uImage
; \
53 dd if
=$(KDIR
)/vmlinux-
$(2).uImage bs
=1280k conv
=sync
; \
54 dd if
=$(KDIR
)/root.
$(1) bs
=6336k conv
=sync
; \
56 ) > $(call imgname
,$(1),$(2)).bin
; \
60 define Image
/Build
/AP81
61 cp
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux-
$(2)
62 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR
)/vmlinux-
$(2) '$(strip $(3))'
63 $(STAGING_DIR_HOST
)/bin
/lzma e
$(KDIR
)/vmlinux-
$(2) $(KDIR
)/vmlinux-
$(2).bin.lzma
64 if
[ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt
786432 ]; then \
65 echo
"Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big"; \
66 else if
[ `stat -c%s $(KDIR)/root.$(1)` -gt
3080192 ]; then \
67 echo
"Warning: $(KDIR)/root.$(1) is too big"; \
69 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C lzma
-e \
71 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
72 -d
$(KDIR
)/vmlinux-
$(2).bin.lzma
$(KDIR
)/vmlinux-
$(2).uImage
; \
74 dd if
=$(KDIR
)/vmlinux-
$(2).uImage bs
=768k conv
=sync
; \
75 dd if
=$(KDIR
)/root.
$(1) bs
=3008k conv
=sync
; \
77 ) > $(call imgname
,$(1),$(2)).uni
; \
81 define Image
/Build
/MyLoader
82 -$(STAGING_DIR_HOST
)/bin
/mkmylofw
-B
$(2) \
83 -p0x30000
:0xc0000:ahl
:0x80060000:kernel
:$(KDIR
)/vmlinux.bin.lzma \
84 -p0xf0000
:0:::rootfs
:$(KDIR
)/root.
$(1) \
85 $(call imgname
,$(1),$(2)).img
88 define Image
/Build
/UBNT
89 cp
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux-
$(2)
90 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR
)/vmlinux-
$(2) '$(strip $(3))'
91 $(STAGING_DIR_HOST
)/bin
/lzma e
$(KDIR
)/vmlinux-
$(2) $(KDIR
)/vmlinux-
$(2).lzma
92 dd if
=$(KDIR
)/vmlinux-
$(2).lzma of
=$(KDIR
)/vmlinux-
$(2).bin.lzma bs
=64k conv
=sync
93 -$(STAGING_DIR_HOST
)/bin
/mkfwimage \
94 -B
$(4) -v
$(5).
$(6).OpenWrt.
$(REVISION
) \
95 -k
$(KDIR
)/vmlinux-
$(2).bin.lzma \
96 -r
$(BIN_DIR
)/openwrt-
$(BOARD
)-root.
$(1) \
97 -o
$(BIN_DIR
)/openwrt-
$(BOARD
)-$(2)-$(1).bin
100 define Image
/Build
/Planex
101 cp
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux-
$(2)
102 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR
)/vmlinux-
$(2) '$(strip $(3))'
103 gzip
-9 -c
$(KDIR
)/vmlinux-
$(2) > $(KDIR
)/vmlinux-
$(2).bin.gzip
104 if
[ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.gzip"` -gt
1441792 ]; then \
105 echo
"Warning: $(KDIR)/vmlinux-$(2).bin.gzip is too big"; \
106 else if
[ `stat -c%s $(KDIR)/root.$(1)` -gt
6356992 ]; then \
107 echo
"Warning: $(KDIR)/root.$(1) is too big"; \
109 mkimage
-A mips
-O linux
-T kernel
-a
0x80060000 -C gzip
-e \
111 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
112 -d
$(KDIR
)/vmlinux-
$(2).bin.gzip
$(KDIR
)/vmlinux-
$(2).uImage
; \
114 dd if
=$(KDIR
)/vmlinux-
$(2).uImage bs
=1408k conv
=sync
; \
115 dd if
=$(KDIR
)/root.
$(1) bs
=6208k conv
=sync
; \
116 ) > $(call imgname
,$(1),$(2)).bin
; \
117 $(STAGING_DIR_HOST
)/bin
/mkplanexfw \
120 -i
$(call imgname
,$(1),$(2)).bin \
121 -o
$(call imgname
,$(1),$(2)).webui
; \
125 define Image
/Build
/TPLINK
126 cp
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux-
$(2)
127 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR
)/vmlinux-
$(2) '$(strip $(3))'
128 gzip
-9 -c
$(KDIR
)/vmlinux-
$(2) > $(KDIR
)/vmlinux-
$(2).bin.gzip
129 -$(STAGING_DIR_HOST
)/bin
/mktplinkfw \
130 -B
$(4) -N OpenWrt
-V
$(REVISION
)\
131 -k
$(KDIR
)/vmlinux-
$(2).bin.gzip \
132 -r
$(BIN_DIR
)/openwrt-
$(BOARD
)-root.
$(1) \
133 -o
$(BIN_DIR
)/openwrt-
$(BOARD
)-$(2)-$(1).uni
136 define Image
/Build
/Template
/Compex
137 $(call Image
/Build
/MyLoader
,$(1),$(2))
140 define Image
/Build
/Template
/Compex
/squashfs
141 $(call Image
/Build
/Template
/Compex
,squashfs
,$(1))
144 define Image
/Build
/Template
/Linksys8M
145 $(call Image
/Build
/Linksys8M
,$(1),$(2),$(3),$(4))
148 define Image
/Build
/Template
/Linksys8M
/squashfs
149 $(call Image
/Build
/Template
/Linksys8M
,squashfs
,$(1),$(2),$(3))
152 define Image
/Build
/Template
/AP81
153 $(call Image
/Build
/AP81
,$(1),$(2),$(3),$(4))
156 define Image
/Build
/Template
/AP81
/squashfs
157 $(call Image
/Build
/Template
/AP81
,squashfs
,$(1),$(2),$(3))
160 define Image
/Build
/Template
/TPLINK
161 $(call Image
/Build
/TPLINK
,$(1),$(2),$(3),$(4))
164 define Image
/Build
/Template
/TPLINK
/squashfs
165 $(call Image
/Build
/Template
/TPLINK
,squashfs
,$(1),$(2),$(3))
168 define Image
/Build
/Template
/UBNT
169 $(call Image
/Build
/UBNT
,$(1),$(2),$(3),$(4),$(5),$(6))
172 define Image
/Build
/Template
/UBNT
/squashfs
173 $(call Image
/Build
/Template
/UBNT
,squashfs
,$(1),$(2),$(3),$(4),$(5))
176 define Image
/Build
/Template
/Planex
177 $(call Image
/Build
/Planex
,$(1),$(2),$(3))
180 define Image
/Build
/Template
/Planex
/squashfs
181 $(call Image
/Build
/Template
/Planex
,squashfs
,$(1),$(2))
184 define Image
/Build
/Profile
/WP543
185 $(call Image
/Build
/Template
/Compex
/$(1),wp543
)
188 define Image
/Build
/Profile
/DIR615C1
189 $(call Image
/Build
/Template
/AP81
/$(1),dir-615c1
,board
=TEW-632BRP
,"AP81-AR9130-RT-070614-02")
192 define Image
/Build
/Profile
/TEW632BRP
193 $(call Image
/Build
/Template
/AP81
/$(1),tew-632brp
,board
=TEW-632BRP
,"AP81-AR9130-RT-070614-00")
196 define Image
/Build
/Profile
/TEW652BRP
197 $(call Image
/Build
/Template
/AP81
/$(1),tew-652brp
,board
=TEW-632BRP
,"AP81-AR9130-RT-080609-05")
200 define Image
/Build
/Profile
/A02RBW300N
201 $(call Image
/Build
/Template
/AP81
/$(1),a02-rb-w300n
,board
=TEW-632BRP
,"AP81-AR9130-RT-070614-03")
204 define Image
/Build
/Profile
/UBNTRS
205 $(call Image
/Build
/Template
/UBNT
/$(1),ubnt-rs
,board
=UBNT-RS
,RS
,RSx
,ar7100
)
208 define Image
/Build
/Profile
/UBNTRSPRO
209 $(call Image
/Build
/Template
/UBNT
/$(1),ubnt-rspro
,board
=UBNT-RSPRO
,RSPRO
,RSPRO
,ar7100pro
)
212 define Image
/Build
/Profile
/UBNTLSSR71
213 $(call Image
/Build
/Template
/UBNT
/$(1),ubnt-ls-sr71
,board
=UBNT-LS-SR71
,LS-SR71
,LS-SR71
,ar7100
)
216 define Image
/Build
/Profile
/UBNT
217 $(call Image
/Build
/Profile
/UBNTRS
,$(1))
218 $(call Image
/Build
/Profile
/UBNTRSPRO
,$(1))
219 $(call Image
/Build
/Profile
/UBNTLSSR71
,$(1))
222 define Image
/Build
/Profile
/MZKW04NU
223 $(call Image
/Build
/Template
/Planex
/$(1),mzk-w04nu
,board
=MZK-W04NU
)
226 define Image
/Build
/Profile
/MZKW300NH
227 $(call Image
/Build
/Template
/Planex
/$(1),mzk-w300nh
,board
=MZK-W300NH
)
230 define Image
/Build
/Profile
/TLWR841NDV3
231 $(call Image
/Build
/Template
/TPLINK
/$(1),tl-wr841ndv3
,board
=TL-WR941ND
,TL-WR841NDv3
)
234 define Image
/Build
/Profile
/TLWR941NDV2
235 $(call Image
/Build
/Template
/TPLINK
/$(1),tl-wr941ndv2
,board
=TL-WR941ND
,TL-WR941NDv2
)
238 define Image
/Build
/Profile
/WRT400N
239 $(call Image
/Build
/Template
/Linksys8M
/$(1),wrt400n
,board
=WRT400N
)
242 define Image
/Build
/Profile
/Default
243 $(call Image
/Build
/Profile
/A02RBW300N
,$(1))
244 $(call Image
/Build
/Profile
/DIR615C1
,$(1))
245 $(call Image
/Build
/Profile
/MZKW04NU
,$(1))
246 $(call Image
/Build
/Profile
/MZKW300NH
,$(1))
247 $(call Image
/Build
/Profile
/TEW632BRP
,$(1))
248 $(call Image
/Build
/Profile
/TEW652BRP
,$(1))
249 $(call Image
/Build
/Profile
/TLWR841NDV3
,$(1))
250 $(call Image
/Build
/Profile
/TLWR941NDV2
,$(1))
251 $(call Image
/Build
/Profile
/UBNT
,$(1))
252 $(call Image
/Build
/Profile
/WP543
,$(1))
253 $(call Image
/Build
/Profile
/WRT400N
,$(1))
256 define Image
/Build
/Profile
/Madwifi
257 $(call Image
/Build
/Profile
/UBNT
,$(1))
258 $(call Image
/Build
/Profile
/WP543
,$(1))
261 define Image
/Build
/squashfs
262 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
266 $(call Image
/Build
/$(1))
267 dd if
=$(KDIR
)/root.
$(1) of
=$(IMGNAME
)-root.
$(1) bs
=128k conv
=sync
269 $(call Image
/Build
/Profile
/$(PROFILE
),$(1))
272 $(eval
$(call BuildImage
))