Update applet define from BB_CP_MV to BB_CP and BB_MV.
[oweals/busybox.git] / init.c
diff --git a/init.c b/init.c
index 6194218917d50b68a0b4925d4ef1026b709dac7b..d65220cdd97df72ba4c5649c853b7377a578f705 100644 (file)
--- a/init.c
+++ b/init.c
@@ -85,6 +85,7 @@ static const int RB_ENABLE_CAD = 0x89abcdef;
 static const int RB_DISABLE_CAD = 0;
 #define RB_POWER_OFF    0x4321fedc
 static const int RB_AUTOBOOT = 0x01234567;
+#endif
 
 #if __GNU_LIBRARY__ > 5
   #include <sys/reboot.h>
@@ -277,7 +278,8 @@ static void set_term(int fd)
 
        /* Make it be sane */
        tty.c_cflag &= CBAUD|CBAUDEX|CSIZE|CSTOPB|PARENB|PARODD;
-       tty.c_cflag |= HUPCL|CLOCAL;
+       tty.c_cflag |= CREAD|HUPCL|CLOCAL;
+
 
        /* input modes */
        tty.c_iflag = ICRNL | IXON | IXOFF;
@@ -653,7 +655,7 @@ static void shutdown_system(void)
        kill(-1, SIGKILL);
        sleep(1);
 
-       /* run everything to be run at "ctrlaltdel" */
+       /* run everything to be run at "shutdown" */
        run_actions(SHUTDOWN);
 
        sync();