Shelley Chen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45304 )
Change subject: removing CONFIG_ELOG_PRERAM ......................................................................
removing CONFIG_ELOG_PRERAM
Change-Id: Ic4f932e39c91ed12a5733d2f3b42dc0602974e8b Signed-off-by: Shelley Chen shchen@google.com --- M src/drivers/elog/Kconfig M src/drivers/elog/Makefile.inc 2 files changed, 4 insertions(+), 10 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/04/45304/1
diff --git a/src/drivers/elog/Kconfig b/src/drivers/elog/Kconfig index c71abbf..19b3331 100644 --- a/src/drivers/elog/Kconfig +++ b/src/drivers/elog/Kconfig @@ -23,12 +23,6 @@ but it means that events added at runtime via the SMI handler will not be reflected in the CBMEM copy of the log.
-config ELOG_PRERAM - bool - default y - help - This option will enable event logging from the preram stage. - config ELOG_GSMI depends on HAVE_SMI_HANDLER bool "SMI interface to write and clear event log" diff --git a/src/drivers/elog/Makefile.inc b/src/drivers/elog/Makefile.inc index cce1c3d..370eef4 100644 --- a/src/drivers/elog/Makefile.inc +++ b/src/drivers/elog/Makefile.inc @@ -1,7 +1,7 @@ -bootblock-$(CONFIG_ELOG_PRERAM) += elog.c -verstage-$(CONFIG_ELOG_PRERAM) += elog.c -romstage-$(CONFIG_ELOG_PRERAM) += elog.c -postcar-$(CONFIG_ELOG_PRERAM) += elog.c +bootblock-$(CONFIG_ELOG) += elog.c +verstage-$(CONFIG_ELOG) += elog.c +romstage-$(CONFIG_ELOG) += elog.c +postcar-$(CONFIG_ELOG) += elog.c ramstage-$(CONFIG_ELOG) += elog.c
smm-$(CONFIG_ELOG_GSMI) += elog.c gsmi.c
Shelley Chen has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/45304 )
Change subject: removing CONFIG_ELOG_PRERAM ......................................................................
Abandoned
Sorry, accidentally pushed an extra CL before squashing it.