Richard Spiegel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/29870
Change subject: mb/google/kahlee: Modify Kconfig for aleena ......................................................................
mb/google/kahlee: Modify Kconfig for aleena
The aleena board uses a display that's not compatible with current VBIOS. A VBIOS specific for aleena has been merged into blobs, so modify Kconfig so that it loads the new VBIOS when building aleena, but load original VBIOS for all other boards under kahlee folder.
BUG=b:112618193 TEST=Build each board under kahlee, one at a time. After each build, opened build/config.h and searched VGA_BIOS_FILE to verify that the string only changed for aleena, all other boards remained with original string.
Change-Id: Iccd0853692680908d951edd142a2d8e13a561391 Signed-off-by: Richard Spiegel richard.spiegel@silverbackltd.com --- M src/mainboard/google/kahlee/Kconfig 1 file changed, 8 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/29870/1
diff --git a/src/mainboard/google/kahlee/Kconfig b/src/mainboard/google/kahlee/Kconfig index a8592b2..c1a63df 100644 --- a/src/mainboard/google/kahlee/Kconfig +++ b/src/mainboard/google/kahlee/Kconfig @@ -52,6 +52,14 @@ string default google/kahlee
+if BOARD_GOOGLE_ALEENA + +config VGA_BIOS_FILE + string + default "3rdparty/blobs/mainboard/google/kahlee/aleena/VBIOS_015_049_000_018.bin" + +endif + config VGA_BIOS_FILE string default "3rdparty/blobs/mainboard/google/kahlee/VBIOS_015_049_000_017.bin"