´config´ is removed from measure list (CB:74750) Add 'config' to ram_stage_additional_list[] to have it measured and verified. BUG=NA TEST=boot and verify coreboot logs on facebook FBG1701 Change-Id: Id4119bc3a01e11f14a091facf81964d1a71092c1 Signed-off-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74752 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Himanshu Sahdev <himanshu.sahdev@intel.com> Reviewed-by: Martin L Roth <gaumless@gmail.com>
24 lines
606 B
C
24 lines
606 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef __MANIFEST_H__
|
|
#define __MANIFEST_H__
|
|
|
|
/**
|
|
* Make sure the index matches the actual order in the manifest generated
|
|
* using the HashCb.cmd file
|
|
*/
|
|
#define HASH_IDX_ROM_STAGE 0
|
|
#define HASH_IDX_RAM_STAGE 1
|
|
#define HASH_IDX_PAYLOAD 2
|
|
#define HASH_IDX_OPROM 3
|
|
#define HASH_IDX_FSP 4
|
|
#define HASH_IDX_MICROCODE 5
|
|
#define HASH_IDX_SPD0 6
|
|
#define HASH_IDX_LOGO 7
|
|
#define HASH_IDX_DSDT 8
|
|
#define HASH_IDX_POSTCAR_STAGE 9
|
|
#define HASH_IDX_PUBLICKEY 10
|
|
#define HASH_IDX_CONFIG 11
|
|
#define HASH_IDX_BOOTBLOCK 12 /* Should always be the last one */
|
|
#endif
|