barebox/fs/Kconfig
Sascha Hauer 17e91068b1 fs: add fat filesystem support
This code is based on:

http://elm-chan.org/fsw/ff/00index_e.html

FatFs Generic FAT File System Module

This patch offers a read/write implementation for barebox. The code
does not exaclty match barebox coding style, but works nicely and
should be ready to give it a try.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2011-04-12 09:54:56 +02:00

25 lines
282 B
Text

menu "Filesystem support "
config FS_CRAMFS
bool
select ZLIB
prompt "cramfs support"
config FS_RAMFS
bool
default y
prompt "ramfs support"
config FS_DEVFS
bool
default y
prompt "devfs support"
source fs/fat/Kconfig
config PARTITION_NEED_MTD
bool
endmenu