xorg-server: not available with musl on ARM
[buildroot-gz.git] / fs / tar / Config.in
blob63663ecd6fc1bcec4c841c5c539de618ebcca864
1 config BR2_TARGET_ROOTFS_TAR
2         bool "tar the root filesystem"
3         default y
4         help
5           Build a tar archive of the root filesystem
7 choice
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
14 config BR2_TARGET_ROOTFS_TAR_NONE
15         bool "no compression"
16         help
17           Do not compress the tarball.
19 config BR2_TARGET_ROOTFS_TAR_GZIP
20         bool "gzip"
21         help
22           Do compress the tarball with gzip.
24 config BR2_TARGET_ROOTFS_TAR_BZIP2
25         bool "bzip2"
26         help
27           Do compress the tarball with bzip2.
29 config BR2_TARGET_ROOTFS_TAR_LZMA
30         bool "lzma"
31         help
32           Do compress the tarball with lzma.
34 config BR2_TARGET_ROOTFS_TAR_LZO
35         bool "lzo"
36         help
37           Do compress the tarball with lzop.
39 config BR2_TARGET_ROOTFS_TAR_XZ
40         bool "xz"
41         help
42           Do compress the tarball with xz.
44 endchoice
46 config BR2_TARGET_ROOTFS_TAR_OPTIONS
47         string "other random options to pass to tar"
48         depends on BR2_TARGET_ROOTFS_TAR
49         default ""
50         help
51           Any other flags you want to pass to tar
52           Refer to tar --help for details