diff options
author | Rob Landley | 2006-01-30 08:31:37 +0000 |
---|---|---|
committer | Rob Landley | 2006-01-30 08:31:37 +0000 |
commit | 646129163a26171d48a335f7e22828848cf28cc5 (patch) | |
tree | 1e57cdfe9be4ec15c27276389a760f3ad6b5ab34 /init/reboot.c | |
parent | 49576c0018358beda0e79e0ebb247b90e347e6e0 (diff) | |
download | busybox-646129163a26171d48a335f7e22828848cf28cc5.zip busybox-646129163a26171d48a335f7e22828848cf28cc5.tar.gz |
Re-add initrd support, unify halt/reboot/poweroff, add -n and -f options.
Diffstat (limited to 'init/reboot.c')
-rw-r--r-- | init/reboot.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/init/reboot.c b/init/reboot.c deleted file mode 100644 index 5508f0b..0000000 --- a/init/reboot.c +++ /dev/null @@ -1,28 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * Mini reboot implementation for busybox - * - * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> - * - * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. - */ - -#include <signal.h> -#include <stdlib.h> -#include <unistd.h> -#include <getopt.h> -#include <sys/reboot.h> -#include "busybox.h" -#include "init_shared.h" - - -extern int reboot_main(int argc, char **argv) -{ - char *delay; /* delay in seconds before rebooting */ - - if(bb_getopt_ulflags(argc, argv, "d:", &delay)) { - sleep(atoi(delay)); - } - - return ENABLE_INIT ? kill(1,SIGTERM) : bb_shutdown_system(RB_AUTOBOOT); -} |