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 lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (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 E012DC83F12 for ; Mon, 28 Aug 2023 06:19:18 +0000 (UTC) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=ellerman.id.au header.i=@ellerman.id.au header.a=rsa-sha256 header.s=201909 header.b=JTyQZFDq; dkim-atps=neutral Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4RZ0ks2pwRz3c5Y for ; Mon, 28 Aug 2023 16:19:17 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=ellerman.id.au header.i=@ellerman.id.au header.a=rsa-sha256 header.s=201909 header.b=JTyQZFDq; dkim-atps=neutral Received: from gandalf.ozlabs.org (mail.ozlabs.org [IPv6:2404:9400:2221:ea00::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4RZ0hX21CPz3c51 for ; Mon, 28 Aug 2023 16:17:16 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ellerman.id.au; s=201909; t=1693203432; bh=RLh/iKkhkkusFbJvY334+vB2M1uIDZ/5pE7VOu44/vs=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=JTyQZFDqNMeMVmO4EfPbcnBAZ1DuSvbuwFjAnB8hSINbPAT7GN+TCyGskVksx4HqU qlglGjm7W6QpmD7R7ZY055gnq3+8SzUN1VvjbGgrCt8xLS9ywu8I2IEGj4hyM/rFrs EKBPeTE+KGWADe4s4DSkURpDjiH+ruEWVi6fPTUSRb86CcALzqCZc2iaDeQZOJC0xR ai+fS4iHyIw2BWPMTGlKuLeyZyb6kxF0Csk351GZU+Rfl0awmhXkm90BAZ4gsOMSiU 7QdNfRvx++uGuFtP9TmDplcr+JF1HigKcAAfv4Kangxy0rMI5AHg4zzZ1CgZ5knBpH m//LD/elqaqXQ== Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 4RZ0hQ2vSYz4wxQ; Mon, 28 Aug 2023 16:17:10 +1000 (AEST) From: Michael Ellerman To: Masahiro Yamada , Kees Cook Subject: Re: [PATCH v2 0/2] kbuild: Show Kconfig fragments in "help" In-Reply-To: References: <20230825194329.gonna.911-kees@kernel.org> Date: Mon, 28 Aug 2023 16:17:07 +1000 Message-ID: <87ttsjlmho.fsf@mail.lhotse> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-s390@vger.kernel.org, Randy Dunlap , Nicolas Schier , linux-kbuild@vger.kernel.org, x86@kernel.org, linux-kernel@vger.kernel.org, linux-hardening@vger.kernel.org, linux-riscv@lists.infradead.org, linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" Masahiro Yamada writes: > On Sat, Aug 26, 2023 at 4:55=E2=80=AFAM Kees Cook = wrote: >> >> Hi, >> >> This is my series to show *.config targets in the "help" target so these >> various topics can be more easily discoverd. >> >> v2: >> - split .fragment from .config to hide "internal" fragments > > Please do not do this churn. That was my idea :} > Like Randy, I did not get "why" part quiet well, > but if you are eager about this, > you can show help message only when the following > ("# Help:" prefix for example) is found in the first line. > > # Help: blah blah > # other comment I did think of that, but wasn't sure how to do it in make. cheers