--- trunk/mkinitrd-magellan/busybox/console-tools/openvt.c 2010/04/29 20:38:48 983 +++ trunk/mkinitrd-magellan/busybox/console-tools/openvt.c 2010/05/30 11:32:42 984 @@ -61,9 +61,7 @@ for (fd = 0; fd < 3; fd++) if (!not_vt_fd(fd)) return fd; - /* _only_ O_NONBLOCK: ask for neither read nor write perms */ - /*FIXME: use? device_open(DEV_CONSOLE,0); */ - fd = open(DEV_CONSOLE, O_NONBLOCK); + fd = open(DEV_CONSOLE, O_RDONLY | O_NONBLOCK); if (fd >= 0 && !not_vt_fd(fd)) return fd; bb_error_msg_and_die("can't find open VT");