From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id EDBCFC54EE9 for ; Sat, 17 Sep 2022 12:50:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 7B5D840493; Sat, 17 Sep 2022 12:50:13 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 7B5D840493 X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OFeIL8IeS-6L; Sat, 17 Sep 2022 12:50:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp2.osuosl.org (Postfix) with ESMTP id 9D16640239; Sat, 17 Sep 2022 12:50:11 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 9D16640239 Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 5EE661BF48C for ; Sat, 17 Sep 2022 12:50:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 3AC4F60A82 for ; Sat, 17 Sep 2022 12:50:10 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org 3AC4F60A82 X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1r_Wzcuvs1bb for ; Sat, 17 Sep 2022 12:50:09 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.122]) by smtp3.osuosl.org (Postfix) with ESMTP id 67CA660A7B for ; Sat, 17 Sep 2022 12:50:09 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org 67CA660A7B Received: by busybox.osuosl.org (Postfix, from userid 4045) id 568C884265; Sat, 17 Sep 2022 12:50:09 +0000 (UTC) From: Thomas Petazzoni To: buildroot@buildroot.org Date: Sat, 17 Sep 2022 14:49:14 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: 43fc826d82acc089991d561ebca37feaf1aa421d X-Git-Newrev: 80323a534b12803fa25d55e3c5e2c8a527ca5863 X-Patchwork-Hint: ignore Message-Id: <20220917125009.568C884265@busybox.osuosl.org> Subject: [Buildroot] [git commit] package/rtl8723ds: fix build failure due to missing Linux CONFIG_MMC X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" commit: https://git.buildroot.net/buildroot/commit/?id=80323a534b12803fa25d55e3c5e2c8a527ca5863 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master 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/1bb71019b7edd7f195223a85c81f70e5a60518f0/ Signed-off-by: Giulio Benetti Signed-off-by: Thomas Petazzoni --- 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