Seperate commit from the rest due to the fact that the /& fixing in

this case also corrects the usage of quotes in options.
This commit is contained in:
asmodai 2000-01-17 14:51:44 +00:00
parent fb1c53f743
commit 8d40969182
3 changed files with 28 additions and 28 deletions

View File

@ -34,12 +34,12 @@
.Nd
PS/2 mouse style pointing device driver
.Sh SYNOPSIS
.Cd "options" \&"PSM_HOOKAPM\&"
.Cd "options" \&"PSM_RESETAFTERSUSPEND\&"
.Cd "options" \&"KBD_RESETDELAY=N\&"
.Cd "options" \&"KBD_MAXWAIT=N\&"
.Cd "options" \&"PSM_DEBUG=N\&"
.Cd "options" \&"KBDIO_DEBUG=N\&"
.Cd "options PSM_HOOKAPM"
.Cd "options PSM_RESETAFTERSUSPEND"
.Cd "options KBD_RESETDELAY=N"
.Cd "options KBD_MAXWAIT=N"
.Cd "options PSM_DEBUG=N"
.Cd "options KBDIO_DEBUG=N"
.Cd "device psm0 at atkbdc? irq 12"
.Sh DESCRIPTION
The
@ -600,7 +600,7 @@ movement counts as described in
.Em devfs .
.El
.Sh EXAMPLE
.Dl "options" \&"PSM_HOOKAPM\&"
.Dl "options PSM_HOOKAPM"
.Dl "device psm0 at atkbdc? irq 12"
.Pp
Add the

View File

@ -45,26 +45,26 @@
fast interrupt driven asynchronous serial communications interface
.Sh SYNOPSIS
For standard ports:
.Cd "device sio0 at isa? port" \&"IO_COM1\&" irq 4
.Cd "device sio1 at isa? port" \&"IO_COM2\&" irq 3
.Cd "device sio2 at isa? port" \&"IO_COM3\&" irq 5
.Cd "device sio3 at isa? port" \&"IO_COM4\&" irq 9
.Cd "device sio0 at isa? port IO_COM1 irq 4"
.Cd "device sio1 at isa? port IO_COM2 irq 3"
.Cd "device sio2 at isa? port IO_COM3 irq 5"
.Cd "device sio3 at isa? port IO_COM4 irq 9"
.Pp
For AST compatible multiport cards with 4 ports:
.Cd "options" \&"COM_MULTIPORT\&"
.Cd "options COM_MULTIPORT"
.Cd "device sio4 at isa? port 0x2a0 flags 0x701"
.Cd "device sio5 at isa? port 0x2a8 flags 0x701"
.Cd "device sio6 at isa? port 0x2b0 flags 0x701"
.Cd "device sio7 at isa? port 0x2b8 flags 0x701 irq 12"
.Pp
For Boca Board compatible multiport cards with 8 ports:
.Cd "options" \&"COM_MULTIPORT\&"
.Cd "options COM_MULTIPORT"
.Cd "device sio4 at isa? port 0x100 flags 0xb05"
.Cd "..."
.Cd "device sio11 at isa? port 0x138 flags 0xb05 irq 12"
.Pp
For Hayes ESP cards:
.Cd "options" \&"COM_ESP\&"
.Cd "options COM_ESP"
.Cd "..."
.Pp
Meaning of

View File

@ -48,12 +48,12 @@ the console driver
.Cd "options SC_NO_SYSMOUSE"
.Cd "options SC_PIXEL_MODE"
.Cd "options SC_TWOBUTTON_MOUSE
.Cd "options SC_NORM_ATTR"=\&"_attribute_\&"
.Cd "options SC_NORM_REV_ATTR"=\&"_attribute_\&"
.Cd "options SC_KERNEL_CONS_ATTR"=\&"_attribute_\&"
.Cd "options SC_KERNEL_CONS_REV_ATTR"=\&"_attribute_\&"
.Cd "options SC_NORM_ATTR=_attribute_"
.Cd "options SC_NORM_REV_ATTR=_attribute_"
.Cd "options SC_KERNEL_CONS_ATTR=_attribute_"
.Cd "options SC_KERNEL_CONS_REV_ATTR=_attribute_"
.Cd "options SC_DFLT_FONT"
.Cd "makeoptions SC_DFLT_FONT"=\&"_font_name_\&"
.Cd "makeoptions SC_DFLT_FONT=_font_name_"
.Cd "device sc0 at isa?"
.Sh DESCRIPTION
The
@ -302,10 +302,10 @@ to use the right button of the mouse to paste text.
See
.Sx Mouse Support and Copy-and-Paste
above.
.It Em SC_NORM_ATTR=\&"_attribute_\&"
.It Em SC_NORM_REV_ATTR=\&"_attribute_\&"
.It Em SC_KERNEL_CONS_ATTR=\&"_attribute_\&"
.It Em SC_KERNEL_CONS_REV_ATTR=\&"_attribute_\&"
.It Em SC_NORM_ATTR=_attribute_
.It Em SC_NORM_REV_ATTR=_attribute_
.It Em SC_KERNEL_CONS_ATTR=_attribute_
.It Em SC_KERNEL_CONS_REV_ATTR=_attribute_
These options will set the default colors.
Available colors are defined in
.Pa /usr/include/machine/pc/display.h .
@ -437,15 +437,15 @@ Note that you cannot put any white space inside the quoted string,
because of the current implementation of
.Xr config 8 .
.Pp
.Dl "options SC_NORM_ATTR"=\&"(FG_GREEN|BG_BLACK)\&"
.Dl "options SC_NORM_REV_ATTR"=\&"(FG_YELLOW|BG_GREEN)\&"
.Dl "options SC_NORM_ATTR=(FG_GREEN|BG_BLACK)
.Dl "options SC_NORM_REV_ATTR=(FG_YELLOW|BG_GREEN)
.Pp
The following lines will set the default colors of the kernel message.
The kernel message will be printed bright red on black background.
The reversed message will be black on red background.
.Pp
.Dl "options SC_KERNEL_CONS_ATTR"=\&"(FG_LIGHTRED|BG_BLACK)\&"
.Dl "options SC_KERNEL_CONS_REV_ATTR"=\&"(FG_BLACK|BG_RED)\&"
.Dl "options SC_KERNEL_CONS_ATTR=(FG_LIGHTRED|BG_BLACK)
.Dl "options SC_KERNEL_CONS_REV_ATTR=(FG_BLACK|BG_RED)
.Pp
The following example adds the font files
.Pa cp850-8x16.fnt ,
@ -455,7 +455,7 @@ and
to the kernel.
.Pp
.Dl "options SC_DFLT_FONT"
.Dl "makeoptions SC_DFLT_FONT"=\&"cp850\&"
.Dl "makeoptions SC_DFLT_FONT=cp850
.Dl "device sc0 at isa?
.Pp
.\".Sh DIAGNOSTICS