diff options
author | Bill Nottingham <notting@redhat.com> | 2007-10-17 02:29:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:56 -0400 |
commit | 2e8ecb9db0bcc19e1cc8bb51e9252fe6a86a9863 (patch) | |
tree | c3d77e23a5aad820968601516392f8f440691f7a /drivers/char/sysrq.c | |
parent | 430d275a399175c7c0673459738979287ec1fd22 (diff) |
add CONFIG_VT_UNICODE
As of now, the kernel defaults to non-unicode and XLATE for the keyboard.
We've been changing this in Fedora, but that requires patching the defaults
in the kernel.
The attached introduces CONFIG_VT_UNICODE, which sets the console in
unicode mode by default on boot, including both the virtual terminal and
the keyboard driver.
Signed-off-by: Bill Nottingham <notting@redhat.com>
Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
Cc: Dmitry Torokhov <dtor@mail.ru>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/sysrq.c')
-rw-r--r-- | drivers/char/sysrq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/sysrq.c b/drivers/char/sysrq.c index 179fa36ce485..78d14935f2b8 100644 --- a/drivers/char/sysrq.c +++ b/drivers/char/sysrq.c | |||
@@ -108,12 +108,12 @@ static void sysrq_handle_unraw(int key, struct tty_struct *tty) | |||
108 | struct kbd_struct *kbd = &kbd_table[fg_console]; | 108 | struct kbd_struct *kbd = &kbd_table[fg_console]; |
109 | 109 | ||
110 | if (kbd) | 110 | if (kbd) |
111 | kbd->kbdmode = VC_XLATE; | 111 | kbd->kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE; |
112 | } | 112 | } |
113 | static struct sysrq_key_op sysrq_unraw_op = { | 113 | static struct sysrq_key_op sysrq_unraw_op = { |
114 | .handler = sysrq_handle_unraw, | 114 | .handler = sysrq_handle_unraw, |
115 | .help_msg = "unRaw", | 115 | .help_msg = "unRaw", |
116 | .action_msg = "Keyboard mode set to XLATE", | 116 | .action_msg = "Keyboard mode set to system default", |
117 | .enable_mask = SYSRQ_ENABLE_KEYBOARD, | 117 | .enable_mask = SYSRQ_ENABLE_KEYBOARD, |
118 | }; | 118 | }; |
119 | #else | 119 | #else |