aboutsummaryrefslogtreecommitdiff
path: root/init/halt.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-26 20:34:02 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-26 20:34:02 +0000
commitd765ee5d0fb3a8077dcf4b1520321089aa4104ce (patch)
tree0273957293744caa4440c71dccae9cda4546bd21 /init/halt.c
parentb21d23bd465b2f8a859183496c55e3613cd9cdda (diff)
downloadbusybox-d765ee5d0fb3a8077dcf4b1520321089aa4104ce.tar.gz
- provide fallback defines for non-linux
Diffstat (limited to 'init/halt.c')
-rw-r--r--init/halt.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/init/halt.c b/init/halt.c
index 38ca38222..f3627f206 100644
--- a/init/halt.c
+++ b/init/halt.c
@@ -15,7 +15,19 @@
int halt_main(int argc, char *argv[])
{
- static const int magic[] = {RB_HALT_SYSTEM, RB_POWER_OFF, RB_AUTOBOOT};
+ static const int magic[] = {
+#ifdef RB_HALT_SYSTEM
+RB_HALT_SYSTEM,
+#elif defined RB_HALT
+RB_HALT,
+#endif
+#ifdef RB_POWER_OFF
+RB_POWER_OFF,
+#elif defined RB_POWERDOWN
+RB_POWERDOWN,
+#endif
+RB_AUTOBOOT
+ };
static const int signals[] = {SIGUSR1, SIGUSR2, SIGTERM};
char *delay = "hpr";