Merge pull request #3 from orangecms/master
i_input_tty: also try /dev/tty0
This commit is contained in:
commit
912c51c4d0
|
|
@ -277,7 +277,7 @@ void kbd_shutdown(void)
|
|||
static int kbd_init(void)
|
||||
{
|
||||
struct termios new_term;
|
||||
char *files_to_try[] = {"/dev/tty", "/dev/console", NULL};
|
||||
char *files_to_try[] = {"/dev/tty", "/dev/tty0", "/dev/console", NULL};
|
||||
int i;
|
||||
int flags;
|
||||
int found = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue