Przeglądaj źródła

fs/common: add support for LZO and XZ compression methods

Add support for LZO and XZ compression methods to cpio, ext2, tar and
ubifs filesystem targets.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Gustavo Zacarias 12 lat temu
rodzic
commit
5419651bfa
5 zmienionych plików z 55 dodań i 9 usunięć
  1. 7 1
      fs/common.mk
  2. 14 4
      fs/cpio/Config.in
  3. 10 0
      fs/ext2/Config.in
  4. 14 4
      fs/tar/Config.in
  5. 10 0
      fs/ubifs/Config.in

+ 7 - 1
fs/common.mk

@@ -39,7 +39,7 @@ ROOTFS_DEVICE_TABLES = $(call qstrip,$(BR2_ROOTFS_DEVICE_TABLE) \
 define ROOTFS_TARGET_INTERNAL
 define ROOTFS_TARGET_INTERNAL
 
 
 # extra deps
 # extra deps
-ROOTFS_$(2)_DEPENDENCIES += host-fakeroot host-makedevs $$(if $$(BR2_TARGET_ROOTFS_$(2)_LZMA),host-lzma)
+ROOTFS_$(2)_DEPENDENCIES += host-fakeroot host-makedevs $$(if $$(BR2_TARGET_ROOTFS_$(2)_LZMA),host-lzma) $$(if $$(BR2_TARGET_ROOTFS_$(2)_LZO),host-lzop) $$(if $$(BR2_TARGET_ROOTFS_$(2)_XZ),host-xz)
 
 
 $$(BINARIES_DIR)/rootfs.$(1): $$(ROOTFS_$(2)_DEPENDENCIES)
 $$(BINARIES_DIR)/rootfs.$(1): $$(ROOTFS_$(2)_DEPENDENCIES)
 	@$$(call MESSAGE,"Generating root filesystem image rootfs.$(1)")
 	@$$(call MESSAGE,"Generating root filesystem image rootfs.$(1)")
@@ -70,6 +70,12 @@ endif
 ifeq ($$(BR2_TARGET_ROOTFS_$(2)_LZMA),y)
 ifeq ($$(BR2_TARGET_ROOTFS_$(2)_LZMA),y)
 	$$(LZMA) -9 -c $$@ > $$@.lzma
 	$$(LZMA) -9 -c $$@ > $$@.lzma
 endif
 endif
+ifeq ($$(BR2_TARGET_ROOTFS_$(2)_LZO),y)
+	$$(LZOP) -9 -c $$@ > $$@.lzo
+endif
+ifeq ($$(BR2_TARGET_ROOTFS_$(2)_XZ),y)
+	$(XZ) -9 -C crc32 -c $$@ > $$@.xz
+endif
 
 
 rootfs-$(1)-show-depends:
 rootfs-$(1)-show-depends:
 	@echo $$(ROOTFS_$(2)_DEPENDENCIES)
 	@echo $$(ROOTFS_$(2)_DEPENDENCIES)

+ 14 - 4
fs/cpio/Config.in

@@ -18,22 +18,32 @@ choice
 config BR2_TARGET_ROOTFS_CPIO_NONE
 config BR2_TARGET_ROOTFS_CPIO_NONE
         bool "no compression"
         bool "no compression"
         help
         help
-         Do not compress the cpio filesystem.
+          Do not compress the cpio filesystem.
 
 
 config BR2_TARGET_ROOTFS_CPIO_GZIP
 config BR2_TARGET_ROOTFS_CPIO_GZIP
         bool "gzip"
         bool "gzip"
         help
         help
-         Do compress the cpio filesystem with gzip.
+          Do compress the cpio filesystem with gzip.
 
 
 config BR2_TARGET_ROOTFS_CPIO_BZIP2
 config BR2_TARGET_ROOTFS_CPIO_BZIP2
         bool "bzip2"
         bool "bzip2"
         help
         help
-         Do compress the cpio filesystem with bzip2.
+          Do compress the cpio filesystem with bzip2.
 
 
 config BR2_TARGET_ROOTFS_CPIO_LZMA
 config BR2_TARGET_ROOTFS_CPIO_LZMA
         bool "lzma"
         bool "lzma"
         help
         help
-         Do compress the cpio filesystem with lzma.
+          Do compress the cpio filesystem with lzma.
+
+config BR2_TARGET_ROOTFS_CPIO_LZO
+	bool "lzo"
+	help
+	  Do compress the cpio filesystem with lzop.
+
+config BR2_TARGET_ROOTFS_CPIO_XZ
+	bool "xz"
+	help
+	  Do compress the cpio filesystem with xz.
 
 
 endchoice
 endchoice
 
 

+ 10 - 0
fs/ext2/Config.in

@@ -79,6 +79,16 @@ config BR2_TARGET_ROOTFS_EXT2_LZMA
 	help
 	help
 	  Do compress the ext2/3/4 filesystem with lzma.
 	  Do compress the ext2/3/4 filesystem with lzma.
 
 
+config BR2_TARGET_ROOTFS_EXT2_LZO
+	bool "lzo"
+	help
+	  Do compress the ext2 filesystem with lzop.
+
+config BR2_TARGET_ROOTFS_EXT2_XZ
+	bool "xz"
+	help
+	  Do compress the ext2 filesystem with xz.
+
 endchoice
 endchoice
 
 
 endif # BR2_TARGET_ROOTFS_EXT2
 endif # BR2_TARGET_ROOTFS_EXT2

+ 14 - 4
fs/tar/Config.in

@@ -14,22 +14,32 @@ choice
 config BR2_TARGET_ROOTFS_TAR_NONE
 config BR2_TARGET_ROOTFS_TAR_NONE
 	bool "no compression"
 	bool "no compression"
 	help
 	help
-	 Do not compress the tarball.
+	  Do not compress the tarball.
 
 
 config BR2_TARGET_ROOTFS_TAR_GZIP
 config BR2_TARGET_ROOTFS_TAR_GZIP
 	bool "gzip"
 	bool "gzip"
 	help
 	help
-	 Do compress the tarball with gzip.
+	  Do compress the tarball with gzip.
 
 
 config BR2_TARGET_ROOTFS_TAR_BZIP2
 config BR2_TARGET_ROOTFS_TAR_BZIP2
 	bool "bzip2"
 	bool "bzip2"
 	help
 	help
-	 Do compress the tarball with bzip2.
+	  Do compress the tarball with bzip2.
 
 
 config BR2_TARGET_ROOTFS_TAR_LZMA
 config BR2_TARGET_ROOTFS_TAR_LZMA
 	bool "lzma"
 	bool "lzma"
 	help
 	help
-	 Do compress the tarball with lzma.
+	  Do compress the tarball with lzma.
+
+config BR2_TARGET_ROOTFS_TAR_LZO
+	bool "lzo"
+	help
+	  Do compress the tarball with lzop.
+
+config BR2_TARGET_ROOTFS_TAR_XZ
+	bool "xz"
+	help
+	  Do compress the tarball with xz.
 
 
 endchoice
 endchoice
 
 

+ 10 - 0
fs/ubifs/Config.in

@@ -75,6 +75,16 @@ config BR2_TARGET_ROOTFS_UBIFS_LZMA
 	help
 	help
 	  Do compress the ubifs filesystem with lzma.
 	  Do compress the ubifs filesystem with lzma.
 
 
+config BR2_TARGET_ROOTFS_UBIFS_LZO
+	bool "lzo"
+	help
+	  Do compress the ubifs filesystem with lzop.
+
+config BR2_TARGET_ROOTFS_UBIFS_XZ
+	bool "xz"
+	help
+	  Do compress the ubifs filesystem with xz.
+
 endchoice
 endchoice
 
 
 config BR2_TARGET_ROOTFS_UBI
 config BR2_TARGET_ROOTFS_UBI