diff options
author | Ed Maste <emaste@FreeBSD.org> | 2021-11-28 19:10:28 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2021-11-28 19:37:46 +0000 |
commit | 777526ed83822e1af2b7f7ea4186dbf7d3d3d60a (patch) | |
tree | 6703c0627ddb44a60ea8a7fed4253570f0078b8b | |
parent | bfcc09ddd422c95a1a2e4e794b63ee54c4902398 (diff) | |
download | src-777526ed8382.tar.gz src-777526ed8382.zip |
Remove options VESA from x86 MINIMAL
Followup to b8cf1c5c30a5, remove from MINIMAL in addition to GENERIC.
options VESA / vesa.ko provides VESA Bios Extensions (VBE) support for
the legacy sc(4) console. It is not used by the default console, vt(4).
PR: 253733
Fixes: b8cf1c5c30a5 ("Remove options VESA from x86 GENERIC")
Relnotes: Yes
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | sys/amd64/conf/MINIMAL | 1 | ||||
-rw-r--r-- | sys/i386/conf/MINIMAL | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sys/amd64/conf/MINIMAL b/sys/amd64/conf/MINIMAL index decf092661a5..5f99f85b996d 100644 --- a/sys/amd64/conf/MINIMAL +++ b/sys/amd64/conf/MINIMAL @@ -105,7 +105,6 @@ device psm # PS/2 mouse device kbdmux # keyboard multiplexer device vga # VGA video card driver -options VESA # Add support for VESA BIOS Extensions (VBE) device splash # Splash screen and screen saver support diff --git a/sys/i386/conf/MINIMAL b/sys/i386/conf/MINIMAL index ba9c05bf8265..1716f8018c36 100644 --- a/sys/i386/conf/MINIMAL +++ b/sys/i386/conf/MINIMAL @@ -116,7 +116,6 @@ device psm # PS/2 mouse device kbdmux # keyboard multiplexer device vga # VGA video card driver -options VESA # Add support for VESA BIOS Extensions (VBE) device splash # Splash screen and screen saver support |