From c1525e84dd6a3ac8252ce10e6ae605bd37d60797 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 29 Oct 1999 00:07:31 +0000 Subject: Stuff --- init.c | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'init.c') diff --git a/init.c b/init.c index d950e2bef..b8cbbf64e 100644 --- a/init.c +++ b/init.c @@ -41,8 +41,6 @@ #include /* for vt_stat */ #include -#define DEBUG_INIT - #define CONSOLE "/dev/console" /* Logical system console */ #define VT_PRIMARY "/dev/tty0" /* Virtual console master */ #define VT_SECONDARY "/dev/tty1" /* Virtual console master */ @@ -272,7 +270,6 @@ static pid_t run(const char * const* command, } -#ifndef DEBUG_INIT static void shutdown_system(void) { const char* const swap_off_cmd[] = { "/bin/swapoff", "-a", 0}; @@ -318,12 +315,9 @@ static void reboot_signal(int sig) exit(0); } -#endif - extern int init_main(int argc, char **argv) { int run_rc = TRUE; - pid_t pid = 0; pid_t pid1 = 0; pid_t pid2 = 0; struct stat statbuf; @@ -333,13 +327,10 @@ extern int init_main(int argc, char **argv) const char* const* tty0_commands = init_commands; const char* const* tty1_commands = shell_commands; char *hello_msg_format = - "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n"; + "init started: BusyBox v%s (%s) multi-call binary\r\n"; const char *no_memory = "Sorry, your computer does not have enough memory.\r\n"; - pid = getpid(); - -#ifndef DEBUG_INIT /* Set up sig handlers */ signal(SIGUSR1, halt_signal); signal(SIGSEGV, halt_signal); @@ -353,7 +344,6 @@ extern int init_main(int argc, char **argv) /* Turn off rebooting via CTL-ALT-DEL -- we get a * SIGINT on CAD so we can shut things down gracefully... */ reboot(RB_DISABLE_CAD); -#endif /* Figure out where the default console should be */ console_init(); @@ -370,8 +360,8 @@ extern int init_main(int argc, char **argv) putenv(PATH_DEFAULT); /* Hello world */ - message(log, hello_msg_format, pid, BB_VER, BB_BT); - fprintf(stderr, hello_msg_format, pid, BB_VER, BB_BT); + message(log, hello_msg_format, BB_VER, BB_BT); + fprintf(stderr, hello_msg_format, BB_VER, BB_BT); /* Mount /proc */ @@ -385,7 +375,7 @@ extern int init_main(int argc, char **argv) /* Make sure there is enough memory to do something useful */ set_free_pages(); - if (mem_total() < 2000) { + if (mem_total() < 3500) { int retval; retval = stat("/etc/fstab", &statbuf); if (retval) { -- cgit v1.2.3