kernel-headers: bump 2.6.27.x / 2.6.29.x / 2.6.30.x stable versions
[avatt.git] / target / ubifs / Config.in
blob886c34bfb1f2217e124754015a624c38ded09ef8
1 config BR2_TARGET_ROOTFS_UBIFS
2         bool "ubifs root filesystem"
3         depends on BROKEN # upstream git gone, should use mtd-utils
4         select BR2_HOST_FAKEROOT
5         help
6           Build a ubifs root filesystem
8 config BR2_TARGET_ROOTFS_UBIFS_LEBSIZE
9         hex "UBI logical erase block size"
10         depends on BR2_TARGET_ROOTFS_UBIFS
11         default 0x1f800
13 config BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE
14         hex "UBI minimum I/O size"
15         depends on BR2_TARGET_ROOTFS_UBIFS
16         default 0x800
17         help
18           Some comment required here
20 config BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT
21         int "Maximum LEB count"
22         depends on BR2_TARGET_ROOTFS_UBIFS
23         default 2048
24         help
25           Some comment required here
27 config BR2_TARGET_ROOTFS_UBIFS_OUTPUT
28         string "Output File"
29         depends on BR2_TARGET_ROOTFS_UBIFS
30         default "$(IMAGE).ubifs"
32 choice
33         prompt "ubifs runtime compression"
34         default BR2_TARGET_ROOTFS_UBIFS_RT_LZO
35         depends on BR2_TARGET_ROOTFS_UBIFS
36         help
37           Select which compression format to use at run-time within
38           the ubifs file system.
40 config BR2_TARGET_ROOTFS_UBIFS_RT_NONE
41         bool "no compression"
42         help
43           Don't use run-time compression.
45 config BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB
46         bool "gzip"
47         help
48           Use zlib compression at run-time.
50 config BR2_TARGET_ROOTFS_UBIFS_RT_LZO
51         bool "lzo"
52         help
53           Use lzo compression at run-time.
55 endchoice
57 choice
58         prompt "Compression method"
59         default BR2_TARGET_ROOTFS_UBIFS_NONE
60         depends on BR2_TARGET_ROOTFS_UBIFS
61         help
62           Select which compression format to compress the final image
63           into.
65 config BR2_TARGET_ROOTFS_UBIFS_NONE
66         bool "no compression"
67         help
68           Do not compress the ubifs filesystem.
70 config BR2_TARGET_ROOTFS_UBIFS_GZIP
71         bool "gzip"
72         help
73           Do compress the ubifs filesystem with gzip.
74           Note that you either have to have gzip installed on your
75           host or select to build a gzip for your host. See the
76           packages submenu.
78 config BR2_TARGET_ROOTFS_UBIFS_BZIP2
79         bool "bzip2"
80         help
81           Do compress the ubifs filesystem with bzip2.
82           Note that you either have to have bzip2 installed on your
83           host or select to build a bzip2 for your host. See the
84           packages submenu.
86 config BR2_TARGET_ROOTFS_UBIFS_LZMA
87         bool "lzma"
88         help
89           Do compress the ubifs filesystem with lzma.
90           Note that you either have to have lzma installed on your
91           host or select to build a lzma for your host. See the
92           packages submenu.
94 endchoice
96 config BR2_TARGET_ROOTFS_UBIFS_COPYTO
97         string "also copy the image to..."
98         depends on BR2_TARGET_ROOTFS_UBIFS
99         default ""
100         help
101           Copies the resulting image to a secondary location
102           like a tftp server's root directory.