public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
From: Randy Dunlap <randy.dunlap@oracle.com>
To: Sam Ravnborg <sam@ravnborg.org>
Cc: Cheng Renquan <crq@kernel.org>,
	linux-kbuild@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org, crquan@gmail.com,
	Roman Zippel <zippel@linux-m68k.org>
Subject: Re: [PATCH 0/6] kbuild configuration system improvements
Date: Wed, 22 Jul 2009 17:12:24 -0700	[thread overview]
Message-ID: <20090722171224.d5ceaf39.randy.dunlap@oracle.com> (raw)
In-Reply-To: <20090722214842.GA8695@merkur.ravnborg.org>

On Wed, 22 Jul 2009 23:48:42 +0200 Sam Ravnborg wrote:

> On Wed, Jul 22, 2009 at 01:43:21PM -0700, Randy Dunlap wrote:
> > On Sat, 18 Jul 2009 09:21:38 +0200 Sam Ravnborg wrote:
> > 
> > > On Sun, Jul 12, 2009 at 04:11:42PM +0800, Cheng Renquan wrote:
> > > > From: Cheng Renquan <crquan@gmail.com>
> > > > 
> > > > These patches improve usability of kernel configuration system,
> > > > 
> > > > 1. add symbol's value shown accompanied in config item's help message;
> > > > 2. move the real plumbing functions code from mconf.c to menu.c, make them
> > > >    be able to be shared with other configuration methods;
> > > > 3. add "symbol's value shown" support for gconfig/xconfig/config;
> > > > 
> > > >     0001-add-symbol-value-to-help-find-the-real-depend.patch
> > > >     0002-add-menu_get_ext_help-function-to-display-more-infor.patch
> > > >     0003-menuconfig-improvements.patch
> > > >     0004-make-use-of-menu_get_ext_help-in-gconfig.patch
> > > >     0005-make-use-of-menu_get_ext_help-in-qconfig.patch
> > > >     0006-make-use-of-menu_get_ext_help-in-make-config.patch
> > > 
> > > I fixed them all up to:
> > > 1) include "kconfig:" prefix in subject
> > > 2) cc: of Roman Zippel which is kconfig maintainer
> > > 
> > > There were a few checkpatch issues that I decided to ignore for now.
> > > 
> > > Please always cc: Roman on kconfig patches as he is the mintainer.
> > > 
> > > Applied to kbuild-next.git.
> > 
> > 
> > FWIW, I still get a segfault in gconfig (as I reported several months ago).
> > I suppose that if it's a real issue, someone else will also see this.
> 
> I assumed it was fixed - the changelog patches did
> not mention any outstanding issues.
> 
> Following fix is needed.

Ack, that works.  Thanks.


> 	Sam
> 
> diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
> index 931d782..b74f746 100644
> --- a/scripts/kconfig/menu.c
> +++ b/scripts/kconfig/menu.c
> @@ -528,5 +528,6 @@ void menu_get_ext_help(struct menu *menu, struct gstr *help)
>  	} else {
>  		str_append(help, nohelp_text);
>  	}
> -	get_symbol_str(help, sym);
> +	if (sym)
> +		get_symbol_str(help, sym);
>  }
> 
> 
> 
> 
> > 
> > ---
> > ~Randy
> > LPC 2009, Sept. 23-25, Portland, Oregon
> > http://linuxplumbersconf.org/2009/
> > 


---
~Randy
LPC 2009, Sept. 23-25, Portland, Oregon
http://linuxplumbersconf.org/2009/

  reply	other threads:[~2009-07-23  0:15 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-12  8:11 [PATCH 0/6] kbuild configuration system improvements Cheng Renquan
2009-07-12  8:11 ` [PATCH 1/6] add symbol value to help find the real depend Cheng Renquan
2009-07-12  8:11   ` [PATCH 2/6] add menu_get_ext_help function to display more information Cheng Renquan
2009-07-12  8:11     ` [PATCH 3/6] menuconfig improvements Cheng Renquan
2009-07-12  8:11       ` [PATCH 4/6] make use of menu_get_ext_help in gconfig Cheng Renquan
2009-07-12  8:11         ` [PATCH 5/6] make use of menu_get_ext_help in qconfig Cheng Renquan
2009-07-12  8:11           ` [PATCH 6/6] make use of menu_get_ext_help in "make config" Cheng Renquan
2009-07-12 10:00   ` [PATCH 1/6] add symbol value to help find the real depend Mikael Pettersson
2009-07-12 17:14     ` Cheng Renquan
2009-07-18  7:21 ` [PATCH 0/6] kbuild configuration system improvements Sam Ravnborg
2009-07-18 10:47   ` Cheng Renquan
2009-07-22 20:43   ` Randy Dunlap
2009-07-22 21:48     ` Sam Ravnborg
2009-07-23  0:12       ` Randy Dunlap [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-02-23 15:09 [PATCH 0/6] [KBUILD] " Cheng Renquan
2009-03-02  3:42 ` Randy Dunlap
2009-03-03  4:09   ` Cheng Renquan
2009-03-03 18:24     ` Randy Dunlap
2009-03-03 19:55       ` Randy Dunlap
2009-03-04  6:50         ` Cheng Renquan
2009-03-04 17:18           ` Randy Dunlap

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090722171224.d5ceaf39.randy.dunlap@oracle.com \
    --to=randy.dunlap@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=crq@kernel.org \
    --cc=crquan@gmail.com \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sam@ravnborg.org \
    --cc=zippel@linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox