From 32e5dd183f74c8262f9a893a2a0956e6bf40d856 Mon Sep 17 00:00:00 2001 From: Johnathan Nightingale Date: Tue, 13 Jul 2010 19:54:16 -0400 Subject: [PATCH 1/1] Gerfried's devfs fix --- beep.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/beep.c b/beep.c index 90ec837..a3a0131 100644 --- a/beep.c +++ b/beep.c @@ -239,10 +239,12 @@ void play_beep(beep_parms_t parms) { /* try to snag the console */ if((console_fd = open("/dev/tty0", O_WRONLY)) == -1) { - fprintf(stderr, "Could not open /dev/tty0 for writing.\n"); - printf("\a"); /* Output the only beep we can, in an effort to fall back on usefulness */ - perror("open"); - exit(1); + if((console_fd = open("/dev/vc/0", O_WRONLY)) == -1) { + fprintf(stderr, "Could not open /dev/tty0 or /dev/vc/0 for writing.\n"); + printf("\a"); /* Output the only beep we can, in an effort to fall back on usefulness */ + perror("open"); + exit(1); + } } /* Beep */ -- 2.39.2