unified preinit environment
[openwrt.git] / target / linux / brcm-2.4 / image / Makefile
1
2 # Copyright (C) 2006 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         cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
16         rm -f $(KDIR)/loader.gz
17         $(MAKE) -C lzma-loader \
18                 BUILD_DIR="$(KDIR)" \
19                 TARGET="$(KDIR)" \
20                 clean install
21         echo -ne "\\x00" >> $(KDIR)/loader.gz
22 endef
23
24 ifneq ($(KERNEL),2.4)
25   define Image/Build/wgt634u
26         dd if=$(KDIR)/loader.elf of=$(BIN_DIR)/openwrt-wgt634u-$(KERNEL)-$(2).bin bs=131072 conv=sync
27         cat $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).trx >> $(BIN_DIR)/openwrt-wgt634u-$(KERNEL)-$(2).bin
28   endef
29 endif
30
31 define Image/Build/CyberTAN
32         $(STAGING_DIR)/bin/addpattern -4 -p $(3) -v v$(4) -i $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).trx -o $(BIN_DIR)/openwrt-$(2)-$(KERNEL)-$(5).bin
33 endef
34
35 define Image/Build/Motorola
36         $(STAGING_DIR)/bin/motorola-bin -$(3) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).trx $(BIN_DIR)/openwrt-$(2)-$(4).bin
37 endef
38
39 define Image/Build/USR
40         $(STAGING_DIR)/bin/trx2usr $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).trx $(BIN_DIR)/openwrt-$(2)-$(3).bin
41 endef
42
43 define trxalign/jffs2-128k
44 -a 0x20000
45 endef
46 define trxalign/jffs2-64k
47 -a 0x10000
48 endef
49 define trxalign/squashfs
50 -a 1024
51 endef
52
53 define Image/Build/squashfs
54     $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
55 endef
56
57 define Image/Build
58         $(call Image/Build/$(1))
59         $(STAGING_DIR)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).trx -f $(KDIR)/loader.gz -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
60 ifneq ($(1),jffs2-128k)
61         $(call Image/Build/CyberTAN,$(1),wrt54g3g,W54F,2.01.1,$(patsubst jffs2-%,jffs2,$(1)))
62         $(call Image/Build/CyberTAN,$(1),wrt54g,W54G,4.60.1,$(patsubst jffs2-%,jffs2,$(1)))
63         $(call Image/Build/CyberTAN,$(1),wrt54gs_v4,W54s,1.09.1,$(patsubst jffs2-%,jffs2,$(1)))
64         $(call Image/Build/CyberTAN,$(1),wrt300n_v1,EWCB,0.93.10,$(patsubst jffs2-%,jffs2,$(1)))
65         $(call Image/Build/Motorola,$(1),wa840g,2,$(patsubst jffs2-%,jffs2,$(1)))
66         $(call Image/Build/Motorola,$(1),we800g,3,$(patsubst jffs2-%,jffs2,$(1)))
67 endif
68 ifneq ($(1),jffs2-64k)
69         $(call Image/Build/CyberTAN,$(1),wrt54gs,W54S,4.80.1,$(patsubst jffs2-%,jffs2,$(1)))
70         $(call Image/Build/CyberTAN,$(1),wrtsl54gs,W54U,2.08.1,$(patsubst jffs2-%,jffs2,$(1)))
71 ifeq ($(KERNEL),2.6)
72         $(call Image/Build/wgt634u,$(1),$(patsubst jffs2-%,jffs2,$(1)))
73 endif
74 endif
75         $(call Image/Build/Motorola,$(1),wr850g,1,$(1))
76         $(call Image/Build/USR,$(1),usr5461,$(1)) 
77 endef
78
79 $(eval $(call BuildImage))