-W is included in CFLAGS already.
[dragonfly.git] / release / sysinstall / keymap.c
1 /*
2  * Copyright (c) 1996 Joerg Wunsch
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  *
24  * $FreeBSD: src/release/sysinstall/keymap.c,v 1.5 1999/08/28 01:34:14 peter Exp $
25  * $DragonFly: src/release/sysinstall/Attic/keymap.c,v 1.2 2003/06/17 04:27:21 dillon Exp $
26  *
27  */
28
29 #include "sysinstall.h"
30 #include <errno.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <unistd.h>
34 #include <machine/console.h>
35
36 struct keymapInfo {
37     const char *name;
38     const struct keymap *map;
39 };
40
41 #include "keymap.h"
42
43 /*
44  * keymap.h is being automatically generated by the Makefile.  It
45  * contains definitions for all desired keymaps.  Note that since we
46  * don't support font loading nor screen mapping during installation,
47  * we simply don't care for any other keys than the ASCII subset.
48  *
49  * Therefore, if no keymap with the exact name has been found in the
50  * first pass, we make a second pass over the table looking just for
51  * the language name only.
52  */
53
54 /*
55  * Return values:
56  *
57  *  0: OK
58  * -1: no appropriate keymap found
59  * -2: error installing map (other than ENXIO which means we're not on syscons)
60  */
61
62 int
63 loadKeymap(const char *lang)
64 {
65     int passno, err;
66     char *llang;
67     size_t l;
68     struct keymapInfo *kip;
69
70     llang = strdup(lang);
71     if (llang == NULL)
72         abort();
73
74     for (passno = 0; passno < 2; passno++)
75     {
76         if (passno > 0) 
77         {
78             /* make the match more fuzzy */
79             l = strspn(llang, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
80             llang[l] = '\0';
81         }
82
83         l = strlen(llang);
84
85         for (kip = keymapInfos; kip->name; kip++)
86             if (strncmp(kip->name, llang, l) == 0)
87             {
88                 /* Yep, got it! */
89                 err = ioctl(0, PIO_KEYMAP, kip->map);
90                 free(llang);
91                 return (err == -1 && errno != ENOTTY)? -2: 0;
92             }
93     }
94     free(llang);
95     return -1;
96 }