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 X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 627D9C388F9 for ; Tue, 3 Nov 2020 20:48:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 25DEE22409 for ; Tue, 3 Nov 2020 20:48:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604436520; bh=wRtCQnQdPDX6MWfLmB+AFzKXzPe8RgptgwFvsk/8nyI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=R43RuZnfw41MpwVkyAZg98ErqLBec3CiRfhwoyDwqWBS5YwmoYimyyi6Q2Pfqgmd1 aJtQIJB++0BywGbk9CNDB7hZez8/PBkQdZwpswUMckKGJspRIr7ndp3pvENLce8fJG az8jiS//3/+IcBRH2f5IiWHcY9MQNHKIusZUlO6U= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730715AbgKCUsi (ORCPT ); Tue, 3 Nov 2020 15:48:38 -0500 Received: from mail.kernel.org ([198.145.29.99]:40400 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729807AbgKCUsh (ORCPT ); Tue, 3 Nov 2020 15:48:37 -0500 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 41DA922409; Tue, 3 Nov 2020 20:48:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604436516; bh=wRtCQnQdPDX6MWfLmB+AFzKXzPe8RgptgwFvsk/8nyI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cPeouamohGBKw6ttYbaXzRFtA+BmR1LhGzMBOy2dKBPoune7eoNPx9ljl75liOXz6 KQigcrkvy7kwa6ghwb4dA1+wzQSbMfk7/XCZHz5bL4NLGxaPww4jv8w3syaNrhCA6d 7vZgIxrH3/58Hnliwgqh2q1dDfiLThb62G3J7pCU= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Paul Cercueil , Thomas Bogendoerfer Subject: [PATCH 5.9 284/391] MIPS: configs: lb60: Fix defconfig not selecting correct board Date: Tue, 3 Nov 2020 21:35:35 +0100 Message-Id: <20201103203406.206242761@linuxfoundation.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201103203348.153465465@linuxfoundation.org> References: <20201103203348.153465465@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Paul Cercueil commit 7487abbe85afd02c35c283315cefc5e19c28d40f upstream. Since INGENIC_GENERIC_BOARD was introduced, the JZ4740_QI_LB60 option is no longer the default, so the symbol has to be selected by the defconfig, otherwise the kernel built will be for a generic Ingenic board and won't have the Device Tree blob built-in. Cc: stable@vger.kernel.org # v5.7 Fixes: 62249209a772 ("MIPS: ingenic: Default to a generic board") Signed-off-by: Paul Cercueil Signed-off-by: Thomas Bogendoerfer Signed-off-by: Greg Kroah-Hartman --- arch/mips/configs/qi_lb60_defconfig | 1 + 1 file changed, 1 insertion(+) --- a/arch/mips/configs/qi_lb60_defconfig +++ b/arch/mips/configs/qi_lb60_defconfig @@ -8,6 +8,7 @@ CONFIG_EMBEDDED=y # CONFIG_COMPAT_BRK is not set CONFIG_SLAB=y CONFIG_MACH_INGENIC=y +CONFIG_JZ4740_QI_LB60=y CONFIG_HZ_100=y # CONFIG_SECCOMP is not set CONFIG_MODULES=y