diff options
| -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 5f118cb716273..a90b19b892f99 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 3f84568f17e02..dd6023f2d8e51 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 3f84568f17e02..dd6023f2d8e51 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 3f84568f17e02..dd6023f2d8e51 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 |
