Add a new post code POST_HW_INIT_FAILURE, used when coreboot fails to detect or initialize a required hardware component. BUG=b:124401932 BRANCH=sarien TEST=build coreboot for sarien and arcada platforms Change-Id: I73820d24b3e1c269d9d446a78ef4f97e167e3552 Signed-off-by: Keith Short <keithshort@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32774 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
ramstage-y += vtxprintf.c printk.c vsprintf.c
|
|
ramstage-y += init.c console.c
|
|
ramstage-y += post.c
|
|
ramstage-y += die.c
|
|
ifeq ($(CONFIG_HWBASE_DEBUG_CB),y)
|
|
ramstage-$(CONFIG_RAMSTAGE_LIBHWBASE) += hw-debug_sink.ads
|
|
ramstage-$(CONFIG_RAMSTAGE_LIBHWBASE) += hw-debug_sink.adb
|
|
endif
|
|
|
|
smm-$(CONFIG_DEBUG_SMI) += init.c console.c vtxprintf.c printk.c
|
|
smm-$(CONFIG_SMM_TSEG) += die.c
|
|
smm-$(CONFIG_SMM_TSEG) += post.c
|
|
|
|
verstage-y += init.c
|
|
verstage-y += printk.c
|
|
verstage-y += vtxprintf.c vsprintf.c
|
|
verstage-y += console.c
|
|
verstage-y += post.c
|
|
verstage-y += die.c
|
|
|
|
romstage-y += vtxprintf.c printk.c vsprintf.c
|
|
romstage-y += init.c console.c
|
|
romstage-y += post.c
|
|
romstage-y += die.c
|
|
|
|
postcar-$(CONFIG_POSTCAR_CONSOLE) += vtxprintf.c printk.c vsprintf.c
|
|
postcar-$(CONFIG_POSTCAR_CONSOLE) += init.c console.c
|
|
postcar-y += post.c
|
|
postcar-y += die.c
|
|
|
|
bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += printk.c
|
|
bootblock-y += vtxprintf.c vsprintf.c
|
|
bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += init.c console.c
|
|
bootblock-y += post.c
|
|
bootblock-y += die.c
|
|
|
|
decompressor-y += die.c
|