From bae0a693a9271b3ed0f723fdafc22efe5f07b70e Mon Sep 17 00:00:00 2001 From: Sebastian Thorarensen Date: Mon, 14 Feb 2011 18:51:15 -0500 Subject: Set unicode mode immediately at boot without consolefont X-Gentoo-Bug: 354793 X-Gentoo-Bug-URL: http://bugs.gentoo.org/354793 Signed-off-by: Anthony G. Basile --- init.d/consolefont.in | 6 ------ init.d/termencoding.in | 11 +++++++++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/init.d/consolefont.in b/init.d/consolefont.in index d3acd75..75c2fd1 100644 --- a/init.d/consolefont.in +++ b/init.d/consolefont.in @@ -61,12 +61,6 @@ start() done cp "$font" "$RC_LIBEXECDIR"/console echo "${font##*/}" >"$RC_LIBEXECDIR"/console/font - if yesno ${unicode:-${UNICODE}}; then - echo "" > "$RC_LIBEXECDIR"/console/unicode - else - rm -f "$RC_LIBEXECDIR"/console/unicode - fi - fi return $retval diff --git a/init.d/termencoding.in b/init.d/termencoding.in index 734d220..fea27ee 100644 --- a/init.d/termencoding.in +++ b/init.d/termencoding.in @@ -31,5 +31,16 @@ start() printf "\033%s" "$termencoding" >$ttydev$n n=$(($n + 1)) done + + # Save the encoding for use immediately at boot + if [ -w "$RC_LIBEXECDIR" ]; then + mkdir -p "$RC_LIBEXECDIR"/console + if yesno ${unicode:-${UNICODE}}; then + echo "" > "$RC_LIBEXECDIR"/console/unicode + else + rm -f "$RC_LIBEXECDIR"/console/unicode + fi + fi + eend 0 } -- cgit v1.2.3