mb/intel/adlrvp: Update VBT filenames

These files were just renamed to put `adlrvp` in between `vbt`
and the memory technology type.

Change-Id: Icefbac462d0ec9c660541e9cf44686d6dcf82dfd
Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52032
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: YH Lin <yueherngl@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Tim Wawrzynczak 2021-04-01 15:41:16 -06:00
parent 1e36dc078e
commit a10cc8a98b
1 changed files with 2 additions and 2 deletions

View File

@ -46,9 +46,9 @@ const char *mainboard_vbt_filename(void)
switch (sku_id) { switch (sku_id) {
case ADL_P_LP5_1: case ADL_P_LP5_1:
case ADL_P_LP5_2: case ADL_P_LP5_2:
return "vbt_lp5.bin"; return "vbt_adlrvp_lp5.bin";
case ADL_P_DDR5: case ADL_P_DDR5:
return "vbt_ddr5.bin"; return "vbt_adlrvp_ddr5.bin";
default: default:
return "vbt.bin"; return "vbt.bin";
} }