summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authoryokota <yokota@FreeBSD.org>1999-01-23 10:51:58 +0000
committeryokota <yokota@FreeBSD.org>1999-01-23 10:51:58 +0000
commit159eae5a56bc231d0849b869ce8210cd9bf5638d (patch)
tree3a42cfb8bd0b290f74dce1d32155f5129b5ce870 /sys
parentb569d7e3f12ddbe1f2dd4108024bd275db333ed8 (diff)
downloadFreeBSD-src-159eae5a56bc231d0849b869ce8210cd9bf5638d.zip
FreeBSD-src-159eae5a56bc231d0849b869ce8210cd9bf5638d.tar.gz
- Remove reference to obsolete options.
- Describe options for the vga driver. Reviewed by: bde
Diffstat (limited to 'sys')
-rw-r--r--sys/conf/NOTES21
-rw-r--r--sys/conf/options.i3867
-rw-r--r--sys/i386/conf/LINT21
-rw-r--r--sys/i386/conf/NOTES21
-rw-r--r--sys/i386/conf/options.i3867
5 files changed, 47 insertions, 30 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index b0c9a5c..e9343b7 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.539 1999/01/20 14:49:10 eivind Exp $
+# $Id: LINT,v 1.540 1999/01/21 09:24:28 eivind Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -879,6 +879,20 @@ options PSM_RESETAFTERSUSPEND #reset the device at the resume event
# The video card driver.
device vga0 at isa? port ? conflicts
+# Options for vga:
+# Try the following option if the mouse pointer is not drawn correctly
+# or font does not seem to be loaded properly. May cause flicker on
+# some systems.
+options VGA_ALT_SEQACCESS
+
+# If you can dispense with some vga driver features, you may want to
+# use the following options to save some memory.
+options VGA_NO_FONT_LOADING # don't save/load font
+options VGA_NO_MODE_CHANGE # don't change video modes
+
+# Older video cards may require this option for proper operation.
+options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
+
# Splash screen at start up! Screen savers require this too.
pseudo-device splash
@@ -892,15 +906,10 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
# The syscons console driver (sco color console compatible).
device sc0 at isa? tty
options MAXCONS=16 # number of virtual consoles
-options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
options "STD8X16FONT" # Compile font in
makeoptions "STD8X16FONT"="cp850"
options SC_HISTORY_SIZE=200 # number of history buffer lines
options SC_DISABLE_REBOOT # disable reboot key sequence
-# Try the following option if the mouse pointer is not drawn correctly
-# or font does not seem to be loaded properly. May cause flicker on
-# some systems.
-#options SC_ALT_SEQACCESS
# To include support for VESA video modes
# Dont use together with SMP!!
diff --git a/sys/conf/options.i386 b/sys/conf/options.i386
index 2704d56..9be7d35 100644
--- a/sys/conf/options.i386
+++ b/sys/conf/options.i386
@@ -1,4 +1,4 @@
-# $Id: options.i386,v 1.102 1999/01/10 17:41:33 nsouch Exp $
+# $Id: options.i386,v 1.103 1999/01/11 03:18:35 yokota Exp $
DISABLE_PSE
IDE_DELAY
@@ -67,19 +67,14 @@ I586_CPU opt_global.h
I686_CPU opt_global.h
MAXCONS opt_syscons.h
-# obsolete, use VGA_SLOW_IOACCESS
-#SLOW_VGA opt_syscons.h
STD8X16FONT opt_syscons.h
SC_HISTORY_SIZE opt_syscons.h
SC_DISABLE_REBOOT opt_syscons.h
SC_MOUSE_CHAR opt_syscons.h
-# obsolete, use VGA_ALT_SEQACCESS
-#SC_ALT_SEQACCESS opt_syscons.h
FB_INSTALL_CDEV opt_fb.h
VGA_ALT_SEQACCESS opt_vga.h
-VGA_DEBUG opt_vga.h
VGA_NO_FONT_LOADING opt_vga.h
VGA_NO_MODE_CHANGE opt_vga.h
VGA_SLOW_IOACCESS opt_vga.h
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT
index b0c9a5c..e9343b7 100644
--- a/sys/i386/conf/LINT
+++ b/sys/i386/conf/LINT
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.539 1999/01/20 14:49:10 eivind Exp $
+# $Id: LINT,v 1.540 1999/01/21 09:24:28 eivind Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -879,6 +879,20 @@ options PSM_RESETAFTERSUSPEND #reset the device at the resume event
# The video card driver.
device vga0 at isa? port ? conflicts
+# Options for vga:
+# Try the following option if the mouse pointer is not drawn correctly
+# or font does not seem to be loaded properly. May cause flicker on
+# some systems.
+options VGA_ALT_SEQACCESS
+
+# If you can dispense with some vga driver features, you may want to
+# use the following options to save some memory.
+options VGA_NO_FONT_LOADING # don't save/load font
+options VGA_NO_MODE_CHANGE # don't change video modes
+
+# Older video cards may require this option for proper operation.
+options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
+
# Splash screen at start up! Screen savers require this too.
pseudo-device splash
@@ -892,15 +906,10 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
# The syscons console driver (sco color console compatible).
device sc0 at isa? tty
options MAXCONS=16 # number of virtual consoles
-options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
options "STD8X16FONT" # Compile font in
makeoptions "STD8X16FONT"="cp850"
options SC_HISTORY_SIZE=200 # number of history buffer lines
options SC_DISABLE_REBOOT # disable reboot key sequence
-# Try the following option if the mouse pointer is not drawn correctly
-# or font does not seem to be loaded properly. May cause flicker on
-# some systems.
-#options SC_ALT_SEQACCESS
# To include support for VESA video modes
# Dont use together with SMP!!
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index b0c9a5c..e9343b7 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/conf/NOTES
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.539 1999/01/20 14:49:10 eivind Exp $
+# $Id: LINT,v 1.540 1999/01/21 09:24:28 eivind Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -879,6 +879,20 @@ options PSM_RESETAFTERSUSPEND #reset the device at the resume event
# The video card driver.
device vga0 at isa? port ? conflicts
+# Options for vga:
+# Try the following option if the mouse pointer is not drawn correctly
+# or font does not seem to be loaded properly. May cause flicker on
+# some systems.
+options VGA_ALT_SEQACCESS
+
+# If you can dispense with some vga driver features, you may want to
+# use the following options to save some memory.
+options VGA_NO_FONT_LOADING # don't save/load font
+options VGA_NO_MODE_CHANGE # don't change video modes
+
+# Older video cards may require this option for proper operation.
+options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
+
# Splash screen at start up! Screen savers require this too.
pseudo-device splash
@@ -892,15 +906,10 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
# The syscons console driver (sco color console compatible).
device sc0 at isa? tty
options MAXCONS=16 # number of virtual consoles
-options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
options "STD8X16FONT" # Compile font in
makeoptions "STD8X16FONT"="cp850"
options SC_HISTORY_SIZE=200 # number of history buffer lines
options SC_DISABLE_REBOOT # disable reboot key sequence
-# Try the following option if the mouse pointer is not drawn correctly
-# or font does not seem to be loaded properly. May cause flicker on
-# some systems.
-#options SC_ALT_SEQACCESS
# To include support for VESA video modes
# Dont use together with SMP!!
diff --git a/sys/i386/conf/options.i386 b/sys/i386/conf/options.i386
index 2704d56..9be7d35 100644
--- a/sys/i386/conf/options.i386
+++ b/sys/i386/conf/options.i386
@@ -1,4 +1,4 @@
-# $Id: options.i386,v 1.102 1999/01/10 17:41:33 nsouch Exp $
+# $Id: options.i386,v 1.103 1999/01/11 03:18:35 yokota Exp $
DISABLE_PSE
IDE_DELAY
@@ -67,19 +67,14 @@ I586_CPU opt_global.h
I686_CPU opt_global.h
MAXCONS opt_syscons.h
-# obsolete, use VGA_SLOW_IOACCESS
-#SLOW_VGA opt_syscons.h
STD8X16FONT opt_syscons.h
SC_HISTORY_SIZE opt_syscons.h
SC_DISABLE_REBOOT opt_syscons.h
SC_MOUSE_CHAR opt_syscons.h
-# obsolete, use VGA_ALT_SEQACCESS
-#SC_ALT_SEQACCESS opt_syscons.h
FB_INSTALL_CDEV opt_fb.h
VGA_ALT_SEQACCESS opt_vga.h
-VGA_DEBUG opt_vga.h
VGA_NO_FONT_LOADING opt_vga.h
VGA_NO_MODE_CHANGE opt_vga.h
VGA_SLOW_IOACCESS opt_vga.h
OpenPOWER on IntegriCloud