1## SPDX-License-Identifier: GPL-2.0-only 2 3ramstage-y += vtxprintf.c printk.c vsprintf.c 4ramstage-y += init.c console.c 5ramstage-y += post.c 6ramstage-y += die.c 7ifeq ($(CONFIG_HWBASE_DEBUG_CB),y) 8ramstage-$(CONFIG_RAMSTAGE_LIBHWBASE) += hw-debug_sink.ads 9ramstage-$(CONFIG_RAMSTAGE_LIBHWBASE) += hw-debug_sink.adb 10romstage-$(CONFIG_ROMSTAGE_LIBHWBASE) += hw-debug_sink.ads 11romstage-$(CONFIG_ROMSTAGE_LIBHWBASE) += hw-debug_sink.adb 12endif 13 14smm-$(CONFIG_DEBUG_SMI) += init.c console.c vtxprintf.c printk.c 15smm-y += die.c 16smm-y += post.c 17 18ifneq ($(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK),y) 19verstage-y += printk.c 20verstage-y += console.c 21endif 22verstage-y += post.c 23verstage-y += die.c 24verstage-y += init.c 25verstage-y += vtxprintf.c vsprintf.c 26 27romstage-$(CONFIG_SEPARATE_ROMSTAGE) += vtxprintf.c printk.c vsprintf.c 28romstage-$(CONFIG_SEPARATE_ROMSTAGE) += init.c console.c 29romstage-y += post.c 30romstage-y += die.c 31 32postcar-y += vtxprintf.c vsprintf.c 33postcar-$(CONFIG_POSTCAR_CONSOLE) += printk.c 34postcar-$(CONFIG_POSTCAR_CONSOLE) += init.c console.c 35postcar-y += post.c 36postcar-y += die.c 37 38bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += printk.c 39bootblock-y += vtxprintf.c vsprintf.c 40bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += init.c console.c 41bootblock-y += post.c 42bootblock-y += die.c 43 44decompressor-y += die.c 45