aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 @@
15 15
16int halt_main(int argc, char *argv[]) 16int halt_main(int argc, char *argv[])
17{ 17{
18 static const int magic[] = {RB_HALT_SYSTEM, RB_POWER_OFF, RB_AUTOBOOT}; 18 static const int magic[] = {
19#ifdef RB_HALT_SYSTEM
20RB_HALT_SYSTEM,
21#elif defined RB_HALT
22RB_HALT,
23#endif
24#ifdef RB_POWER_OFF
25RB_POWER_OFF,
26#elif defined RB_POWERDOWN
27RB_POWERDOWN,
28#endif
29RB_AUTOBOOT
30 };
19 static const int signals[] = {SIGUSR1, SIGUSR2, SIGTERM}; 31 static const int signals[] = {SIGUSR1, SIGUSR2, SIGTERM};
20 32
21 char *delay = "hpr"; 33 char *delay = "hpr";