From patchwork Fri Aug 17 06:57:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adam Lee X-Patchwork-Id: 1337411 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id B7F693FC33 for ; Fri, 17 Aug 2012 06:57:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964833Ab2HQG5g (ORCPT ); Fri, 17 Aug 2012 02:57:36 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:35966 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964832Ab2HQG5f (ORCPT ); Fri, 17 Aug 2012 02:57:35 -0400 Received: by pbbrr13 with SMTP id rr13so2868745pbb.19 for ; Thu, 16 Aug 2012 23:57:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=n78lGmiEpOIrRhY8AolHxMEwAKZAWehMhwzjwPP5u68=; b=0CAY2tBwemxI5lhegbiBt+MAmXv+hnr852LzRZtq96YwgrC2cfs79/GE1REaUOyzx3 w/uknXOkxMdut7J+hfvV4DnNUxwTU3M9/4bPlOqOwMlne2OuoUer8mPVz9+KMuwnLcrf t4kq28dbdrSRjxV5z3RDAm6LqCNaSk8Cv5HEA0I6Q+4eCOrOUZXSOhbWtGI4wQAU3Lht nncCSseSbyqyMJzGYAGXEo5k09tGMO491LzW+9cxZIlwyknBAQCrq04apu0e8B8kRGw7 sVN92eI/QCx0/VIMvq1MCJoYQL+FqbeFNZCSoyersdSoGFcJkDm/T8EXPC4GW18F4+K+ 7vRg== Received: by 10.68.191.226 with SMTP id hb2mr9061400pbc.129.1345186655031; Thu, 16 Aug 2012 23:57:35 -0700 (PDT) Received: from localhost ([203.114.244.88]) by mx.google.com with ESMTPS id b4sm3519849pbw.28.2012.08.16.23.57.32 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 16 Aug 2012 23:57:34 -0700 (PDT) From: Adam Lee To: linux-kernel@vger.kernel.org Cc: Michal Marek (odd fixer:KCONFIG ,commit_signer:2/3=67%), "Eric W. Biederman" (commit_signer:2/3=67%), linux-kbuild@vger.kernel.org (open list:KCONFIG) Subject: [PATCH] [Signed-off] kconfig: document oldnoconfig to what it really does in conf.c Date: Fri, 17 Aug 2012 14:57:28 +0800 Message-Id: <1345186649-17502-1-git-send-email-adam8157@gmail.com> X-Mailer: git-send-email 1.7.11.2 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org As 67d34a6a391369269a2e5dba8a5f42cc4cd50231 said, the make target 'oldnoconfig' is a misnomer. It doesn't set new symbols to 'n', but instead sets it to their default values. This patch fixes the document in conf.c, and will submit another patch to replace 'oldnoconfig' to 'olddefconfig' Signed-off-by: Adam Lee --- scripts/kconfig/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 0dc4a2c..6875680 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -467,7 +467,7 @@ static void conf_usage(const char *progname) printf(" --oldaskconfig Start a new configuration using a line-oriented program\n"); printf(" --oldconfig Update a configuration using a provided .config as base\n"); printf(" --silentoldconfig Same as oldconfig, but quietly, additionally update deps\n"); - printf(" --oldnoconfig Same as silentoldconfig but set new symbols to no\n"); + printf(" --oldnoconfig Same as silentoldconfig but sets new symbols to their default value\n"); printf(" --defconfig New config with default defined in \n"); printf(" --savedefconfig Save the minimal current configuration to \n"); printf(" --allnoconfig New config where all options are answered with no\n");