diff options
author | Nico Huber <nico.huber@secunet.com> | 2023-05-19 23:39:13 +0000 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-05-21 19:51:12 +0000 |
commit | 1d95800e321fdf69352c16e3ccca2e2f1805d94e (patch) | |
tree | 2876ff9e3b512e796fcbd09400a3b980ffc3591f /src/mainboard | |
parent | 2f7e3db2003e8ee22fc51abb0229869510fa8099 (diff) |
mb/lenovo/x200: Add VBT files by default
Select INTEL_GMA_HAVE_VBT so VBT files are added by default. This board
has two specific VBT files that are hard-coded in the Makefile. Hence
set an empty INTEL_GMA_VBT_FILE string.
Change-Id: I0508c8016da06b401d6fbefd6e5cec1af018a5c8
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75380
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/lenovo/x200/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x200/Kconfig b/src/mainboard/lenovo/x200/Kconfig index 6b22fb30b0..e18d6d3f33 100644 --- a/src/mainboard/lenovo/x200/Kconfig +++ b/src/mainboard/lenovo/x200/Kconfig @@ -16,6 +16,7 @@ config BOARD_SPECIFIC_OPTIONS select HAVE_OPTION_TABLE select HAVE_CMOS_DEFAULT select HAVE_ACPI_RESUME + select INTEL_GMA_HAVE_VBT select INTEL_INT15 select SUPERIO_NSC_PC87382 select DRIVERS_LENOVO_WACOM @@ -62,4 +63,7 @@ config PS2K_EISAID config PS2M_EISAID default "IBM3780" if BOARD_LENOVO_X200 +config INTEL_GMA_VBT_FILE + default "" # We add specific files in the Makefile + endif # BOARD_LENOVO_X200 || BOARD_LENOVO_X301 |