summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--utils/readmap.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d648df247..97b4a9d6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,10 @@
2006-07-10 Jeremy Katz <katzj@redhat.com>
+ * utils/readmap.c (main): Try to fix things for serial console
+ (Alexander Dupuy, #198310)
+
* fsset.py (RAIDDevice.mdadmLine): Fix raid6 and map raid levels
- sanely (#197844)
+ sanely (#197844)
* anaconda (rootpath_cb): Allow relative path (markmc, #197669)
diff --git a/utils/readmap.c b/utils/readmap.c
index 778edddec..bfbda5a81 100644
--- a/utils/readmap.c
+++ b/utils/readmap.c
@@ -36,9 +36,9 @@ int main(int argc, char ** argv) {
memset(keymaps, 0, sizeof(keymaps));
- console = open("/dev/console", O_RDWR);
+ console = open("/dev/tty0", O_RDWR);
if (console < 0) {
- perror("open console");
+ perror("open VGA+KBD");
exit(1);
}