diff options
| author | Toomas Soome <tsoome@me.com> | 2017-01-19 00:54:55 +0200 |
|---|---|---|
| committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2019-01-07 10:11:17 +0100 |
| commit | adc2b73db62a4506a57dfd1ce89bcadc4a60a29d (patch) | |
| tree | f659fc1972895271b7cd74327dec7476685992e8 /usr/src/cmd/loadkeys | |
| parent | 1f5207b7604fb44407eb4342aff613f7c4508508 (diff) | |
| download | illumos-joyent-adc2b73db62a4506a57dfd1ce89bcadc4a60a29d.tar.gz | |
7784 uts: console input should support Unicode
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
Reviewed by: Igor Kozhukhov <igor@dilos.org>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Diffstat (limited to 'usr/src/cmd/loadkeys')
43 files changed, 219 insertions, 310 deletions
diff --git a/usr/src/cmd/loadkeys/dumpkeys.c b/usr/src/cmd/loadkeys/dumpkeys.c index b200d5c73a..e16f319a2b 100644 --- a/usr/src/cmd/loadkeys/dumpkeys.c +++ b/usr/src/cmd/loadkeys/dumpkeys.c @@ -19,9 +19,6 @@ * * CDDL HEADER END */ -#ifndef lint -#ident "%Z%%M% %I% %E% SMI" -#endif /* * Copyright (c) 1988 by Sun Microsystems, Inc. @@ -66,9 +63,7 @@ static void printchar(int character, int delim); /*ARGSUSED*/ int -main(argc, argv) - int argc; - char **argv; +main(int argc, char **argv) { register int kbdfd; register int keystation; @@ -242,6 +237,9 @@ static char *funnies[] = { "nop", "oops", "hole", + "", /* not used */ + "", /* not used */ + "", /* not used */ "reset", "error", "idle", @@ -258,6 +256,15 @@ static char *fa_class[] = { "fa_cedilla", "fa_acute", "fa_grave", + "fa_macron", + "fa_breve", + "fa_dot", + "fa_slash", + "fa_ring", + "fa_apostrophe", + "fa_dacute", + "fa_ogonek", + "fa_caron" }; #define NFA_CLASS (sizeof (fa_class) / sizeof (fa_class[0])) @@ -311,15 +318,14 @@ static char *padkeys[] = { #define NPADKEYS (sizeof (padkeys) / sizeof (padkeys[0])) static void -printentry(kio) - register struct kiockeymap *kio; +printentry(struct kiockeymap *kio) { - register int entry = (kio->kio_entry & 0x1F); - register int fkeyset; - register int i; - register int c; + int entry = (kio->kio_entry & 0x1F); + int fkeyset; + int i; + int c; - switch (kio->kio_entry >> 8) { + switch (KEYFLAGS(kio->kio_entry)) { case 0x0: if (kio->kio_entry == '"') @@ -330,37 +336,37 @@ printentry(kio) printchar((int)kio->kio_entry, '\''); break; - case SHIFTKEYS >> 8: + case SHIFTKEYS: if (entry < NSHIFTKEYS) (void) printf("shiftkeys+%s", shiftkeys[entry]); else (void) printf("%#4x", kio->kio_entry); break; - case BUCKYBITS >> 8: + case BUCKYBITS: if (entry < NBUCKYBITS) (void) printf("buckybits+%s", buckybits[entry]); else (void) printf("%#4x", kio->kio_entry); break; - case FUNNY >> 8: + case FUNNY: if (entry < NFUNNIES) (void) printf("%s", funnies[entry]); else (void) printf("%#4x", kio->kio_entry); break; - case FA_CLASS >> 8: + case FA_CLASS: if (entry < NFA_CLASS) (void) printf("%s", fa_class[entry]); else (void) printf("%#4x", kio->kio_entry); break; - case STRING >> 8: + case STRING: if (entry < NBUILTIN_STRINGS && strncmp(kio->kio_string, - builtin_strings[entry].string, KTAB_STRLEN) == 0) + builtin_strings[entry].string, KTAB_STRLEN) == 0) (void) printf("string+%s", builtin_strings[entry].name); else { (void) printf("\""); @@ -372,16 +378,16 @@ printentry(kio) } break; - case FUNCKEYS >> 8: + case FUNCKEYS: fkeyset = (int)(kio->kio_entry & 0xF0) >> 4; if (fkeyset < NFKEYSETS) (void) printf("%s(%d)", fkeysets[fkeyset], - (entry&0x0F) + 1); + (entry & 0x0F) + 1); else (void) printf("%#4x", kio->kio_entry); break; - case PADKEYS >> 8: + case PADKEYS: if (entry < NPADKEYS) (void) printf("%s", padkeys[entry]); else @@ -395,9 +401,7 @@ printentry(kio) } static void -printchar(character, delim) - int character; - int delim; +printchar(int character, int delim) { switch (character) { @@ -433,8 +437,10 @@ printchar(character, delim) } else { if (character < 040) (void) printf("^%c", character + 0100); - else + else if (character <= 0xff) (void) printf("'\\%.3o'", character); + else + (void) printf("%#4x", character); } break; } diff --git a/usr/src/cmd/loadkeys/loadkeys.y b/usr/src/cmd/loadkeys/loadkeys.y index 2795f1f7bf..eb146480e6 100644 --- a/usr/src/cmd/loadkeys/loadkeys.y +++ b/usr/src/cmd/loadkeys/loadkeys.y @@ -21,10 +21,6 @@ * CDDL HEADER END */ -#ifndef lint -#pragma ident "%Z%%M% %I% %E% SMI" -#endif - /* * Copyright (c) 1999 by Sun Microsystems, Inc. * All rights reserved. @@ -45,21 +41,7 @@ #define ALL -1 /* special symbol for all tables */ -/* - * SunOS 4.x and Solaris 2.[1234] put Type 4 key tables into - * the keytables directory with no type qualification. - * If we're a SPARC, we might be using an NFS server that - * doesn't have the new type-qualified directories. - * (loadkeys wasn't used on non-SPARCs in 2.[1234].) - */ -#ifdef sparc -#define COMPATIBILITY_DIR -#endif - static char keytable_dir[] = "/usr/share/lib/keytables/type_%d/"; -#ifdef COMPATIBILITY_DIR -static char keytable_dir2[] = "/usr/share/lib/keytables/"; -#endif static char layout_prefix[] = "layout_"; struct keyentry { @@ -132,6 +114,7 @@ static int loadkey(int kbdfd, keyentry *kep); static int dupkey(int kbdfd, dupentry *dep, int shiftmask); static int swapkey(int kbdfd, dupentry *dep, int shiftmask); static int yylex(); +extern int yyparse(void); static int readesc(FILE *stream, int delim, int single_char); static int wordcmp(const void *w1, const void *w2); static int yyerror(char *msg); @@ -141,20 +124,18 @@ static FILE *open_mapping_file(char *pathbuf, char *name, boolean_t explicit_name, int type); int -main(argc, argv) - int argc; - char **argv; +main(int argc, char **argv) { - register int kbdfd; + int kbdfd; int type; int layout; /* maxint is 8 hex digits. */ char layout_filename[sizeof(layout_prefix)+8]; char pathbuf[MAXPATHLEN]; - register int shift; + int shift; struct kiockeymap mapentry; - register keyentry *kep; - register dupentry *dep; + keyentry *kep; + dupentry *dep; boolean_t explicit_name; while(++argv, --argc) { @@ -333,12 +314,8 @@ set_layout(char *arg) * else print a message on stderr and return NULL. */ FILE * -open_mapping_file( - char *pathbuf, - char *name, - boolean_t explicit_name, - int type -) { +open_mapping_file(char *pathbuf, char *name, boolean_t explicit_name, int type) +{ /* If the user specified the name, try it "raw". */ if (explicit_name) { strcpy(pathbuf, name); @@ -358,23 +335,8 @@ open_mapping_file( return (NULL); } (void) strcat(pathbuf, name); - infile = fopen(pathbuf, "r"); - if (infile) return (infile); - if (errno != ENOENT) goto fopen_fail; - -#ifdef COMPATIBILITY_DIR - /* If not, and either the name was specified explicitly */ - /* or this is a type 4... */ - if (explicit_name || type == KB_SUN4) { - /* Try the compatibility name. */ - /* No need to check len here, it's shorter. */ - (void) strcpy(pathbuf, keytable_dir2); - (void) strcat(pathbuf, infilename); - infile = fopen(pathbuf, "r"); - if (infile) return (infile); - if (errno != ENOENT) goto fopen_fail; - } -#endif + if ((infile = fopen(pathbuf, "r")) != NULL) + return (infile); fopen_fail: (void) fprintf(stderr, "loadkeys: "); @@ -425,7 +387,7 @@ makeentry(tablemask, entry) kep->ke_next = NULL; kep->ke_entry.kio_tablemask = tablemask; kep->ke_entry.kio_station = 0; - kep->ke_entry.kio_entry = (u_short)entry; + kep->ke_entry.kio_entry = entry; index = entry - STRING; if (index >= 0 && index <= 15) (void) strncpy(kep->ke_entry.kio_string, strings[index], @@ -624,6 +586,10 @@ code: { $$ = $1; } +| INT + { + $$ = $1; + } | '(' { $$ = '('; @@ -707,9 +673,18 @@ word_t wordtab[] = { { "downarrow", CONSTANT, DOWNARROW }, { "error", CONSTANT, ERROR }, { "fa_acute", CONSTANT, FA_ACUTE }, + { "fa_apostrophe", CONSTANT, FA_APOSTROPHE }, + { "fa_breve", CONSTANT, FA_BREVE }, + { "fa_caron", CONSTANT, FA_CARON }, { "fa_cedilla", CONSTANT, FA_CEDILLA }, { "fa_cflex", CONSTANT, FA_CFLEX }, + { "fa_dacute", CONSTANT, FA_DACUTE }, + { "fa_dot", CONSTANT, FA_DOT }, { "fa_grave", CONSTANT, FA_GRAVE }, + { "fa_macron", CONSTANT, FA_MACRON }, + { "fa_ogonek", CONSTANT, FA_OGONEK }, + { "fa_ring", CONSTANT, FA_RING }, + { "fa_slash", CONSTANT, FA_SLASH }, { "fa_tilde", CONSTANT, FA_TILDE }, { "fa_umlaut", CONSTANT, FA_UMLAUT }, { "hole", CONSTANT, HOLE }, @@ -910,7 +885,7 @@ yylex() yylval.number = wptr->w_lval; tokentype = wptr->w_type; } else { - yylval.number = strtol(tokbuf, &ptr, 10); + yylval.number = strtol(tokbuf, &ptr, 0); if (ptr == tokbuf) yyerror("syntax error"); else diff --git a/usr/src/cmd/loadkeys/type_6/albania b/usr/src/cmd/loadkeys/type_6/albania index d58ab75d5d..0ef261a8be 100644 --- a/usr/src/cmd/loadkeys/type_6/albania +++ b/usr/src/cmd/loadkeys/type_6/albania @@ -22,8 +22,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Albania Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/belarus b/usr/src/cmd/loadkeys/type_6/belarus index 432affeae3..b89fc72366 100644 --- a/usr/src/cmd/loadkeys/type_6/belarus +++ b/usr/src/cmd/loadkeys/type_6/belarus @@ -22,8 +22,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Belarus Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/belgium b/usr/src/cmd/loadkeys/type_6/belgium index 42c1edcacf..bd29bf992c 100644 --- a/usr/src/cmd/loadkeys/type_6/belgium +++ b/usr/src/cmd/loadkeys/type_6/belgium @@ -26,18 +26,18 @@ # Belgian Type 6 (USB) key layout # # -key 53 base ² shift ³ caps ² ctrl ² altg nop +key 53 base 0x00B2 shift 0x00B3 caps 0x00B2 ctrl 0x00B2 altg nop key 30 base & shift 1 caps & ctrl & altg | -key 31 base é shift 2 caps é ctrl é altg @ +key 31 base 0x00E9 shift 2 caps 0x00E9 ctrl 0x00E9 altg @ key 32 base '"' shift 3 caps '"' ctrl '"' altg # key 33 base '\'' shift 4 caps '\'' ctrl '\'' altg nop key 34 base ( shift 5 caps ( ctrl ^[ altg nop -key 35 base § shift 6 caps § ctrl ^_ altg ^ -key 36 base è shift 7 caps è ctrl è altg nop +key 35 base 0x00A7 shift 6 caps 0x00A7 ctrl ^_ altg ^ +key 36 base 0x00E8 shift 7 caps 0x00E8 ctrl 0x00E8 altg nop key 37 base ! shift 8 caps ! ctrl ^\ altg nop -key 38 base ç shift 9 caps ç ctrl ^^ altg { -key 39 base à shift 0 caps à ctrl ^@ altg } -key 45 base ) shift ° caps ) ctrl ^] altg nop +key 38 base 0x00E7 shift 9 caps 0x00E7 ctrl ^^ altg { +key 39 base 0x00E0 shift 0 caps 0x00E0 ctrl ^@ altg } +key 45 base ) shift 0x00B0 caps ) ctrl ^] altg nop key 46 base - shift _ caps - ctrl ^_ altg nop key 20 base a shift A caps A ctrl ^A altg nop key 26 base z shift Z caps Z ctrl ^Z altg nop @@ -45,8 +45,8 @@ key 47 base fa_cflex shift fa_umlaut caps fa_cflex ctrl fa_cflex altg [ key 48 base $ shift * caps $ ctrl $ altg ] key 4 base q shift Q caps Q ctrl ^Q altg nop key 51 base m shift M caps M ctrl ^M altg nop -key 52 base ù shift % caps ù ctrl ù altg fa_grave -key 50 base µ shift £ caps µ ctrl µ altg fa_acute numl nonl up nop +key 52 base 0x00F9 shift % caps 0x00F9 ctrl 0x00F9 altg fa_grave +key 50 base 0x00B5 shift 0x00A3 caps 0x00B5 ctrl 0x00B5 altg fa_acute numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl < altg '\\' numl nonl up nop key 29 base w shift W caps W ctrl ^W altg nop diff --git a/usr/src/cmd/loadkeys/type_6/brazil b/usr/src/cmd/loadkeys/type_6/brazil index d20cdfe74e..b1c905f5e4 100644 --- a/usr/src/cmd/loadkeys/type_6/brazil +++ b/usr/src/cmd/loadkeys/type_6/brazil @@ -29,44 +29,44 @@ # "caps lock" acts as "shift lock" on this keyboard # # -key 53 base '\'' shift '"' caps '\'' ctrl '\'' altg ¬ -key 30 base 1 shift ! caps 1 ctrl 1 altg ¹ -key 31 base 2 shift @ caps 2 ctrl ^@ altg ² -key 32 base 3 shift # caps 3 ctrl 3 altg ³ -key 33 base 4 shift $ caps 4 ctrl 4 altg £ -key 34 base 5 shift % caps 5 ctrl 5 altg ¢ -key 35 base 6 shift fa_umlaut caps 6 ctrl ^^ altg ¬ +key 53 base '\'' shift '"' caps '\'' ctrl '\'' altg 0x00AC +key 30 base 1 shift ! caps 1 ctrl 1 altg 0x00B9 +key 31 base 2 shift @ caps 2 ctrl ^@ altg 0x00B2 +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00B3 +key 33 base 4 shift $ caps 4 ctrl 4 altg 0x00A3 +key 34 base 5 shift % caps 5 ctrl 5 altg 0x00A2 +key 35 base 6 shift fa_umlaut caps 6 ctrl ^^ altg 0x00AC key 36 base 7 shift & caps 7 ctrl 7 altg { key 37 base 8 shift * caps 8 ctrl ^[ altg [ key 38 base 9 shift ( caps 9 ctrl ^] altg ] key 39 base 0 shift ) caps 0 ctrl 0 altg } key 45 base - shift _ caps - ctrl ^_ altg '\\' -key 46 base = shift + caps = ctrl = altg § +key 46 base = shift + caps = ctrl = altg 0x00A7 key 20 base q shift Q caps Q ctrl ^Q altg nop key 26 base w shift W caps W ctrl ^W altg nop key 8 base e shift E caps E ctrl ^E altg nop key 28 base y shift Y caps Y ctrl ^Y altg nop -key 18 base o shift O caps O ctrl ^O altg § -key 19 base p shift P caps P ctrl ^P altg ¶ +key 18 base o shift O caps O ctrl ^O altg 0x00A7 +key 19 base p shift P caps P ctrl ^P altg 0x00B6 key 47 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg '`' -key 48 base [ shift { caps [ ctrl ^[ altg ª +key 48 base [ shift { caps [ ctrl ^[ altg 0x00AA key 4 base a shift A caps A ctrl ^A altg nop key 22 base s shift S caps S ctrl ^S altg nop -key 51 base ç shift Ç caps Ç ctrl ç altg ¡ +key 51 base 0x00E7 shift 0x00C7 caps 0x00C7 ctrl 0x00E7 altg ¡ key 52 base fa_tilde shift fa_cflex caps fa_tilde ctrl ^^ altg ~ -key 50 base ] shift } caps ] ctrl ^] altg º numl nonl up nop -key 29 base z shift Z caps Z ctrl ^Z altg « -key 27 base x shift X caps X ctrl ^X altg » +key 50 base ] shift } caps ] ctrl ^] altg 0x00BA numl nonl up nop +key 29 base z shift Z caps Z ctrl ^Z altg 0x00AB +key 27 base x shift X caps X ctrl ^X altg 0x00BB key 6 base c shift C caps C ctrl ^C altg nop key 25 base v shift V caps V ctrl ^V altg nop key 5 base b shift B caps B ctrl ^B altg nop key 17 base n shift N caps N ctrl ^N altg nop -key 16 base m shift M caps M ctrl ^M altg µ +key 16 base m shift M caps M ctrl ^M altg 0x00B5 key 49 all hole -key 100 base / shift | caps / ctrl ^\ altg ° numl nonl up nop +key 100 base / shift | caps / ctrl ^\ altg 0x00B0 numl nonl up nop key 54 base , shift < caps , ctrl , altg ? key 55 base . shift > caps . ctrl . altg nop -key 56 base ; shift : caps ; ctrl ; altg ¿ +key 56 base ; shift : caps ; ctrl ; altg 0x00BF # # # diff --git a/usr/src/cmd/loadkeys/type_6/bulgaria b/usr/src/cmd/loadkeys/type_6/bulgaria index 1846c455c5..feafdf59b3 100644 --- a/usr/src/cmd/loadkeys/type_6/bulgaria +++ b/usr/src/cmd/loadkeys/type_6/bulgaria @@ -22,8 +22,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Bulgaria Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/canadian_bilingual b/usr/src/cmd/loadkeys/type_6/canadian_bilingual index d27e0abe84..e727c55cbf 100644 --- a/usr/src/cmd/loadkeys/type_6/canadian_bilingual +++ b/usr/src/cmd/loadkeys/type_6/canadian_bilingual @@ -28,42 +28,42 @@ # "caps lock" acts as "shift lock" on this keyboard # key 53 base / shift | caps / ctrl ^\ altg '\\' -key 30 base 1 shift ! caps 1 ctrl 1 altg ± +key 30 base 1 shift ! caps 1 ctrl 1 altg 0x00B1 key 31 base 2 shift @ caps 2 ctrl 2 altg nop -key 32 base 3 shift # caps 3 ctrl 3 altg £ -key 33 base 4 shift $ caps 4 ctrl 4 altg ¢ -key 34 base 5 shift % caps 5 ctrl 5 altg ¤ -key 35 base 6 shift ? caps 6 ctrl 6 altg ¬ +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00A3 +key 33 base 4 shift $ caps 4 ctrl 4 altg 0x00A2 +key 34 base 5 shift % caps 5 ctrl 5 altg 0x00A4 +key 35 base 6 shift ? caps 6 ctrl 6 altg 0x00AC key 36 base 7 shift & caps 7 ctrl 7 altg { key 37 base 8 shift * caps 8 ctrl 8 altg } key 38 base 9 shift ( caps 9 ctrl 9 altg [ key 39 base 0 shift ) caps 0 ctrl 0 altg ] -key 45 base - shift _ caps - ctrl ^_ altg ½ -key 46 base = shift + caps = ctrl = altg ¬ +key 45 base - shift _ caps - ctrl ^_ altg 0x00B0 +key 46 base = shift + caps = ctrl = altg 0x00AC key 20 base q shift Q caps Q ctrl ^Q altg nop key 26 base w shift W caps W ctrl ^W altg nop key 8 base e shift E caps E ctrl ^E altg nop key 28 base y shift Y caps Y ctrl ^Y altg nop -key 18 base o shift O caps O ctrl ^O altg § -key 19 base p shift P caps P ctrl ^P altg ¶ +key 18 base o shift O caps O ctrl ^O altg 0x00A7 +key 19 base p shift P caps P ctrl ^P altg 0x00B6 key 47 base fa_cflex shift fa_umlaut caps fa_cflex ctrl fa_cflex altg fa_grave -key 48 base ç shift Ç caps Ç ctrl ç altg ~ +key 48 base 0x00E7 shift 0x00C7 caps 0x00C7 ctrl 0x00E7 altg ~ key 4 base a shift A caps A ctrl ^A altg nop key 22 base s shift S caps S ctrl ^S altg nop key 51 base ; shift : caps ; ctrl ; altg ° -key 52 base è shift È caps È ctrl ¨ altg { -key 50 base à shift À caps À ctrl à altg } numl nonl up nop -key 29 base z shift Z caps Z ctrl ^Z altg « -key 27 base x shift X caps X ctrl ^X altg » +key 52 base 0x00E8 shift 0x00C8 caps 0x00C8 ctrl 0x00A8 altg { +key 50 base 0x00E0 shift 0x00C0 caps 0x00C0 ctrl 0x00E0 altg } numl nonl up nop +key 29 base z shift Z caps Z ctrl ^Z altg 0x00AB +key 27 base x shift X caps X ctrl ^X altg 0x00BB key 6 base c shift C caps C ctrl ^C altg nop key 25 base v shift V caps V ctrl ^V altg nop key 5 base b shift B caps B ctrl ^B altg nop key 17 base n shift N caps N ctrl ^N altg nop -key 16 base m shift M caps M ctrl ^M altg µ +key 16 base m shift M caps M ctrl ^M altg 0x00B5 key 54 base , shift '\'' caps , ctrl , altg < key 55 base . shift '"' caps . ctrl . altg > -key 56 base é shift É caps É ctrl é altg fa_acute -key 100 base ù shift Ù caps Ù ctrl ù altg nop numl nonl up nop +key 56 base 0x00E9 shift 0x00C9 caps 0x00C9 ctrl 0x00E9 altg fa_acute +key 100 base 0x00F9 shift 0x00D9 caps 0x00D9 ctrl 0x00F9 altg nop numl nonl up nop # # # New function keys assigned old codes diff --git a/usr/src/cmd/loadkeys/type_6/canadian_french b/usr/src/cmd/loadkeys/type_6/canadian_french index fab1b9a32c..8ebf7eecb8 100644 --- a/usr/src/cmd/loadkeys/type_6/canadian_french +++ b/usr/src/cmd/loadkeys/type_6/canadian_french @@ -22,40 +22,38 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Canadian French Type 6 (USB) key layout # # "caps lock" acts as "shift lock" on this keyboard # -key 53 base ² shift nop caps ² ctrl ² altg nop +key 53 base 0x00B2 shift nop caps 0x00B2 ctrl 0x00B2 altg nop key 30 base & shift 1 caps & ctrl & altg nop -key 31 base é shift 2 caps é ctrl é altg ~ +key 31 base 0x00E9 shift 2 caps 0x00E9 ctrl 0x00E9 altg ~ key 32 base '"' shift 3 caps '"' ctrl '"' altg # key 33 base '\'' shift 4 caps '\'' ctrl '\'' altg { key 34 base ( shift 5 caps ( ctrl ^[ altg [ key 35 base - shift 6 caps - ctrl ^_ altg | -key 36 base è shift 7 caps è ctrl è altg ` +key 36 base 0x00E8 shift 7 caps 0x00E8 ctrl 0x00E8 altg ` key 37 base _ shift 8 caps _ ctrl ^\ altg \ -key 38 base ç shift 9 caps ç ctrl ^^ altg ^ -key 39 base à shift 0 caps à ctrl ^@ altg @ -key 45 base ) shift ° caps ) ctrl ^] altg ] +key 38 base 0x00E7 shift 9 caps 0x00E7 ctrl ^^ altg ^ +key 39 base 0x00E0 shift 0 caps 0x00E0 ctrl ^@ altg @ +key 45 base ) shift 0x00B0 caps ) ctrl ^] altg ] key 46 base = shift + caps = ctrl = altg } key 20 base a shift A caps A ctrl ^A altg nop key 26 base z shift Z caps Z ctrl ^Z altg nop key 47 base fa_cflex shift fa_umlaut caps fa_cflex ctrl fa_cflex altg nop -key 48 base $ shift £ caps $ ctrl $ altg ¤ +key 48 base $ shift 0x00A3 caps $ ctrl $ altg 0x00A4 key 4 base q shift Q caps Q ctrl ^Q altg nop key 51 base m shift M caps M ctrl ^M altg nop -key 52 base ù shift % caps ù ctrl ù altg nop -key 50 base * shift µ caps * ctrl * altg nop numl nonl up nop +key 52 base 0x00F9 shift % caps 0x00F9 ctrl 0x00F9 altg nop +key 50 base * shift 0x00B5 caps * ctrl * altg nop numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl < altg nop numl nonl up nop key 29 base w shift W caps W ctrl ^W altg nop key 16 base , shift ? caps , ctrl , altg nop key 54 base ; shift . caps ; ctrl ; altg nop key 55 base : shift / caps : ctrl : altg nop -key 56 base ! shift § caps ! ctrl ! altg nop +key 56 base ! shift 0x00A7 caps ! ctrl ! altg nop # # # diff --git a/usr/src/cmd/loadkeys/type_6/croatia b/usr/src/cmd/loadkeys/type_6/croatia index bcedf7b51c..16530a2648 100644 --- a/usr/src/cmd/loadkeys/type_6/croatia +++ b/usr/src/cmd/loadkeys/type_6/croatia @@ -22,8 +22,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Croatia Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/czech b/usr/src/cmd/loadkeys/type_6/czech index c68d403b4f..e762e3d7af 100644 --- a/usr/src/cmd/loadkeys/type_6/czech +++ b/usr/src/cmd/loadkeys/type_6/czech @@ -21,8 +21,6 @@ # # CDDL HEADER END # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Czech Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/denmark b/usr/src/cmd/loadkeys/type_6/denmark index fbebfb1d56..4f493d11f6 100644 --- a/usr/src/cmd/loadkeys/type_6/denmark +++ b/usr/src/cmd/loadkeys/type_6/denmark @@ -22,14 +22,12 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Danish Type 6 (USB) key layout # -key 53 base ½ shift § caps ½ ctrl ½ altg nop +key 53 base 0x00BD shift 0x00A7 caps 0x00BD ctrl 0x00BD altg nop key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ -key 32 base 3 shift # caps 3 ctrl 3 altg £ -key 33 base 4 shift ¤ caps 4 ctrl 4 altg $ +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00A3 +key 33 base 4 shift 0x00A4 caps 4 ctrl 4 altg $ key 34 base 5 shift % caps 5 ctrl 5 altg ~ key 35 base 6 shift & caps 6 ctrl ^^ altg ^ key 36 base 7 shift / caps 7 ctrl 7 altg { @@ -38,10 +36,10 @@ key 38 base 9 shift ) caps 9 ctrl ^] altg ] key 39 base 0 shift = caps 0 ctrl 0 altg } key 45 base + shift ? caps + ctrl ^_ altg nop key 46 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg | -key 47 base å shift Å caps Å ctrl å altg nop +key 47 base 0x00E5 shift 0x00C5 caps 0x00C5 ctrl 0x00E5 altg nop key 48 base fa_umlaut shift fa_cflex caps fa_umlaut ctrl fa_umlaut altg fa_tilde -key 51 base æ shift Æ caps Æ ctrl æ altg nop -key 52 base ø shift Ø caps Ø ctrl ø altg nop +key 51 base 0x00E6 shift 0x00C6 caps 0x00C6 ctrl 0x00E6 altg nop +key 52 base 0x00F8 shift 0x00D8 caps 0x00D8 ctrl 0x00F8 altg nop key 50 base '\'' shift * caps '\'' ctrl '\'' altg '`' numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl ^\ altg '\\' numl nonl up nop diff --git a/usr/src/cmd/loadkeys/type_6/estonia b/usr/src/cmd/loadkeys/type_6/estonia index eadf99a94a..8b9f62b3f1 100644 --- a/usr/src/cmd/loadkeys/type_6/estonia +++ b/usr/src/cmd/loadkeys/type_6/estonia @@ -30,13 +30,13 @@ # However, all necessary ASCII characters are placed onto the right keys. # # -key 53 base ` shift fa_tilde caps ` ctrl ^^ altg '¬' -key 30 base 1 shift ! caps 1 ctrl 1 altg ¹ +key 53 base fa_caron shift fa_tilde caps ` ctrl ^^ altg '~' +key 30 base 1 shift ! caps 1 ctrl 1 altg 0x00B9 key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ -key 32 base 3 shift # caps 3 ctrl 3 altg £ -key 33 base 4 shift ¤ caps 4 ctrl 4 altg $ -key 34 base 5 shift % caps 5 ctrl 5 altg ½ -key 35 base 6 shift & caps 6 ctrl 6 altg '¬' +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00A2 +key 33 base 4 shift 0x00A4 caps 4 ctrl 4 altg $ +key 34 base 5 shift % caps 5 ctrl 5 altg 0x00BD +key 35 base 6 shift & caps 6 ctrl 6 altg 0x00AC key 36 base 7 shift / caps 7 ctrl 7 altg { key 37 base 8 shift ( caps 8 ctrl ^[ altg [ key 38 base 9 shift ) caps 9 ctrl ^] altg ] @@ -44,17 +44,19 @@ key 39 base 0 shift = caps 0 ctrl 0 altg } key 45 base + shift ? caps + ctrl ^_ altg '\\' key 46 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg ` key 20 base q shift Q caps Q ctrl ^Q altg @ -key 47 base ü shift Ü caps Ü ctrl ü altg fa_umlaut -key 48 base fa_umlaut shift ^ caps fa_umlaut ctrl fa_tilde altg ~ -key 51 base ö shift Ö caps Ö ctrl ö altg nop -key 52 base ä shift Ä caps Ä ctrl ä altg ^ +key 47 base 0x00FC shift 0x00DC caps 0x00DC ctrl nop altg fa_umlaut +key 48 base 0x00F5 shift 0x00D5 caps 0x00D5 ctrl nop altg ~ +key 51 base 0x00F6 shift 0x00D6 caps 0x00D6 ctrl nop altg nop +key 52 base 0x00E4 shift 0x00C4 caps 0x00C4 ctrl nop altg ^ key 50 base '\'' shift * caps '\'' ctrl '\'' altg '`' numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl ^| altg | numl nonl up nop -key 29 base z shift Z caps Z ctrl ^Z altg « -key 27 base x shift X caps X ctrl ^X altg » -key 6 base c shift C caps C ctrl ^C altg ¢ -key 16 base m shift M caps M ctrl '\r' altg µ +key 22 base s shift S caps S ctrl ^S altg 0x0161 +key 29 base z shift Z caps Z ctrl ^Z altg 0x017E +key 27 base x shift X caps X ctrl ^X altg nop +key 6 base c shift C caps C ctrl ^C altg 0x00A2 +key 8 base e shift E caps E ctrl ^E altg 0x20AC +key 16 base m shift M caps M ctrl '\r' altg 0x00B5 key 54 base , shift ; caps , ctrl , altg < key 55 base . shift : caps . ctrl . altg > key 56 base - shift _ caps - ctrl ^_ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/finnish b/usr/src/cmd/loadkeys/type_6/finnish index 6a7f113331..bc3926aa17 100644 --- a/usr/src/cmd/loadkeys/type_6/finnish +++ b/usr/src/cmd/loadkeys/type_6/finnish @@ -22,13 +22,11 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Finnish Type 6 (USB) key layout # -key 53 base § shift ½ caps § ctrl § altg nop +key 53 base 0x00A7 shift 0x00B0 caps 0x00A7 ctrl 0x00A7 altg nop key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ -key 32 base 3 shift # caps 3 ctrl 3 altg £ +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00A3 key 33 base 4 shift ¤ caps 4 ctrl 4 altg $ key 34 base 5 shift % caps 5 ctrl 5 altg nop key 35 base 6 shift & caps 6 ctrl 6 altg nop @@ -38,10 +36,10 @@ key 38 base 9 shift ) caps 9 ctrl ^] altg ] key 39 base 0 shift = caps 0 ctrl 0 altg } key 45 base + shift ? caps + ctrl ^_ altg '\\' key 46 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg nop -key 47 base å shift Å caps Å ctrl å altg nop +key 47 base 0x00E5 shift 0x00C5 caps 0x00C5 ctrl 0x00E5 altg nop key 48 base fa_umlaut shift ^ caps fa_umlaut ctrl fa_umlaut altg ~ -key 51 base ö shift Ö caps Ö ctrl ö altg nop -key 52 base ä shift Ä caps Ä ctrl ä altg nop +key 51 base 0x00F6 shift 0x00D6 caps 0x00D6 ctrl 0x00F6 altg nop +key 52 base 0x00E4 shift 0x00C4 caps 0x00C4 ctrl 0x00E4 altg nop key 50 base '\'' shift * caps '\'' ctrl '\'' altg '`' numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl ^| altg | numl nonl up nop diff --git a/usr/src/cmd/loadkeys/type_6/france b/usr/src/cmd/loadkeys/type_6/france index 0e1c39c3cb..edcad8053c 100644 --- a/usr/src/cmd/loadkeys/type_6/france +++ b/usr/src/cmd/loadkeys/type_6/france @@ -22,40 +22,38 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # French Type 6 (USB) key layout # # "caps lock" acts as "shift lock" on this keyboard # -key 53 base ² shift nop caps ² ctrl ² altg nop +key 53 base 0x00B2 shift nop caps 0x00B2 ctrl 0x00B2 altg nop key 30 base & shift 1 caps & ctrl & altg nop -key 31 base é shift 2 caps é ctrl é altg ~ +key 31 base 0x00E9 shift 2 caps 0x00E9 ctrl 0x00E9 altg ~ key 32 base '"' shift 3 caps '"' ctrl '"' altg # key 33 base '\'' shift 4 caps '\'' ctrl '\'' altg { key 34 base ( shift 5 caps ( ctrl ^[ altg [ key 35 base - shift 6 caps - ctrl ^_ altg | -key 36 base è shift 7 caps è ctrl è altg ` +key 36 base 0x00E8 shift 7 caps 0x00E8 ctrl 0x00E8 altg ` key 37 base _ shift 8 caps _ ctrl ^\ altg \ -key 38 base ç shift 9 caps ç ctrl ^^ altg ^ -key 39 base à shift 0 caps à ctrl ^@ altg @ -key 45 base ) shift ° caps ) ctrl ^] altg ] +key 38 base 0x00E7 shift 9 caps 0x00E7 ctrl ^^ altg ^ +key 39 base 0x00E0 shift 0 caps 0x00E0 ctrl ^@ altg @ +key 45 base ) shift 0x00B0 caps ) ctrl ^] altg ] key 46 base = shift + caps = ctrl = altg } key 20 base a shift A caps A ctrl ^A altg nop key 26 base z shift Z caps Z ctrl ^Z altg nop key 47 base fa_cflex shift fa_umlaut caps fa_cflex ctrl fa_cflex altg nop -key 48 base $ shift £ caps $ ctrl $ altg ¤ +key 48 base $ shift 0x00A3 caps $ ctrl $ altg 0x00A4 key 4 base q shift Q caps Q ctrl ^Q altg nop key 51 base m shift M caps M ctrl ^M altg nop -key 52 base ù shift % caps ù ctrl ù altg nop -key 50 base * shift µ caps * ctrl * altg nop numl nonl up nop +key 52 base 0x00F9 shift % caps 0x00F9 ctrl 0x00F9 altg nop +key 50 base * shift 0x00B5 caps * ctrl * altg nop numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl < altg nop numl nonl up nop key 29 base w shift W caps W ctrl ^W altg nop key 16 base , shift ? caps , ctrl , altg nop key 54 base ; shift . caps ; ctrl ; altg nop key 55 base : shift / caps : ctrl : altg nop -key 56 base ! shift § caps ! ctrl ! altg nop +key 56 base ! shift 0x00A7 caps ! ctrl ! altg nop # # # diff --git a/usr/src/cmd/loadkeys/type_6/germany b/usr/src/cmd/loadkeys/type_6/germany index c26ba4eee1..1377c4c4b4 100644 --- a/usr/src/cmd/loadkeys/type_6/germany +++ b/usr/src/cmd/loadkeys/type_6/germany @@ -22,16 +22,14 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # German Type 6 (USB) key layout # # "caps lock" acts as "shift lock" on this keyboard # -key 53 base ^ shift ° caps ^ ctrl ^^ altg nop +key 53 base ^ shift 0x00B0 caps ^ ctrl ^^ altg nop key 30 base 1 shift ! caps 1 ctrl 1 altg nop -key 31 base 2 shift '"' caps 2 ctrl ^@ altg ² -key 32 base 3 shift § caps 3 ctrl 3 altg ³ +key 31 base 2 shift '"' caps 2 ctrl ^@ altg 0x00B2 +key 32 base 3 shift 0x00A7 caps 3 ctrl 3 altg 0x00B3 key 33 base 4 shift $ caps 4 ctrl 4 altg nop key 34 base 5 shift % caps 5 ctrl 5 altg nop key 35 base 6 shift & caps 6 ctrl 6 altg nop @@ -39,19 +37,19 @@ key 36 base 7 shift / caps 7 ctrl 7 altg { key 37 base 8 shift ( caps 8 ctrl ^[ altg [ key 38 base 9 shift ) caps 9 ctrl ^] altg ] key 39 base 0 shift = caps 0 ctrl 0 altg } -key 45 base ß shift ? caps ß ctrl ^\ altg '\\' +key 45 base 0x00DF shift ? caps 0x00DF ctrl ^\ altg '\\' key 46 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg nop key 20 base q shift Q caps Q ctrl ^Q altg @ key 28 base z shift Z caps Z ctrl ^Z altg nop -key 47 base ü shift Ü caps Ü ctrl ü altg nop +key 47 base 0x00FC shift 0x00DC caps 0x00DC ctrl 0x00FC altg nop key 48 base + shift * caps + ctrl + altg ~ -key 51 base ö shift Ö caps Ö ctrl ö altg nop -key 52 base ä shift Ä caps Ä ctrl ä altg nop +key 51 base 0x00F6 shift 0x00D6 caps 0x00D6 ctrl 0x00F6 altg nop +key 52 base 0x00E4 shift 0x00C4 caps 0x00C4 ctrl 0x00E4 altg nop key 50 base # shift '\'' caps # ctrl # altg '`' numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl < altg | numl nonl up nop key 29 base y shift Y caps Y ctrl ^Y altg nop -key 16 base m shift M caps M ctrl '\r' altg µ +key 16 base m shift M caps M ctrl '\r' altg 0x00B5 key 54 base , shift ; caps , ctrl , altg nop key 55 base . shift : caps . ctrl . altg nop key 56 base - shift _ caps - ctrl ^_ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/greece b/usr/src/cmd/loadkeys/type_6/greece index c20507e228..aa9f6ca157 100644 --- a/usr/src/cmd/loadkeys/type_6/greece +++ b/usr/src/cmd/loadkeys/type_6/greece @@ -22,8 +22,6 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Greek Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/hungary b/usr/src/cmd/loadkeys/type_6/hungary index 668765061f..0227c744b2 100644 --- a/usr/src/cmd/loadkeys/type_6/hungary +++ b/usr/src/cmd/loadkeys/type_6/hungary @@ -22,8 +22,6 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Hungary Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/iceland b/usr/src/cmd/loadkeys/type_6/iceland index e18c8206e2..4ff9b4ab8a 100644 --- a/usr/src/cmd/loadkeys/type_6/iceland +++ b/usr/src/cmd/loadkeys/type_6/iceland @@ -22,8 +22,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Iceland Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/italy b/usr/src/cmd/loadkeys/type_6/italy index c2b70a221b..6c9e1effc0 100644 --- a/usr/src/cmd/loadkeys/type_6/italy +++ b/usr/src/cmd/loadkeys/type_6/italy @@ -22,25 +22,23 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Italian Type 6 (USB) key layout # key 53 base '\\' shift | caps '\\' ctrl ^\ altg nop key 31 base 2 shift '"' caps 2 ctrl 2 altg nop -key 32 base 3 shift £ caps 3 ctrl 3 altg nop +key 32 base 3 shift 0x00A3 caps 3 ctrl 3 altg nop key 35 base 6 shift & caps 6 ctrl 6 altg nop key 36 base 7 shift / caps 7 ctrl 7 altg nop key 37 base 8 shift ( caps 8 ctrl 8 altg { key 38 base 9 shift ) caps 9 ctrl 9 altg } key 39 base 0 shift = caps 0 ctrl 0 altg nop key 45 base '\'' shift ? caps '\'' ctrl '\'' altg '`' -key 46 base ì shift ^ caps Ì ctrl ^^ altg nop -key 47 base è shift é caps È ctrl ^[ altg [ +key 46 base 0x00EC shift ^ caps 0x00CC ctrl ^^ altg nop +key 47 base 0x00E8 shift 0x00E9 caps 0x00C8 ctrl ^[ altg [ key 48 base + shift * caps + ctrl ^] altg ] -key 51 base ò shift ç caps Ò ctrl ^@ altg @ -key 52 base à shift ° caps À ctrl à altg # -key 50 base ù shift § caps Ù ctrl ù altg ~ numl nonl up nop +key 51 base 0x00F2 shift 0x00E7 caps 0x00D2 ctrl ^@ altg @ +key 52 base 0x00E0 shift 0x00B0 caps 0x00C0 ctrl 0x00E0 altg # +key 50 base 0x00F9 shift 0x00A7 caps 0x00D9 ctrl 0x00F9 altg ~ numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl < altg nop numl nonl up nop key 54 base , shift ; caps , ctrl , altg nop diff --git a/usr/src/cmd/loadkeys/type_6/japan b/usr/src/cmd/loadkeys/type_6/japan index c4b2ea1eeb..37f87cf47b 100644 --- a/usr/src/cmd/loadkeys/type_6/japan +++ b/usr/src/cmd/loadkeys/type_6/japan @@ -22,8 +22,6 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Japanese Type 6 (USB) key layout # # key 13: ROMAN/KANA diff --git a/usr/src/cmd/loadkeys/type_6/korea b/usr/src/cmd/loadkeys/type_6/korea index 2f8df8125f..473a996db6 100644 --- a/usr/src/cmd/loadkeys/type_6/korea +++ b/usr/src/cmd/loadkeys/type_6/korea @@ -22,8 +22,6 @@ # # CDDL HEADER END # -# ident "%Z%%M% %I% %E% SMI" -# # Korean Type 6 (USB) key layout # # diff --git a/usr/src/cmd/loadkeys/type_6/latinamerica b/usr/src/cmd/loadkeys/type_6/latinamerica index 26182531ce..a383f26390 100644 --- a/usr/src/cmd/loadkeys/type_6/latinamerica +++ b/usr/src/cmd/loadkeys/type_6/latinamerica @@ -22,11 +22,9 @@ # # CDDL HEADER END # -# ident "%Z%%M% %I% %E% SMI" -# # Latin American Type 6 (USB) key layout # -key 53 base | shift ° caps | ctrl hole altg ¬ +key 53 base | shift 0x00B0 caps | ctrl hole altg 0x00AC key 30 base 1 shift ! caps 1 ctrl 1 altg nop key 31 base 2 shift '"' caps 2 ctrl 2 altg nop key 32 base 3 shift # caps 3 ctrl 3 altg nop @@ -38,11 +36,11 @@ key 37 base 8 shift ( caps 8 ctrl 8 altg nop key 38 base 9 shift ) caps 9 ctrl 9 altg nop key 39 base 0 shift = caps 0 ctrl 0 altg nop key 45 base '\'' shift ? caps '\'' ctrl '\'' altg '\\' -key 46 base ¿ shift ¡ caps ¿ ctrl ¿ altg nop +key 46 base 0x00BF shift 0x00A1 caps 0x00BF ctrl 0x00BF altg nop key 20 base q shift Q caps Q ctrl ^@ altg @ key 47 base fa_acute shift fa_umlaut caps fa_acute ctrl fa_acute altg nop key 48 base + shift * caps + ctrl + altg ~ -key 51 base ñ shift Ñ caps Ñ ctrl ñ altg nop +key 51 base 0x00F1 shift 0x00D1 caps 0x00D1 ctrl 0x00F1 altg nop key 52 base { shift [ caps { ctrl ^[ altg ^ key 50 base } shift ] caps } ctrl ^] altg ` numl nonl up nop key 49 all hole diff --git a/usr/src/cmd/loadkeys/type_6/latvia b/usr/src/cmd/loadkeys/type_6/latvia index 99d9514c0d..b2794e5186 100644 --- a/usr/src/cmd/loadkeys/type_6/latvia +++ b/usr/src/cmd/loadkeys/type_6/latvia @@ -22,8 +22,6 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Latvian Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/lithuania b/usr/src/cmd/loadkeys/type_6/lithuania index 9b5fa55d8a..a594d3f440 100644 --- a/usr/src/cmd/loadkeys/type_6/lithuania +++ b/usr/src/cmd/loadkeys/type_6/lithuania @@ -22,8 +22,6 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Lithuanian Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/macedonia b/usr/src/cmd/loadkeys/type_6/macedonia index f287e76aa9..a48c051c54 100644 --- a/usr/src/cmd/loadkeys/type_6/macedonia +++ b/usr/src/cmd/loadkeys/type_6/macedonia @@ -22,8 +22,6 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Macedonian Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/maltauk b/usr/src/cmd/loadkeys/type_6/maltauk index 6e2862208d..71b10d6f09 100644 --- a/usr/src/cmd/loadkeys/type_6/maltauk +++ b/usr/src/cmd/loadkeys/type_6/maltauk @@ -22,8 +22,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Malta UK Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/maltaus b/usr/src/cmd/loadkeys/type_6/maltaus index 4e95c9aa28..bc93655470 100644 --- a/usr/src/cmd/loadkeys/type_6/maltaus +++ b/usr/src/cmd/loadkeys/type_6/maltaus @@ -22,8 +22,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Malta US Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/netherlands b/usr/src/cmd/loadkeys/type_6/netherlands index a412f185ff..7524bacf09 100644 --- a/usr/src/cmd/loadkeys/type_6/netherlands +++ b/usr/src/cmd/loadkeys/type_6/netherlands @@ -22,37 +22,35 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Dutch Type 6 (USB) key layout # -key 53 base @ shift § caps @ ctrl ^@ altg '¬' -key 30 base 1 shift ! caps 1 ctrl 1 altg ¹ -key 31 base 2 shift '"' caps 2 ctrl 2 altg ² -key 32 base 3 shift # caps 3 ctrl 3 altg ³ -key 33 base 4 shift $ caps 4 ctrl 4 altg ¼ -key 34 base 5 shift % caps 5 ctrl 5 altg ½ -key 35 base 6 shift & caps 6 ctrl 6 altg ¾ -key 36 base 7 shift _ caps 7 ctrl ^_ altg £ +key 53 base @ shift 0x00A7 caps @ ctrl ^@ altg 0x00AC +key 30 base 1 shift ! caps 1 ctrl 1 altg 0x00B9 +key 31 base 2 shift '"' caps 2 ctrl 2 altg 0x00B2 +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00B3 +key 33 base 4 shift $ caps 4 ctrl 4 altg 0x00BC +key 34 base 5 shift % caps 5 ctrl 5 altg 0x00BD +key 35 base 6 shift & caps 6 ctrl 6 altg 0x00BE +key 36 base 7 shift _ caps 7 ctrl ^_ altg 0x00A3 key 37 base 8 shift ( caps 8 ctrl 8 altg { key 38 base 9 shift ) caps 9 ctrl ^] altg } key 39 base 0 shift '\'' caps 0 ctrl 0 altg '`' key 45 base / shift ? caps / ctrl ^\ altg '\\' -key 46 base ° shift fa_tilde caps ° ctrl ° altg fa_cedilla +key 46 base 0x00B0 shift fa_tilde caps 0x00B0 ctrl 0x00B0 altg fa_cedilla key 47 base fa_umlaut shift fa_cflex caps fa_umlaut ctrl fa_umlaut altg nop key 48 base * shift | caps * ctrl * altg ~ -key 22 base s shift S caps S ctrl ^S altg ß -key 51 base + shift ± caps + ctrl + altg nop +key 22 base s shift S caps S ctrl ^S altg 0x00DF +key 51 base + shift 0x00B1 caps + ctrl + altg nop key 52 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg nop key 50 base < shift > caps < ctrl ^^ altg ^ numl nonl up nop key 49 all hole -key 100 base ] shift [ caps [ ctrl ^[ altg ¦ numl nonl up nop -key 29 base z shift Z caps Z ctrl ^Z altg « -key 27 base x shift X caps X ctrl ^X altg » -key 6 base c shift C caps C ctrl ^C altg ¢ -key 16 base m shift M caps M ctrl '\r' altg µ +key 100 base ] shift [ caps [ ctrl ^[ altg 0x00A6 numl nonl up nop +key 29 base z shift Z caps Z ctrl ^Z altg 0x00AB +key 27 base x shift X caps X ctrl ^X altg 0x00BB +key 6 base c shift C caps C ctrl ^C altg 0x00A2 +key 16 base m shift M caps M ctrl '\r' altg 0x00B5 key 54 base , shift ; caps , ctrl , altg nop -key 55 base . shift : caps . ctrl . altg · +key 55 base . shift : caps . ctrl . altg 0x00B7 key 56 base - shift = caps - ctrl ^_ altg nop # # diff --git a/usr/src/cmd/loadkeys/type_6/norway b/usr/src/cmd/loadkeys/type_6/norway index 182f912305..21f93521a3 100644 --- a/usr/src/cmd/loadkeys/type_6/norway +++ b/usr/src/cmd/loadkeys/type_6/norway @@ -22,14 +22,12 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Norwegian Type 6 (USB) key layout # -key 53 base | shift § caps | ctrl | altg nop +key 53 base | shift 0x00A7 caps | ctrl | altg nop key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ -key 32 base 3 shift # caps 3 ctrl 3 altg £ -key 33 base 4 shift ¤ caps 4 ctrl 4 altg $ +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00A3 +key 33 base 4 shift 0x00A4 caps 4 ctrl 4 altg $ key 34 base 5 shift % caps 5 ctrl 5 altg ~ key 35 base 6 shift & caps 6 ctrl ^^ altg ^ key 36 base 7 shift / caps 7 ctrl 7 altg { @@ -38,10 +36,10 @@ key 38 base 9 shift ) caps 9 ctrl ^] altg ] key 39 base 0 shift = caps 0 ctrl 0 altg } key 45 base + shift ? caps + ctrl + altg nop key 46 base '\\' shift fa_grave caps '\\' ctrl ^\ altg fa_acute -key 47 base å shift Å caps Å ctrl å altg nop +key 47 base 0x00E5 shift 0x00C5 caps 0x00C5 ctrl 0x00E5 altg nop key 48 base fa_umlaut shift fa_cflex caps fa_umlaut ctrl ^^ altg fa_tilde -key 51 base ø shift Ø caps Ø ctrl ø altg nop -key 52 base æ shift Æ caps Æ ctrl æ altg nop +key 51 base 0x00F8 shift 0x00D8 caps 0x00D8 ctrl 0x00F8 altg nop +key 52 base 0x00E6 shift 0x00C6 caps 0x00C6 ctrl 0x00E6 altg nop key 50 base '\'' shift * caps '\'' ctrl '\'' altg '`' numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl < altg nop numl nonl up nop diff --git a/usr/src/cmd/loadkeys/type_6/poland b/usr/src/cmd/loadkeys/type_6/poland index 4c7c605aef..b5da164e8a 100644 --- a/usr/src/cmd/loadkeys/type_6/poland +++ b/usr/src/cmd/loadkeys/type_6/poland @@ -21,8 +21,6 @@ # # CDDL HEADER END # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Polish Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/portugal b/usr/src/cmd/loadkeys/type_6/portugal index 335ea464e5..817b821ab7 100644 --- a/usr/src/cmd/loadkeys/type_6/portugal +++ b/usr/src/cmd/loadkeys/type_6/portugal @@ -22,14 +22,12 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Portuguese Type 6 (USB) key layout # key 53 base '\\' shift | caps '\\' ctrl ^\ altg nop key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ -key 32 base 3 shift # caps 3 ctrl 3 altg £ -key 33 base 4 shift $ caps 4 ctrl 4 altg § +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00A3 +key 33 base 4 shift $ caps 4 ctrl 4 altg 0x00A7 key 34 base 5 shift % caps 5 ctrl 5 altg ~ key 35 base 6 shift & caps 6 ctrl ^^ altg ^ key 36 base 7 shift / caps 7 ctrl 7 altg { @@ -37,11 +35,11 @@ key 37 base 8 shift ( caps 8 ctrl ^[ altg [ key 38 base 9 shift ) caps 9 ctrl ^] altg ] key 39 base 0 shift = caps 0 ctrl 0 altg } key 45 base '\'' shift ? caps '\'' ctrl '\'' altg '`' -key 46 base « shift » caps « ctrl « altg nop +key 46 base 0x00AB shift 0x00BB caps 0x00AB ctrl 0x00AB altg nop key 47 base + shift * caps + ctrl + altg fa_umlaut key 48 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg nop -key 51 base ç shift Ç caps Ç ctrl ç altg nop -key 52 base º shift ª caps º ctrl º altg nop +key 51 base 0x00E7 shift 0x00C7 caps 0x00C7 ctrl 0x00E7 altg nop +key 52 base 0x00BA shift 0x00AA caps 0x00BA ctrl 0x00BA altg nop key 50 base fa_tilde shift fa_cflex caps fa_tilde ctrl ^^ altg nop numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl < altg nop numl nonl up nop diff --git a/usr/src/cmd/loadkeys/type_6/russia b/usr/src/cmd/loadkeys/type_6/russia index 15a7272e43..22803f8357 100644 --- a/usr/src/cmd/loadkeys/type_6/russia +++ b/usr/src/cmd/loadkeys/type_6/russia @@ -22,8 +22,6 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Russian Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/serbiaandmontenegro b/usr/src/cmd/loadkeys/type_6/serbiaandmontenegro index 9b91b1fef0..68712e9ee5 100644 --- a/usr/src/cmd/loadkeys/type_6/serbiaandmontenegro +++ b/usr/src/cmd/loadkeys/type_6/serbiaandmontenegro @@ -21,8 +21,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Serbia-And-Montenegro Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/slovakia b/usr/src/cmd/loadkeys/type_6/slovakia index 038490b74a..429d36edff 100644 --- a/usr/src/cmd/loadkeys/type_6/slovakia +++ b/usr/src/cmd/loadkeys/type_6/slovakia @@ -20,8 +20,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Slovakia Type 6 (USB) key layout # # Note, on the console, this keyboard layout is exactly diff --git a/usr/src/cmd/loadkeys/type_6/spain b/usr/src/cmd/loadkeys/type_6/spain index 41acd98d81..b9d60e76f7 100644 --- a/usr/src/cmd/loadkeys/type_6/spain +++ b/usr/src/cmd/loadkeys/type_6/spain @@ -23,28 +23,26 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Spanish Type 6 (USB) key layout # -key 53 base º shift ª caps º ctrl ^\ altg '\\' +key 53 base 0x00BA shift 0x00AA caps 0x00BA ctrl ^\ altg '\\' key 30 base 1 shift ! caps 1 ctrl 1 altg | key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ -key 32 base 3 shift · caps 3 ctrl 3 altg # +key 32 base 3 shift 0x00B7 caps 3 ctrl 3 altg # key 33 base 4 shift $ caps 4 ctrl ^^ altg ^ key 34 base 5 shift % caps 5 ctrl 5 altg ~ -key 35 base 6 shift & caps 6 ctrl 6 altg ¬ +key 35 base 6 shift & caps 6 ctrl 6 altg 0x00AC key 36 base 7 shift / caps 7 ctrl 7 altg nop key 37 base 8 shift ( caps 8 ctrl 8 altg nop key 38 base 9 shift ) caps 9 ctrl 9 altg nop key 39 base 0 shift = caps 0 ctrl 0 altg nop key 45 base '\'' shift ? caps '\'' ctrl '\'' altg '`' -key 46 base ¡ shift ¿ caps ¡ ctrl ¡ altg nop +key 46 base 0x00A1 shift 0x00BF caps 0x00A1 ctrl 0x00A1 altg nop key 47 base fa_grave shift fa_cflex caps fa_grave ctrl ^[ altg [ key 48 base + shift * caps + ctrl ^] altg ] -key 51 base ñ shift Ñ caps Ñ ctrl ñ altg nop +key 51 base 0x00F1 shift 0x00D1 caps 0x00D1 ctrl 0x00F1 altg nop key 52 base fa_acute shift fa_umlaut caps fa_acute ctrl fa_acute altg { -key 50 base ç shift Ç caps Ç ctrl ç altg } numl nonl up nop +key 50 base 0x00E7 shift 0x00C7 caps 0x00C7 ctrl 0x00E7 altg } numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl ^^ altg nop numl nonl up nop key 54 base , shift ; caps , ctrl , altg nop diff --git a/usr/src/cmd/loadkeys/type_6/sweden b/usr/src/cmd/loadkeys/type_6/sweden index 2561cc7c2f..9b04ff05af 100644 --- a/usr/src/cmd/loadkeys/type_6/sweden +++ b/usr/src/cmd/loadkeys/type_6/sweden @@ -22,14 +22,12 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Swedish Type 6 (USB) key layout # -key 53 base § shift ½ caps § ctrl § altg nop +key 53 base 0x00A7 shift 0x00BD caps 0x00A7 ctrl 0x00A7 altg nop key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ -key 32 base 3 shift # caps 3 ctrl 3 altg £ -key 33 base 4 shift ¤ caps 4 ctrl 4 altg $ +key 32 base 3 shift # caps 3 ctrl 3 altg 0x00A3 +key 33 base 4 shift 0x00A4 caps 4 ctrl 4 altg $ key 34 base 5 shift % caps 5 ctrl 5 altg nop key 35 base 6 shift & caps 6 ctrl 6 altg nop key 36 base 7 shift / caps 7 ctrl 7 altg { @@ -38,10 +36,10 @@ key 38 base 9 shift ) caps 9 ctrl ^] altg ] key 39 base 0 shift = caps 0 ctrl 0 altg } key 45 base + shift ? caps + ctrl ^_ altg '\\' key 46 base fa_acute shift fa_grave caps fa_acute ctrl fa_acute altg nop -key 47 base å shift Å caps Å ctrl å altg nop +key 47 base 0x00E5 shift 0x00C5 caps 0x00C5 ctrl 0x00E5 altg nop key 48 base fa_umlaut shift ^ caps fa_umlaut ctrl fa_umlaut altg ~ -key 51 base ö shift Ö caps Ö ctrl ö altg nop -key 52 base ä shift Ä caps Ä ctrl ä altg nop +key 51 base 0x00F6 shift 0x00D6 caps 0x00D6 ctrl 0x00F6 altg nop +key 52 base 0x00E4 shift 0x00C4 caps 0x00C4 ctrl 0x00E4 altg nop key 50 base '\'' shift * caps '\'' ctrl '\'' altg '`' numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl ^| altg | numl nonl up nop diff --git a/usr/src/cmd/loadkeys/type_6/swiss_french b/usr/src/cmd/loadkeys/type_6/swiss_french index 0b4efa5ca6..5a5e9af0fe 100644 --- a/usr/src/cmd/loadkeys/type_6/swiss_french +++ b/usr/src/cmd/loadkeys/type_6/swiss_french @@ -22,15 +22,13 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Swiss French Type 6 (USB) key layout # -key 53 base § shift ° caps § ctrl § altg nop +key 53 base 0x00A7 shift 0x00B0 caps 0x00A7 ctrl 0x00A7 altg nop key 30 base 1 shift + caps 1 ctrl 1 altg | key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ key 32 base 3 shift * caps 3 ctrl 3 altg # -key 33 base 4 shift ç caps 4 ctrl ^^ altg ^ +key 33 base 4 shift 0x00E7 caps 4 ctrl ^^ altg ^ key 34 base 5 shift % caps 5 ctrl 5 altg ~ key 35 base 6 shift & caps 6 ctrl 6 altg nop key 36 base 7 shift / caps 7 ctrl 7 altg nop @@ -40,11 +38,11 @@ key 39 base 0 shift = caps 0 ctrl 0 altg '`' key 45 base '\'' shift ? caps '\'' ctrl '\'' altg fa_acute key 46 base fa_cflex shift fa_grave caps fa_cflex ctrl ^^ altg fa_tilde key 28 base z shift Z caps Z ctrl ^Z altg nop -key 47 base è shift ü caps È ctrl ^[ altg [ +key 47 base 0x00E8 shift 0x00FC caps 0x00C8 ctrl ^[ altg [ key 48 base fa_umlaut shift ! caps fa_umlaut ctrl ^] altg ] -key 51 base é shift ö caps É ctrl é altg nop -key 52 base à shift ä caps À ctrl à altg { -key 50 base $ shift £ caps $ ctrl $ altg } numl nonl up nop +key 51 base 0x00E9 shift 0x00F6 caps 0x00C9 ctrl 0x00E9 altg nop +key 52 base 0x00E0 shift 0x00E4 caps 0x00C0 ctrl 0x00E0 altg { +key 50 base $ shift 0x00A3 caps $ ctrl $ altg } numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl ^\ altg '\\' numl nonl up nop key 29 base y shift Y caps Y ctrl ^Y altg nop diff --git a/usr/src/cmd/loadkeys/type_6/swiss_german b/usr/src/cmd/loadkeys/type_6/swiss_german index 0131514521..bae367d68d 100644 --- a/usr/src/cmd/loadkeys/type_6/swiss_german +++ b/usr/src/cmd/loadkeys/type_6/swiss_german @@ -22,15 +22,13 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # Swiss German Type 6 (USB) key layout # -key 53 base § shift ° caps § ctrl § altg nop +key 53 base 0x00A7 shift 0x00B0 caps 0x00A7 ctrl 0x00A7 altg nop key 30 base 1 shift + caps 1 ctrl 1 altg | key 31 base 2 shift '"' caps 2 ctrl ^@ altg @ key 32 base 3 shift * caps 3 ctrl 3 altg # -key 33 base 4 shift ç caps 4 ctrl ^^ altg ^ +key 33 base 4 shift 0x00E7 caps 4 ctrl ^^ altg ^ key 34 base 5 shift % caps 5 ctrl 5 altg ~ key 35 base 6 shift & caps 6 ctrl 6 altg nop key 36 base 7 shift / caps 7 ctrl 7 altg nop @@ -40,11 +38,11 @@ key 39 base 0 shift = caps 0 ctrl 0 altg '`' key 45 base '\'' shift ? caps '\'' ctrl '\'' altg fa_acute key 46 base fa_cflex shift fa_grave caps fa_cflex ctrl ^^ altg fa_tilde key 28 base z shift Z caps Z ctrl ^Z altg nop -key 47 base ü shift è caps Ü ctrl ^[ altg [ +key 47 base 0x00FC shift 0x00E8 caps 0x00DC ctrl ^[ altg [ key 48 base fa_umlaut shift ! caps fa_umlaut ctrl ^] altg ] -key 51 base ö shift é caps Ö ctrl ö altg nop -key 52 base ä shift à caps Ä ctrl ä altg { -key 50 base $ shift £ caps $ ctrl $ altg } numl nonl up nop +key 51 base 0x00F6 shift 0x00E9 caps 0x00D6 ctrl 0x00F6 altg nop +key 52 base 0x00E4 shift 0x00E0 caps 0x00C4 ctrl 0x00E4 altg { +key 50 base $ shift 0x00A3 caps $ ctrl $ altg } numl nonl up nop key 49 all hole key 100 base < shift > caps < ctrl ^\ altg '\\' numl nonl up nop key 29 base y shift Y caps Y ctrl ^Y altg nop diff --git a/usr/src/cmd/loadkeys/type_6/turkeyf b/usr/src/cmd/loadkeys/type_6/turkeyf index 56d77fffc2..d74476ea09 100644 --- a/usr/src/cmd/loadkeys/type_6/turkeyf +++ b/usr/src/cmd/loadkeys/type_6/turkeyf @@ -21,8 +21,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Turkey F Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/turkeyq b/usr/src/cmd/loadkeys/type_6/turkeyq index e794343a27..a8e337c3dd 100644 --- a/usr/src/cmd/loadkeys/type_6/turkeyq +++ b/usr/src/cmd/loadkeys/type_6/turkeyq @@ -21,8 +21,6 @@ # Copyright 2005 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # Turkey F Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop diff --git a/usr/src/cmd/loadkeys/type_6/uk b/usr/src/cmd/loadkeys/type_6/uk index 5f1ab05034..1a07302667 100644 --- a/usr/src/cmd/loadkeys/type_6/uk +++ b/usr/src/cmd/loadkeys/type_6/uk @@ -22,13 +22,11 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # UK Type 6 (USB) key layout # -key 53 base ` shift ¬ caps ` ctrl ` altg ¦ +key 53 base ` shift 0x00AC caps ` ctrl ` altg 0x00A6 key 31 base 2 shift '"' caps 2 ctrl 2 altg nop -key 32 base 3 shift £ caps 3 ctrl 3 altg nop +key 32 base 3 shift 0x00A3 caps 3 ctrl 3 altg nop key 52 base '\'' shift @ caps '\'' ctrl ^@ altg nop key 50 base # shift ~ caps # ctrl # altg nop numl nonl up nop key 49 all hole diff --git a/usr/src/cmd/loadkeys/type_6/us b/usr/src/cmd/loadkeys/type_6/us index 8d66fdadd0..4375f25e12 100644 --- a/usr/src/cmd/loadkeys/type_6/us +++ b/usr/src/cmd/loadkeys/type_6/us @@ -22,8 +22,6 @@ # # CDDL HEADER END # -# ident "%Z%%M% %I% %E% SMI" -# # US Type 6 (USB) key layout # key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop |
