3f0cd01c7504b2387c39e05f03260eae02d98767
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / image / Makefile
1 #
2 # Copyright (C) 2008-2009 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 IMGNAME:=$(BIN_DIR)/openwrt-$(BOARD)
11
12 define imgname
13 $(IMGNAME)-$(2)-$(patsubst jffs2-%,jffs2,$(1))
14 endef
15
16 VMLINUX:=$(IMGNAME)-vmlinux
17 ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
18 VMLINUX:=$(IMGNAME)-vmlinux-initramfs
19 endif
20
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 \
30 0x80060000 \
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 \
34 0x80060000 \
35 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
36 -d $(KDIR)/vmlinux.bin.lzma $(IMGNAME)-uImage-lzma.bin
37 endef
38
39 define Image/Build/AP81
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 786432 ]; then \
44 echo "Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big"; \
45 else if [ `stat -c%s $(KDIR)/root.$(1)` -gt 3080192 ]; then \
46 echo "Warning: $(KDIR)/root.$(1) is too big"; \
47 else \
48 mkimage -A mips -O linux -T kernel -a 0x80060000 -C lzma -e \
49 0x80060000 \
50 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
51 -d $(KDIR)/vmlinux-$(2).bin.lzma $(KDIR)/vmlinux-$(2).uImage; \
52 ( \
53 dd if=$(KDIR)/vmlinux-$(2).uImage bs=768k conv=sync; \
54 dd if=$(KDIR)/root.$(1) bs=3008k conv=sync; \
55 ) > $(call imgname,$(1),$(2)).bin; \
56 cp $(call imgname,$(1),$(2)).bin $(call imgname,$(1),$(2)).webui; \
57 echo -n $(4) >> $(call imgname,$(1),$(2)).webui; \
58 fi; fi
59 endef
60
61 define Image/Build/MyLoader
62 -$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) \
63 -p0x30000:0xc0000:ahl:0x80060000:kernel:$(KDIR)/vmlinux.bin.lzma \
64 -p0xf0000:0:::rootfs:$(KDIR)/root.$(1) \
65 $(call imgname,$(1),$(2)).img
66 endef
67
68 define Image/Build/UBNT
69 cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(2)
70 $(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(2) '$(strip $(3))'
71 $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux-$(2) $(KDIR)/vmlinux-$(2).lzma
72 dd if=$(KDIR)/vmlinux-$(2).lzma of=$(KDIR)/vmlinux-$(2).bin.lzma bs=64k conv=sync
73 -$(STAGING_DIR_HOST)/bin/mkfwimage \
74 -B $(4) -v $(5).ar7100.OpenWrt \
75 -k $(KDIR)/vmlinux-$(2).bin.lzma \
76 -r $(BIN_DIR)/openwrt-$(BOARD)-root.$(1) \
77 -o $(BIN_DIR)/openwrt-$(BOARD)-ubnt-$(2)-$(1).bin
78 endef
79
80 define Image/Build/Planex
81 cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(2)
82 $(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(2) '$(strip $(3))'
83 gzip -9 -c $(KDIR)/vmlinux-$(2) > $(KDIR)/vmlinux-$(2).bin.gzip
84 if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.gzip"` -gt 1441792 ]; then \
85 echo "Warning: $(KDIR)/vmlinux-$(2).bin.gzip is too big"; \
86 else if [ `stat -c%s $(KDIR)/root.$(1)` -gt 6356992 ]; then \
87 echo "Warning: $(KDIR)/root.$(1) is too big"; \
88 else \
89 mkimage -A mips -O linux -T kernel -a 0x80060000 -C gzip -e \
90 0x80060000 \
91 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
92 -d $(KDIR)/vmlinux-$(2).bin.gzip $(KDIR)/vmlinux-$(2).uImage; \
93 ( \
94 dd if=$(KDIR)/vmlinux-$(2).uImage bs=1408k conv=sync; \
95 dd if=$(KDIR)/root.$(1) bs=6208k conv=sync; \
96 ) > $(call imgname,$(1),$(2)).bin; \
97 $(STAGING_DIR_HOST)/bin/mkplanexfw -v 2.00.00 \
98 -i $(call imgname,$(1),$(2)).bin \
99 -o $(call imgname,$(1),$(2)).webui; \
100 fi; fi
101 endef
102
103 define Image/Build/Template/Compex
104 $(call Image/Build/MyLoader,$(1),$(2))
105 endef
106
107 define Image/Build/Template/Compex/squashfs
108 $(call Image/Build/Template/Compex,squashfs,$(1))
109 endef
110
111 define Image/Build/Template/AP81
112 $(call Image/Build/AP81,$(1),$(2),$(3),$(4))
113 endef
114
115 define Image/Build/Template/AP81/squashfs
116 $(call Image/Build/Template/AP81,squashfs,$(1),$(2),$(3))
117 endef
118
119 define Image/Build/Template/UBNT
120 $(call Image/Build/UBNT,$(1),$(2),$(3),$(4),$(5))
121 endef
122
123 define Image/Build/Template/UBNT/squashfs
124 $(call Image/Build/Template/UBNT,squashfs,$(1),$(2),$(3),$(4))
125 endef
126
127 define Image/Build/Template/Planex
128 $(call Image/Build/Planex,$(1),$(2),$(3))
129 endef
130
131 define Image/Build/Template/Planex/squashfs
132 $(call Image/Build/Template/Planex,squashfs,$(1),$(2))
133 endef
134
135 define Image/Build/Profile/WP543
136 $(call Image/Build/Template/Compex/$(1),wp543)
137 endef
138
139 define Image/Build/Profile/DIR615C1
140 $(call Image/Build/Template/AP81/$(1),dir-615c1,board=TEW-632BRP,"AP81-AR9130-RT-070614-02")
141 endef
142
143 define Image/Build/Profile/TEW632BRP
144 $(call Image/Build/Template/AP81/$(1),tew-632brp,board=TEW-632BRP,"AP81-AR9130-RT-070614-00")
145 endef
146
147 define Image/Build/Profile/TEW652BRP
148 $(call Image/Build/Template/AP81/$(1),tew-652brp,board=TEW-632BRP,"AP81-AR9130-RT-080609-05")
149 endef
150
151 define Image/Build/Profile/UBNTRS
152 $(call Image/Build/Template/UBNT/$(1),rs,board=UBNT-RS,RS,RSx)
153 endef
154
155 define Image/Build/Profile/MZKW04NU
156 $(call Image/Build/Template/Planex/$(1),mzk-w04nu,board=MZK-W04NU)
157 endef
158
159 define Image/Build/squashfs
160 $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
161 endef
162
163 define Image/Build
164 $(call Image/Build/$(1))
165 dd if=$(KDIR)/root.$(1) of=$(IMGNAME)-root.$(1) bs=128k conv=sync
166
167 $(call Image/Build/Profile/DIR615C1,$(1))
168 $(call Image/Build/Profile/MZKW04NU,$(1))
169 $(call Image/Build/Profile/TEW632BRP,$(1))
170 $(call Image/Build/Profile/TEW652BRP,$(1))
171 $(call Image/Build/Profile/UBNTRS,$(1))
172 $(call Image/Build/Profile/WP543,$(1))
173 endef
174
175 $(eval $(call BuildImage))