[PATCH 3/4] automount: optionally make directory
Sascha Hauer
s.hauer at pengutronix.de
Sun Apr 15 10:51:56 EDT 2012
Add an option to create the mount path to make using this command easier.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
commands/automount.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/commands/automount.c b/commands/automount.c
index 8c0e4de..aa1e417 100644
--- a/commands/automount.c
+++ b/commands/automount.c
@@ -27,9 +27,9 @@
static int do_automount(int argc, char *argv[])
{
- int opt, ret;
+ int opt, ret, make_dir = 0;
- while ((opt = getopt(argc, argv, "lr:")) > 0) {
+ while ((opt = getopt(argc, argv, "lr:d")) > 0) {
switch (opt) {
case 'l':
automount_print();
@@ -37,12 +37,21 @@ static int do_automount(int argc, char *argv[])
case 'r':
automount_remove(optarg);
return 0;
+ case 'd':
+ make_dir = 1;
+ break;
}
}
if (optind + 2 != argc)
return COMMAND_ERROR_USAGE;
+ if (make_dir) {
+ ret = make_directory(argv[optind]);
+ if (ret)
+ return ret;
+ }
+
ret = automount_add(argv[optind], argv[optind + 1]);
if (ret)
printf("adding automountpoint failed: %s\n",
--
1.7.10
More information about the barebox
mailing list