barebox/fs/Kconfig
Sascha Hauer b5e5b06d8b Add automount support
This patch adds an automount command which makes it possible
to execute a script when a certain directory is first accessed.
It's the commands responsibility to make this directory available
(bringing devices up and mounting it). This results in automount
support which makes sure that from the shell every file can
be accessed without having to care for device bringup. Bringing
up devices may be expensive (USB, dhcp). The automount support
makes it easy for the environment to bringup devices when they
are actually needed.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2012-03-18 15:03:26 +01:00

32 lines
354 B
Text

menu "Filesystem support "
config FS_AUTOMOUNT
bool
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"
config FS_TFTP
bool
prompt "tftp support"
source fs/fat/Kconfig
config PARTITION_NEED_MTD
bool
endmenu