summaryrefslogtreecommitdiffstats
path: root/fs/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-02-19 18:22:04 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2012-03-18 15:03:26 +0100
commitb5e5b06d8bf87908a5c4bec87e751ee2681cad4f (patch)
treeaed701ab0ed8be47f39c24c880dc14086fe9e097 /fs/Kconfig
parentb55fbf7f5f14a8a60b4f5bdf1416c25fc4d3e59d (diff)
downloadbarebox-b5e5b06d8bf87908a5c4bec87e751ee2681cad4f.tar.gz
barebox-b5e5b06d8bf87908a5c4bec87e751ee2681cad4f.tar.xz
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>
Diffstat (limited to 'fs/Kconfig')
-rw-r--r--fs/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 6208cd2119..e5f307fd26 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1,6 +1,9 @@
menu "Filesystem support "
+config FS_AUTOMOUNT
+ bool
+
config FS_CRAMFS
bool
select ZLIB