All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC
@ 2022-09-16 18:51 Giulio Benetti
  2022-09-16 19:04 ` Giulio Benetti
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Giulio Benetti @ 2022-09-16 18:51 UTC (permalink / raw)
  To: buildroot; +Cc: Angelo Compagnucci, Giulio Benetti

This Wi-Fi module has an SDIO interface so we need to make sure Linux has
CONFIG_MMC(that include SDIO APIs) enabled.

Fixes:
http://autobuild.buildroot.net/results/1bb/1bb71019b7edd7f195223a85c81f70e5a60518f0/

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 package/rtl8723ds/rtl8723ds.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/rtl8723ds/rtl8723ds.mk b/package/rtl8723ds/rtl8723ds.mk
index da25ffe9a7..8598f906a9 100644
--- a/package/rtl8723ds/rtl8723ds.mk
+++ b/package/rtl8723ds/rtl8723ds.mk
@@ -17,6 +17,7 @@ define RTL8723DS_LINUX_CONFIG_FIXUPS
 	$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
 	$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
 	$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_MMC)
 endef
 
 $(eval $(kernel-module))
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC
  2022-09-16 18:51 [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC Giulio Benetti
@ 2022-09-16 19:04 ` Giulio Benetti
  2022-09-17 12:50 ` Thomas Petazzoni
  2022-09-22 12:40 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Giulio Benetti @ 2022-09-16 19:04 UTC (permalink / raw)
  To: buildroot; +Cc: Angelo Compagnucci

Subject has a typo, it must be:
package/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC

Can you please reword it while committing?

Thanks in advance
Best regards
-- 
Giulio Benetti
Benetti Engineering sas

On 16/09/22 20:51, Giulio Benetti wrote:
> This Wi-Fi module has an SDIO interface so we need to make sure Linux has
> CONFIG_MMC(that include SDIO APIs) enabled.
> 
> Fixes:
> http://autobuild.buildroot.net/results/1bb/1bb71019b7edd7f195223a85c81f70e5a60518f0/
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>   package/rtl8723ds/rtl8723ds.mk | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/package/rtl8723ds/rtl8723ds.mk b/package/rtl8723ds/rtl8723ds.mk
> index da25ffe9a7..8598f906a9 100644
> --- a/package/rtl8723ds/rtl8723ds.mk
> +++ b/package/rtl8723ds/rtl8723ds.mk
> @@ -17,6 +17,7 @@ define RTL8723DS_LINUX_CONFIG_FIXUPS
>   	$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
>   	$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
>   	$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
> +	$(call KCONFIG_ENABLE_OPT,CONFIG_MMC)
>   endef
>   
>   $(eval $(kernel-module))

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC
  2022-09-16 18:51 [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC Giulio Benetti
  2022-09-16 19:04 ` Giulio Benetti
@ 2022-09-17 12:50 ` Thomas Petazzoni
  2022-09-22 12:40 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2022-09-17 12:50 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Angelo Compagnucci, buildroot

On Fri, 16 Sep 2022 20:51:37 +0200
Giulio Benetti <giulio.benetti@benettiengineering.com> wrote:

> This Wi-Fi module has an SDIO interface so we need to make sure Linux has
> CONFIG_MMC(that include SDIO APIs) enabled.
> 
> Fixes:
> http://autobuild.buildroot.net/results/1bb/1bb71019b7edd7f195223a85c81f70e5a60518f0/
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>  package/rtl8723ds/rtl8723ds.mk | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC
  2022-09-16 18:51 [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC Giulio Benetti
  2022-09-16 19:04 ` Giulio Benetti
  2022-09-17 12:50 ` Thomas Petazzoni
@ 2022-09-22 12:40 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-09-22 12:40 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Angelo Compagnucci, buildroot

>>>>> "Giulio" == Giulio Benetti <giulio.benetti@benettiengineering.com> writes:

 > This Wi-Fi module has an SDIO interface so we need to make sure Linux has
 > CONFIG_MMC(that include SDIO APIs) enabled.

 > Fixes:
 > http://autobuild.buildroot.net/results/1bb/1bb71019b7edd7f195223a85c81f70e5a60518f0/

 > Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Committed to 2022.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-22 12:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-16 18:51 [Buildroot] [PATCH] package/rtl8723ds/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC Giulio Benetti
2022-09-16 19:04 ` Giulio Benetti
2022-09-17 12:50 ` Thomas Petazzoni
2022-09-22 12:40 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.