From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D9DAC279334; Wed, 12 Nov 2025 20:03:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762977822; cv=none; b=KBQD98/KTzoSdZ+TUr4uyCKjU9znpFQAuGplpQ6Vp4xfgGfVuwRRfHYi3T8h5pGjdiW/KqPA6Dfi1SuzHI70REOYvPIqht9RJKWGqx6oJwliQaoZLWZhbZ4QwTGVUwCI/H1jTJhfuSaIlfGv9WDW2KZ9ijU5FrRa68REcMG7S6s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762977822; c=relaxed/simple; bh=Krdas9AzGSECOCFA2WfUlzdX75hmmwim4vrl3G2LHP0=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=ZdihMIOSwEv9gEm3f2t43E7+yhXSo/tO1dHvKQZWN1yWyqOBwvTIVcnnqDi/EIG0cfG8O3U4Mjk3o3LmVv+b/cGktg7bmvIwqA+R9AuUTXfC5lSjthjZWRUR6mWBql/OTYjGWngpxoK5ZQcfMhCesqV2U1lzqhJdZ1kNrAPb/Nc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ccIrzsBu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ccIrzsBu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CB406C16AAE; Wed, 12 Nov 2025 20:03:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1762977821; bh=Krdas9AzGSECOCFA2WfUlzdX75hmmwim4vrl3G2LHP0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ccIrzsBu2sfaHL8EwE2+XzXAm+mSMhbBgAeiXJyPaOGTProGPgOQ81EjsiD/vkuJ4 QzAsAniJY1RexfM/F66rsQeFRzK77ivQC547WLrUhU8Q9ShngnZe61HJpkojC3tPRa frNdTBKI3g29VGiHlHHpmGxYVkdiDL5WEO8y7NyaWL1P3XoB2S0lAlUQPcJ8z+K2b5 16pXiKl/FScrxzrW3onwGDarm71eUAIrMkkdyfOQItHCaDiHooPRUBdvhi+DVScKO0 ZuMkWCnzSMioRC9My5WYdAJlMCScrRC+w9btXbUu1NxxmHhehoQjfNJ34KdLNchkTv Gqbh3kbJ/tMzQ== Date: Wed, 12 Nov 2025 20:56:04 +0100 From: Nicolas Schier To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Nathan Chancellor , Paul Walmsley , Palmer Dabbelt , Albert Ou , Alexandre Ghiti , Heiko Carstens , Vasily Gorbik , Alexander Gordeev , Christian Borntraeger , Sven Schnelle , Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , Christophe Leroy , Thomas Bogendoerfer , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H. Peter Anvin" , "David S. Miller" , Andreas Larsson , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Masahiro Yamada , linux-riscv@lists.infradead.org, linux-s390@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-mips@vger.kernel.org, sparclinux@vger.kernel.org Subject: Re: [PATCH v2 02/10] init: deduplicate cc-can-link.sh invocations Message-ID: References: <20251014-kbuild-userprogs-bits-v2-0-faeec46e887a@linutronix.de> <20251014-kbuild-userprogs-bits-v2-2-faeec46e887a@linutronix.de> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20251014-kbuild-userprogs-bits-v2-2-faeec46e887a@linutronix.de> On Tue, Oct 14, 2025 at 03:05:17PM +0200, Thomas Weißschuh wrote: > The command to invoke scripts/cc-can-link.sh is very long and new usages > are about to be added. > > Add a helper variable to make the code easier to read and maintain. > > Signed-off-by: Thomas Weißschuh > --- > init/Kconfig | 4 ++-- > scripts/Kconfig.include | 3 +++ > 2 files changed, 5 insertions(+), 2 deletions(-) > Reviewed-by: Nicolas Schier -- Nicolas