Message ID | 20200817065654.4419-1-krzk@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 3b574ea2f89321d0a428286be0057340f0313323 |
Headers | show |
Series | [v2,1/2] arm64: defconfig: Enable USB gadget with configfs | expand |
Hello: This series was applied to soc/soc.git (refs/heads/for-next). On Mon, 17 Aug 2020 08:56:53 +0200 you wrote: > USB OTG connections are pretty common for embedded and development > boards, for example to have networking or serial access to the device. > Build as a module the USB gadget configfs options so the defconfig can > be used in such development configurations. > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> > > [...] Here is a summary with links: - [v2,1/2] arm64: defconfig: Enable USB gadget with configfs https://git.kernel.org/soc/soc/c/3b574ea2f89321d0a428286be0057340f0313323 - [v2,2/2] arm64: defconfig: Enable ptn5150 extcon driver https://git.kernel.org/soc/soc/c/1ebda87ad906b732af5660c3ee2e896a13292545 You are awesome, thank you!
On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote: > USB OTG connections are pretty common for embedded and development > boards, for example to have networking or serial access to the device. > Build as a module the USB gadget configfs options so the defconfig can > be used in such development configurations. > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Applied both, thanks.
On Sun, Aug 23, 2020 at 09:46:01AM +0800, Shawn Guo wrote: > On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote: > > USB OTG connections are pretty common for embedded and development > > boards, for example to have networking or serial access to the device. > > Build as a module the USB gadget configfs options so the defconfig can > > be used in such development configurations. > > > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> > > Applied both, thanks. Thanks, although few days ago I got confirmation from patchwork that Olof already applied them to arm-soc. I cannot find them in arm-soc or next trees, though. Dear Olof, Did you pick these up already? Best regards, Krzysztof
Hi, On Sun, Aug 23, 2020 at 1:42 AM Krzysztof Kozlowski <krzk@kernel.org> wrote: > > On Sun, Aug 23, 2020 at 09:46:01AM +0800, Shawn Guo wrote: > > On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote: > > > USB OTG connections are pretty common for embedded and development > > > boards, for example to have networking or serial access to the device. > > > Build as a module the USB gadget configfs options so the defconfig can > > > be used in such development configurations. > > > > > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> > > > > Applied both, thanks. > > Thanks, although few days ago I got confirmation from patchwork that > Olof already applied them to arm-soc. I cannot find them in arm-soc > or next trees, though. > > Dear Olof, > Did you pick these up already? Yes, I applied them to the arm/fixes in the soc tree: https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git/log/?h=arm/fixes -Olof
On Sun, Aug 23, 2020 at 03:58:48PM -0700, Olof Johansson wrote: > Hi, > > On Sun, Aug 23, 2020 at 1:42 AM Krzysztof Kozlowski <krzk@kernel.org> wrote: > > > > On Sun, Aug 23, 2020 at 09:46:01AM +0800, Shawn Guo wrote: > > > On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote: > > > > USB OTG connections are pretty common for embedded and development > > > > boards, for example to have networking or serial access to the device. > > > > Build as a module the USB gadget configfs options so the defconfig can > > > > be used in such development configurations. > > > > > > > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> > > > > > > Applied both, thanks. > > > > Thanks, although few days ago I got confirmation from patchwork that > > Olof already applied them to arm-soc. I cannot find them in arm-soc > > or next trees, though. > > > > Dear Olof, > > Did you pick these up already? > > Yes, I applied them to the arm/fixes in the soc tree: > https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git/log/?h=arm/fixes Okay, dropped them from my tree. Shawn
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 500b782b92df..2b02a5a179d7 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -725,6 +725,17 @@ CONFIG_USB_GADGET=y CONFIG_USB_RENESAS_USBHS_UDC=m CONFIG_USB_RENESAS_USB3=m CONFIG_USB_TEGRA_XUDC=m +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_F_FS=y CONFIG_TYPEC=m CONFIG_TYPEC_TCPM=m CONFIG_TYPEC_FUSB302=m
USB OTG connections are pretty common for embedded and development boards, for example to have networking or serial access to the device. Build as a module the USB gadget configfs options so the defconfig can be used in such development configurations. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> --- arch/arm64/configs/defconfig | 11 +++++++++++ 1 file changed, 11 insertions(+)