Kconfig: Move and clean up CONFIG_VGA
Change-Id: I6e710b95cade0ea68f787f33c0070613d64b6da6 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/19743 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
afa9aefce0
commit
4bbfe57959
3 changed files with 4 additions and 10 deletions
|
@ -550,12 +550,6 @@ config USE_WATCHDOG_ON_BOOT
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
||||||
config VGA
|
|
||||||
bool
|
|
||||||
default n
|
|
||||||
help
|
|
||||||
Build board-specific VGA code.
|
|
||||||
|
|
||||||
config GFXUMA
|
config GFXUMA
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
4
src/drivers/pc80/vga/Kconfig
Normal file
4
src/drivers/pc80/vga/Kconfig
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
config VGA
|
||||||
|
bool
|
||||||
|
help
|
||||||
|
Include legacy VGA support code.
|
|
@ -22,8 +22,6 @@
|
||||||
#define VGA_COLUMNS 80
|
#define VGA_COLUMNS 80
|
||||||
#define VGA_LINES 25
|
#define VGA_LINES 25
|
||||||
|
|
||||||
#if CONFIG_VGA
|
|
||||||
|
|
||||||
void vga_io_init(void);
|
void vga_io_init(void);
|
||||||
|
|
||||||
void vga_textmode_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);
|
void vga_line_write(unsigned int line, const char *string);
|
||||||
|
|
||||||
#endif /* CONFIG_VGA */
|
|
||||||
|
|
||||||
#endif /* VGA_H */
|
#endif /* VGA_H */
|
||||||
|
|
Loading…
Reference in a new issue