arch/x86: Avoid HAVE_SMI_HANDLER conditional with smm-class
Build of the entire smm-class is skipped if we have HAVE_SMI_HANDLER=n. Change-Id: I10b4300ddd18b1673c404b45fd9642488ab3186c Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34125 Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Lance Zhao <lance.zhao@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -2,4 +2,4 @@ ramstage-y += common_init.c
|
||||
romstage-$(CONFIG_UDELAY_LAPIC) += fsb.c
|
||||
ramstage-$(CONFIG_UDELAY_LAPIC) += fsb.c
|
||||
postcar-$(CONFIG_UDELAY_LAPIC) += fsb.c
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += fsb.c
|
||||
smm-y += fsb.c
|
||||
|
@@ -13,8 +13,8 @@ ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c
|
||||
romstage-$(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM) += stage_cache.c
|
||||
postcar-$(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM) += stage_cache.c
|
||||
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += tsc_freq.c
|
||||
smm-y += finalize.c
|
||||
smm-y += tsc_freq.c
|
||||
|
||||
ifneq ($(CONFIG_TSC_MONOTONIC_TIMER),y)
|
||||
bootblock-y += monotonic_timer.c
|
||||
|
@@ -13,11 +13,11 @@ subdirs-y += ../common
|
||||
ramstage-y += tsc_freq.c
|
||||
romstage-y += tsc_freq.c
|
||||
postcar-y += tsc_freq.c
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += tsc_freq.c
|
||||
smm-y += tsc_freq.c
|
||||
|
||||
ramstage-y += acpi.c
|
||||
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
|
||||
smm-y += finalize.c
|
||||
|
||||
romstage-y += stage_cache.c
|
||||
ramstage-y += stage_cache.c
|
||||
|
@@ -15,14 +15,14 @@ ramstage-y += acpi.c
|
||||
|
||||
ramstage-y += common.c
|
||||
romstage-y += common.c
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += common.c
|
||||
smm-y += common.c
|
||||
|
||||
ramstage-y += tsc_freq.c
|
||||
romstage-y += tsc_freq.c
|
||||
postcar-y += tsc_freq.c
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += tsc_freq.c
|
||||
smm-y += tsc_freq.c
|
||||
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
|
||||
smm-y += finalize.c
|
||||
|
||||
romstage-$(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM) += stage_cache.c
|
||||
postcar-$(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM) += stage_cache.c
|
||||
|
Reference in New Issue
Block a user