From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752468AbbETAyL (ORCPT ); Tue, 19 May 2015 20:54:11 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:49620 "EHLO relay3-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751720AbbETAyJ (ORCPT ); Tue, 19 May 2015 20:54:09 -0400 Date: Tue, 19 May 2015 17:54:04 -0700 From: josh@joshtriplett.org To: Paul Bolle Cc: Iulia Manda , tim.bird@sonymobile.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/3] kernel: Add a new config option to remove command line parsing Message-ID: <20150520005404.GB32153@cloud> References: <1431949832-13606-1-git-send-email-iulia.manda21@gmail.com> <1432028159.9091.63.camel@x220> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1432028159.9091.63.camel@x220> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 19, 2015 at 11:35:59AM +0200, Paul Bolle wrote: > On Mon, 2015-05-18 at 14:50 +0300, Iulia Manda wrote: > > --- a/arch/x86/Kconfig > > +++ b/arch/x86/Kconfig > > > +config CMDLINE_PARSE > > + bool "Enable support for command line parsing" > > + default y > > + ---help--- > > + With this option set to 'Y', kernel parameters, both the ones > > + passed at boot time and at compile time are parsed. > > + > > + If you say no here, all the kernel parameters' values will be set > > + to their defaults at compile time, in order to make constant > > + folding possible. > > + > > + Systems with no space constraints should leave this option set to > > + 'Y'. > > This adds a x86 specific Kconfig option. Good catch. I reviewed the Kconfig option and its usage very carefully, but completely missed that it was in the wrong file. This needs to go in init/Kconfig or similar. - Josh Triplett