Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-26 Thread Steven Rostedt
On Fri, 8 Apr 2016 22:59:02 +0800 joeyli wrote: > On Sat, Apr 02, 2016 at 10:55:21AM -0700, Benjamin Poirier wrote: > > The parameter of Kconfig "source" statements does not need to be quoted. > > The current regex causes many kconfig files to be skipped and hence, > >

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-26 Thread Steven Rostedt
On Fri, 8 Apr 2016 22:59:02 +0800 joeyli wrote: > On Sat, Apr 02, 2016 at 10:55:21AM -0700, Benjamin Poirier wrote: > > The parameter of Kconfig "source" statements does not need to be quoted. > > The current regex causes many kconfig files to be skipped and hence, > > dependencies to be missed.

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Benjamin Poirier
On 2016/04/18 17:43, Steven Rostedt wrote: [...] > > Hi Steven, > > > > Can you please merge these six patches (2 original + 4 followups)? > > > > OK, I've marked them as todo. I've just come back from two weeks of > conferences and I'm working on catching up. > Ah I see, thanks. I just

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Benjamin Poirier
On 2016/04/18 17:43, Steven Rostedt wrote: [...] > > Hi Steven, > > > > Can you please merge these six patches (2 original + 4 followups)? > > > > OK, I've marked them as todo. I've just come back from two weeks of > conferences and I'm working on catching up. > Ah I see, thanks. I just

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Steven Rostedt
On Mon, 18 Apr 2016 13:29:12 -0700 Benjamin Poirier wrote: > On 2016/04/10 16:52, Benjamin Poirier wrote: > > On 2016/04/08 14:29, Steven Rostedt wrote: > > > On Sat, 2 Apr 2016 10:55:21 -0700 > > > Benjamin Poirier wrote: > > > > > > > The parameter

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Steven Rostedt
On Mon, 18 Apr 2016 13:29:12 -0700 Benjamin Poirier wrote: > On 2016/04/10 16:52, Benjamin Poirier wrote: > > On 2016/04/08 14:29, Steven Rostedt wrote: > > > On Sat, 2 Apr 2016 10:55:21 -0700 > > > Benjamin Poirier wrote: > > > > > > > The parameter of Kconfig "source" statements does

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Benjamin Poirier
On 2016/04/10 16:52, Benjamin Poirier wrote: > On 2016/04/08 14:29, Steven Rostedt wrote: > > On Sat, 2 Apr 2016 10:55:21 -0700 > > Benjamin Poirier wrote: > > > > > The parameter of Kconfig "source" statements does not need to be quoted. > > > The current regex causes many

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Benjamin Poirier
On 2016/04/10 16:52, Benjamin Poirier wrote: > On 2016/04/08 14:29, Steven Rostedt wrote: > > On Sat, 2 Apr 2016 10:55:21 -0700 > > Benjamin Poirier wrote: > > > > > The parameter of Kconfig "source" statements does not need to be quoted. > > > The current regex causes many kconfig files to be

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-10 Thread Benjamin Poirier
On 2016/04/08 14:29, Steven Rostedt wrote: > On Sat, 2 Apr 2016 10:55:21 -0700 > Benjamin Poirier wrote: > > > The parameter of Kconfig "source" statements does not need to be quoted. > > The current regex causes many kconfig files to be skipped and hence, > > dependencies to

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-10 Thread Benjamin Poirier
On 2016/04/08 14:29, Steven Rostedt wrote: > On Sat, 2 Apr 2016 10:55:21 -0700 > Benjamin Poirier wrote: > > > The parameter of Kconfig "source" statements does not need to be quoted. > > The current regex causes many kconfig files to be skipped and hence, > > dependencies to be missed. > > >

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-08 Thread Steven Rostedt
On Sat, 2 Apr 2016 10:55:21 -0700 Benjamin Poirier wrote: > The parameter of Kconfig "source" statements does not need to be quoted. > The current regex causes many kconfig files to be skipped and hence, > dependencies to be missed. > > Also fix the whitespace repeat count.

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-08 Thread Steven Rostedt
On Sat, 2 Apr 2016 10:55:21 -0700 Benjamin Poirier wrote: > The parameter of Kconfig "source" statements does not need to be quoted. > The current regex causes many kconfig files to be skipped and hence, > dependencies to be missed. > > Also fix the whitespace repeat count. > > Signed-off-by:

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-08 Thread joeyli
On Sat, Apr 02, 2016 at 10:55:21AM -0700, Benjamin Poirier wrote: > The parameter of Kconfig "source" statements does not need to be quoted. > The current regex causes many kconfig files to be skipped and hence, > dependencies to be missed. > > Also fix the whitespace repeat count. > >

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-08 Thread joeyli
On Sat, Apr 02, 2016 at 10:55:21AM -0700, Benjamin Poirier wrote: > The parameter of Kconfig "source" statements does not need to be quoted. > The current regex causes many kconfig files to be skipped and hence, > dependencies to be missed. > > Also fix the whitespace repeat count. > >

[PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-02 Thread Benjamin Poirier
The parameter of Kconfig "source" statements does not need to be quoted. The current regex causes many kconfig files to be skipped and hence, dependencies to be missed. Also fix the whitespace repeat count. Signed-off-by: Benjamin Poirier ---

[PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-02 Thread Benjamin Poirier
The parameter of Kconfig "source" statements does not need to be quoted. The current regex causes many kconfig files to be skipped and hence, dependencies to be missed. Also fix the whitespace repeat count. Signed-off-by: Benjamin Poirier --- scripts/kconfig/streamline_config.pl | 2 +- 1 file