diff --git a/log.c b/log.c index 5173d27..61c49f7 100644 --- a/log.c +++ b/log.c @@ -71,8 +71,8 @@ void log_perror(char *msg) void open_log(void) { if (!IS_TESTING) { - mknod("/dev/tty3", S_IFCHR, MKDEV(4, 3)); - logfile = fopen("/dev/tty3", "w"); + mknod("/dev/ttyprintk", S_IFCHR, MKDEV(5, 3)); + logfile = fopen("/dev/ttyprintk", "w"); if (!logfile) logfile = fopen("/tmp/install.log", "a"); } diff --git a/newt-frontend.c b/newt-frontend.c index 61788ea..f717a0e 100644 --- a/newt-frontend.c +++ b/newt-frontend.c @@ -45,7 +45,7 @@ void init_frontend(char * welcome_msg) newtDrawRootText(0, 0, welcome_msg); - newtPushHelpLine(" for here, to see the logs, for kernel msg"); + newtPushHelpLine(" for here, to see the logs"); newtRefresh(); }