blob: 2321a1ededc67c80d4ce089bd799a6078f8f62e6 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
3 * Mini loadkmap implementation for busybox
4 *
5 * Copyright (C) 1998 Enrique Zanardi <ezanardi@ull.es>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Eric Andersencc8ed391999-10-05 16:24:54 +000023#include "internal.h"
24#include <errno.h>
25#include <fcntl.h>
26#include <stdio.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000027#include <sys/ioctl.h>
28
Eric Andersenbd22ed82000-07-08 18:55:24 +000029/* From <linux/kd.h> */
30struct kbentry {
31 unsigned char kb_table;
32 unsigned char kb_index;
33 unsigned short kb_value;
34};
35#define KDSKBENT 0x4B47 /* sets one entry in translation table */
36
37/* From <linux/keyboard.h> */
38#define NR_KEYS 128
39#define MAX_NR_KEYMAPS 256
40
Erik Andersene49d5ec2000-02-08 19:58:47 +000041int loadkmap_main(int argc, char **argv)
42{
43 struct kbentry ke;
44 u_short *ibuff;
45 int i, j, fd, readsz, pos, ibuffsz = NR_KEYS * sizeof(u_short);
46 char flags[MAX_NR_KEYMAPS], magic[] = "bkeymap", buff[7];
Eric Andersencc8ed391999-10-05 16:24:54 +000047
Erik Andersen3fe7f9f2000-04-19 03:59:10 +000048 if (argc>=2 && *argv[1]=='-') {
49 usage(loadkmap_usage);
50 }
51
Erik Andersene49d5ec2000-02-08 19:58:47 +000052 fd = open("/dev/tty0", O_RDWR);
53 if (fd < 0) {
Matt Kraaid537a952000-07-14 01:51:25 +000054 errorMsg("Error opening /dev/tty0: %s\n", strerror(errno));
Erik Andersen3fe7f9f2000-04-19 03:59:10 +000055 exit(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000056 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000057
58 read(0, buff, 7);
59 if (0 != strncmp(buff, magic, 7)) {
Matt Kraaid537a952000-07-14 01:51:25 +000060 errorMsg("This is not a valid binary keymap.\n");
Erik Andersen3fe7f9f2000-04-19 03:59:10 +000061 exit(FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +000062 }
63
64 if (MAX_NR_KEYMAPS != read(0, flags, MAX_NR_KEYMAPS)) {
Matt Kraaid537a952000-07-14 01:51:25 +000065 errorMsg("Error reading keymap flags: %s\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 strerror(errno));
Erik Andersen3fe7f9f2000-04-19 03:59:10 +000067 exit(FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +000068 }
69
Matt Kraai322ae932000-09-13 02:46:14 +000070 ibuff = (u_short *) xmalloc(ibuffsz);
Erik Andersene49d5ec2000-02-08 19:58:47 +000071
72 for (i = 0; i < MAX_NR_KEYMAPS; i++) {
73 if (flags[i] == 1) {
74 pos = 0;
75 while (pos < ibuffsz) {
76 if ((readsz = read(0, (char *) ibuff + pos, ibuffsz - pos))
77 < 0) {
Matt Kraaid537a952000-07-14 01:51:25 +000078 errorMsg("Error reading keymap: %s\n",
Erik Andersene49d5ec2000-02-08 19:58:47 +000079 strerror(errno));
Erik Andersen3fe7f9f2000-04-19 03:59:10 +000080 exit(FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 }
82 pos += readsz;
83 }
84 for (j = 0; j < NR_KEYS; j++) {
85 ke.kb_index = j;
86 ke.kb_table = i;
87 ke.kb_value = ibuff[j];
88 ioctl(fd, KDSKBENT, &ke);
89 }
90 }
91 }
Erik Andersen298854f2000-03-23 01:09:18 +000092 /* Don't bother to close files. Exit does that
93 * automagically, so we can save a few bytes */
94 /* close(fd); */
Eric Andersenb6106152000-06-19 17:25:40 +000095 return(TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000096}