mb/google/brask/variants/moli: return the default VBT

Both option-HDMI and option-DP use the same setting of vbt,
and ABSENT is physically remove option board from motherboard,
so set default vbt has option-DP setting and only return it.

BUG=b:231769131
TEST=emerge-brask coreboot.

Signed-off-by: Raihow Shi <raihow_shi@wistron.corp-partner.google.com>
Change-Id: I440143dabcf04c103f2a4420a7e4afb8ec12ec1c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64139
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nick Vaccaro <nvaccaro@google.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
Raihow Shi
2022-05-07 16:25:13 +08:00
committed by Felix Held
parent f118656736
commit cc115cb71a

View File

@@ -34,10 +34,6 @@ const struct psys_config psys_config = {
const char *mainboard_vbt_filename(void)
{
if (fw_config_probe(FW_CONFIG(DB_OPT, OPT_HDMI)))
return "vbt-moli_HDMI.bin";
else if (fw_config_probe(FW_CONFIG(DB_OPT, OPT_DP)))
return "vbt-moli_DP.bin";
return "vbt-moli.bin";
}