diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-24 21:18:20 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-25 06:33:56 -0700 |
commit | 2f6d42b9dfc5fb40ad59c5e81dab6298a192452b (patch) | |
tree | dc947ed5d0cda6907d4b51e0b76e457798bd64a6 /arch/x86/cpu | |
parent | 2a82ec77d27ef5f860a107c4b764643a655dceeb (diff) | |
download | u-boot-imx-2f6d42b9dfc5fb40ad59c5e81dab6298a192452b.zip u-boot-imx-2f6d42b9dfc5fb40ad59c5e81dab6298a192452b.tar.gz u-boot-imx-2f6d42b9dfc5fb40ad59c5e81dab6298a192452b.tar.bz2 |
x86: Add ivybridge directory to Makefile
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>
Diffstat (limited to 'arch/x86/cpu')
-rw-r--r-- | arch/x86/cpu/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/cpu/Makefile b/arch/x86/cpu/Makefile index 2b9e9b9..818969f 100644 --- a/arch/x86/cpu/Makefile +++ b/arch/x86/cpu/Makefile @@ -13,4 +13,6 @@ 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-$(CONFIG_PCI) += pci.o |