2 # Copyright (C) 2010 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 JFFS2_BLOCKSIZE
= 64k
128k
256k
12 xway_cmdline
=-console
=ttyS1
,115200 rootfstype
=squashfs
,jffs2
13 falcon_cmdline
=-console
=ttyS0
,115200 rootfstype
=squashfs
,jffs2
16 $(STAGING_DIR_HOST
)/bin
/lzma e
$(1) $(2)
19 define PatchKernelLzma
20 cp
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux-
$(1)
21 $(STAGING_DIR_HOST
)/bin
/patch-cmdline
$(KDIR
)/vmlinux-
$(1) '$(strip $(2))'
22 $(call CompressLzma
,$(KDIR
)/vmlinux-
$(1),$(KDIR
)/vmlinux-
$(1).lzma
)
26 mkimage
-A mips
-O linux
-T kernel
-a
0x80002000 -C lzma \
27 -e
0x80002000 -n
'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
28 -d
$(KDIR
)/vmlinux-
$(1).lzma
$(KDIR
)/uImage-
$(1)
31 define Image
/Build
/squashfs
32 cat
$(KDIR
)/uImage-
$(2) $(KDIR
)/root.
$(1) > $(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(1).image
33 $(call prepare_generic_squashfs
,$(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(1).image
)
36 define Image
/Build
/jffs2-64k
37 dd if
=$(KDIR
)/uImage-
$(2) of
=$(KDIR
)/uImage-
$(2)-$(1) bs
=64k conv
=sync
38 cat
$(KDIR
)/uImage-
$(2)-$(1) $(KDIR
)/root.
$(1) > $(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(1).image
41 define Image
/Build
/jffs2-128k
42 dd if
=$(KDIR
)/uImage-
$(2) of
=$(KDIR
)/uImage-
$(2)-$(1) bs
=128k conv
=sync
43 cat
$(KDIR
)/uImage-
$(2)-$(1) $(KDIR
)/root.
$(1) > $(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(1).image
46 define Image
/Build
/jffs2-256k
47 dd if
=$(KDIR
)/uImage-
$(2) of
=$(KDIR
)/uImage-
$(2)-$(1) bs
=256k conv
=sync
48 cat
$(KDIR
)/uImage-
$(2)-$(1) $(KDIR
)/root.
$(1) > $(BIN_DIR
)/$(IMG_PREFIX
)-$(2)-$(1).image
51 define Image
/BuildKernel
/Template
52 $(call PatchKernelLzma
,$(1),$(if
$(2),$(2) machtype
=$(1),))
53 $(call MkImageLzma
,$(1))
54 $(CP
) $(KDIR
)/uImage-
$(1) $(BIN_DIR
)/$(IMG_PREFIX
)-$(1)-uImage
57 ifeq ($(CONFIG_SOC_LANTIQ_XWAY
),y
)
58 define Image
/BuildKernel
59 $(call Image
/BuildKernel
/Template
,EASY4010
,$(xway_cmdline
))
60 $(call Image
/BuildKernel
/Template
,EASY50712
,$(xway_cmdline
))
61 $(call Image
/BuildKernel
/Template
,EASY50812
,$(xway_cmdline
))
62 $(call Image
/BuildKernel
/Template
,ARV4510PW
,$(xway_cmdline
))
63 $(call Image
/BuildKernel
/Template
,ARV4518PW
,$(xway_cmdline
))
64 $(call Image
/BuildKernel
/Template
,ARV4520PW
,$(xway_cmdline
))
65 $(call Image
/BuildKernel
/Template
,ARV4525PW
,$(xway_cmdline
))
66 $(call Image
/BuildKernel
/Template
,ARV752DPW
,$(xway_cmdline
))
67 $(call Image
/BuildKernel
/Template
,ARV7518PW
,$(xway_cmdline
))
68 $(call Image
/BuildKernel
/Template
,NONE
)
72 $(call Image
/Build
/$(1),$(1),EASY4010
)
73 $(call Image
/Build
/$(1),$(1),EASY50712
)
74 $(call Image
/Build
/$(1),$(1),EASY50812
)
75 $(call Image
/Build
/$(1),$(1),ARV4510PW
)
76 $(call Image
/Build
/$(1),$(1),ARV4518PW
)
77 $(call Image
/Build
/$(1),$(1),ARV4520PW
)
78 $(call Image
/Build
/$(1),$(1),ARV4525PW
)
79 $(call Image
/Build
/$(1),$(1),ARV752DPW
)
80 $(call Image
/Build
/$(1),$(1),ARV7518PW
)
81 $(call Image
/Build
/$(1),$(1),NONE
)
82 $(CP
) $(KDIR
)/root.
$(1) $(BIN_DIR
)/$(IMG_PREFIX
)-$(1).rootfs
86 ifeq ($(CONFIG_SOC_LANTIQ_FALCON
),y
)
87 define Image
/BuildKernel
88 $(call Image
/BuildKernel
/Template
,EASY98000
,$(falcon_cmdline
))
89 $(call Image
/BuildKernel
/Template
,NONE
)
93 $(call Image
/Build
/$(1),$(1),EASY98000
)
94 $(call Image
/Build
/$(1),$(1),NONE
)
95 $(CP
) $(KDIR
)/root.
$(1) $(BIN_DIR
)/$(IMG_PREFIX
)-$(1).rootfs
99 $(eval
$(call BuildImage
))