commit | f44a3a5152f5180f31d02f2814aee1fcb97a9378 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Mon Jul 04 11:57:49 2016 -0600 |
committer | Simon Glass <sjg@chromium.org> | Thu Jul 14 20:40:24 2016 -0600 |
tree | c4b415454e413765e4fef789571f69c3a55ba495 | |
parent | 141e5a0047332406b6ad3e39c9030882af6c952e [diff] [blame] |
sandbox: Don't use PCI in SPL PCI is not supported in SPL for sandbox, so avoid using it. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/arch/sandbox/lib/Makefile b/arch/sandbox/lib/Makefile index 96761e2..7820c55 100644 --- a/arch/sandbox/lib/Makefile +++ b/arch/sandbox/lib/Makefile
@@ -8,5 +8,7 @@ # obj-y += interrupts.o +ifndef CONFIG_SPL_BUILD obj-$(CONFIG_PCI) += pci_io.o +endif obj-$(CONFIG_CMD_BOOTM) += bootm.o