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 | |
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')
-rw-r--r-- | console-tools/dumpkmap.c | 4 | ||||
-rw-r--r-- | console-tools/loadacm.c | 4 | ||||
-rw-r--r-- | console-tools/loadfont.c | 4 | ||||
-rw-r--r-- | console-tools/loadkmap.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c index 0da01868b..22652a5e2 100644 --- a/console-tools/dumpkmap.c +++ b/console-tools/dumpkmap.c | |||
@@ -51,9 +51,9 @@ int dumpkmap_main(int argc, char **argv) | |||
51 | show_usage(); | 51 | show_usage(); |
52 | } | 52 | } |
53 | 53 | ||
54 | fd = open("/dev/tty0", O_RDWR); | 54 | fd = open(CURRENT_VC, O_RDWR); |
55 | if (fd < 0) { | 55 | if (fd < 0) { |
56 | perror_msg("Error opening /dev/tty0"); | 56 | perror_msg("Error opening " CURRENT_VC); |
57 | return EXIT_FAILURE; | 57 | return EXIT_FAILURE; |
58 | } | 58 | } |
59 | 59 | ||
diff --git a/console-tools/loadacm.c b/console-tools/loadacm.c index 5dbf03e36..3fb4e7665 100644 --- a/console-tools/loadacm.c +++ b/console-tools/loadacm.c | |||
@@ -37,9 +37,9 @@ int loadacm_main(int argc, char **argv) | |||
37 | show_usage(); | 37 | show_usage(); |
38 | } | 38 | } |
39 | 39 | ||
40 | fd = open("/dev/tty", O_RDWR); | 40 | fd = open(CURRENT_VC, O_RDWR); |
41 | if (fd < 0) { | 41 | if (fd < 0) { |
42 | perror_msg_and_die("Error opening /dev/tty1"); | 42 | perror_msg_and_die("Error opening " CURRENT_VC); |
43 | } | 43 | } |
44 | 44 | ||
45 | if (screen_map_load(fd, stdin)) { | 45 | if (screen_map_load(fd, stdin)) { |
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c index 1a724ca85..d66500195 100644 --- a/console-tools/loadfont.c +++ b/console-tools/loadfont.c | |||
@@ -46,9 +46,9 @@ extern int loadfont_main(int argc, char **argv) | |||
46 | if (argc != 1) | 46 | if (argc != 1) |
47 | show_usage(); | 47 | show_usage(); |
48 | 48 | ||
49 | fd = open("/dev/tty0", O_RDWR); | 49 | fd = open(CURRENT_VC, O_RDWR); |
50 | if (fd < 0) | 50 | if (fd < 0) |
51 | perror_msg_and_die("Error opening /dev/tty0"); | 51 | perror_msg_and_die("Error opening " CURRENT_VC); |
52 | loadnewfont(fd); | 52 | loadnewfont(fd); |
53 | 53 | ||
54 | return EXIT_SUCCESS; | 54 | return EXIT_SUCCESS; |
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)) |