UPSTREAM: Kconfig: Move and clean up CONFIG_VGA

BUG=none
BRANCH=none
TEST=none

Change-Id: I72a8270841ec229a2e27be71f3a6b3262640e6f1
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Original-Commit-Id: 4bbfe57959
Original-Change-Id: I6e710b95cade0ea68f787f33c0070613d64b6da6
Original-Signed-off-by: Nico Huber <nico.h@gmx.de>
Original-Reviewed-on: https://review.coreboot.org/19743
Original-Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Original-Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Original-Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Original-Reviewed-by: Kysti Mlkki <kyosti.malkki@gmail.com>
Reviewed-on: https://chromium-review.googlesource.com/510777
Commit-Ready: Patrick Georgi <pgeorgi@chromium.org>
Tested-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-by: Patrick Georgi <pgeorgi@chromium.org>
This commit is contained in:
Nico Huber 2017-05-17 20:43:02 +02:00 committed by chrome-bot
parent 749dd61622
commit 72522d9665
3 changed files with 4 additions and 10 deletions

View file

@ -550,12 +550,6 @@ config USE_WATCHDOG_ON_BOOT
bool
default n
config VGA
bool
default n
help
Build board-specific VGA code.
config GFXUMA
bool
default n

View file

@ -0,0 +1,4 @@
config VGA
bool
help
Include legacy VGA support code.

View file

@ -22,8 +22,6 @@
#define VGA_COLUMNS 80
#define VGA_LINES 25
#if CONFIG_VGA
void vga_io_init(void);
void vga_textmode_init(void);
@ -36,6 +34,4 @@ void vga_frame_set(unsigned int line, unsigned int character);
void vga_line_write(unsigned int line, const char *string);
#endif /* CONFIG_VGA */
#endif /* VGA_H */