Bug 1368 - rc.sysinit changes console font
Summary: rc.sysinit changes console font
Keywords:
Status: CLOSED WORKSFORME
Alias: None
Product: Red Hat Raw Hide
Classification: Retired
Component: initscripts
Version: 1.0
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Bill Nottingham
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 1999-02-28 04:52 UTC by sds
Modified: 2014-03-17 02:09 UTC (History)
1 user (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 1999-03-19 22:06:57 UTC
Embargoed:


Attachments (Terms of Use)

Description sds 1999-02-28 04:52:46 UTC
I set vga= in lilo.conf and /sbin/setsysfont called
from /etc/rc.d/rc.sysinit screws it up.

Comment 1 Bill Nottingham 1999-03-08 18:55:59 UTC
what version of initscripts are you running?

Comment 2 sds 1999-03-09 14:13:59 UTC
$ rpm -q initscripts
initscripts-3.91-1

Comment 3 Bill Nottingham 1999-03-09 15:53:59 UTC
what does your /etc/sysconfig/i18n say?

Comment 4 sds 1999-03-09 16:09:59 UTC
the file is empty:

$ ls -l /etc/sysconfig/i18n
   0 -rw-rw-r--   1 root     root            0 Dec  2 20:05
/etc/sysconfig/i18n

while I'd appreciate being able to display cyrillic-koi8 in the
console, I find preserving the size (60x80) more important.

Comment 5 Bill Nottingham 1999-03-10 16:46:59 UTC
Grumble. It shouldn't be doing that anymore.
Does /sbin/setsysfont look like the following?

#!/bin/sh

if [ -f /etc/sysconfig/i18n ]; then
  . /etc/sysconfig/i18n
fi

if [ -x /usr/bin/setfont ]; then

  if [ -n "$SYSFONT" -a -n "$UNIMAP" ]; then
    /usr/bin/setfont $SYSFONT -u $UNIMAP
  elif [ -n "$SYSFONT" ]; then
    /usr/bin/setfont $SYSFONT
#  else
#    /usr/bin/setfont
  fi

else
  echo "can't set font"
  exit 1
fi

Comment 6 sds 1999-03-10 23:28:59 UTC
yep, that's exactly what I have.

Comment 7 Bill Nottingham 1999-03-11 16:37:59 UTC
Check through your initscripts to see if $SYSFONT is assigned
somewhere else; if it isn't, it obviously shouldn't be
calling setfont.

Comment 8 Bill Nottingham 1999-03-19 22:06:59 UTC
at this point, I can't reproduce this here.
Using recent initscripts, the console stays the
same when booting with vga=ext, vga=132x43 (or whatever.)


Note You need to log in before you can comment on or make changes to this bug.