diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2015-10-04 17:47:36 -0700 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2015-10-08 19:11:24 +0000 |
commit | ee2740b7f63a7266e218fb97b657a67a8d1fde50 (patch) | |
tree | 3a702039281acd8e069b183ad2aa80a3f2ed6ba2 /src/arch/x86/bootblock.S | |
parent | c46a39237a18bdd4de826bce10ae89be718f9289 (diff) |
arch/x86/bootblock: Do not include non-code files in bootblock.S
Since we now have more freedom in the bootblock linking step it no
longer makes sense to use a monolithic bootblock.S. Code segments must
still be included as the order in bootblock.S determines code flow.
However, non-code flow related assembly stubs don't need to be directly
included in bootblock.S
Change-Id: I08e86e92d82bd2138194ed42652f268b0764aa54
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/11792
Tested-by: build bot (Jenkins)
Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/arch/x86/bootblock.S')
-rw-r--r-- | src/arch/x86/bootblock.S | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/arch/x86/bootblock.S b/src/arch/x86/bootblock.S index bea178d785..645e491ffe 100644 --- a/src/arch/x86/bootblock.S +++ b/src/arch/x86/bootblock.S @@ -25,11 +25,6 @@ #include <cpu/x86/16bit/entry16.inc> #include <cpu/x86/16bit/reset16.inc> #include <cpu/x86/32bit/entry32.inc> -#include <arch/x86/id.inc> - -#if IS_ENABLED(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE) -#include <cpu/intel/fit/fit.inc> -#endif #ifdef CONFIG_CHIPSET_BOOTBLOCK_INCLUDE #include CONFIG_CHIPSET_BOOTBLOCK_INCLUDE |