blob: 050d7e0ab9d9c001f9c6828b3c3621a127e4ced6 (
plain)
1
2
3
4
5
6
|
/* See LICENSE file for copyright and license details. */
static const char *fifopath = "/var/run/sinit.fifo";
static Command commands[] = {
{ "poweroff", cmdpoweroff, {0} },
{ "reboot", cmdreboot, {0} },
};
|