From patchwork Wed Oct 30 21:46:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 3117181 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id DA6BF9F2B7 for ; Wed, 30 Oct 2013 21:46:49 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 63F9B200F4 for ; Wed, 30 Oct 2013 21:46:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8C10320149 for ; Wed, 30 Oct 2013 21:46:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752521Ab3J3VqZ (ORCPT ); Wed, 30 Oct 2013 17:46:25 -0400 Received: from mail-wg0-f51.google.com ([74.125.82.51]:56525 "EHLO mail-wg0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751803Ab3J3VqY (ORCPT ); Wed, 30 Oct 2013 17:46:24 -0400 Received: by mail-wg0-f51.google.com with SMTP id l18so1896802wgh.6 for ; Wed, 30 Oct 2013 14:46:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=YkIUiE0kHk5Y/ZcXIpYhCokptk222pfc+S+7tWvWALA=; b=l0U66upL0GE7lk0AHBNTodyUDa7Gh/Q4nj3RdxH9eoOelIpwqTkdvM1tK9+zocZ+wq jZgM0HnmW8gO/R5EtZHnp7XmuoD98nJXisbH06F8LCd9J6RrFx9m6sYP5LKZ9Fn97pk/ 0WRYd/mPmi5QQW0v49DIMMe5DT3SHcMHh+kxqPsecfiXBbfBId3gONSyNPxcKCigWldR x18vGl50aQ4bnn5FN44hGsHhLw+uw4KPsqlFuD5uroIb20KRrXtGBQjkeQCIEzZ/iy12 hT5dvZRzaYPlzxuSP9LeYQ63lYp8i7BttSPNSYbWZUm5i/qUD4Tv+ooTd9t54LsXzp/T gpug== X-Received: by 10.180.72.238 with SMTP id g14mr3930003wiv.17.1383169583265; Wed, 30 Oct 2013 14:46:23 -0700 (PDT) Received: from gourin.bzh.lan (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPSA id ma3sm234761wic.1.2013.10.30.14.46.21 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 30 Oct 2013 14:46:22 -0700 (PDT) From: "Yann E. MORIN" To: linux-kbuild@vger.kernel.org Cc: Michal Marek , Regid Ichira , "Yann E. MORIN" Subject: [PATCH 1/7] Documentation/kbuild/kconfig.txt: 'make listnewconfig' replaces: yes "" | make oldconfig Date: Wed, 30 Oct 2013 22:46:14 +0100 Message-Id: <560909d433109e3da08757237f30576c71697914.1383168460.git.yann.morin.1998@free.fr> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: References: Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Regid Ichira Signed-off-by: Regid Ichira Acked-by: Rob Landley [yann.morin.1998@free.fr: fix trailing whitespace, commit subject] Signed-off-by: "Yann E. MORIN" --- Documentation/kbuild/kconfig.txt | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Documentation/kbuild/kconfig.txt b/Documentation/kbuild/kconfig.txt index 8ef6dbb..bbc99c0 100644 --- a/Documentation/kbuild/kconfig.txt +++ b/Documentation/kbuild/kconfig.txt @@ -20,16 +20,9 @@ symbols have been introduced. To see a list of new config symbols when using "make oldconfig", use cp user/some/old.config .config - yes "" | make oldconfig >conf.new + make listnewconfig -and the config program will list as (NEW) any new symbols that have -unknown values. Of course, the .config file is also updated with -new (default) values, so you can use: - - grep "(NEW)" conf.new - -to see the new config symbols or you can use diffconfig to see the -differences between the previous and new .config files: +and the config program will list any new symbols, one per line. scripts/diffconfig .config.old .config | less