X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=state.c;h=3b56bd0b75f81851b12b2fb5cb32d52ef16fb2d7;hp=1ed70f542f13d3ec7b8a3d3cf2fcf8e31cf42cd8;hb=8d720b2c2e569885c6e1e7eab68d36f31818ed84;hpb=91da63d3d3fd680c805dd1a1b78df5b8731a8173 diff --git a/state.c b/state.c index 1ed70f5..3b56bd0 100644 --- a/state.c +++ b/state.c @@ -111,7 +111,6 @@ static void state_enter(void) set_stdio("console"); LOG("- ubus -\n"); procd_connect_ubus(); - service_init(); service_start_early("ubus", ubus_cmd); break; @@ -129,6 +128,8 @@ static void state_enter(void) case STATE_RUNNING: LOG("- init complete -\n"); + procd_inittab_run("respawnlate"); + procd_inittab_run("askconsolelate"); break; case STATE_SHUTDOWN: @@ -150,6 +151,7 @@ static void state_enter(void) kill(-1, SIGKILL); sync(); sleep(1); +#ifndef DISABLE_INIT if (reboot_event == RB_POWER_OFF) LOG("- power down -\n"); else @@ -165,9 +167,11 @@ static void state_enter(void) reboot(reboot_event); _exit(EXIT_SUCCESS); } - while (1) sleep(1); +#else + exit(0); +#endif break; default: