2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 KDIR
:=$(BUILD_DIR
)/linux-
$(KERNEL
)-$(BOARD
)
9 ifneq ($(CONFIG_BIG_ENDIAN
),y
)
10 JFFS2OPTS
:= --pad
--little-endian
--squash
13 JFFS2OPTS
:= --pad
--big-endian
--squash
17 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),y
)
18 ifeq ($(CONFIG_TARGET_ROOTFS_JFFS2
),y
)
19 define Image
/mkfs
/jffs2
20 rm -rf
$(BUILD_DIR
)/root
/jffs
22 $(STAGING_DIR
)/bin
/mkfs.jffs2
$(JFFS2OPTS
) -e
0x10000 -o
$(KDIR
)/root.jffs2-64k
-d
$(BUILD_DIR
)/root
23 $(STAGING_DIR
)/bin
/mkfs.jffs2
$(JFFS2OPTS
) -e
0x20000 -o
$(KDIR
)/root.jffs2-128k
-d
$(BUILD_DIR
)/root
25 # add End-of-Filesystem markers
26 echo
-ne
'\xde\xad\xc0\xde' >> $(KDIR
)/root.jffs2-64k
27 echo
-ne
'\xde\xad\xc0\xde' >> $(KDIR
)/root.jffs2-128k
29 $(call Image
/Build
,jffs2-64k
)
30 $(call Image
/Build
,jffs2-128k
)
34 ifeq ($(CONFIG_TARGET_ROOTFS_SQUASHFS
),y
)
35 define Image
/mkfs
/squashfs
36 @mkdir
-p
$(BUILD_DIR
)/root
/jffs
37 $(STAGING_DIR
)/bin
/mksquashfs-lzma
$(BUILD_DIR
)/root
$(KDIR
)/root.squashfs
-nopad
-noappend
-root-owned
$(SQUASHFS_OPTS
)
38 $(call Image
/Build
,squashfs
)
42 ifeq ($(CONFIG_TARGET_ROOTFS_TGZ
),y
)
44 tar -zcf
$(BIN_DIR
)/openwrt-rootfs.tgz
--owner
=root
--group
=root
-C
$(BUILD_DIR
)/root
/ .
49 define Image
/mkfs
/prepare
/default
50 find
$(BUILD_DIR
)/root
-type f
-not
-perm
+0100 | xargs chmod
0644
51 find
$(BUILD_DIR
)/root
-type f
-perm
+0100 | xargs chmod
0755
52 find
$(BUILD_DIR
)/root
-type d | xargs chmod
0755
53 mkdir
-p
$(BUILD_DIR
)/root
/tmp
54 chmod
0777 $(BUILD_DIR
)/root
/tmp
57 define Image
/mkfs
/prepare
58 $(call Image
/mkfs
/prepare
/default
)
67 $(call Image
/mkfs
/prepare
)
68 $(call Image
/BuildKernel
)
69 $(call Image
/mkfs
/jffs2
)
70 $(call Image
/mkfs
/squashfs
)
71 $(call Image
/mkfs
/tgz
)
83 compile
: compile-targets
84 install: compile install-targets