aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index 050d7e0..a257b45 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,6 +1,13 @@
/* See LICENSE file for copyright and license details. */
+
+static const char *rcinitcmd[] = { "/bin/rc.init", NULL };
+static Arg rcinitarg = { .v = rcinitcmd };
+
+static const char *rcrebootcmd[] = { "/bin/rc.shutdown", "reboot", NULL };
+static const char *rcpoweroffcmd[] = { "/bin/rc.shutdown", "poweroff", NULL };
+
static const char *fifopath = "/var/run/sinit.fifo";
static Command commands[] = {
- { "poweroff", cmdpoweroff, {0} },
- { "reboot", cmdreboot, {0} },
+ { "poweroff", spawn, { .v = rcpoweroffcmd } },
+ { "reboot", spawn, { .v = rcrebootcmd } },
};