X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=main.c;h=4757b79ed0b7096a5a8dae8c32a76b4b43cabed9;hp=fe97ee1385a54ac1e65427ffbadd0ef15e7a1ffb;hb=2152229c45f470a14dee33507b331ac38055e062;hpb=367f5edba8abe7e03890ceb00c00617d64d7bf73 diff --git a/main.c b/main.c index fe97ee1..4757b79 100644 --- a/main.c +++ b/main.c @@ -10,6 +10,7 @@ #include "system.h" #include "interface.h" +unsigned int debug_mask = 0; const char *main_path = "."; static char **global_argv; @@ -42,8 +43,11 @@ static int usage(const char *progname) { fprintf(stderr, "Usage: %s [options]\n" "Options:\n" + " -d : Mask for debug messages\n" " -s : Path to the ubus socket\n" " -p : Path to netifd addons (default: %s)\n" + " -h : Path to the hotplug script\n" + " (default: "DEFAULT_HOTPLUG_PATH")\n" "\n", progname, main_path); return 1; @@ -56,14 +60,20 @@ int main(int argc, char **argv) global_argv = argv; - while ((ch = getopt(argc, argv, "s:")) != -1) { + while ((ch = getopt(argc, argv, "d:s:")) != -1) { switch(ch) { + case 'd': + debug_mask = strtoul(optarg, NULL, 0); + break; case 's': socket = optarg; break; case 'p': main_path = optarg; break; + case 'h': + hotplug_cmd_path = optarg; + break; default: return usage(argv[0]); }