diff options
Diffstat (limited to 'src/lib/coreboot_table.c')
-rw-r--r-- | src/lib/coreboot_table.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c index d7b6126385..913588feb6 100644 --- a/src/lib/coreboot_table.c +++ b/src/lib/coreboot_table.c @@ -536,6 +536,10 @@ static uintptr_t write_coreboot_table(uintptr_t rom_table_end) if (CONFIG(SMMSTORE_V2)) lb_smmstorev2(head); + /* Add information about firmware in form suitable for EFI updates. */ + if (CONFIG(DRIVERS_EFI_FW_INFO)) + lb_efi_fw_info(head); + /* Add board-specific table entries, if any. */ lb_board(head); |