summaryrefslogtreecommitdiff
path: root/release/rc.local
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2012-02-07 10:59:19 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2012-02-07 10:59:19 +0000
commitc991a64747490134c7582d46fdb43894f3d6eac0 (patch)
tree82a017965673c422cb928ab1ca84a37aa16388de /release/rc.local
parent36fc415d5d9f377dd8229f2ae4ec4509803b0ccb (diff)
downloadsrc-test-c991a64747490134c7582d46fdb43894f3d6eac0.tar.gz
src-test-c991a64747490134c7582d46fdb43894f3d6eac0.zip
- 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
Notes
Notes: svn path=/head/; revision=231123
Diffstat (limited to 'release/rc.local')
-rwxr-xr-xrelease/rc.local9
1 files changed, 8 insertions, 1 deletions
diff --git a/release/rc.local b/release/rc.local
index 03e3ea716b2a0..b1f9b19c2253b 100755
--- a/release/rc.local
+++ b/release/rc.local
@@ -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