
It is now required to add subdirectories in the x86 cpu Makefile. Add this to fix a build breakage for chromebook_link.
Signed-off-by: Simon Glass sjg@chromium.org ---
Changes in v3: - Add new patch to add ivybridge directory to Makefile
Changes in v2: None
arch/x86/cpu/Makefile | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/arch/x86/cpu/Makefile b/arch/x86/cpu/Makefile index 4d3c5ea..7f09db5 100644 --- a/arch/x86/cpu/Makefile +++ b/arch/x86/cpu/Makefile @@ -13,6 +13,8 @@ obj-$(CONFIG_X86_RESET_VECTOR) += resetvec.o start16.o obj-y += interrupts.o cpu.o call64.o
obj-$(CONFIG_SYS_COREBOOT) += coreboot/ +obj-$(CONFIG_NORTHBRIDGE_INTEL_SANDYBRIDGE) += ivybridge/ +obj-$(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDGE) += ivybridge/ obj-y += lapic.o obj-$(CONFIG_PCI) += pci.o obj-y += turbo.o