diff options
author | Andrey Petrov <andrey.petrov@intel.com> | 2016-05-13 15:27:42 -0700 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-05-18 07:02:43 +0200 |
commit | 060b215fa7b7f9aae04e90be9eeed14e6f1974bf (patch) | |
tree | e7990823c40e39afee031962d8c131f0e9f10ef2 /src/soc/intel/common/Kconfig | |
parent | 493ec92eb3c379c127754dd2459563c21d9d6ed9 (diff) |
soc/intel/common: Add utility to load VBT file
Change-Id: I8d3d47ca2fc1fc4c10e61c04b941b6378b9c0f80
Signed-off-by: Andrey Petrov <andrey.petrov@intel.com>
Reviewed-on: https://review.coreboot.org/14815
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/Kconfig')
-rw-r--r-- | src/soc/intel/common/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/soc/intel/common/Kconfig b/src/soc/intel/common/Kconfig index 8b68aad46c..c9ffc93d28 100644 --- a/src/soc/intel/common/Kconfig +++ b/src/soc/intel/common/Kconfig @@ -59,4 +59,17 @@ config MMA_BLOBS_PATH depends on MMA default "3rdparty/blobs/mainboard/$(MAINBOARDDIR)/mma" +config ADD_VBT_DATA_FILE + bool "Add a Video Bios Table (VBT) binary to CBFS" + help + Add a VBT file data file to CBFS. The VBT describes the integrated + GPU and connections, and is needed by FSP in order to initialize the + display. + +config VBT_FILE + string "VBT binary path and filename" + depends on ADD_VBT_DATA_FILE + help + The path and filename of the VBT binary. + endif # SOC_INTEL_COMMON |