From patchwork Fri Aug 17 06:45:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adam Lee X-Patchwork-Id: 1337351 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 8F65B3FC33 for ; Fri, 17 Aug 2012 06:45:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753585Ab2HQGpc (ORCPT ); Fri, 17 Aug 2012 02:45:32 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:43159 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752243Ab2HQGpb (ORCPT ); Fri, 17 Aug 2012 02:45:31 -0400 Received: by pbbrr13 with SMTP id rr13so2853892pbb.19 for ; Thu, 16 Aug 2012 23:45:30 -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=xEbzCdBQWLbVlNbEd1m2sWNIawjh2UifCvDqk4nMz2g=; b=gfIRowNwEI0S+xpI3nibv45ebEGUt15MN3oVzb1J+QmWME5eb0zT4PKM2bvgU0J4n6 yFb0QxjGr+Aey2hjOKsO+5IpkIKtPWCgTNWDnxNtpxOjiXHVsuWNPX+NCcsJ9fgNclGn bSyGBsM63e7WHVNIM6yr7X5QHCKlcrSgG9CCoEmACEWlUosJOxYXmBTdlvQXIshRRdjr 5jD0sjtvpxSJYGBoxJqO5/OjustBd1oAAibOzDzbbpNtiw3w317BH5edcJ8lRXvjDixV C93Y87gjSNf4x3wKLU2GBkFX5MKUTFnfr8skxoT+cQRhfEKomWDRbVMZM0U9PB7jZgxH ypMw== Received: by 10.68.201.234 with SMTP id kd10mr9133548pbc.141.1345185930754; Thu, 16 Aug 2012 23:45:30 -0700 (PDT) Received: from localhost ([203.114.244.88]) by mx.google.com with ESMTPS id qx8sm4292464pbc.63.2012.08.16.23.45.28 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 16 Aug 2012 23:45:30 -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] kconfig: document oldnoconfig to what it really does in conf.c Date: Fri, 17 Aug 2012 14:45:23 +0800 Message-Id: <1345185924-16005-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' --- 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");