Philipp Deppenwiese has submitted this change and it was merged. ( https://review.coreboot.org/29545 )
Change subject: include/program_loading: Add POSTCAR prog type ......................................................................
include/program_loading: Add POSTCAR prog type
Now postcar is a standalone stage give it a proper type.
Change-Id: Ifa6af9cf20aad27ca87a86817e6ad0a0d1de17c8 Signed-off-by: Philipp Deppenwiese zaolin.daisuki@gmail.com Reviewed-on: https://review.coreboot.org/29545 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Werner Zeh werner.zeh@siemens.com --- M src/arch/x86/postcar_loader.c M src/include/program_loading.h 2 files changed, 2 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Werner Zeh: Looks good to me, approved
diff --git a/src/arch/x86/postcar_loader.c b/src/arch/x86/postcar_loader.c index 1877108..2342fb9 100644 --- a/src/arch/x86/postcar_loader.c +++ b/src/arch/x86/postcar_loader.c @@ -167,7 +167,7 @@ void run_postcar_phase(struct postcar_frame *pcf) { struct prog prog = - PROG_INIT(PROG_UNKNOWN, CONFIG_CBFS_PREFIX "/postcar"); + PROG_INIT(PROG_POSTCAR, CONFIG_CBFS_PREFIX "/postcar");
postcar_commit_mtrrs(pcf);
diff --git a/src/include/program_loading.h b/src/include/program_loading.h index e185b92..468f0b3 100644 --- a/src/include/program_loading.h +++ b/src/include/program_loading.h @@ -36,6 +36,7 @@ PROG_PAYLOAD, PROG_BL31, PROG_BL32, + PROG_POSTCAR, };
/*