1config BR2_TARGET_ROOTFS_TAR 2 bool "tar the root filesystem" 3 default y 4 help 5 Build a tar archive of the root filesystem 6 7choice 8 prompt "Compression method" 9 default BR2_TARGET_ROOTFS_TAR_NONE 10 depends on BR2_TARGET_ROOTFS_TAR 11 help 12 Select compressor for tar archive of the root filesystem 13 14config BR2_TARGET_ROOTFS_TAR_NONE 15 bool "no compression" 16 help 17 Do not compress the tarball. 18 19config BR2_TARGET_ROOTFS_TAR_GZIP 20 bool "gzip" 21 help 22 Do compress the tarball with gzip. 23 24config BR2_TARGET_ROOTFS_TAR_BZIP2 25 bool "bzip2" 26 help 27 Do compress the tarball with bzip2. 28 29config BR2_TARGET_ROOTFS_TAR_LZ4 30 bool "lz4" 31 help 32 Do compress the tarball with lz4. 33 34config BR2_TARGET_ROOTFS_TAR_LZMA 35 bool "lzma" 36 help 37 Do compress the tarball with lzma. 38 39config BR2_TARGET_ROOTFS_TAR_LZO 40 bool "lzo" 41 help 42 Do compress the tarball with lzop. 43 44config BR2_TARGET_ROOTFS_TAR_XZ 45 bool "xz" 46 help 47 Do compress the tarball with xz. 48 49endchoice 50 51config BR2_TARGET_ROOTFS_TAR_OPTIONS 52 string "other random options to pass to tar" 53 default "" 54 depends on BR2_TARGET_ROOTFS_TAR 55 help 56 Any other flags you want to pass to tar 57 Refer to tar --help for details 58