use /lib/netifd as main path when dummy mode is disabled
[project/netifd.git] / main.c
diff --git a/main.c b/main.c
index fe97ee1..02dd1e5 100644 (file)
--- a/main.c
+++ b/main.c
@@ -10,7 +10,8 @@
 #include "system.h"
 #include "interface.h"
 
-const char *main_path = ".";
+unsigned int debug_mask = 0;
+const char *main_path = DEFAULT_MAIN_PATH;
 static char **global_argv;
 
 static void netifd_do_restart(struct uloop_timeout *timeout)
@@ -42,8 +43,11 @@ static int usage(const char *progname)
 {
        fprintf(stderr, "Usage: %s [options]\n"
                "Options:\n"
+               " -d <mask>:            Mask for debug messages\n"
                " -s <path>:            Path to the ubus socket\n"
                " -p <path>:            Path to netifd addons (default: %s)\n"
+               " -h <path>:            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]);
                }