diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-09-05 17:38:09 -0500 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2015-10-24 06:28:08 +0200 |
commit | 04cf449e7727627969dadaf1aec829c429460ced (patch) | |
tree | e70dffd40200507ac96969022f517c6015ed4cde /src/drivers/aspeed/ast2050/Kconfig | |
parent | c3fcdccb816f9c5df5a3c158d167a20c1ae088ee (diff) | |
download | coreboot-04cf449e7727627969dadaf1aec829c429460ced.tar.xz |
drivers/aspeed: Add native text mode VGA support for the AST2050
Change-Id: I37763a59d2546cd0c0e57b31fdb7aa77c2c50bee
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/11937
Reviewed-by: Peter Stuge <peter@stuge.se>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/drivers/aspeed/ast2050/Kconfig')
-rw-r--r-- | src/drivers/aspeed/ast2050/Kconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/drivers/aspeed/ast2050/Kconfig b/src/drivers/aspeed/ast2050/Kconfig new file mode 100644 index 0000000000..f110d58bf5 --- /dev/null +++ b/src/drivers/aspeed/ast2050/Kconfig @@ -0,0 +1,14 @@ +config DRIVERS_ASPEED_AST2050 + bool + +if DRIVERS_ASPEED_AST2050 + +config DEVICE_SPECIFIC_OPTIONS # dummy + def_bool y + select DRIVERS_ASPEED_AST_COMMON + +config NATIVE_VGA_INIT_USE_EDID + bool + default n + +endif # DRIVERS_ASPEED_AST2050 |