summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-09-10 21:38:47 +0000
committerbde <bde@FreeBSD.org>1996-09-10 21:38:47 +0000
commitd2fd439eb584334beacd2fb0f47d55a6b928a1cc (patch)
tree549da798aec3582a121792bf121a0a4262dce010 /sys
parent99c3be59a50f7949df1eccc2b10e0c1af0c0a352 (diff)
downloadFreeBSD-src-d2fd439eb584334beacd2fb0f47d55a6b928a1cc.zip
FreeBSD-src-d2fd439eb584334beacd2fb0f47d55a6b928a1cc.tar.gz
Fixed spelling of new SC_KBD_PROBE_WORKS option in options.i386.
It worked because it is spelled correctly in LINT. Added old obscure syscons options MAXCONS, SLOW_VGA and XT_KEYBOARD. This file should be sorted both alphabetically and on the module name by using a consistent prefix for each module, but there is no consistency in the old options. E.g., MAXCONS is spelled PCVT_NSCREENS for pcvt.
Diffstat (limited to 'sys')
-rw-r--r--sys/conf/NOTES5
-rw-r--r--sys/conf/options.i3867
-rw-r--r--sys/i386/conf/LINT5
-rw-r--r--sys/i386/conf/NOTES5
-rw-r--r--sys/i386/conf/options.i3867
5 files changed, 22 insertions, 7 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index a514b7b..343e4f3 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.275 1996/08/15 10:41:34 asami Exp $
+# $Id: LINT,v 1.276 1996/09/06 23:35:45 pst 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
@@ -503,6 +503,9 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr
options SC_KBD_PROBE_WORKS # keyboard probe should determine
# if syscons is available
+options MAXCONS=16 # number of virtual consoles
+options SLOW_VGA # do byte-wide i/o's to TS and GDC regs
+options XT_KEYBOARD # extra initialization for XT keyboard
#
# This device is mandatory.
diff --git a/sys/conf/options.i386 b/sys/conf/options.i386
index 2f7eb3e..7a839e6 100644
--- a/sys/conf/options.i386
+++ b/sys/conf/options.i386
@@ -1,4 +1,4 @@
-# $Id: options.i386,v 1.14 1996/06/11 16:02:51 pst Exp $
+# $Id: options.i386,v 1.15 1996/09/06 23:33:45 pst Exp $
BOUNCEPAGES opt_bounce.h
USER_LDT
MATH_EMULATE opt_math_emulate.h
@@ -28,7 +28,10 @@ CLK_CALIBRATION_LOOP opt_clock.h
CLK_USE_I8254_CALIBRATION opt_clock.h
CLK_USE_I586_CALIBRATION opt_clock.h
-SC_KEYBOARD_PROBE_WORKS opt_syscons.h
+SC_KBD_PROBE_WORKS opt_syscons.h
+MAXCONS opt_syscons.h
+SLOW_VGA opt_syscons.h
+XT_KEYBOARD opt_syscons.h
ATAPI opt_atapi.h
ATAPI_STATIC opt_atapi.h
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT
index a514b7b..343e4f3 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.275 1996/08/15 10:41:34 asami Exp $
+# $Id: LINT,v 1.276 1996/09/06 23:35:45 pst 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
@@ -503,6 +503,9 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr
options SC_KBD_PROBE_WORKS # keyboard probe should determine
# if syscons is available
+options MAXCONS=16 # number of virtual consoles
+options SLOW_VGA # do byte-wide i/o's to TS and GDC regs
+options XT_KEYBOARD # extra initialization for XT keyboard
#
# This device is mandatory.
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index a514b7b..343e4f3 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.275 1996/08/15 10:41:34 asami Exp $
+# $Id: LINT,v 1.276 1996/09/06 23:35:45 pst 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
@@ -503,6 +503,9 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr
options SC_KBD_PROBE_WORKS # keyboard probe should determine
# if syscons is available
+options MAXCONS=16 # number of virtual consoles
+options SLOW_VGA # do byte-wide i/o's to TS and GDC regs
+options XT_KEYBOARD # extra initialization for XT keyboard
#
# This device is mandatory.
diff --git a/sys/i386/conf/options.i386 b/sys/i386/conf/options.i386
index 2f7eb3e..7a839e6 100644
--- a/sys/i386/conf/options.i386
+++ b/sys/i386/conf/options.i386
@@ -1,4 +1,4 @@
-# $Id: options.i386,v 1.14 1996/06/11 16:02:51 pst Exp $
+# $Id: options.i386,v 1.15 1996/09/06 23:33:45 pst Exp $
BOUNCEPAGES opt_bounce.h
USER_LDT
MATH_EMULATE opt_math_emulate.h
@@ -28,7 +28,10 @@ CLK_CALIBRATION_LOOP opt_clock.h
CLK_USE_I8254_CALIBRATION opt_clock.h
CLK_USE_I586_CALIBRATION opt_clock.h
-SC_KEYBOARD_PROBE_WORKS opt_syscons.h
+SC_KBD_PROBE_WORKS opt_syscons.h
+MAXCONS opt_syscons.h
+SLOW_VGA opt_syscons.h
+XT_KEYBOARD opt_syscons.h
ATAPI opt_atapi.h
ATAPI_STATIC opt_atapi.h
OpenPOWER on IntegriCloud