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