summaryrefslogtreecommitdiffstats
path: root/commands/Makefile
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 /commands/Makefile
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 'commands/Makefile')
-rw-r--r--commands/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/Makefile b/commands/Makefile
index 31442b5ad4..f02b5cac3a 100644
--- a/commands/Makefile
+++ b/commands/Makefile
@@ -64,3 +64,4 @@ obj-$(CONFIG_CMD_OFTREE) += oftree.o
obj-$(CONFIG_CMD_MAGICVAR) += magicvar.o
obj-$(CONFIG_CMD_IOMEM) += iomem.o
obj-$(CONFIG_CMD_LINUX_EXEC) += linux_exec.o
+obj-$(CONFIG_CMD_AUTOMOUNT) += automount.o