View | Details | Raw Unified | Return to bug 34577 | Differences between
and this patch

Collapse All | Expand All

(-)syscons.4 Fri Feb 1 12:12:55 2002 (-1 / +1 lines)
Lines 429-435 Link Here
429
.Bd -literal -offset indent
429
.Bd -literal -offset indent
430
device atkbdc0 at isa? port IO_KBD
430
device atkbdc0 at isa? port IO_KBD
431
device atkbd0 at atkbdc? irq 1
431
device atkbd0 at atkbdc? irq 1
432
device vga0 at isa? conflicts
432
device vga0 at isa?
433
device sc0 at isa?
433
device sc0 at isa?
434
434
435
pseudo-device splash
435
pseudo-device splash
436
436
(-)vga.4 Fri Feb 1 12:15:08 2002 (-8 / +3 lines)
Lines 40-46 Link Here
40
.Cd "options VGA_NO_MODE_CHANGE"
40
.Cd "options VGA_NO_MODE_CHANGE"
41
.Cd "options VGA_SLOW_IOACCESS"
41
.Cd "options VGA_SLOW_IOACCESS"
42
.Cd "options VGA_WIDTH90"
42
.Cd "options VGA_WIDTH90"
43
.Cd "device vga0 at isa? port ? conflicts"
43
.Cd "device vga0 at isa? port ?"
44
.Sh DESCRIPTION
44
.Sh DESCRIPTION
45
The
45
The
46
.Nm
46
.Nm
Lines 51-61 Link Here
51
.Nm
51
.Nm
52
driver to manipulate video hardware (changing video modes, loading font, etc).
52
driver to manipulate video hardware (changing video modes, loading font, etc).
53
.Pp
53
.Pp
54
The keyword
55
.Dv conflicts
56
is required, as the video card may use I/O ports in the same range
57
as other drivers.
58
.Pp
59
The
54
The
60
.Nm
55
.Nm
61
driver supports the standard video cards: MDA, CGA, EGA and VGA.
56
driver supports the standard video cards: MDA, CGA, EGA and VGA.
Lines 131-143 Link Here
131
.Sh EXAMPLES
126
.Sh EXAMPLES
132
Your kernel configuration should normally have:
127
Your kernel configuration should normally have:
133
.Pp
128
.Pp
134
.Dl "device vga0 at isa? port ? conflicts"
129
.Dl "device vga0 at isa? port ?"
135
.Pp
130
.Pp
136
The following lines should be included in the kernel configuration file
131
The following lines should be included in the kernel configuration file
137
in order to enable the VESA BIOS Extension support.
132
in order to enable the VESA BIOS Extension support.
138
.Pp
133
.Pp
139
.Dl "options VESA"
134
.Dl "options VESA"
140
.Dl "device vga0 at isa? port ? conflicts"
135
.Dl "device vga0 at isa? port ?"
141
.Pp
136
.Pp
142
If you do not want VESA support included in the kernel, but
137
If you do not want VESA support included in the kernel, but
143
want to use occasionally, do not add the
138
want to use occasionally, do not add the

Return to bug 34577