diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-03-04 18:37:03 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-03-19 15:19:56 +0100 |
commit | 9cf7219d554f73c014b9c6efde7965384d8346ec (patch) | |
tree | 6e47c9cfa2813676a6cc72230e83036024eb2b2d /netifd.h | |
parent | 047a1ee7680e9a668896a12e2773d6544669d0e9 (diff) |
uci: Allow setting the UCI config path on the command line
Add a -c switch which allows setting an alternative UCI path instead of using
the libuci default.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Diffstat (limited to 'netifd.h')
-rw-r--r-- | netifd.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -30,10 +30,12 @@ #ifdef DUMMY_MODE #define DEFAULT_MAIN_PATH "./examples" +#define DEFAULT_CONFIG_PATH "./config" #define DEFAULT_HOTPLUG_PATH "./examples/hotplug-cmd" #define DEFAULT_RESOLV_CONF "./tmp/resolv.conf" #else #define DEFAULT_MAIN_PATH "/lib/netifd" +#define DEFAULT_CONFIG_PATH NULL /* use the default set in libuci */ #define DEFAULT_HOTPLUG_PATH "/sbin/hotplug-call" #define DEFAULT_RESOLV_CONF "/tmp/resolv.conf.auto" #endif @@ -94,6 +96,7 @@ struct device; struct interface; extern const char *main_path; +extern const char *config_path; void netifd_restart(void); void netifd_reload(void); |