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.
15 #include <sys/reboot.h>
21 #include "plug/hotplug.h"
23 #include "service/service.h"
35 static int state = STATE_NONE;
36 static int reboot_event;
38 static void state_enter(void)
40 char ubus_cmd[] = "/sbin/ubusd";
46 hotplug("/etc/hotplug.json");
51 // try to reopen incase the wdt was not available before coldplug
58 service_start_early("ubus", ubus_cmd);
61 procd_inittab_run("respawn");
62 procd_inittab_run("askconsole");
63 procd_inittab_run("askfirst");
64 procd_inittab_run("sysinit");
68 LOG("- init complete -\n");
72 LOG("- shutdown -\n");
73 procd_inittab_run("shutdown");
83 ERROR("Unhandled state %d\n", state);
88 void procd_state_next(void)
90 DEBUG(4, "Change state %d -> %d\n", state, state + 1);
95 void procd_shutdown(int event)
97 DEBUG(2, "Shutting down system with event %x\n", event);
99 state = STATE_SHUTDOWN;