summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-05-09 07:38:34 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2017-05-10 08:14:11 +0200
commit85dffaacfa3c7eedc8fc8ea12da27a19720e2483 (patch)
tree0120a9ef4d6f0897de6d5c563b592ce70addfb7f /include
parentdee8d2e0619f58d55553c3da6292e630e452e355 (diff)
downloadbarebox-85dffaacfa3c7eedc8fc8ea12da27a19720e2483.tar.gz
barebox-85dffaacfa3c7eedc8fc8ea12da27a19720e2483.tar.xz
fs: Create automount entries for the default mount pathes
In barebox the default mount path for a cdev is /mnt/<cdevname> which can be mounted with "mount <cdevname>" without specifying a target path explicitly. Simplify this further by creating automount entries for the default mount pathes which makes a manual mount completely unnecessary. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/driver.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/driver.h b/include/driver.h
index 52e06f7d62..b743ed8b77 100644
--- a/include/driver.h
+++ b/include/driver.h
@@ -490,6 +490,14 @@ struct cdev *devfs_add_partition(const char *devname, loff_t offset,
loff_t size, unsigned int flags, const char *name);
int devfs_del_partition(const char *name);
+#ifdef CONFIG_FS_AUTOMOUNT
+void cdev_create_default_automount(struct cdev *cdev);
+#else
+static inline void cdev_create_default_automount(struct cdev *cdev)
+{
+}
+#endif
+
#define DEVFS_PARTITION_APPEND 0
/**