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 / cpio / Config.in
1 config BR2_TARGET_ROOTFS_CPIO
2         bool "cpio the root filesystem (for use as an initial RAM filesystem)"
3         help
4           Build a cpio archive of the root filesystem.  This is typically
5           used for an initial RAM filesystem that is passed to the kernel
6           by the bootloader.
7
8 if BR2_TARGET_ROOTFS_CPIO
9
10 choice
11         prompt "Compression method"
12         default BR2_TARGET_ROOTFS_CPIO_NONE
13         help
14           Select compressor for cpio filesystem of the root filesystem.
15           If you use the cpio archive as an initial RAM filesystem, make
16           sure the kernel contains the decompression algorithm selected
17           here.
18
19 config BR2_TARGET_ROOTFS_CPIO_NONE
20         bool "no compression"
21         help
22           Do not compress the cpio filesystem.
23
24 config BR2_TARGET_ROOTFS_CPIO_GZIP
25         bool "gzip"
26         help
27           Do compress the cpio filesystem with gzip.
28
29 config BR2_TARGET_ROOTFS_CPIO_BZIP2
30         bool "bzip2"
31         help
32           Do compress the cpio filesystem with bzip2.
33
34 config BR2_TARGET_ROOTFS_CPIO_LZMA
35         bool "lzma"
36         help
37           Do compress the cpio filesystem with lzma.
38
39 config BR2_TARGET_ROOTFS_CPIO_LZO
40         bool "lzo"
41         help
42           Do compress the cpio filesystem with lzop.
43
44 config BR2_TARGET_ROOTFS_CPIO_XZ
45         bool "xz"
46         help
47           Do compress the cpio filesystem with xz.
48
49 endchoice
50
51 config BR2_TARGET_ROOTFS_CPIO_UIMAGE
52         bool "Create U-Boot image of the root filesystem"
53         select BR2_PACKAGE_HOST_UBOOT_TOOLS
54         help
55           Add a U-Boot header to the cpio root filesystem. This allows
56           the initramfs to be loaded with the bootm command in U-Boot.
57
58           The U-Boot image will be called rootfs.cpio.uboot
59
60 endif # BR2_TARGET_ROOTFS_CPIO