u-boot/fs/Kconfig
Simon Glass 7d0478d241 bootstd: sandbox: Add a hostfs bootdev
It is helpful to be able to try out bootstd on sandbox, using host files.
This is easier than using a block device, which must have a filesystem,
partition table, etc.

Add a new driver which provides this feature. For now it is not used in
tests, but it is likely to be useful.

Add notes in the devicetree also, but don't disturb the tests.

Signed-off-by: Simon Glass <sjg@chromium.org>
2022-04-25 10:00:04 -04:00

31 lines
392 B
Text

#
# File system configuration
#
menu "File systems"
source "fs/btrfs/Kconfig"
source "fs/cbfs/Kconfig"
source "fs/ext4/Kconfig"
source "fs/reiserfs/Kconfig"
source "fs/fat/Kconfig"
source "fs/jffs2/Kconfig"
source "fs/sandbox/Kconfig"
source "fs/ubifs/Kconfig"
source "fs/cramfs/Kconfig"
source "fs/yaffs2/Kconfig"
source "fs/squashfs/Kconfig"
source "fs/erofs/Kconfig"
endmenu