From 59006c40d366f6295b18523e74c48c328f8fe656 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 11 Sep 2021 15:17:14 -0500 Subject: [PATCH] Fiddle with help text. --- toys/other/reboot.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/toys/other/reboot.c b/toys/other/reboot.c index 0326377a..ff8ef966 100644 --- a/toys/other/reboot.c +++ b/toys/other/reboot.c @@ -10,16 +10,13 @@ config REBOOT bool "reboot" default y help - usage: reboot/halt/poweroff [-fn] [-d DURATION] + usage: reboot/halt/poweroff [-fn] [-d DELAY] Restart, halt, or power off the system. - DURATION can be a decimal fraction. An optional suffix can be "m" - (minutes), "h" (hours), "d" (days), or "s" (seconds, the default). - - -d Delay before proceeding - -f Don't signal init - -n Don't sync before stopping the system + -d Wait DELAY before proceeding (in seconds or m/h/d suffix: -d 1.5m = 90s) + -f Force reboot (don't signal init, reboot directly) + -n Don't sync filesystems before reboot */ #define FOR_reboot -- 2.39.2