also install required files for HAVE_INCLUDES
[buildroot.git] / target / cpio / Config.in
blob3f25cc60bf532e4c6559c647e5c918f6fc8b5322
1 config BR2_TARGET_ROOTFS_CPIO
2         bool "cpio the root filesystem"
3         default n
4         select BR2_HOST_FAKEROOT
5         help
6           Build a cpio archive of the root filesystem
8 choice
9         prompt "Compression method"
10         default BR2_TARGET_ROOTFS_CPIO_NONE
11         depends on BR2_TARGET_ROOTFS_CPIO
12         help
13           Select compressor for cpio filesystem of the root filesystem
15 config BR2_TARGET_ROOTFS_CPIO_NONE
16         bool "no compression"
17         help
18          Do not compress the cpio filesystem.
20 config BR2_TARGET_ROOTFS_CPIO_GZIP
21         bool "gzip"
22         help
23          Do compress the cpio filesystem with gzip.
24          Note that you either have to have gzip installed on your host
25          or select to build a gzip for your host. See the packages submenu.
27 config BR2_TARGET_ROOTFS_CPIO_BZIP2
28         bool "bzip2"
29         help
30          Do compress the cpio filesystem with bzip2.
31          Note that you either have to have bzip2 installed on your host
32          or select to build a bzip2 for your host. See the packages submenu.
34 config BR2_TARGET_ROOTFS_CPIO_LZMA
35         bool "lzma"
36         help
37          Do compress the cpio filesystem with lzma.
38          Note that you either have to have lzma installed on your host
39          or select to build a lzma for your host. See the packages submenu.
41 endchoice
43 config BR2_TARGET_ROOTFS_CPIO_COPYTO
44         string "also copy the image to..."
45         depends on BR2_TARGET_ROOTFS_CPIO
46         default ""
47         help
48           Copies the resulting image to a secondary location
49           like a tftp server's root directory.
50           
51           Example: $(IMAGE)-$(DATE).cpio$(CPIO_ROOTFS_COMPRESSOR_EXT)