coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
board_verified_boot.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef BOARD_VERIFIED_BOOT_H
4 #define BOARD_VERIFIED_BOOT_H
5 
6 #include <vboot_check.h>
7 
8 /* Define the items to be measured or verified */
9 #define BOOTBLOCK (const char *)"bootblock"
10 #define FSP (const char *)"fsp.bin"
11 #define CMOS_LAYOUT (const char *)"cmos_layout.bin"
12 #define RAMSTAGE (const char *)CONFIG_CBFS_PREFIX"/ramstage"
13 #define ROMSTAGE (const char *)CONFIG_CBFS_PREFIX"/romstage"
14 #define PAYLOAD (const char *)CONFIG_CBFS_PREFIX"/payload"
15 #define POSTCAR (const char *)CONFIG_CBFS_PREFIX"/postcar"
16 #define OP_ROM_VBT (const char *)"vbt.bin"
17 #define MICROCODE (const char *)"cpu_microcode_blob.bin"
18 
19 #endif