2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-20 22:08:37 +00:00
|
|
|
/*
|
|
|
|
* Mini loadkmap implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Enrique Zanardi <ezanardi@ull.es>
|
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-20 22:08:37 +00:00
|
|
|
*/
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-10-25 16:48:15 +00:00
|
|
|
#define BINARY_KEYMAP_MAGIC "bkeymap"
|
|
|
|
|
2000-07-08 18:55:24 +00:00
|
|
|
/* From <linux/kd.h> */
|
|
|
|
struct kbentry {
|
|
|
|
unsigned char kb_table;
|
|
|
|
unsigned char kb_index;
|
|
|
|
unsigned short kb_value;
|
|
|
|
};
|
2003-11-21 09:27:02 +00:00
|
|
|
/* sets one entry in translation table */
|
|
|
|
#define KDSKBENT 0x4B47
|
2000-07-08 18:55:24 +00:00
|
|
|
|
|
|
|
/* From <linux/keyboard.h> */
|
2003-11-21 09:27:02 +00:00
|
|
|
#define NR_KEYS 128
|
|
|
|
#define MAX_NR_KEYMAPS 256
|
2000-07-08 18:55:24 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int loadkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int loadkmap_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
2000-02-08 19:58:47 +00:00
|
|
|
{
|
|
|
|
struct kbentry ke;
|
2003-11-21 09:27:02 +00:00
|
|
|
int i, j, fd;
|
2006-12-19 20:32:02 +00:00
|
|
|
uint16_t ibuff[NR_KEYS];
|
2008-11-08 21:39:06 +00:00
|
|
|
/* const char *tty_name = CURRENT_TTY; */
|
2008-05-19 08:18:50 +00:00
|
|
|
RESERVE_CONFIG_BUFFER(flags,MAX_NR_KEYMAPS);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2008-11-08 21:39:06 +00:00
|
|
|
/* bb_warn_ignoring_args(argc >= 2); */
|
2008-08-05 23:32:27 +00:00
|
|
|
fd = get_console_fd_or_die();
|
2008-11-08 21:39:06 +00:00
|
|
|
/* or maybe:
|
|
|
|
opt = getopt32(argv, "C:", &tty_name);
|
|
|
|
fd = xopen(tty_name, O_NONBLOCK);
|
|
|
|
*/
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2008-05-19 08:18:50 +00:00
|
|
|
xread(STDIN_FILENO, flags, 7);
|
|
|
|
if (strncmp(flags, BINARY_KEYMAP_MAGIC, 7))
|
|
|
|
bb_error_msg_and_die("not a valid binary keymap");
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2008-05-19 08:18:50 +00:00
|
|
|
xread(STDIN_FILENO, flags, MAX_NR_KEYMAPS);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
for (i = 0; i < MAX_NR_KEYMAPS; i++) {
|
|
|
|
if (flags[i] == 1) {
|
2008-05-19 08:18:50 +00:00
|
|
|
xread(STDIN_FILENO, ibuff, NR_KEYS * sizeof(uint16_t));
|
2000-02-08 19:58:47 +00:00
|
|
|
for (j = 0; j < NR_KEYS; j++) {
|
|
|
|
ke.kb_index = j;
|
|
|
|
ke.kb_table = i;
|
|
|
|
ke.kb_value = ibuff[j];
|
|
|
|
ioctl(fd, KDSKBENT, &ke);
|
|
|
|
}
|
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
2003-11-21 09:27:02 +00:00
|
|
|
|
2008-05-19 08:18:50 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
close(fd);
|
|
|
|
RELEASE_CONFIG_BUFFER(flags);
|
|
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|