svn commit: r231123 - head/release
Takahashi Yoshihiro
nyan at FreeBSD.org
Tue Feb 7 10:59:20 UTC 2012
Author: nyan
Date: Tue Feb 7 10:59:19 2012
New Revision: 231123
URL: http://svn.freebsd.org/changeset/base/231123
Log:
- Set TERM to cons25w on pc98 because we still use old cons25w terminal
to show Japanese.
- Add cons25w to terminal lists.
Reviewed by: nwhitehorn
MFC after: 1 week
Modified:
head/release/rc.local
Modified: head/release/rc.local
==============================================================================
--- head/release/rc.local Tue Feb 7 09:51:41 2012 (r231122)
+++ head/release/rc.local Tue Feb 7 10:59:19 2012 (r231123)
@@ -8,10 +8,16 @@
: ${DIALOG_ITEM_HELP=4}
: ${DIALOG_ESC=255}
+MACHINE=`uname -m`
+
kbdcontrol -d >/dev/null 2>&1
if [ $? -eq 0 ]; then
# Syscons: use xterm, start interesting things on other VTYs
- TERM=xterm
+ if [ ${MACHINE} = "pc98" ]; then
+ TERM=cons25w
+ else
+ TERM=xterm
+ fi
if [ -z "$EXTERNAL_VTY_STARTED" ]; then
# Init will clean these processes up if/when the system
@@ -31,6 +37,7 @@ else
echo " ansi Standard ANSI terminal"
echo " vt100 VT100 or compatible terminal"
echo " xterm xterm terminal emulator (or compatible)"
+ echo " cons25w cons25w terminal"
echo
echo -n "Console type [vt100]: "
read TERM
More information about the svn-src-head
mailing list