diff options
author | Roy Marples <roy@marples.name> | 2008-03-27 13:49:49 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-27 13:49:49 +0000 |
commit | d09f9f47eb92e85afd52b83da6a287369b280f71 (patch) | |
tree | 3ed321d363fdf9dca8f1df7042a5efd9f09e52cf /init.d/consolefont.in | |
parent | b271ac5af525e494e55c41ae8ce285420f5ce9a4 (diff) |
Split terminal encoding out.
Diffstat (limited to 'init.d/consolefont.in')
-rw-r--r-- | init.d/consolefont.in | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/init.d/consolefont.in b/init.d/consolefont.in index a30961e4..c8ec311b 100644 --- a/init.d/consolefont.in +++ b/init.d/consolefont.in @@ -6,8 +6,7 @@ description="Sets a font for the consoles." depend() { - need localmount - need keymaps # sets up terminal encoding scheme + need localmount termencoding after hotplug keyword noopenvz noprefix nouml novserver noxenu } @@ -34,7 +33,7 @@ start() return 0 fi - local x= param= sf_param= retval=0 ttydev= + local x= param= sf_param= retval=0 ttydev=/dev/tty # Get additional parameters if [ -n "${consoletranslation}" ]; then @@ -46,10 +45,7 @@ start() # Set the console font ebegin "Setting user font" - [ -d /dev/vc ] \ - && ttydev=/dev/vc/ \ - || ttydev=/dev/tty - + [ -d /dev/vc ] && ttydev=/dev/vc/ x=1 while [ ${x} -le ${ttyn} ]; do setfont ${consolefont} ${param} -C ${ttydev}${x} >/dev/null @@ -61,17 +57,17 @@ start() # Store the last font so we can use it ASAP on boot if [ ${retval} -eq 0 -a -w "${RC_LIBDIR}" ]; then mkdir -p "${RC_LIBDIR}"/console - for font in /usr/share/consolefonts/"${consolefont}".*; do : done cp "${font}" "${RC_LIBDIR}"/console echo "${font##*/}" > "${RC_LIBDIR}"/console/font if yesno ${unicode:-${UNICODE}}; then - cp /dev/null "${RC_LIBDIR}"/console/unicode + echo "" > "${RC_LIBDIR}"/console/unicode else rm -f "${RC_LIBDIR}"/console/unicode fi + fi return ${retval} |