summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-09-09 20:25:17 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-09-09 20:25:17 +0200
commitcfc905f003aefe4735f8645c561f789ffd0b1f30 (patch)
tree939ccbfeb309a9eb1d90239d5651cad8d5ff25af /main.c
parent82bd6990581a6a424fcabe8e5da9af885d531e07 (diff)
downloadnetifd-cfc905f003aefe4735f8645c561f789ffd0b1f30.tar.gz
add an option for selecting the main path for netifd addons
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.c b/main.c
index d1f976d..da5ae09 100644
--- a/main.c
+++ b/main.c
@@ -7,6 +7,7 @@
#include "ubus.h"
#include "config.h"
+const char *main_path = ".";
static char **global_argv;
static void netifd_do_restart(struct uloop_timeout *timeout)
@@ -28,7 +29,8 @@ static int usage(const char *progname)
fprintf(stderr, "Usage: %s [options]\n"
"Options:\n"
" -s <path>: Path to the ubus socket\n"
- "\n", progname);
+ " -p <path>: Path to netifd addons (default: %s)\n"
+ "\n", progname, main_path);
return 1;
}
@@ -45,6 +47,9 @@ int main(int argc, char **argv)
case 's':
socket = optarg;
break;
+ case 'p':
+ main_path = optarg;
+ break;
default:
return usage(argv[0]);
}