diff options
author | Matt Kraai <kraai@debian.org> | 2001-07-23 14:52:08 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-07-23 14:52:08 +0000 |
commit | 439e3df65300100e4b63580141eaa238c30431d5 (patch) | |
tree | f74320f9994faf4d68826c95cb8d043e35d3a685 /console-tools/loadkmap.c | |
parent | 0139ca92ff4b960e904d18bc0254499e163e2545 (diff) | |
download | busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.tar.gz busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.tar.bz2 busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.zip |
Add support for devfs device names.
Diffstat (limited to 'console-tools/loadkmap.c')
-rw-r--r-- | console-tools/loadkmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c index dcb5c1caa..4f217d630 100644 --- a/console-tools/loadkmap.c +++ b/console-tools/loadkmap.c | |||
@@ -53,9 +53,9 @@ int loadkmap_main(int argc, char **argv) | |||
53 | if (argc != 1) | 53 | if (argc != 1) |
54 | show_usage(); | 54 | show_usage(); |
55 | 55 | ||
56 | fd = open("/dev/tty0", O_RDWR); | 56 | fd = open(CURRENT_VC, O_RDWR); |
57 | if (fd < 0) | 57 | if (fd < 0) |
58 | perror_msg_and_die("Error opening /dev/tty0"); | 58 | perror_msg_and_die("Error opening " CURRENT_VC); |
59 | 59 | ||
60 | read(0, buff, 7); | 60 | read(0, buff, 7); |
61 | if (0 != strncmp(buff, BINARY_KEYMAP_MAGIC, 7)) | 61 | if (0 != strncmp(buff, BINARY_KEYMAP_MAGIC, 7)) |