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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B8081C7EE2E for ; Mon, 12 Jun 2023 21:35:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236594AbjFLVfP (ORCPT ); Mon, 12 Jun 2023 17:35:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49430 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233463AbjFLVfL (ORCPT ); Mon, 12 Jun 2023 17:35:11 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 10506B3 for ; Mon, 12 Jun 2023 14:35:10 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id A00CD62BBD for ; Mon, 12 Jun 2023 21:35:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 84ED0C433EF; Mon, 12 Jun 2023 21:35:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1686605709; bh=oFtWTK68THXWr/Pzz2pWWq2230SZ2mbnhzwgjjtW0Yg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=oJ4WWk3OOxvWz0Ybr2ozSWAYzG74ey/RDXw31iZzyL39fDhmKdbVQwxQ0kDG1nPr8 JRjV5mFIxY1X7nHk0YNMF9lNNyGUof/YArgJvY0fULhQiVqNylQALlNv+hFZxHCiHP x4XpLVDCZ6nF84grflLP+4/5+1JfF44ZIvr7xyf4= Date: Mon, 12 Jun 2023 23:35:06 +0200 From: Greg Kroah-Hartman To: David Heidelberg Cc: Russell King , Arnd Bergmann , Claudiu Beznea , Krzysztof Kozlowski , Alexandre Torgue , Fabrice Gasnier , Alexander Stein , kernel@collabora.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ARM: multi_v7_defconfig add /proc/config.gz Message-ID: <2023061257-robotics-dinginess-c30c@gregkh> References: <20230612210208.109267-1-david@ixit.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230612210208.109267-1-david@ixit.cz> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jun 12, 2023 at 11:02:07PM +0200, David Heidelberg wrote: > While 32-bit ARM isn't that widespread, multi_v7_defconfig is used for > building more generic images, where having access to config can be handy. > > arm64 and x86_64 already bundle config.gz, so this is an effort to provide > the same level of comfort with ARMv7 devices. > > Signed-off-by: David Heidelberg > --- > arch/arm/configs/multi_v7_defconfig | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig > index 084cc612ea23..f40b5936ccbf 100644 > --- a/arch/arm/configs/multi_v7_defconfig > +++ b/arch/arm/configs/multi_v7_defconfig > @@ -1,6 +1,8 @@ > CONFIG_SYSVIPC=y > CONFIG_NO_HZ_IDLE=y > CONFIG_HIGH_RES_TIMERS=y > +CONFIG_IKCONFIG=y > +CONFIG_IKCONFIG_PROC=y Why not make this a module? thanks, greg k-h