2 * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
16 #include <sys/types.h>
27 static int usage(const char *prog)
29 ERROR("Usage: %s [options]\n"
31 " -s <path>: Path to ubus socket\n"
32 " -d: Enable debug messages\n"
38 static int main_procd_init(int argc, char **argv)
40 procd_signal_preinit();
44 system("/sbin/kmodloader /etc/modules-boot.d/");
46 hotplug("/etc/hotplug-preinit.json");
52 int main(int argc, char **argv)
56 if (!strcmp(basename(*argv), "init"))
57 return main_procd_init(argc, argv);
59 while ((ch = getopt(argc, argv, "ds:")) != -1) {
68 return usage(argv[0]);