aboutsummaryrefslogtreecommitdiff
path: root/init/reboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'init/reboot.c')
-rw-r--r--init/reboot.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/init/reboot.c b/init/reboot.c
index bde8dbd77..bef9b26f0 100644
--- a/init/reboot.c
+++ b/init/reboot.c
@@ -26,6 +26,9 @@
extern int reboot_main(int argc, char **argv)
{
+ if (argc > 1 && strcmp(argv[1], "--help") == 0)
+ usage(reboot_usage);
+
#ifdef BB_FEATURE_LINUXRC
/* don't assume init's pid == 1 */
return(kill(*(findPidByName("init")), SIGINT));