From 4272c700e189240ca1befba02dd6c0ee795c1751 Mon Sep 17 00:00:00 2001 From: Ye Li Date: Mon, 17 May 2021 20:10:22 -0700 Subject: [PATCH] LF-3782 fastboot: Select USB_GADGET_OS_DESCRIPTORS for fastboot function CONFIG_USB_GADGET_OS_DESCRIPTORS must be set when using OS descriptor, otherwise the OS descriptors (windows WCID) are not handled. Since only fastboot uses this feature, default select USB_GADGET_OS_DESCRIPTORS for fastboot function Signed-off-by: Ye Li Reviewed-by: Peng Fan --- drivers/fastboot/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/fastboot/Kconfig b/drivers/fastboot/Kconfig index 9891cea2f4..588d374114 100644 --- a/drivers/fastboot/Kconfig +++ b/drivers/fastboot/Kconfig @@ -11,6 +11,7 @@ config USB_FUNCTION_FASTBOOT default y if ARCH_SUNXI && USB_MUSB_GADGET select FASTBOOT select USB_GADGET_DOWNLOAD + select USB_GADGET_OS_DESCRIPTORS help This enables the USB part of the fastboot gadget. -- 2.17.1