cpu/intel/microcode: Apply more strict guard for assembly files
Change-Id: I8243be7c9a57402b2ac1cfa1c0552990d4a4ba74 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37891 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
405812209d
commit
d60e9ab74e
|
@ -124,7 +124,7 @@ else
|
||||||
$(eval $(call early_x86_stage,bootblock,elf64-x86-64))
|
$(eval $(call early_x86_stage,bootblock,elf64-x86-64))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
bootblock-$(CONFIG_ARCH_BOOTBLOCK_X86_32) += walkcbfs.S
|
bootblock-$(CONFIG_MICROCODE_UPDATE_PRE_RAM) += walkcbfs.S
|
||||||
|
|
||||||
endif # CONFIG_ARCH_BOOTBLOCK_X86_32 / CONFIG_ARCH_BOOTBLOCK_X86_64
|
endif # CONFIG_ARCH_BOOTBLOCK_X86_32 / CONFIG_ARCH_BOOTBLOCK_X86_64
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
bootblock-$(CONFIG_MICROCODE_UPDATE_PRE_RAM) += microcode_asm.S
|
bootblock-$(CONFIG_MICROCODE_UPDATE_PRE_RAM) += microcode_asm.S
|
||||||
romstage-$(CONFIG_MICROCODE_UPDATE_PRE_RAM) += microcode_asm.S
|
|
||||||
|
|
||||||
bootblock-$(CONFIG_SUPPORT_CPU_UCODE_IN_CBFS) += microcode.c
|
bootblock-$(CONFIG_SUPPORT_CPU_UCODE_IN_CBFS) += microcode.c
|
||||||
ramstage-$(CONFIG_SUPPORT_CPU_UCODE_IN_CBFS) += microcode.c
|
ramstage-$(CONFIG_SUPPORT_CPU_UCODE_IN_CBFS) += microcode.c
|
||||||
|
|
|
@ -15,6 +15,7 @@ config PLATFORM_USES_FSP1_1
|
||||||
bool
|
bool
|
||||||
select UEFI_2_4_BINDING
|
select UEFI_2_4_BINDING
|
||||||
select INTEL_GMA_ADD_VBT if RUN_FSP_GOP
|
select INTEL_GMA_ADD_VBT if RUN_FSP_GOP
|
||||||
|
select MICROCODE_UPDATE_PRE_RAM
|
||||||
help
|
help
|
||||||
Does the code require the Intel Firmware Support Package?
|
Does the code require the Intel Firmware Support Package?
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue