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

Collapse All | Expand All

(-)sys/conf/NOTES (-3 / +4 lines)
Lines 1487-1495 Link Here
1487
options		VT_MAXWINDOWS=16	# Number of virtual consoles
1487
options		VT_MAXWINDOWS=16	# Number of virtual consoles
1488
options		VT_TWOBUTTON_MOUSE	# Use right mouse button to paste
1488
options		VT_TWOBUTTON_MOUSE	# Use right mouse button to paste
1489
1489
1490
# The following options set the default framebuffer size.
1490
# The following options lower the maximum framebuffer size.
1491
options		VT_FB_DEFAULT_HEIGHT=480
1491
# (default in sys/dev/vt/vt.h corresponds to 4096x2400)
1492
options		VT_FB_DEFAULT_WIDTH=640
1492
options		VT_FB_MAX_WIDTH=800
1493
options		VT_FB_MAX_HEIGHT=600
1493
1494
1494
# The following options will let you change the default vt terminal colors.
1495
# The following options will let you change the default vt terminal colors.
1495
options		TERMINAL_NORM_ATTR=(FG_GREEN|BG_BLACK)
1496
options		TERMINAL_NORM_ATTR=(FG_GREEN|BG_BLACK)
(-)share/man/man4/vt.4 (-2 / +2 lines)
Lines 145-154 Link Here
145
These options are checked in the order shown.
145
These options are checked in the order shown.
146
.It Dv SC_NO_CUTPASTE
146
.It Dv SC_NO_CUTPASTE
147
Disable mouse support.
147
Disable mouse support.
148
.It VT_FB_DEFAULT_WIDTH=X
148
.It VT_FB_MAX_WIDTH=X
149
Set the default width to
149
Set the default width to
150
.Fa X .
150
.Fa X .
151
.It VT_FB_DEFAULT_HEIGHT=Y
151
.It VT_FB_MAX_HEIGHT=Y
152
Set the default height to
152
Set the default height to
153
.Fa Y .
153
.Fa Y .
154
.El
154
.El
(-)sys/conf/options (-2 / +2 lines)
Lines 778-785 Link Here
778
SC_RENDER_DEBUG		opt_syscons.h
778
SC_RENDER_DEBUG		opt_syscons.h
779
SC_TWOBUTTON_MOUSE	opt_syscons.h
779
SC_TWOBUTTON_MOUSE	opt_syscons.h
780
VT_ALT_TO_ESC_HACK	opt_syscons.h
780
VT_ALT_TO_ESC_HACK	opt_syscons.h
781
VT_FB_DEFAULT_WIDTH	opt_syscons.h
781
VT_FB_MAX_WIDTH		opt_syscons.h
782
VT_FB_DEFAULT_HEIGHT	opt_syscons.h
782
VT_FB_MAX_HEIGHT	opt_syscons.h
783
VT_MAXWINDOWS		opt_syscons.h
783
VT_MAXWINDOWS		opt_syscons.h
784
VT_TWOBUTTON_MOUSE	opt_syscons.h
784
VT_TWOBUTTON_MOUSE	opt_syscons.h
785
DEV_SC			opt_syscons.h
785
DEV_SC			opt_syscons.h

Return to bug 210382