barebox/fs/Kconfig
Sascha Hauer 9f8aab600d drop CONFIG_PARTITION_NEED_MTD
With CONFIG_PARTITION_NEED_MTD enabled we use mtd rather than devfs
directly to create partitions on mtd devices. Since:

| commit b32cd8df87
| Author: Sascha Hauer <s.hauer@pengutronix.de>
| Date:   Wed Apr 9 15:49:32 2014 +0200
|
|     mtd: nand: bb: use mtd api directly
|
|     The devfs layer just adds an addition indirection between mtd
|     and the bb devices with no purpose. Drop it.
|
|     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>

The bad block aware device creation doesn't work if this option
is disabled. With this we remove CONFIG_PARTITION_NEED_MTD and always
use mtd partitions on mtd devices.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2014-05-13 09:19:46 +02:00

67 lines
1,021 B
Text

menu "Filesystem support"
config FS
bool
default y
select FILETYPE
config FS_AUTOMOUNT
bool
config FS_CRAMFS
bool
select ZLIB
prompt "cramfs support"
source fs/ext4/Kconfig
config FS_RAMFS
bool
default y
prompt "ramfs support"
config FS_DEVFS
bool
default y
prompt "devfs support"
config FS_TFTP
bool
prompt "tftp support"
depends on NET
config FS_OMAP4_USBBOOT
bool
prompt "Filesystem over usb boot"
depends on OMAP4_USBBOOT
config FS_NFS
depends on NET
bool
prompt "nfs support"
source fs/fat/Kconfig
source fs/ubifs/Kconfig
config FS_BPKFS
bool
prompt "BPKFS support"
help
Simple update file format developed for Somfy, tools and library are
available under LGPLv2 (https://www.gitorious.org/libbpk).
This format in the v1.0 allow you to store 6 types a binary stream for
a unique hardware id:
- bootloader
- bootloader_version
- description.gz
- kernel
- rootfs
- firmware_version
config FS_UIMAGEFS
bool
prompt "uImage FS support"
endmenu