aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2000-10-09 07:29:41 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2000-10-09 07:29:41 +0000
commit1b1728ad99ce48998768e05b7a773a5e7e720091 (patch)
tree23d4407d81925748f6b42423fa0e3927d71e46c7
parentaed217b4c63e9fcd8b0fca9be0096ee4f55c47ab (diff)
downloadsrc-1b1728ad99ce48998768e05b7a773a5e7e720091.tar.gz
src-1b1728ad99ce48998768e05b7a773a5e7e720091.zip
A couple of negative options was not commented out in NOTES/LINT. This
obscured a #include bug in syscons.
Notes
Notes: svn path=/head/; revision=66859
-rw-r--r--sys/conf/NOTES4
-rw-r--r--sys/dev/syscons/scvesactl.c2
-rw-r--r--sys/i386/conf/NOTES4
3 files changed, 6 insertions, 4 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 3299cd8e05b0..c7214f1c22ce 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -1126,8 +1126,8 @@ options VGA_ALT_SEQACCESS
# If you can dispense with some vga driver features, you may want to
# use the following options to save some memory.
-options VGA_NO_FONT_LOADING # don't save/load font
-options VGA_NO_MODE_CHANGE # don't change video modes
+#options VGA_NO_FONT_LOADING # don't save/load font
+#options VGA_NO_MODE_CHANGE # don't change video modes
# Older video cards may require this option for proper operation.
options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs
diff --git a/sys/dev/syscons/scvesactl.c b/sys/dev/syscons/scvesactl.c
index e550b17db9e2..a9ff4addd984 100644
--- a/sys/dev/syscons/scvesactl.c
+++ b/sys/dev/syscons/scvesactl.c
@@ -35,6 +35,8 @@
#include <sys/conf.h>
#include <sys/tty.h>
#include <sys/kernel.h>
+#include <sys/fbio.h>
+#include <sys/consio.h>
#include <machine/pc/vesa.h>
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index 3299cd8e05b0..c7214f1c22ce 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/conf/NOTES
@@ -1126,8 +1126,8 @@ options VGA_ALT_SEQACCESS
# If you can dispense with some vga driver features, you may want to
# use the following options to save some memory.
-options VGA_NO_FONT_LOADING # don't save/load font
-options VGA_NO_MODE_CHANGE # don't change video modes
+#options VGA_NO_FONT_LOADING # don't save/load font
+#options VGA_NO_MODE_CHANGE # don't change video modes
# Older video cards may require this option for proper operation.
options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs