2005-02-09 20:40:19 +01:00
|
|
|
config BR2_TARGET_ROOTFS_TAR
|
2005-09-09 02:12:13 +02:00
|
|
|
bool "tar the root filesystem"
|
2011-01-14 11:03:49 +01:00
|
|
|
default y
|
2005-02-09 17:06:06 +01:00
|
|
|
help
|
|
|
|
Build a tar archive of the root filesystem
|
|
|
|
|
2006-11-29 20:16:48 +01:00
|
|
|
choice
|
|
|
|
prompt "Compression method"
|
|
|
|
default BR2_TARGET_ROOTFS_TAR_NONE
|
|
|
|
depends on BR2_TARGET_ROOTFS_TAR
|
|
|
|
help
|
|
|
|
Select compressor for tar archive of the root filesystem
|
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_TAR_NONE
|
|
|
|
bool "no compression"
|
|
|
|
help
|
2013-01-22 02:03:43 +01:00
|
|
|
Do not compress the tarball.
|
2006-11-29 20:16:48 +01:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_TAR_GZIP
|
|
|
|
bool "gzip"
|
|
|
|
help
|
2013-01-22 02:03:43 +01:00
|
|
|
Do compress the tarball with gzip.
|
2006-11-29 20:16:48 +01:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_TAR_BZIP2
|
|
|
|
bool "bzip2"
|
|
|
|
help
|
2013-01-22 02:03:43 +01:00
|
|
|
Do compress the tarball with bzip2.
|
2006-11-29 20:16:48 +01:00
|
|
|
|
2017-10-13 21:16:55 +02:00
|
|
|
config BR2_TARGET_ROOTFS_TAR_LZ4
|
|
|
|
bool "lz4"
|
|
|
|
help
|
|
|
|
Do compress the tarball with lz4.
|
|
|
|
|
2006-11-29 20:16:48 +01:00
|
|
|
config BR2_TARGET_ROOTFS_TAR_LZMA
|
|
|
|
bool "lzma"
|
|
|
|
help
|
2013-01-22 02:03:43 +01:00
|
|
|
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.
|
2006-11-29 20:16:48 +01:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2005-02-09 17:06:06 +01:00
|
|
|
config BR2_TARGET_ROOTFS_TAR_OPTIONS
|
2006-11-29 20:16:48 +01:00
|
|
|
string "other random options to pass to tar"
|
2005-02-09 17:06:06 +01:00
|
|
|
default ""
|
2018-04-01 07:08:36 +02:00
|
|
|
depends on BR2_TARGET_ROOTFS_TAR
|
2005-02-09 17:06:06 +01:00
|
|
|
help
|
2006-11-29 20:16:48 +01:00
|
|
|
Any other flags you want to pass to tar
|
|
|
|
Refer to tar --help for details
|