Re: [PATCH 1/3] kernel: Add a new config option to remove command line parsing

2015-05-19 Thread Rob Landley
On Mon, May 18, 2015 at 6:50 AM, Iulia Manda wrote: > This patch introduces CONFIG_CMDLINE_PARSE option which conditionally > compiles the support for parsing kernel command line arguments. The > corresponding functions that actually do the parsing will be compiled out. Could you make it depend o

Re: [PATCH 1/3] kernel: Add a new config option to remove command line parsing

2015-05-19 Thread josh
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--- > > +

Re: [PATCH 1/3] kernel: Add a new config option to remove command line parsing

2015-05-19 Thread Paul Bolle
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 > +

[PATCH 1/3] kernel: Add a new config option to remove command line parsing

2015-05-18 Thread Iulia Manda
This patch introduces CONFIG_CMDLINE_PARSE option which conditionally compiles the support for parsing kernel command line arguments. The corresponding functions that actually do the parsing will be compiled out. This is used when no parameters will be specified neither at compile time nor at boot

Re: [PATCH 1/3] kernel: Add a new config option to remove command line parsing

2015-04-09 Thread Tim Bird
On 04/01/2015 07:34 AM, Iulia Manda wrote: > This patch introduces CONFIG_CMDLINE_PARSE option which conditionally compiles > the support for parsing kernel command line arguments. The corresponding > functions that actually do the parsing will be compiled out. > > This is used when no paramete