mb/google/zork/var/ezkinil: Configure boot media for new SKUs

Configure the correct eMMC present flag for Ezkinil new added sku_id.
0x5A020015  NVME present
0x5A020016  eMMC present
0x5A020017  eMMC present

BUG=b:159761042
TEST:none

Signed-off-by: Lucas Chen <lucas.chen@quanta.corp-partner.google.com>
Change-Id: I1b89cc4568283d5dbebf0ab7ac578368d3a3637e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43753
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Rob Barnes <robbarnes@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Lucas Chen 2020-07-23 17:37:59 +08:00 committed by Aaron Durbin
parent e2379969e5
commit 23ade0ee15
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@ static int sku_has_emmc(void)
(board_sku == 0x5A020001) || (board_sku == 0x5A020002) ||
(board_sku == 0x5A020005) || (board_sku == 0x5A020006) ||
(board_sku == 0x5A020009) || (board_sku == 0x5A02000A) ||
(board_sku == 0x5A02000D) || (board_sku == 0x5A02000E))
(board_sku == 0x5A02000D) || (board_sku == 0x5A02000E) ||
(board_sku == 0x5A020016) || (board_sku == 0x5A020017))
return 1;
return 0;