diff options
author | ache <ache@FreeBSD.org> | 1998-04-02 15:33:49 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-04-02 15:33:49 +0000 |
commit | 22df54ec1a94626be9cc0f450c0799d87262d2c3 (patch) | |
tree | 45a0d56efdbdd6587477203018b0c746e54dcefa | |
parent | 6540990382fa2dab9dc47234a52be4cec97207ea (diff) | |
download | FreeBSD-src-22df54ec1a94626be9cc0f450c0799d87262d2c3.zip FreeBSD-src-22df54ec1a94626be9cc0f450c0799d87262d2c3.tar.gz |
Cosmetique changes in vidcontrol all screens knob
-rw-r--r-- | etc/etc.amd64/rc.amd64 | 8 | ||||
-rw-r--r-- | etc/etc.i386/rc.i386 | 8 | ||||
-rw-r--r-- | etc/rc.conf | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/etc/etc.amd64/rc.amd64 b/etc/etc.amd64/rc.amd64 index 6e463b1..762f6aa 100644 --- a/etc/etc.amd64/rc.amd64 +++ b/etc/etc.amd64/rc.amd64 @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: rc.i386,v 1.32 1998/03/07 09:02:08 jkh Exp $ +# $Id: rc.i386,v 1.33 1998/04/02 15:17:52 ache Exp $ # Do i386 specific processing # @@ -105,12 +105,12 @@ if [ "X${moused_enable}" = X"YES" ] ; then vidcontrol <${viddev} -m on fi -# set this mode for all screens -if [ "X${allscreens_mode}" != X -a "X${allscreens_mode}" != X"NO" ] ; then +# set this mode for all virtual screens +if [ "X${allscreens_flags}" != X"" ] ; then echo -n ' allscreens' for ttyv in /dev/ttyv* do - vidcontrol <$ttyv ${allscreens_mode} + vidcontrol <$ttyv ${allscreens_flags} done fi echo '.' diff --git a/etc/etc.i386/rc.i386 b/etc/etc.i386/rc.i386 index 6e463b1..762f6aa 100644 --- a/etc/etc.i386/rc.i386 +++ b/etc/etc.i386/rc.i386 @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: rc.i386,v 1.32 1998/03/07 09:02:08 jkh Exp $ +# $Id: rc.i386,v 1.33 1998/04/02 15:17:52 ache Exp $ # Do i386 specific processing # @@ -105,12 +105,12 @@ if [ "X${moused_enable}" = X"YES" ] ; then vidcontrol <${viddev} -m on fi -# set this mode for all screens -if [ "X${allscreens_mode}" != X -a "X${allscreens_mode}" != X"NO" ] ; then +# set this mode for all virtual screens +if [ "X${allscreens_flags}" != X"" ] ; then echo -n ' allscreens' for ttyv in /dev/ttyv* do - vidcontrol <$ttyv ${allscreens_mode} + vidcontrol <$ttyv ${allscreens_flags} done fi echo '.' diff --git a/etc/rc.conf b/etc/rc.conf index 2b65ef3..b680749 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -6,7 +6,7 @@ # # All arguments must be in double or single quotes. # -# $Id: rc.conf,v 1.41 1998/03/09 08:50:27 jkh Exp $ +# $Id: rc.conf,v 1.42 1998/04/02 15:17:35 ache Exp $ ############################################################## ### Important initial Boot-time options ##################### @@ -124,7 +124,7 @@ moused_enable="NO" # Run the mouse daemon. moused_type="auto" # See man page for rc.conf(5) for available settings. moused_port="/dev/cuaa0" # Set to your mouse port. moused_flags="" # Any additional flags to moused. -allscreens_mode="NO" # Set this vidcontrol flags for all virtual screens +allscreens_flags="" # Set this vidcontrol mode for all virtual screens ############################################################## |