Re: [PATCH] xconfig: Display dependency values in debug_info

2012-08-15 Thread Salar Ali Mumtaz
On 12-08-10 08:39 PM, Randy Dunlap wrote: > On 08/09/2012 11:54 AM, Salar Ali Mumtaz wrote: > >> On 12-08-07 12:55 PM, Randy Dunlap wrote: >> >>> In Kconfig language, is "" the same as 'n' ? >>> If so, I'm OK with your proposal above

Re: [PATCH] xconfig: Display dependency values in debug_info

2012-08-09 Thread Salar Ali Mumtaz
On 12-08-07 12:55 PM, Randy Dunlap wrote: > In Kconfig language, is "" the same as 'n' ? > If so, I'm OK with your proposal above. > So a colleague of mine tested this and came up with a conclusion that expressions in Kconfig can only deal with boolean or tristate operands and no casting is m

Re: [PATCH] xconfig: Display dependency values in debug_info

2012-08-07 Thread Salar Ali Mumtaz
On 12-07-26 01:02 PM, Randy Dunlap wrote: > The added y/n/m are clear, but the "!FRV FRV" is confusing, > isn't it? > > Is this notation clear ? Kernel support for ELF binaries (BINFMT_ELF) type: boolean unknown property: symbol dep: ( MMU [=y] && (BROKEN [n] || !FRV [= ""]) ) [=y] prompt

Re: [PATCH v2] xconfig: Display dependency values in debug_info

2012-08-01 Thread Salar Ali Mumtaz
On 12-07-31 04:21 PM, Randy Dunlap wrote: > On 07/31/2012 11:58 AM, Salar Ali Mumtaz wrote: > >> Now the debug_info only shows y/n/m values. >> > > > or no value at all?? Yes. y/n/m or no value at all. -- To unsubscribe from this list: send the line "unsubscr

[PATCH v2] xconfig: Display dependency values in debug_info

2012-07-31 Thread Salar Ali Mumtaz
Now the debug_info only shows y/n/m values. Signed-off-by: Salar Ali Mumtaz --- scripts/kconfig/qconf.cc | 14 +- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index df274fe..b6a7cc5 100644 --- a/scripts/kconfig

Re: [PATCH] xconfig: Display dependency values in debug_info

2012-07-31 Thread Salar Ali Mumtaz
On 12-07-26 01:02 PM, Randy Dunlap wrote: > > The added y/n/m are clear, but the "!FRV FRV" is confusing, > isn't it? > > Yes. But that is easily fixable. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More major

[PATCH] xconfig: Display dependency values in debug_info

2012-07-25 Thread Salar Ali Mumtaz
Displays the current value of each of the dependencies of a menu item. Before, you needed to do tedious searching to find out the current values of the dependences. Now they all are included in the debug_info, making the task easier Signed-off-by: Salar Ali Mumtaz --- scripts/kconfig/qconf.cc