The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / fs / tar / Config.in
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
6
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
13
14 config BR2_TARGET_ROOTFS_TAR_NONE
15         bool "no compression"
16         help
17           Do not compress the tarball.
18
19 config BR2_TARGET_ROOTFS_TAR_GZIP
20         bool "gzip"
21         help
22           Do compress the tarball with gzip.
23
24 config BR2_TARGET_ROOTFS_TAR_BZIP2
25         bool "bzip2"
26         help
27           Do compress the tarball with bzip2.
28
29 config BR2_TARGET_ROOTFS_TAR_LZMA
30         bool "lzma"
31         help
32           Do compress the tarball with lzma.
33
34 config BR2_TARGET_ROOTFS_TAR_LZO
35         bool "lzo"
36         help
37           Do compress the tarball with lzop.
38
39 config BR2_TARGET_ROOTFS_TAR_XZ
40         bool "xz"
41         help
42           Do compress the tarball with xz.
43
44 endchoice
45
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