summaryrefslogtreecommitdiffstats
path: root/etc/etc.alpha
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2001-01-09 22:28:17 +0000
committerjhb <jhb@FreeBSD.org>2001-01-09 22:28:17 +0000
commit1bb19011b4203c40e178805f1eb09a46c5eeef0c (patch)
tree52caef206a67bdba00d992c96f6e54c68f174040 /etc/etc.alpha
parent3e81a98da0ae11b97e455ff10c9ac99c5420e091 (diff)
downloadFreeBSD-src-1bb19011b4203c40e178805f1eb09a46c5eeef0c.zip
FreeBSD-src-1bb19011b4203c40e178805f1eb09a46c5eeef0c.tar.gz
Move the syscons configuration to a machine independent rc.syscons. The
syscons sh code was identical on both platforms except for whitespace differences.
Diffstat (limited to 'etc/etc.alpha')
-rw-r--r--etc/etc.alpha/rc.alpha154
1 files changed, 2 insertions, 152 deletions
diff --git a/etc/etc.alpha/rc.alpha b/etc/etc.alpha/rc.alpha
index d1252b5..cc2b3a3 100644
--- a/etc/etc.alpha/rc.alpha
+++ b/etc/etc.alpha/rc.alpha
@@ -17,158 +17,6 @@ case ${osf1_enable} in
;;
esac
-echo '.'
-
-##########################################################################
-####### Syscons section ########
-##########################################################################
-
-# stdin must be redirected because it might be for a serial console
-kbddev=/dev/ttyv0
-viddev=/dev/ttyv0
-
-echo -n 'Configuring syscons:'
-
-# keymap
-#
-case ${keymap} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' keymap'; kbdcontrol <${kbddev} -l ${keymap}
- ;;
-esac
-
-# keyrate
-#
-case ${keyrate} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' keyrate'; kbdcontrol <${kbddev} -r ${keyrate}
- ;;
-esac
-
-# keybell
-#
-case ${keybell} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' keybell'; kbdcontrol <${kbddev} -b ${keybell}
- ;;
-esac
-
-# change function keys
-#
-case ${keychange} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' keychange'
- set - ${keychange}
- while [ $# -gt 0 ]; do
- kbdcontrol < ${kbddev} -f "$1" "$2"
- shift; shift
- done
- ;;
-esac
-
-# cursor type
-#
-case ${cursor} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' cursor'; vidcontrol < ${viddev} -c ${cursor}
- ;;
-esac
-
-# screen mapping
-#
-case ${scrnmap} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' screen_map'; vidcontrol < ${viddev} -l ${scrnmap}
- ;;
-esac
-
-# font 8x16
-#
-case ${font8x16} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' font8x16'; vidcontrol < ${viddev} -f 8x16 ${font8x16}
- ;;
-esac
-
-# font 8x14
-#
-case ${font8x14} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' font8x14'; vidcontrol < ${viddev} -f 8x14 ${font8x14}
- ;;
-esac
-
-# font 8x8
-#
-case ${font8x8} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' font8x8'; vidcontrol < ${viddev} -f 8x8 ${font8x8}
- ;;
-esac
-
-# blank time
-#
-case ${blanktime} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' blank_time'; vidcontrol < ${viddev} -t ${blanktime}
- ;;
-esac
-
-# screen saver
-#
-case ${saver} in
-[Nn][Oo] | '')
- ;;
-*)
- echo -n ' screensaver'
- for i in `kldstat | awk '$5 ~ "^splash_.*$" { print $5 }'`; do
- kldunload $i
- done
- kldstat -v | grep -q _saver || kldload ${saver}_saver
- ;;
-esac
-
-# mouse daemon
-#
-case ${moused_enable} in
-[Yy][Ee][Ss])
- echo -n ' moused'
- moused ${moused_flags} -p ${moused_port} -t ${moused_type}
- vidcontrol < ${viddev} -m on
- ;;
-esac
-
-# set this mode for all virtual screens
-#
-if [ -n "${allscreens_flags}" ] ; then
- echo -n ' allscreens'
- for ttyv in /dev/ttyv*; do
- vidcontrol < ${ttyv} ${allscreens_flags}
- done
-fi
-
-echo '.'
-
# knob for wether or not we should print out unaligned access warnings
#
case ${unaligned_print} in
@@ -176,3 +24,5 @@ case ${unaligned_print} in
sysctl -w machdep.unaligned_print=0
;;
esac
+
+echo '.'
OpenPOWER on IntegriCloud