create squashfs4 images if kernel version >=2.6.29
SVN-Revision: 15866
This commit is contained in:
parent
af8500e97d
commit
7b7a99c771
1 changed files with 12 additions and 1 deletions
|
@ -23,6 +23,17 @@ JFFS2OPTS := --pad --big-endian --squash
|
||||||
SQUASHFS_OPTS := -be
|
SQUASHFS_OPTS := -be
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_LINUX_2_6_29)$(CONFIG_LINUX_2_6_30),)
|
||||||
|
USE_SQUASHFS4 := y
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(USE_SQUASHFS4),)
|
||||||
|
MKSQUASHFS_CMD := $(STAGING_DIR_HOST)/bin/mksquashfs4
|
||||||
|
SQUASHFS_OPTS :=
|
||||||
|
else
|
||||||
|
MKSQUASHFS_CMD := $(STAGING_DIR_HOST)/bin/mksquashfs-lzma
|
||||||
|
endif
|
||||||
|
|
||||||
JFFS2_BLOCKSIZE ?= 64k 128k
|
JFFS2_BLOCKSIZE ?= 64k 128k
|
||||||
|
|
||||||
define add_jffs2_mark
|
define add_jffs2_mark
|
||||||
|
@ -55,7 +66,7 @@ ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_SQUASHFS),y)
|
ifeq ($(CONFIG_TARGET_ROOTFS_SQUASHFS),y)
|
||||||
define Image/mkfs/squashfs
|
define Image/mkfs/squashfs
|
||||||
@mkdir -p $(TARGET_DIR)/jffs
|
@mkdir -p $(TARGET_DIR)/jffs
|
||||||
$(STAGING_DIR_HOST)/bin/mksquashfs-lzma $(TARGET_DIR) $(KDIR)/root.squashfs -nopad -noappend -root-owned $(SQUASHFS_OPTS)
|
$(MKSQUASHFS_CMD) $(TARGET_DIR) $(KDIR)/root.squashfs -nopad -noappend -root-owned $(SQUASHFS_OPTS)
|
||||||
$(call Image/Build,squashfs)
|
$(call Image/Build,squashfs)
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue