diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-01-22 01:03:43 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-04-24 22:18:13 +0200 |
commit | 5419651bfa38355b2b2015868811197ef18577d0 (patch) | |
tree | a5b37dc69ab1e8db71b95c3b4d639bf044736409 /fs/ubifs | |
parent | 5b935275ec540400b417bd28649e510b4358416a (diff) | |
download | buildroot-novena-5419651bfa38355b2b2015868811197ef18577d0.tar.gz buildroot-novena-5419651bfa38355b2b2015868811197ef18577d0.zip |
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>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/Config.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/ubifs/Config.in b/fs/ubifs/Config.in index a5ef5f2b2..0a798d861 100644 --- a/fs/ubifs/Config.in +++ b/fs/ubifs/Config.in @@ -75,6 +75,16 @@ config BR2_TARGET_ROOTFS_UBIFS_LZMA help 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 config BR2_TARGET_ROOTFS_UBI |