2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(INCLUDE_DIR
)/prereq.mk
10 include $(INCLUDE_DIR
)/kernel.mk
11 include $(INCLUDE_DIR
)/host.mk
15 override MAKE
:=$(SUBMAKE
)
16 KDIR
=$(KERNEL_BUILD_DIR
)
18 IMG_PREFIX
:=openwrt-
$(BOARD
)$(if
$(SUBTARGET
),-$(SUBTARGET
))
20 ifneq ($(CONFIG_BIG_ENDIAN
),)
21 JFFS2OPTS
:= --pad
--big-endian
--squash
-v
23 JFFS2OPTS
:= --pad
--little-endian
--squash
-v
26 ifeq ($(CONFIG_JFFS2_RTIME
),y
)
29 ifeq ($(CONFIG_JFFS2_ZLIB
),y
)
32 ifeq ($(CONFIG_JFFS2_LZMA
),y
)
33 JFFS2OPTS
+= -X lzma
--compression-mode
=size
35 ifneq ($(CONFIG_JFFS2_RTIME
),y
)
38 ifneq ($(CONFIG_JFFS2_ZLIB
),y
)
41 ifneq ($(CONFIG_JFFS2_LZMA
),y
)
46 LZMA_XZ_OPTIONS
:= -Xpreset
9 -Xe
-Xlc
0 -Xlp
2 -Xpb
2
47 ifeq ($(CONFIG_SQUASHFS_LZMA
),y
)
48 SQUASHFSCOMP
:= lzma
$(LZMA_XZ_OPTIONS
)
50 ifeq ($(CONFIG_SQUASHFS_XZ
),y
)
51 SQUASHFSCOMP
:= xz
$(LZMA_XZ_OPTIONS
)
54 JFFS2_BLOCKSIZE ?
= 64k
128k
57 echo
-ne
'\xde\xad\xc0\xde' >> $(1)
60 # pad to 4k, 8k, 64k, 128k 256k and add jffs2 end-of-filesystem mark
61 define prepare_generic_squashfs
62 $(STAGING_DIR_HOST
)/bin
/padjffs2
$(1) 4 8 64 128 256
66 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),)
68 define Image
/BuildKernel
69 cp
$(KDIR
)/vmlinux.elf
$(BIN_DIR
)/$(IMG_PREFIX
)-vmlinux.elf
70 $(call Image
/Build
/Initramfs
)
75 ifneq ($(CONFIG_TARGET_ROOTFS_JFFS2
),)
76 define Image
/mkfs
/jffs2
/sub
77 # FIXME: removing this line will cause strange behaviour in the foreach loop below
78 $(STAGING_DIR_HOST
)/bin
/mkfs.jffs2
$(JFFS2OPTS
) -e
$(patsubst %k
,%KiB
,$(1)) -o
$(KDIR
)/root.jffs2-
$(1) -d
$(TARGET_DIR
) -v
2>&1 1>/dev
/null | awk
'/^.+$$$$/'
79 $(call add_jffs2_mark
,$(KDIR
)/root.jffs2-
$(1))
80 $(call Image
/Build
,jffs2-
$(1))
82 define Image
/mkfs
/jffs2
83 $(foreach SZ
,$(JFFS2_BLOCKSIZE
),$(call Image
/mkfs
/jffs2
/sub
,$(SZ
)))
87 ifneq ($(CONFIG_TARGET_ROOTFS_SQUASHFS
),)
88 define Image
/mkfs
/squashfs
89 @mkdir
-p
$(TARGET_DIR
)/overlay
90 $(STAGING_DIR_HOST
)/bin
/mksquashfs4
$(TARGET_DIR
) $(KDIR
)/root.squashfs
-nopad
-noappend
-root-owned
-comp
$(SQUASHFSCOMP
) -processors
1
91 $(call Image
/Build
,squashfs
)
95 ifneq ($(CONFIG_TARGET_ROOTFS_UBIFS
),)
96 define Image
/mkfs
/ubifs
97 $(CP
) .
/ubinize.cfg
$(KDIR
)
98 $(STAGING_DIR_HOST
)/bin
/mkfs.ubifs
$(UBIFS_OPTS
) -o
$(KDIR
)/root.ubifs
-d
$(TARGET_DIR
)
100 $(STAGING_DIR_HOST
)/bin
/ubinize
$(UBINIZE_OPTS
) -o
$(KDIR
)/root.ubi ubinize.cfg
)
101 $(call Image
/Build
,ubi
)
107 ifneq ($(CONFIG_TARGET_ROOTFS_CPIOGZ
),)
108 define Image
/mkfs
/cpiogz
109 ( cd
$(TARGET_DIR
); find . | cpio
-o
-H newc | gzip
-9 >$(BIN_DIR
)/$(IMG_PREFIX
)-rootfs.cpio.gz
)
113 ifneq ($(CONFIG_TARGET_ROOTFS_TARGZ
),)
114 define Image
/mkfs
/targz
115 # Preserve permissions (-p) when building as non-root user
116 $(TAR
) -czpf
$(BIN_DIR
)/$(IMG_PREFIX
)-rootfs.
tar.gz
--numeric-owner
--owner
=0 --group
=0 -C
$(TARGET_DIR
)/ .
120 ifneq ($(CONFIG_TARGET_ROOTFS_EXT4FS
),)
121 E2SIZE
=$(shell echo
$$(($(CONFIG_TARGET_ROOTFS_PARTSIZE
)*1024)))
123 define Image
/mkfs
/ext4
124 # generate an ext2 fs
125 $(STAGING_DIR_HOST
)/bin
/genext2fs
-U
-b
$(E2SIZE
) -N
$(CONFIG_TARGET_ROOTFS_MAXINODE
) -d
$(TARGET_DIR
)/ $(KDIR
)/root.ext4
127 $(STAGING_DIR_HOST
)/bin
/tune2fs
-O extents
,uninit_bg
,dir_index
$(KDIR
)/root.ext4
129 $(STAGING_DIR_HOST
)/bin
/e2fsck
-fy
$(KDIR
)/root.ext4
130 $(call Image
/Build
,ext4
)
134 ifneq ($(CONFIG_TARGET_ROOTFS_ISO
),)
135 define Image
/mkfs
/iso
136 $(call Image
/Build
,iso
)
141 define Image
/mkfs
/prepare
/default
142 # Use symbolic permissions to avoid clobbering SUID/SGID/sticky bits
143 - $(FIND
) $(TARGET_DIR
) -type f
-not
-perm
+0100 -not
-name
'ssh_host*' -print0 |
$(XARGS
) -0 chmod u
+rw
,g
+r
,o
+r
144 - $(FIND
) $(TARGET_DIR
) -type f
-perm
+0100 -print0 |
$(XARGS
) -0 chmod u
+rwx
,g
+rx
,o
+rx
145 - $(FIND
) $(TARGET_DIR
) -type d
-print0 |
$(XARGS
) -0 chmod u
+rwx
,g
+rx
,o
+rx
146 $(INSTALL_DIR
) $(TARGET_DIR
)/tmp
147 chmod
0777 $(TARGET_DIR
)/tmp
150 define Image
/mkfs
/prepare
151 $(call Image
/mkfs
/prepare
/default
)
155 define Image
/Checksum
157 $(FIND
) -maxdepth
1 -type f \
! -name
'md5sums' -printf
"%P\n" |
sort | xargs \
158 md5sum
--binary
> md5sums \
169 compile
: compile-targets FORCE
170 $(call Build
/Compile
)
176 install: compile install-targets FORCE
177 $(call Image
/Prepare
)
178 $(call Image
/mkfs
/prepare
)
179 $(call Image
/BuildKernel
)
180 $(call Image
/mkfs
/cpiogz
)
181 $(call Image
/mkfs
/targz
)
182 $(call Image
/mkfs
/ext4
)
183 $(call Image
/mkfs
/iso
)
184 $(call Image
/mkfs
/jffs2
)
185 $(call Image
/mkfs
/squashfs
)
186 $(call Image
/mkfs
/ubifs
)
187 $(call Image
/Checksum
)
189 install: compile install-targets
190 $(call Image
/BuildKernel
)
191 $(call Image
/mkfs
/cpiogz
)
192 $(call Image
/mkfs
/targz
)
193 $(call Image
/mkfs
/ext4
)
194 $(call Image
/mkfs
/iso
)
195 $(call Image
/mkfs
/jffs2
)
196 $(call Image
/mkfs
/squashfs
)
197 $(call Image
/mkfs
/ubifs
)
198 $(call Image
/Checksum
)