diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2022-10-16 20:34:57 +0800 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-01-22 18:56:52 +0000 |
commit | 3d426f38c53536249aa2fa52c9d5839ffe9e6f0d (patch) | |
tree | f0bf2725658e9ef9d04a89523dc3267165ee0b4e /util/amdfwtool/amdfwtool.c | |
parent | de6f1986193996b9f54ea7bcc6cf0a32801e7acf (diff) |
amdfwtool: Add instance = 0 for bios image
For future BIOS image entry whose instance = 1.
Change-Id: Iaa40872b270cf9ff289794c8c51c4d8b448d862d
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69151
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'util/amdfwtool/amdfwtool.c')
-rw-r--r-- | util/amdfwtool/amdfwtool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index fd5c811b1e..3c213e7d75 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -372,7 +372,7 @@ amd_bios_entry amd_bios_table[] = { { .type = AMD_BIOS_APCB_BK, .inst = 15, .level = BDT_BOTH }, { .type = AMD_BIOS_APOB, .level = BDT_BOTH }, { .type = AMD_BIOS_BIN, - .reset = 1, .copy = 1, .zlib = 1, .level = BDT_BOTH }, + .reset = 1, .copy = 1, .zlib = 1, .inst = 0, .level = BDT_BOTH }, { .type = AMD_BIOS_APOB_NV, .level = BDT_LVL2 }, { .type = AMD_BIOS_PMUI, .inst = 1, .subpr = 0, .level = BDT_BOTH }, { .type = AMD_BIOS_PMUD, .inst = 1, .subpr = 0, .level = BDT_BOTH }, |