From patchwork Thu Jul 5 02:47:39 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10507837 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1A443601EA for ; Thu, 5 Jul 2018 02:47:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0893128E27 for ; Thu, 5 Jul 2018 02:47:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F0F8E28E33; Thu, 5 Jul 2018 02:47:54 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 93D7128E27 for ; Thu, 5 Jul 2018 02:47:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753303AbeGECrn (ORCPT ); Wed, 4 Jul 2018 22:47:43 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:43236 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753012AbeGECrk (ORCPT ); Wed, 4 Jul 2018 22:47:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=V/HFZ5NWv/p3t1crZ9G91fh6TY4vcTzEkqOwJD8woDs=; b=HsXxmC8soATl3Ftk55uJz7iRW tJqR0oIfx7/b6XqNqeKyTvXauBswD7GHI5W+w5h0e+Z1vdm6bhYfIUNZh27Ia3bGmFf3WN3lzrK16 OZ8IevjvaYuhU3FdDFWA+vtJVLajYiZR8mThmhQ8xYrBaacvc2hvjreq/n2sDYyoGML3ohIDQHwWB 653Y80S2sDuBWoa55Bi5rzUoqkL4KlVsmtOAcZJj/NqKDnMaFOERF4NMKNGIiIvmogj3mCLtMHdjb uMGVG784fJY7INBsrKN6hha/ueBHkJBJ4vnZo5v79RPlX/JBrNnTM53jb4Zh3ILLSH4mrVoMlvU5G Huzhr+06Q==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=dragon.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fauJ1-00062D-Tc; Thu, 05 Jul 2018 02:47:39 +0000 To: linux-kbuild , Masahiro Yamada Cc: LKML From: Randy Dunlap Subject: [PATCH] kbuild: document the KBUILD_KCONFIG env. variable Message-ID: <70d08f42-27e4-ccc2-00f6-266568123d8c@infradead.org> Date: Wed, 4 Jul 2018 19:47:39 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 Content-Language: en-US Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Add usage info for the Kbuild environment variable KBUILD_KCONFIG. Signed-off-by: Randy Dunlap Acked-by: Cao jin --- Documentation/kbuild/kbuild.txt | 5 +++++ 1 file changed, 5 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- lnx-418-rc3.orig/Documentation/kbuild/kbuild.txt +++ lnx-418-rc3/Documentation/kbuild/kbuild.txt @@ -50,6 +50,11 @@ LDFLAGS_MODULE -------------------------------------------------- Additional options used for $(LD) when linking modules. +KBUILD_KCONFIG +-------------------------------------------------- +Set the top-level Kconfig file to the value of this environment +variable. The default name is "Kconfig". + KBUILD_VERBOSE -------------------------------------------------- Set the kbuild verbosity. Can be assigned same values as "V=...".