public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vt: Expose system-wide UTF-8 default setting via sysfs
@ 2007-04-03  1:24 Antonino A. Daplas
  2007-04-03  4:06 ` Alexander E. Patrakov
  2007-04-03 16:20 ` Pavel Machek
  0 siblings, 2 replies; 9+ messages in thread
From: Antonino A. Daplas @ 2007-04-03  1:24 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Linux Kernel Development, Jan Engelhardt, Paul LeoNerd Evans,
	H. Peter Anvin

Create a variable, default_utf8, that defines the system-wide default UTF-8
setting.  This variable can be altered via sysfs. If the variable is properly
set, this should mimimize breakage of UTF-8 encoded consoles when doing a
reset or echo -e '\033c' and of newly opened/allocated consoles.

This is based from patches by Jan Engelhardt and Paul LeoNerd Evans.

Signed-off-by: Antonino Daplas <adaplas@gmail.com>
---
> I think you're missing the whole point of console reset.  Its purpose is 
> to force the console into a known-good state.  The fewer pieces of state 
> it leaves unset, the better.  To some degree it's less important what 
> that state actually is.

Okay, you convinced me. Hopefully this is acceptable to all parties.

Andrew,

If everybody agrees, can you drop the previous patch I sent to you, and use
this instead?

Tony

 drivers/char/vt.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/char/vt.c b/drivers/char/vt.c
index 1bbb45b..8aca96f 100644
--- a/drivers/char/vt.c
+++ b/drivers/char/vt.c
@@ -157,6 +157,8 @@ 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;
+module_param(default_utf8, int, S_IRUGO | S_IWUSR);
 
 /*
  * ignore_poke: don't unblank the screen when things are typed.  This is
@@ -1497,7 +1499,7 @@ static void reset_terminal(struct vc_dat
 	vc->vc_charset		= 0;
 	vc->vc_need_wrap	= 0;
 	vc->vc_report_mouse	= 0;
-	vc->vc_utf		= 0;
+	vc->vc_utf              = default_utf8;
 	vc->vc_utf_count	= 0;
 
 	vc->vc_disp_ctrl	= 0;

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

end of thread, other threads:[~2007-04-06 15:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-03  1:24 [PATCH] vt: Expose system-wide UTF-8 default setting via sysfs Antonino A. Daplas
2007-04-03  4:06 ` Alexander E. Patrakov
2007-04-03  5:47   ` Antonino A. Daplas
2007-04-03 16:20 ` Pavel Machek
2007-04-03 16:35   ` Paul LeoNerd Evans
2007-04-04  5:39     ` Antonino A. Daplas
2007-04-04  8:01       ` Pavel Machek
2007-04-06 14:30         ` Paul LeoNerd Evans
2007-04-06 15:39         ` 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