Re: Kconfig: '+config' valid syntax?

2015-07-03 Thread Ulf Magnusson
On Fri, Jul 3, 2015 at 1:40 PM, Ulf Magnusson wrote: > On Fri, Jul 3, 2015 at 1:33 PM, Andreas Ruprecht > wrote: >> On 07/03/2015 12:46, Ulf Magnusson wrote: >>> >>> Except for scattered accidents like in the original message, which are >>> hopefull

Re: Kconfig: '+config' valid syntax?

2015-07-03 Thread Ulf Magnusson
On Fri, Jul 3, 2015 at 1:33 PM, Andreas Ruprecht wrote: > On 07/03/2015 12:46, Ulf Magnusson wrote: >> >> Except for scattered accidents like in the original message, which are >> hopefully pretty rare and easy to fix, the only documented thing that depends >> on t

Re: Kconfig: '+config' valid syntax?

2015-07-03 Thread Ulf Magnusson
On Fri, Jul 3, 2015 at 1:11 PM, Stefan Hengelein wrote: > 2015-07-03 12:56 GMT+02:00 Stefan Hengelein : >> 2015-07-03 12:51 GMT+02:00 Valentin Rothberg : > > The output looks like this: > scripts/kconfig/conf --allyesconfig Kconfig > arch/x86/Kconfig:4:warning: ignoring unsupporte

Re: Kconfig: '+config' valid syntax?

2015-07-03 Thread Ulf Magnusson
On Fri, Jul 3, 2015 at 11:29 AM, Andreas Ruprecht wrote: > On 07/03/2015 10:59, Paul Bolle wrote: >> On vr, 2015-07-03 at 09:33 +0200, Andreas Ruprecht wrote: >>> I tested the behaviour on yesterday's linux-next, but the commit >>> mentioned above will only complain for invalid characters inside t

Re: Kconfig: '+config' valid syntax?

2015-07-03 Thread Ulf Magnusson
On Thu, Jul 2, 2015 at 10:08 AM, Valentin Rothberg wrote: > Hi, > > commit ed013214afa7 ("ACPI / init: Make it possible to override _REV") > is in today's linux-next tree (i.e., next-20150702) adding the > following hunk to drivers/acpi/Kconfig: > > --- a/drivers/acpi/Kconfig > +++ b/drivers/acpi/

Re: [PATCH v3 1/2] kconfig: allow use of relations other than (in)equality

2015-06-17 Thread Ulf Magnusson
On Mon, Jun 15, 2015 at 5:29 PM, Randy Dunlap wrote: > > Hi, > > Please update Documentation/kbuild/kconfig-language.txt where > syntax is defined. > > > -- > ~Randy Is this likely to be the final version? Approx. when will it go in? /Ulf -- To unsubscribe from this list: send the line "unsubsc

Re: Kconfiglib -- a flexible Kconfig parser -- now on GitHub

2015-06-04 Thread Ulf Magnusson
On Tue, Jun 2, 2015 at 5:29 PM, Ulf Magnusson wrote: > On Tue, Jun 2, 2015 at 1:16 PM, Ulf Magnusson > wrote: >> On Tue, Jun 2, 2015 at 5:10 AM, Rob Landley wrote: >>> On Mon, Jun 1, 2015 at 6:58 PM, Ulf Magnusson >>> wrote: >>>> Hello, >>>&

Re: Kconfiglib -- a flexible Kconfig parser -- now on GitHub

2015-06-02 Thread Ulf Magnusson
On Tue, Jun 2, 2015 at 1:16 PM, Ulf Magnusson wrote: > On Tue, Jun 2, 2015 at 5:10 AM, Rob Landley wrote: >> On Mon, Jun 1, 2015 at 6:58 PM, Ulf Magnusson >> wrote: >>> Hello, >>> >>> A few years ago I posted patches for a Python Kconfig pars

Re: Kconfiglib -- a flexible Kconfig parser -- now on GitHub

2015-06-02 Thread Ulf Magnusson
On Tue, Jun 2, 2015 at 5:10 AM, Rob Landley wrote: > On Mon, Jun 1, 2015 at 6:58 PM, Ulf Magnusson > wrote: >> Hello, >> >> A few years ago I posted patches for a Python Kconfig parser and >> library I was working on (https://lkml.org/lkml/2011/2/6/151). As not >

Kconfiglib -- a flexible Kconfig parser -- now on GitHub

2015-06-01 Thread Ulf Magnusson
Hello, A few years ago I posted patches for a Python Kconfig parser and library I was working on (https://lkml.org/lkml/2011/2/6/151). As not many people are probably aware of it, an updated version of that library has been at https://github.com/ulfalizer/Kconfiglib for a while now, and is being u

Re: [PATCH v3 14/14] perf kbuild: add generated Kconfig build-test cases

2015-05-31 Thread Ulf Magnusson
Hello, I'm the author of Kconfiglib. I happened to notice this message just now. Might be a bit late, but I'll add some comments anyway. :) First of all, Kconfiglib now lives at https://github.com/ulfalizer/Kconfiglib, just so that no one uses the old patch I sent to LKML a few years back. Here'

[ANNOUNCE] Kconfiglib: a flexible Python Kconfig parser and library - now on GitHub

2012-12-18 Thread Ulf Magnusson
Hi, Kconfiglib is a flexible Python Kconfig parser and library, first introduced in https://lkml.org/lkml/2011/2/1/439. I have updated it for Linux 3.7.0 and put it on GitHub at https://github.com/ulfalizer/Kconfiglib, making some improvements in the process: - The installation has been simplifi

Re: kbuild: Invalid configuration generated for dependent choices by 'conf' but not by 'mconf', with reason

2012-12-08 Thread Ulf Magnusson
On Thu, Dec 6, 2012 at 1:07 AM, Ulf Magnusson wrote: > Hi, > > Consider the following Kconfig file: > > config MODULES > def_bool y > > choice > tristate "C1" > config A > tristate "A" > config B > tristate

kbuild: Invalid configuration generated for dependent choices by 'conf' but not by 'mconf', with reason

2012-12-05 Thread Ulf Magnusson
Hi, Consider the following Kconfig file: config MODULES def_bool y choice tristate "C1" config A tristate "A" config B tristate "B" endchoice choice bool "C2" if A config C bool "C" config D bool "D" endchoice When this Kconfig file is used with a config

<    1   2   3   4