diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-02-11 15:34:58 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-04-11 11:26:23 -0400 |
commit | 7c79029e43af2e98449d437d4d325bf56b10abd8 (patch) | |
tree | 5698c012e66dabb677583c4c2fab567ca805b495 /vgasrc/Kconfig | |
parent | 5ab18be0b32f8e2f99768c4b889e37db0a3b8717 (diff) | |
download | seabios-7c79029e43af2e98449d437d4d325bf56b10abd8.tar.gz |
vgabios: Initial support for coreboot native vga vgabios.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/Kconfig')
-rw-r--r-- | vgasrc/Kconfig | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vgasrc/Kconfig b/vgasrc/Kconfig index f04fca7d..951240cb 100644 --- a/vgasrc/Kconfig +++ b/vgasrc/Kconfig @@ -46,6 +46,14 @@ menu "VGA ROM" select VGA_STDVGA_PORTS help Build support for Geode LX vga. + + config VGA_COREBOOT + depends on COREBOOT + bool "coreboot linear framebuffer" + help + Build support for a vgabios wrapper around video + devices initialized using coreboot native vga init. + endchoice choice @@ -98,7 +106,7 @@ menu "VGA ROM" Support VBE. config VGA_PCI - depends on BUILD_VGABIOS + depends on BUILD_VGABIOS && !VGA_COREBOOT bool "PCI ROM Headers" default y help |