[coreboot-gerrit] Patch set updated for coreboot: libpayload: Enable USB support by default

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Thu Apr 14 01:03:38 CEST 2016


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/7540

-gerrit

commit e8dadc3c477ec48fea415b6441d378be7d15c12b
Author: Marcel Meißner <mm-meissner at gmx.de>
Date:   Thu Nov 20 21:20:42 2014 +0100

    libpayload: Enable USB support by default
    
    Most people use USB keyboards.
    
    Change-Id: Ia7cf513059565db7b86190c4aae62d7a35392408
    Signed-off-by: Marcel Meißner <mm-meissner at gmx.de>
---
 payloads/libpayload/Kconfig | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/payloads/libpayload/Kconfig b/payloads/libpayload/Kconfig
index be68859..515cf78 100644
--- a/payloads/libpayload/Kconfig
+++ b/payloads/libpayload/Kconfig
@@ -510,11 +510,12 @@ config TIMER_MTK_ADDRESS
 
 config USB
 	bool "USB Support"
-	default n
+	default y
 
 config USB_UHCI
 	bool "Support for USB UHCI controllers"
 	depends on USB && ARCH_X86
+	default y
 	help
 	  Select this option if you are going to use USB 1.1 on an Intel based
 	  system.
@@ -522,6 +523,7 @@ config USB_UHCI
 config USB_OHCI
 	bool "Support for USB OHCI controllers"
 	depends on USB
+	default y
 	help
 	  Select this option if you are going to use USB 1.1 on a non-Intel based
 	  system.
@@ -529,15 +531,16 @@ config USB_OHCI
 config USB_EHCI
 	bool "Support for USB EHCI controllers"
 	depends on USB
+	default y
 	help
 	  Select this option if you want to use USB 2.0
 
 config USB_XHCI
 	bool "Support for USB xHCI controllers"
 	depends on USB
+	default y
 	help
 	  Select this option if you want to use USB 3.0
-	  NOTE: This option is not (fully) implemented yet
 
 config USB_XHCI_MTK_QUIRK
 	bool "Support for USB xHCI controllers on MTK SoC"



More information about the coreboot-gerrit mailing list