public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add CONFIG_VT_UNICODE
@ 2007-08-31 20:18 Bill Nottingham
  2007-08-31 20:24 ` Randy Dunlap
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Bill Nottingham @ 2007-08-31 20:18 UTC (permalink / raw)
  To: linux-kernel

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>

diff -up linux-2.6.22.noarch/drivers/char/keyboard.c.foo linux-2.6.22.noarch/drivers/char/keyboard.c
--- linux-2.6.22.noarch/drivers/char/keyboard.c.foo	2007-08-30 17:18:54.000000000 -0400
+++ linux-2.6.22.noarch/drivers/char/keyboard.c	2007-08-30 17:27:13.000000000 -0400
@@ -1366,7 +1366,7 @@ int __init kbd_init(void)
 		kbd_table[i].lockstate = KBD_DEFLOCK;
 		kbd_table[i].slockstate = 0;
 		kbd_table[i].modeflags = KBD_DEFMODE;
-		kbd_table[i].kbdmode = VC_XLATE;
+		kbd_table[i].kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
 	}
 
 	error = input_register_handler(&kbd_handler);
diff -up linux-2.6.22.noarch/drivers/char/vt_ioctl.c.foo linux-2.6.22.noarch/drivers/char/vt_ioctl.c
--- linux-2.6.22.noarch/drivers/char/vt_ioctl.c.foo	2007-08-30 17:15:45.000000000 -0400
+++ linux-2.6.22.noarch/drivers/char/vt_ioctl.c	2007-08-30 17:27:35.000000000 -0400
@@ -1070,7 +1070,7 @@ int vt_waitactive(int vt)
 void reset_vc(struct vc_data *vc)
 {
 	vc->vc_mode = KD_TEXT;
-	kbd_table[vc->vc_num].kbdmode = VC_XLATE;
+	kbd_table[vc->vc_num].kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
 	vc->vt_mode.mode = VT_AUTO;
 	vc->vt_mode.waitv = 0;
 	vc->vt_mode.relsig = 0;
diff -up linux-2.6.22.noarch/drivers/char/Kconfig.foo linux-2.6.22.noarch/drivers/char/Kconfig
--- linux-2.6.22.noarch/drivers/char/Kconfig.foo	2007-08-30 17:33:41.000000000 -0400
+++ linux-2.6.22.noarch/drivers/char/Kconfig	2007-08-30 17:33:46.000000000 -0400
@@ -36,6 +36,23 @@ config VT
 	  If unsure, say Y, or else you won't be able to do much with your new
 	  shiny Linux system :-)
 
+config VT_UNICODE
+	bool "Virtual console is Unicode by default"
+	depends on VT
+	default n
+	---help---
+	  If you say Y here, the virtual terminal will be in UTF-8 by default,
+	  and the keyboard will run in unicode mode.
+
+	  If you say N here, the virtual terminal will not be in UTF-8 by
+	  default, and the keyboard will run in XLATE mode.
+
+	  This can also be changed by passing 'default_utf8=<0|1>' on the
+	  kernel command line.
+
+	  Historically, the kernel has defaulted to non-UTF8 and XLATE mode.
+	  If unsure, say N here.
+
 config VT_CONSOLE
 	bool "Support for console on virtual terminal" if EMBEDDED
 	depends on VT
diff -up linux-2.6.22.noarch/drivers/char/vt.c.foo linux-2.6.22.noarch/drivers/char/vt.c
--- linux-2.6.22.noarch/drivers/char/vt.c.foo	2007-08-30 17:20:02.000000000 -0400
+++ linux-2.6.22.noarch/drivers/char/vt.c	2007-08-30 17:26:05.000000000 -0400
@@ -158,7 +158,11 @@ static void blank_screen_t(unsigned long
 static void set_palette(struct vc_data *vc);
 
 static int printable;		/* Is console ready for printing? */
-static int default_utf8;
+#ifdef CONFIG_VT_UNICODE
+int default_utf8 = 1;
+#else
+int default_utf8;
+#endif
 module_param(default_utf8, int, S_IRUGO | S_IWUSR);
 
 /*
diff -up linux-2.6.22.noarch/drivers/char/sysrq.c.foo linux-2.6.22.noarch/drivers/char/sysrq.c
--- linux-2.6.22.noarch/drivers/char/sysrq.c.foo	2007-08-30 17:16:20.000000000 -0400
+++ linux-2.6.22.noarch/drivers/char/sysrq.c	2007-08-30 17:26:52.000000000 -0400
@@ -107,12 +107,12 @@ static void sysrq_handle_unraw(int key, 
 	struct kbd_struct *kbd = &kbd_table[fg_console];
 
 	if (kbd)
-		kbd->kbdmode = VC_XLATE;
+		kbd->kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
 }
 static struct sysrq_key_op sysrq_unraw_op = {
 	.handler	= sysrq_handle_unraw,
 	.help_msg	= "unRaw",
-	.action_msg	= "Keyboard mode set to XLATE",
+	.action_msg	= "Keyboard mode set to system default",
 	.enable_mask	= SYSRQ_ENABLE_KEYBOARD,
 };
 #else
diff -up linux-2.6.22.x86_64/include/linux/vt_kern.h.foo linux-2.6.22.x86_64/include/linux/vt_kern.h
--- linux-2.6.22.x86_64/include/linux/vt_kern.h.foo	2007-08-30 19:35:29.000000000 -0400
+++ linux-2.6.22.x86_64/include/linux/vt_kern.h	2007-08-30 19:35:29.000000000 -0400
@@ -87,6 +87,7 @@ extern int unbind_con_driver(const struc
 extern char con_buf[CON_BUF_SIZE];
 extern struct mutex con_buf_mtx;
 extern char vt_dont_switch;
+extern int default_utf8;
 
 struct vt_spawn_console {
 	spinlock_t lock;

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-08-31 20:18 [PATCH] add CONFIG_VT_UNICODE Bill Nottingham
@ 2007-08-31 20:24 ` Randy Dunlap
  2007-08-31 20:28   ` Bill Nottingham
  2007-09-01 21:11 ` H. Peter Anvin
  2007-09-07 11:49 ` Jan Engelhardt
  2 siblings, 1 reply; 11+ messages in thread
From: Randy Dunlap @ 2007-08-31 20:24 UTC (permalink / raw)
  To: Bill Nottingham; +Cc: linux-kernel

On Fri, 31 Aug 2007 16:18:20 -0400 Bill Nottingham wrote:

> 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>

Hi,

A diffstat would be nice.

Please document 'default_utf8=' in Documentation/kernel-parameters.txt.


> diff -up linux-2.6.22.noarch/drivers/char/keyboard.c.foo linux-2.6.22.noarch/drivers/char/keyboard.c
> --- linux-2.6.22.noarch/drivers/char/keyboard.c.foo	2007-08-30 17:18:54.000000000 -0400
> +++ linux-2.6.22.noarch/drivers/char/keyboard.c	2007-08-30 17:27:13.000000000 -0400
> @@ -1366,7 +1366,7 @@ int __init kbd_init(void)
>  		kbd_table[i].lockstate = KBD_DEFLOCK;
>  		kbd_table[i].slockstate = 0;
>  		kbd_table[i].modeflags = KBD_DEFMODE;
> -		kbd_table[i].kbdmode = VC_XLATE;
> +		kbd_table[i].kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
>  	}
>  
>  	error = input_register_handler(&kbd_handler);
> diff -up linux-2.6.22.noarch/drivers/char/vt_ioctl.c.foo linux-2.6.22.noarch/drivers/char/vt_ioctl.c
> --- linux-2.6.22.noarch/drivers/char/vt_ioctl.c.foo	2007-08-30 17:15:45.000000000 -0400
> +++ linux-2.6.22.noarch/drivers/char/vt_ioctl.c	2007-08-30 17:27:35.000000000 -0400
> @@ -1070,7 +1070,7 @@ int vt_waitactive(int vt)
>  void reset_vc(struct vc_data *vc)
>  {
>  	vc->vc_mode = KD_TEXT;
> -	kbd_table[vc->vc_num].kbdmode = VC_XLATE;
> +	kbd_table[vc->vc_num].kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
>  	vc->vt_mode.mode = VT_AUTO;
>  	vc->vt_mode.waitv = 0;
>  	vc->vt_mode.relsig = 0;
> diff -up linux-2.6.22.noarch/drivers/char/Kconfig.foo linux-2.6.22.noarch/drivers/char/Kconfig
> --- linux-2.6.22.noarch/drivers/char/Kconfig.foo	2007-08-30 17:33:41.000000000 -0400
> +++ linux-2.6.22.noarch/drivers/char/Kconfig	2007-08-30 17:33:46.000000000 -0400
> @@ -36,6 +36,23 @@ config VT
>  	  If unsure, say Y, or else you won't be able to do much with your new
>  	  shiny Linux system :-)
>  
> +config VT_UNICODE
> +	bool "Virtual console is Unicode by default"
> +	depends on VT
> +	default n
> +	---help---
> +	  If you say Y here, the virtual terminal will be in UTF-8 by default,
> +	  and the keyboard will run in unicode mode.
> +
> +	  If you say N here, the virtual terminal will not be in UTF-8 by
> +	  default, and the keyboard will run in XLATE mode.
> +
> +	  This can also be changed by passing 'default_utf8=<0|1>' on the
> +	  kernel command line.
> +
> +	  Historically, the kernel has defaulted to non-UTF8 and XLATE mode.
> +	  If unsure, say N here.
> +
>  config VT_CONSOLE
>  	bool "Support for console on virtual terminal" if EMBEDDED
>  	depends on VT
> diff -up linux-2.6.22.noarch/drivers/char/vt.c.foo linux-2.6.22.noarch/drivers/char/vt.c
> --- linux-2.6.22.noarch/drivers/char/vt.c.foo	2007-08-30 17:20:02.000000000 -0400
> +++ linux-2.6.22.noarch/drivers/char/vt.c	2007-08-30 17:26:05.000000000 -0400
> @@ -158,7 +158,11 @@ static void blank_screen_t(unsigned long
>  static void set_palette(struct vc_data *vc);
>  
>  static int printable;		/* Is console ready for printing? */
> -static int default_utf8;
> +#ifdef CONFIG_VT_UNICODE
> +int default_utf8 = 1;
> +#else
> +int default_utf8;
> +#endif
>  module_param(default_utf8, int, S_IRUGO | S_IWUSR);
>  
>  /*
> diff -up linux-2.6.22.noarch/drivers/char/sysrq.c.foo linux-2.6.22.noarch/drivers/char/sysrq.c
> --- linux-2.6.22.noarch/drivers/char/sysrq.c.foo	2007-08-30 17:16:20.000000000 -0400
> +++ linux-2.6.22.noarch/drivers/char/sysrq.c	2007-08-30 17:26:52.000000000 -0400
> @@ -107,12 +107,12 @@ static void sysrq_handle_unraw(int key, 
>  	struct kbd_struct *kbd = &kbd_table[fg_console];
>  
>  	if (kbd)
> -		kbd->kbdmode = VC_XLATE;
> +		kbd->kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
>  }
>  static struct sysrq_key_op sysrq_unraw_op = {
>  	.handler	= sysrq_handle_unraw,
>  	.help_msg	= "unRaw",
> -	.action_msg	= "Keyboard mode set to XLATE",
> +	.action_msg	= "Keyboard mode set to system default",
>  	.enable_mask	= SYSRQ_ENABLE_KEYBOARD,
>  };
>  #else
> diff -up linux-2.6.22.x86_64/include/linux/vt_kern.h.foo linux-2.6.22.x86_64/include/linux/vt_kern.h
> --- linux-2.6.22.x86_64/include/linux/vt_kern.h.foo	2007-08-30 19:35:29.000000000 -0400
> +++ linux-2.6.22.x86_64/include/linux/vt_kern.h	2007-08-30 19:35:29.000000000 -0400
> @@ -87,6 +87,7 @@ extern int unbind_con_driver(const struc
>  extern char con_buf[CON_BUF_SIZE];
>  extern struct mutex con_buf_mtx;
>  extern char vt_dont_switch;
> +extern int default_utf8;
>  
>  struct vt_spawn_console {
>  	spinlock_t lock;
> -

---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-08-31 20:24 ` Randy Dunlap
@ 2007-08-31 20:28   ` Bill Nottingham
  2007-08-31 20:33     ` Randy Dunlap
  0 siblings, 1 reply; 11+ messages in thread
From: Bill Nottingham @ 2007-08-31 20:28 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel

Randy Dunlap (randy.dunlap@oracle.com) said: 
> A diffstat would be nice.

Sure.

 linux-2.6.22.noarch/drivers/char/Kconfig    |   17 +++++++++++++++++
 linux-2.6.22.noarch/drivers/char/keyboard.c |    2 +-
 linux-2.6.22.noarch/drivers/char/sysrq.c    |    4 ++--
 linux-2.6.22.noarch/drivers/char/vt.c       |    6 +++++-
 linux-2.6.22.noarch/drivers/char/vt_ioctl.c |    2 +-
 linux-2.6.22.x86_64/include/linux/vt_kern.h |    1 +
 6 files changed, 27 insertions(+), 5 deletions(-)
       
> Please document 'default_utf8=' in Documentation/kernel-parameters.txt.

It's already documented there (existed before this patch).

Bill

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-08-31 20:28   ` Bill Nottingham
@ 2007-08-31 20:33     ` Randy Dunlap
  0 siblings, 0 replies; 11+ messages in thread
From: Randy Dunlap @ 2007-08-31 20:33 UTC (permalink / raw)
  To: Randy Dunlap, linux-kernel

Bill Nottingham wrote:
> Randy Dunlap (randy.dunlap@oracle.com) said: 
>> A diffstat would be nice.
> 
> Sure.
> 
>  linux-2.6.22.noarch/drivers/char/Kconfig    |   17 +++++++++++++++++
>  linux-2.6.22.noarch/drivers/char/keyboard.c |    2 +-
>  linux-2.6.22.noarch/drivers/char/sysrq.c    |    4 ++--
>  linux-2.6.22.noarch/drivers/char/vt.c       |    6 +++++-
>  linux-2.6.22.noarch/drivers/char/vt_ioctl.c |    2 +-
>  linux-2.6.22.x86_64/include/linux/vt_kern.h |    1 +
>  6 files changed, 27 insertions(+), 5 deletions(-)
>        
>> Please document 'default_utf8=' in Documentation/kernel-parameters.txt.
> 
> It's already documented there (existed before this patch).

Great :)

Thanks.
-- 
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-08-31 20:18 [PATCH] add CONFIG_VT_UNICODE Bill Nottingham
  2007-08-31 20:24 ` Randy Dunlap
@ 2007-09-01 21:11 ` H. Peter Anvin
  2007-09-06 12:06   ` Jan Engelhardt
  2007-09-07 11:49 ` Jan Engelhardt
  2 siblings, 1 reply; 11+ messages in thread
From: H. Peter Anvin @ 2007-09-01 21:11 UTC (permalink / raw)
  To: linux-kernel

Bill Nottingham wrote:
> 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>

Wasn't there a patch floating around about this a couple of months ago, 
which also let you set the system-wide default via sysctl?

	-hpa

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-09-01 21:11 ` H. Peter Anvin
@ 2007-09-06 12:06   ` Jan Engelhardt
  2007-09-06 14:06     ` H. Peter Anvin
  0 siblings, 1 reply; 11+ messages in thread
From: Jan Engelhardt @ 2007-09-06 12:06 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: linux-kernel


On Sep 1 2007 22:11, H. Peter Anvin wrote:
> Bill Nottingham wrote:
>> 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>
>
> Wasn't there a patch floating around about this a couple of months ago, which
> also let you set the system-wide default via sysctl?

sysfs, and you were on the discussion (your idea won, basically....)
And the way I see it, it got merged.
Commit 042f10ec6533e53181284c96d22ae051e49ac707

As I further see it, this CONFIG_VT_UNICODE patch defines the 
starting value for the default.

E.g. CONFIG_VT_UNICODE=y, you start with utf8, and can, at will, at 
runtime, change it. CONFIG_VT_UNICODE=n, you start with 8bit, and can, 
at will, at runtime, too, change it ;-)




	Jan
-- 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-09-06 12:06   ` Jan Engelhardt
@ 2007-09-06 14:06     ` H. Peter Anvin
  2007-09-07  0:26       ` Bill Nottingham
  2007-09-07 11:47       ` Jan Engelhardt
  0 siblings, 2 replies; 11+ messages in thread
From: H. Peter Anvin @ 2007-09-06 14:06 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: linux-kernel

Jan Engelhardt wrote:
> 
> sysfs, and you were on the discussion (your idea won, basically....)
> And the way I see it, it got merged.
> Commit 042f10ec6533e53181284c96d22ae051e49ac707
> 
> As I further see it, this CONFIG_VT_UNICODE patch defines the 
> starting value for the default.
> 
> E.g. CONFIG_VT_UNICODE=y, you start with utf8, and can, at will, at 
> runtime, change it. CONFIG_VT_UNICODE=n, you start with 8bit, and can, 
> at will, at runtime, too, change it ;-)
> 

Hmmm...

Personally I'd suggest making it the default unless overridden in 
/etc/sysctl.conf.  My second preference would be a command-line option, 
not a compile-time default.

This is 2007, after all, and it seems Unicode should be the default, 
anything else legacy...

	-hpa

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-09-06 14:06     ` H. Peter Anvin
@ 2007-09-07  0:26       ` Bill Nottingham
  2007-09-07 11:47       ` Jan Engelhardt
  1 sibling, 0 replies; 11+ messages in thread
From: Bill Nottingham @ 2007-09-07  0:26 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: Jan Engelhardt, linux-kernel

H. Peter Anvin (hpa@zytor.com) said: 
> Hmmm...
>
> Personally I'd suggest making it the default unless overridden in 
> /etc/sysctl.conf.  My second preference would be a command-line option, not 
> a compile-time default.
>
> This is 2007, after all, and it seems Unicode should be the default, 
> anything else legacy...

At the moment, it's a module parameter (ergo sysfs), not /proc/sys.
Also, this patch ties unicode for the keyboard as well.

Bill

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-09-06 14:06     ` H. Peter Anvin
  2007-09-07  0:26       ` Bill Nottingham
@ 2007-09-07 11:47       ` Jan Engelhardt
  1 sibling, 0 replies; 11+ messages in thread
From: Jan Engelhardt @ 2007-09-07 11:47 UTC (permalink / raw)
  To: H. Peter Anvin; +Cc: linux-kernel


On Sep 6 2007 15:06, H. Peter Anvin wrote:
>> sysfs, and you were on the discussion (your idea won, basically....)
>> And the way I see it, it got merged.
>> Commit 042f10ec6533e53181284c96d22ae051e49ac707
>> 
>> As I further see it, this CONFIG_VT_UNICODE patch defines the starting value
>> for the default.
>> 
>> E.g. CONFIG_VT_UNICODE=y, you start with utf8, and can, at will, at runtime,
>> change it. CONFIG_VT_UNICODE=n, you start with 8bit, and can, at will, at
>> runtime, too, change it ;-)
>
> Hmmm...
>
> Personally I'd suggest making it the default unless overridden in
> /etc/sysctl.conf.  My second preference would be a command-line option, not a
> compile-time default.
>
> This is 2007, after all, and it seems Unicode should be the default, anything
> else legacy...

Yeah. You have a command line option already, called vt.default_utf={0|1}.


	Jan
-- 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-08-31 20:18 [PATCH] add CONFIG_VT_UNICODE Bill Nottingham
  2007-08-31 20:24 ` Randy Dunlap
  2007-09-01 21:11 ` H. Peter Anvin
@ 2007-09-07 11:49 ` Jan Engelhardt
  2007-09-13 15:10   ` H. Peter Anvin
  2 siblings, 1 reply; 11+ messages in thread
From: Jan Engelhardt @ 2007-09-07 11:49 UTC (permalink / raw)
  To: Bill Nottingham; +Cc: linux-kernel


On Aug 31 2007 16:18, Bill Nottingham wrote:
>
>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.

I would prefer to:
 - make default_utf=1 in the source
 - add "default_utf8 ? VC_UNICODE : VC_XLATE" to the keyboard code
   as your patch does
 - and do away with the new CONFIG_ option, since, surprise, surprise,
   you can change it at runtime, so there is no need to do it
   at compile-time too.


	Jan
-- 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] add CONFIG_VT_UNICODE
  2007-09-07 11:49 ` Jan Engelhardt
@ 2007-09-13 15:10   ` H. Peter Anvin
  0 siblings, 0 replies; 11+ messages in thread
From: H. Peter Anvin @ 2007-09-13 15:10 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: Bill Nottingham, linux-kernel

Jan Engelhardt wrote:
> On Aug 31 2007 16:18, Bill Nottingham wrote:
>> 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.
> 
> I would prefer to:
>  - make default_utf=1 in the source
>  - add "default_utf8 ? VC_UNICODE : VC_XLATE" to the keyboard code
>    as your patch does
>  - and do away with the new CONFIG_ option, since, surprise, surprise,
>    you can change it at runtime, so there is no need to do it
>    at compile-time too.
> 

I concur.

	-hpa

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2007-09-13 15:10 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-31 20:18 [PATCH] add CONFIG_VT_UNICODE Bill Nottingham
2007-08-31 20:24 ` Randy Dunlap
2007-08-31 20:28   ` Bill Nottingham
2007-08-31 20:33     ` Randy Dunlap
2007-09-01 21:11 ` H. Peter Anvin
2007-09-06 12:06   ` Jan Engelhardt
2007-09-06 14:06     ` H. Peter Anvin
2007-09-07  0:26       ` Bill Nottingham
2007-09-07 11:47       ` Jan Engelhardt
2007-09-07 11:49 ` Jan Engelhardt
2007-09-13 15:10   ` H. Peter Anvin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox