From patchwork Tue May 26 21:27:53 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mathieu Olivari X-Patchwork-Id: 476748 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 80C971402A2 for ; Wed, 27 May 2015 07:29:23 +1000 (AEST) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 3365A2843EE; Tue, 26 May 2015 23:27:10 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00, T_RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 26C40280ADB for ; Tue, 26 May 2015 23:26:48 +0200 (CEST) X-policyd-weight: using cached result; rate:hard: -7.6 Received: from smtp.codeaurora.org (smtp.codeaurora.org [198.145.29.96]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Tue, 26 May 2015 23:26:40 +0200 (CEST) Received: from smtp.codeaurora.org (localhost [127.0.0.1]) by smtp.codeaurora.org (Postfix) with ESMTP id A5B44140739; Tue, 26 May 2015 21:28:06 +0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 486) id 90DD514073F; Tue, 26 May 2015 21:28:06 +0000 (UTC) Received: from mathieu-linux.qualcomm.com (qf-scl1nat.qualcomm.com [207.114.132.30]) (using TLSv1.2 with cipher AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mathieu@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id B5CFD140739; Tue, 26 May 2015 21:28:05 +0000 (UTC) From: Mathieu Olivari To: nbd@openwrt.org, blogic@openwrt.org, kaloz@openwrt.org Date: Tue, 26 May 2015 14:27:53 -0700 Message-Id: <1432675677-8806-3-git-send-email-mathieu@codeaurora.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1432675677-8806-1-git-send-email-mathieu@codeaurora.org> References: <1432675677-8806-1-git-send-email-mathieu@codeaurora.org> X-Virus-Scanned: ClamAV using ClamSMTP Cc: openwrt-devel@lists.openwrt.org Subject: [OpenWrt-Devel] [PATCH 2/6] kernel: add missing STMMAC options in generic configs X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" STMMAC_PLATFORM and STMMAC_PCI have been added recently in the kernel, but show up only when STMMAC driver is enabled. So se'll add it in the generic config, so the kernel build doesn't stall whenever we enable this driver. Signed-off-by: Mathieu Olivari --- target/linux/generic/config-3.18 | 2 ++ target/linux/generic/config-4.0 | 2 ++ 2 files changed, 4 insertions(+) diff --git a/target/linux/generic/config-3.18 b/target/linux/generic/config-3.18 index 7a38dee..31bac92 100644 --- a/target/linux/generic/config-3.18 +++ b/target/linux/generic/config-3.18 @@ -3837,6 +3837,8 @@ CONFIG_STDBINUTILS=y # CONFIG_STE10XP is not set # CONFIG_STE_MODEM_RPROC is not set # CONFIG_STMMAC_ETH is not set +# CONFIG_STMMAC_PLATFORM is not set +# CONFIG_STMMAC_PCI is not set CONFIG_STP=y # CONFIG_STRICT_DEVMEM is not set CONFIG_STRIP_ASM_SYMS=y diff --git a/target/linux/generic/config-4.0 b/target/linux/generic/config-4.0 index c3bb7fc..8a9cf33 100644 --- a/target/linux/generic/config-4.0 +++ b/target/linux/generic/config-4.0 @@ -3913,6 +3913,8 @@ CONFIG_STDBINUTILS=y # CONFIG_STE10XP is not set # CONFIG_STE_MODEM_RPROC is not set # CONFIG_STMMAC_ETH is not set +# CONFIG_STMMAC_PLATFORM is not set +# CONFIG_STMMAC_PCI is not set CONFIG_STP=y # CONFIG_STRICT_DEVMEM is not set CONFIG_STRIP_ASM_SYMS=y