diff options
author | jhb <jhb@FreeBSD.org> | 2000-06-09 23:47:30 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-06-09 23:47:30 +0000 |
commit | e34188e1fcab2647f202f1cc473cbb78ea1953a7 (patch) | |
tree | da92fe0eecb98f0e1fde3555feadf4bda26d17db | |
parent | 3c1108d16649a4088e4bf92118d489cb58ea1fbd (diff) | |
download | FreeBSD-src-e34188e1fcab2647f202f1cc473cbb78ea1953a7.zip FreeBSD-src-e34188e1fcab2647f202f1cc473cbb78ea1953a7.tar.gz |
Document flags 0x100 in syscons.4, and document syscons' flags in LINT.
Reviewed by: yokota, obrien
-rw-r--r-- | share/man/man4/syscons.4 | 8 | ||||
-rw-r--r-- | sys/conf/NOTES | 4 | ||||
-rw-r--r-- | sys/i386/conf/LINT | 4 | ||||
-rw-r--r-- | sys/i386/conf/NOTES | 4 |
4 files changed, 18 insertions, 2 deletions
diff --git a/share/man/man4/syscons.4 b/share/man/man4/syscons.4 index 5f118cb..a90b19b 100644 --- a/share/man/man4/syscons.4 +++ b/share/man/man4/syscons.4 @@ -54,7 +54,7 @@ the console driver .Cd "options SC_KERNEL_CONS_REV_ATTR=_attribute_" .Cd "options SC_DFLT_FONT" .Cd "makeoptions SC_DFLT_FONT=_font_name_" -.Cd "device sc0 at isa?" +.Cd "device sc0 at isa?" Op flags Ar flags .Sh DESCRIPTION The .Nm @@ -380,7 +380,7 @@ time .\".It bit 6 (QUIET_BELL) .\"This option suppresses the bell, whether audible or visual, .\"if it is rung in a background virtual terminal. -.It bit 7 (VESA800X600) +.It 0x0080 (VESA800X600) This option puts the video card in the VESA 800x600 dots, 16 color mode. It may be useful for laptop computers for which the 800x600 mode @@ -391,6 +391,10 @@ compiled with the option explained above. .\"Note also that the ``copy-and-paste'' function is not currently supported .\"in this mode and the mouse pointer will not be displayed. +.It 0x0100 (AUTODETECT_KBD) +This option instructs the syscons driver to periodically scan +for a keyboard device if it is not currently attached to one. +Otherwise, the driver only probes for a keyboard once during bootup. .El .Sh FILES .Bl -tag -width /usr/share/syscons/xxxxyyyyzzz -compact diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 3f84568..dd6023f 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1039,6 +1039,10 @@ options SC_NO_FONT_LOADING options SC_NO_HISTORY options SC_NO_SYSMOUSE +# `flags' for sc +# 0x80 Put the video card in the VESA 800x600 dots, 16 color mode +# 0x100 Probe for a keyboard device periodically if one is not present + # # The Numeric Processing eXtension driver. In addition to this, you # may configure a math emulator (see above). If your machine has a diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT index 3f84568..dd6023f 100644 --- a/sys/i386/conf/LINT +++ b/sys/i386/conf/LINT @@ -1039,6 +1039,10 @@ options SC_NO_FONT_LOADING options SC_NO_HISTORY options SC_NO_SYSMOUSE +# `flags' for sc +# 0x80 Put the video card in the VESA 800x600 dots, 16 color mode +# 0x100 Probe for a keyboard device periodically if one is not present + # # The Numeric Processing eXtension driver. In addition to this, you # may configure a math emulator (see above). If your machine has a diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES index 3f84568..dd6023f 100644 --- a/sys/i386/conf/NOTES +++ b/sys/i386/conf/NOTES @@ -1039,6 +1039,10 @@ options SC_NO_FONT_LOADING options SC_NO_HISTORY options SC_NO_SYSMOUSE +# `flags' for sc +# 0x80 Put the video card in the VESA 800x600 dots, 16 color mode +# 0x100 Probe for a keyboard device periodically if one is not present + # # The Numeric Processing eXtension driver. In addition to this, you # may configure a math emulator (see above). If your machine has a |