diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-14 15:47:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-14 15:47:50 +0000 |
commit | 787635669bc03bc3e4805dd8ebf676d9ba16564a (patch) | |
tree | d16158512a0ac8defc3592e1a862988bc80436b3 /target/ext2/Config.in | |
parent | c07e327bab1f5eb3f41b234fd92c7f923605ac86 (diff) | |
download | buildroot-novena-787635669bc03bc3e4805dd8ebf676d9ba16564a.tar.gz buildroot-novena-787635669bc03bc3e4805dd8ebf676d9ba16564a.zip |
- update the ext2 rootfs compression mechanism to allow for gzip, bzip2, lzma or none
Diffstat (limited to 'target/ext2/Config.in')
-rw-r--r-- | target/ext2/Config.in | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/target/ext2/Config.in b/target/ext2/Config.in index 7f15884ff..8d733e5ef 100644 --- a/target/ext2/Config.in +++ b/target/ext2/Config.in @@ -29,17 +29,40 @@ config BR2_TARGET_ROOTFS_EXT2_OUTPUT depends on BR2_TARGET_ROOTFS_EXT2 default "$(IMAGE).ext2" -config BR2_TARGET_ROOTFS_EXT2_GZ - bool "gzip the output file" - depends on BR2_TARGET_ROOTFS_EXT2 - default n +choice + prompt "Compression method" + default BR2_TARGET_ROOTFS_EXT2_NONE + depends on BR2_TARGET_ROOTFS_EXT2 + help + Select compressor for ext2 filesystem of the root filesystem + +config BR2_TARGET_ROOTFS_EXT2_NONE + bool "no compression" + help + Do not compress the ext2 filesystem. + +config BR2_TARGET_ROOTFS_EXT2_GZIP + bool "gzip" + help + Do compress the ext2 filesystem with gzip. + Note that you either have to have gzip installed on your host + or select to build a gzip for your host. See the packages submenu. + +config BR2_TARGET_ROOTFS_EXT2_BZIP2 + bool "bzip2" + help + Do compress the ext2 filesystem with bzip2. + Note that you either have to have bzip2 installed on your host + or select to build a bzip2 for your host. See the packages submenu. config BR2_TARGET_ROOTFS_EXT2_LZMA - bool "lzma the output file" - depends on BR2_TARGET_ROOTFS_EXT2 - select BR2_PACKAGE_LZMA_HOST - default n + bool "lzma" + help + Do compress the ext2 filesystem with lzma. + Note that you either have to have lzma installed on your host + or select to build a lzma for your host. See the packages submenu. +endchoice config BR2_TARGET_ROOTFS_EXT2_COPYTO string "also copy the image to..." |