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
)
45 SQUASHFS_BLOCKSIZE
:= 256k
46 SQUASHFSOPT
:= -b
$(SQUASHFS_BLOCKSIZE
)
48 LZMA_XZ_OPTIONS
:= -Xpreset
9 -Xe
-Xlc
0 -Xlp
2 -Xpb
2
49 ifeq ($(CONFIG_SQUASHFS_LZMA
),y
)
50 SQUASHFSCOMP
:= lzma
$(LZMA_XZ_OPTIONS
)
52 ifeq ($(CONFIG_SQUASHFS_XZ
),y
)
53 SQUASHFSCOMP
:= xz
$(LZMA_XZ_OPTIONS
)
56 JFFS2_BLOCKSIZE ?
= 64k
128k
59 echo
-ne
'\xde\xad\xc0\xde' >> $(1)
62 # pad to 4k, 8k, 64k, 128k 256k and add jffs2 end-of-filesystem mark
63 define prepare_generic_squashfs
64 $(STAGING_DIR_HOST
)/bin
/padjffs2
$(1) 4 8 64 128 256
68 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),)
70 define Image
/BuildKernel
71 cp
$(KDIR
)/vmlinux.elf
$(BIN_DIR
)/$(IMG_PREFIX
)-vmlinux.elf
72 $(call Image
/Build
/Initramfs
)
77 ifneq ($(CONFIG_TARGET_ROOTFS_JFFS2
),)
78 define Image
/mkfs
/jffs2
/sub
79 # FIXME: removing this line will cause strange behaviour in the foreach loop below
80 $(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
'/^.+$$$$/'
81 $(call add_jffs2_mark
,$(KDIR
)/root.jffs2-
$(1))
82 $(call Image
/Build
,jffs2-
$(1))
84 define Image
/mkfs
/jffs2
85 $(foreach SZ
,$(JFFS2_BLOCKSIZE
),$(call Image
/mkfs
/jffs2
/sub
,$(SZ
)))
89 ifneq ($(CONFIG_TARGET_ROOTFS_SQUASHFS
),)
90 define Image
/mkfs
/squashfs
91 @mkdir
-p
$(TARGET_DIR
)/overlay
92 $(STAGING_DIR_HOST
)/bin
/mksquashfs4
$(TARGET_DIR
) $(KDIR
)/root.squashfs
-nopad
-noappend
-root-owned
-comp
$(SQUASHFSCOMP
) $(SQUASHFSOPT
) -processors
$(if
$(CONFIG_PKG_BUILD_JOBS
),$(CONFIG_PKG_BUILD_JOBS
),1)
93 $(call Image
/Build
,squashfs
)
97 ifneq ($(CONFIG_TARGET_ROOTFS_UBIFS
),)
98 define Image
/mkfs
/ubifs
99 $(CP
) .
/ubinize.cfg
$(KDIR
)
100 $(STAGING_DIR_HOST
)/bin
/mkfs.ubifs
$(UBIFS_OPTS
) -o
$(KDIR
)/root.ubifs
-d
$(TARGET_DIR
)
102 $(STAGING_DIR_HOST
)/bin
/ubinize
$(UBINIZE_OPTS
) -o
$(KDIR
)/root.ubi ubinize.cfg
)
103 $(call Image
/Build
,ubi
)
109 ifneq ($(CONFIG_TARGET_ROOTFS_CPIOGZ
),)
110 define Image
/mkfs
/cpiogz
111 ( cd
$(TARGET_DIR
); find . | cpio
-o
-H newc | gzip
-9 >$(BIN_DIR
)/$(IMG_PREFIX
)-rootfs.cpio.gz
)
115 ifneq ($(CONFIG_TARGET_ROOTFS_TARGZ
),)
116 define Image
/mkfs
/targz
117 # Preserve permissions (-p) when building as non-root user
118 $(TAR
) -czpf
$(BIN_DIR
)/$(IMG_PREFIX
)-rootfs.
tar.gz
--numeric-owner
--owner
=0 --group
=0 -C
$(TARGET_DIR
)/ .
122 ifneq ($(CONFIG_TARGET_ROOTFS_EXT4FS
),)
123 E2SIZE
=$(shell echo
$$(($(CONFIG_TARGET_ROOTFS_PARTSIZE
)*1024)))
125 define Image
/mkfs
/ext4
126 # generate an ext2 fs
127 $(STAGING_DIR_HOST
)/bin
/genext2fs
-U
-b
$(E2SIZE
) -N
$(CONFIG_TARGET_ROOTFS_MAXINODE
) -d
$(TARGET_DIR
)/ $(KDIR
)/root.ext4
129 $(STAGING_DIR_HOST
)/bin
/tune2fs
-O extents
,uninit_bg
,dir_index
$(KDIR
)/root.ext4
131 $(STAGING_DIR_HOST
)/bin
/e2fsck
-fy
$(KDIR
)/root.ext4
132 $(call Image
/Build
,ext4
)
136 ifneq ($(CONFIG_TARGET_ROOTFS_ISO
),)
137 define Image
/mkfs
/iso
138 $(call Image
/Build
,iso
)
143 define Image
/mkfs
/prepare
/default
144 # Use symbolic permissions to avoid clobbering SUID/SGID/sticky bits
145 - $(FIND
) $(TARGET_DIR
) -type f
-not
-perm
+0100 -not
-name
'ssh_host*' -print0 |
$(XARGS
) -0 chmod u
+rw
,g
+r
,o
+r
146 - $(FIND
) $(TARGET_DIR
) -type f
-perm
+0100 -print0 |
$(XARGS
) -0 chmod u
+rwx
,g
+rx
,o
+rx
147 - $(FIND
) $(TARGET_DIR
) -type d
-print0 |
$(XARGS
) -0 chmod u
+rwx
,g
+rx
,o
+rx
148 $(INSTALL_DIR
) $(TARGET_DIR
)/tmp
149 chmod
0777 $(TARGET_DIR
)/tmp
152 define Image
/mkfs
/prepare
153 $(call Image
/mkfs
/prepare
/default
)
157 define Image
/Checksum
159 $(FIND
) -maxdepth
1 -type f \
! -name
'md5sums' -printf
"%P\n" |
sort | xargs \
160 md5sum
--binary
> md5sums \
171 compile
: compile-targets FORCE
172 $(call Build
/Compile
)
178 install: compile install-targets FORCE
179 $(call Image
/Prepare
)
180 $(call Image
/mkfs
/prepare
)
181 $(call Image
/BuildKernel
)
182 $(call Image
/mkfs
/cpiogz
)
183 $(call Image
/mkfs
/targz
)
184 $(call Image
/mkfs
/ext4
)
185 $(call Image
/mkfs
/iso
)
186 $(call Image
/mkfs
/jffs2
)
187 $(call Image
/mkfs
/squashfs
)
188 $(call Image
/mkfs
/ubifs
)
189 $(call Image
/Checksum
)
191 install: compile install-targets
192 $(call Image
/BuildKernel
)
193 $(call Image
/mkfs
/cpiogz
)
194 $(call Image
/mkfs
/targz
)
195 $(call Image
/mkfs
/ext4
)
196 $(call Image
/mkfs
/iso
)
197 $(call Image
/mkfs
/jffs2
)
198 $(call Image
/mkfs
/squashfs
)
199 $(call Image
/mkfs
/ubifs
)
200 $(call Image
/Checksum
)