X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=state.c;h=e5f0015befd380a8e469873030a3cf03f44abe63;hp=90e883c50c5fb2dee1cd009b098c9247bf76620e;hb=9c0f1463fe60b2524118cc7fdb18ce0b3e1d2f7c;hpb=df1b0c3512fe6af3724536b45f07fb86ad166585 diff --git a/state.c b/state.c index 90e883c..e5f0015 100644 --- a/state.c +++ b/state.c @@ -18,8 +18,9 @@ #include "procd.h" #include "syslog.h" -#include "hotplug.h" +#include "plug/hotplug.h" #include "watchdog.h" +#include "service/service.h" enum { STATE_NONE = 0, @@ -36,6 +37,7 @@ static int reboot_event; static void state_enter(void) { + char ubus_cmd[] = "/sbin/ubusd"; switch (state) { case STATE_EARLY: @@ -48,9 +50,13 @@ static void state_enter(void) case STATE_INIT: // try to reopen incase the wdt was not available before coldplug watchdog_init(0); - LOG("- init -\n"); - log_init(); + LOG("- ubus -\n"); procd_connect_ubus(); + + LOG("- init -\n"); + service_init(); + service_start_early("ubus", ubus_cmd); + procd_inittab(); procd_inittab_run("respawn"); procd_inittab_run("askconsole"); @@ -81,14 +87,14 @@ static void state_enter(void) void procd_state_next(void) { - DEBUG(2, "Change state %d -> %d\n", state, state + 1); + DEBUG(4, "Change state %d -> %d\n", state, state + 1); state++; state_enter(); } void procd_shutdown(int event) { - DEBUG(1, "Shutting down system with event %x\n", event); + DEBUG(2, "Shutting down system with event %x\n", event); reboot_event = event; state = STATE_SHUTDOWN; state_enter();