aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/configs
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2016-04-19 19:36:24 -0600
committerIdwer Vollering <vidwer@gmail.com>2016-04-18 14:24:21 +0200
commit41f0e0fd4dcb630f48d11dc5d7c6fde87ae1c995 (patch)
tree40d2d0578e1161d7987507e75d3f21fb43805231 /payloads/libpayload/configs
parent043976065b006b42a9ec47cf34605eaec4815c6f (diff)
libpayload: disable EHCI & XHCI in defconfig-mips
drivers/usb/xhci.c and drivers/usb/ehci.c both require arch/barrier.h. barrier.h is present for x86, arm, and arm64, but not for mips. This is generating a build error after enabling USB by default on libpayload. I believe that this slipped through the buiders due to them not getting cleaned fully. It was caught in the coverity scan and when setting up a new build server. Change-Id: Idd89409a048009c087ce2a787d96a1efd089157f Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/14391 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'payloads/libpayload/configs')
-rw-r--r--payloads/libpayload/configs/defconfig-mips2
1 files changed, 2 insertions, 0 deletions
diff --git a/payloads/libpayload/configs/defconfig-mips b/payloads/libpayload/configs/defconfig-mips
index 7e31478556..4a0a914ac3 100644
--- a/payloads/libpayload/configs/defconfig-mips
+++ b/payloads/libpayload/configs/defconfig-mips
@@ -2,3 +2,5 @@ CONFIG_LP_ARCH_MIPS=y
CONFIG_LP_COREBOOT_VIDEO_CONSOLE=y
CONFIG_LP_PC_KEYBOARD=y
CONFIG_LP_TIMER_IMG_PISTACHIO=y
+# CONFIG_LP_USB_EHCI is not set
+# CONFIG_LP_USB_XHCI is not set