2008-04-04 06:25:18 +02:00
|
|
|
config BR2_TARGET_ROOTFS_UBIFS
|
|
|
|
bool "ubifs root filesystem"
|
|
|
|
help
|
|
|
|
Build a ubifs root filesystem
|
|
|
|
|
2013-04-24 23:55:35 +02:00
|
|
|
if BR2_TARGET_ROOTFS_UBIFS
|
|
|
|
|
2008-04-04 06:25:18 +02:00
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_LEBSIZE
|
2013-09-08 11:33:18 +02:00
|
|
|
hex "logical eraseblock size"
|
2008-04-04 06:25:18 +02:00
|
|
|
default 0x1f800
|
2013-09-08 11:33:18 +02:00
|
|
|
help
|
|
|
|
Logical eraseblock (LEB) size. The value provided here is
|
|
|
|
passed to the -e/--leb-size option of mkfs.ubifs.
|
2008-04-04 06:25:18 +02:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE
|
2013-09-08 11:33:18 +02:00
|
|
|
hex "minimum I/O unit size"
|
2008-04-04 06:25:18 +02:00
|
|
|
default 0x800
|
|
|
|
help
|
2013-09-08 11:33:18 +02:00
|
|
|
Minimum I/O unit size. The value provided here is passed
|
|
|
|
to the -m/--min-io-size option of mkfs.ubifs/ubinize.
|
2008-04-04 06:25:18 +02:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT
|
2013-09-08 11:33:18 +02:00
|
|
|
int "maximum logical eraseblock count"
|
2008-04-04 06:25:18 +02:00
|
|
|
default 2048
|
|
|
|
help
|
2013-09-08 11:33:18 +02:00
|
|
|
Maximum logical eraseblock (LEB) count. The value provided
|
|
|
|
here is passed to the -c/--max-leb-cnt option of mkfs.ubifs.
|
2008-04-04 06:25:18 +02:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "ubifs runtime compression"
|
2008-04-08 06:28:18 +02:00
|
|
|
default BR2_TARGET_ROOTFS_UBIFS_RT_LZO
|
2008-04-04 06:25:18 +02:00
|
|
|
help
|
2008-08-27 22:19:53 +02:00
|
|
|
Select which compression format to use at run-time within
|
2013-09-08 11:33:18 +02:00
|
|
|
the ubifs file system. The choice made here is passed to
|
|
|
|
the -x/--compr option of mkfs.ubifs
|
2008-04-04 06:25:18 +02:00
|
|
|
|
2008-04-08 06:28:18 +02:00
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_RT_NONE
|
2008-04-04 06:25:18 +02:00
|
|
|
bool "no compression"
|
|
|
|
help
|
2008-04-08 06:28:18 +02:00
|
|
|
Don't use run-time compression.
|
2008-04-04 06:25:18 +02:00
|
|
|
|
2008-04-08 06:28:18 +02:00
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB
|
2008-04-04 06:25:18 +02:00
|
|
|
bool "gzip"
|
|
|
|
help
|
2008-04-08 06:28:18 +02:00
|
|
|
Use zlib compression at run-time.
|
2008-04-04 06:25:18 +02:00
|
|
|
|
2008-04-08 06:28:18 +02:00
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_RT_LZO
|
2008-04-04 06:25:18 +02:00
|
|
|
bool "lzo"
|
|
|
|
help
|
2008-04-08 06:28:18 +02:00
|
|
|
Use lzo compression at run-time.
|
2008-04-04 06:25:18 +02:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Compression method"
|
|
|
|
default BR2_TARGET_ROOTFS_UBIFS_NONE
|
|
|
|
help
|
2008-08-27 22:19:53 +02:00
|
|
|
Select which compression format to compress the final image
|
|
|
|
into.
|
2008-04-04 06:25:18 +02:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_NONE
|
|
|
|
bool "no compression"
|
|
|
|
help
|
|
|
|
Do not compress the ubifs filesystem.
|
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_GZIP
|
|
|
|
bool "gzip"
|
|
|
|
help
|
|
|
|
Do compress the ubifs filesystem with gzip.
|
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_BZIP2
|
|
|
|
bool "bzip2"
|
|
|
|
help
|
|
|
|
Do compress the ubifs filesystem with bzip2.
|
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_LZMA
|
|
|
|
bool "lzma"
|
|
|
|
help
|
|
|
|
Do compress the ubifs filesystem with lzma.
|
|
|
|
|
2013-01-22 02:03:43 +01:00
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_LZO
|
|
|
|
bool "lzo"
|
|
|
|
help
|
|
|
|
Do compress the ubifs filesystem with lzop.
|
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_XZ
|
|
|
|
bool "xz"
|
|
|
|
help
|
|
|
|
Do compress the ubifs filesystem with xz.
|
|
|
|
|
2008-04-04 06:25:18 +02:00
|
|
|
endchoice
|
|
|
|
|
2013-04-24 04:29:19 +02:00
|
|
|
config BR2_TARGET_ROOTFS_UBIFS_OPTS
|
|
|
|
string "Additional mkfs.ubifs options"
|
|
|
|
help
|
|
|
|
Any additional mkfs.ubifs options you may want to include.
|
|
|
|
|
2010-12-21 18:38:07 +01:00
|
|
|
config BR2_TARGET_ROOTFS_UBI
|
|
|
|
bool "Embed into an UBI image"
|
|
|
|
help
|
|
|
|
Build an ubi image from the ubifs one (with ubinize).
|
|
|
|
|
2013-04-24 23:55:35 +02:00
|
|
|
if BR2_TARGET_ROOTFS_UBI
|
|
|
|
|
2010-12-21 18:38:07 +01:00
|
|
|
config BR2_TARGET_ROOTFS_UBI_PEBSIZE
|
2013-09-08 11:33:18 +02:00
|
|
|
hex "physical eraseblock size"
|
2010-12-21 18:38:07 +01:00
|
|
|
default 0x20000
|
|
|
|
help
|
2013-09-08 11:33:18 +02:00
|
|
|
Tells ubinize the physical eraseblock (PEB) size of the
|
|
|
|
flash chip the ubi image is created for. The value provided
|
|
|
|
here is passed to the -p/--peb-size option of ubinize.
|
2010-12-21 18:38:07 +01:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBI_SUBSIZE
|
2013-09-08 11:33:18 +02:00
|
|
|
int "sub-page size"
|
2010-12-21 18:38:07 +01:00
|
|
|
default 512
|
|
|
|
help
|
|
|
|
Tells ubinize that the flash supports sub-pages and the sub-page
|
2013-09-08 11:33:18 +02:00
|
|
|
size. Use 0 if sub-pages are not supported on flash chip.
|
|
|
|
The value provided here is passed to the -s/--sub-page-size
|
|
|
|
option of ubinize.
|
2013-04-24 04:29:19 +02:00
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_UBI_OPTS
|
|
|
|
string "Additional ubinize options"
|
|
|
|
help
|
|
|
|
Any additional ubinize options you may want to include.
|
2013-04-24 23:55:35 +02:00
|
|
|
|
|
|
|
endif # BR2_TARGET_ROOTFS_UBI
|
|
|
|
|
|
|
|
endif # BR2_TARGET_ROOTFS_UBIFS
|