All of lore.kernel.org
 help / color / mirror / Atom feed
* [pull request v2] Pull request for branch yem-kconfig-rc-fixes
@ 2012-12-25 23:10 Yann E. MORIN
  2012-12-25 23:10 ` [PATCH 1/1] kconfig:lxdialog: remove duplicate code Yann E. MORIN
  2013-01-12 21:47 ` [pull request v2] Pull request for branch yem-kconfig-rc-fixes Michal Marek
  0 siblings, 2 replies; 5+ messages in thread
From: Yann E. MORIN @ 2012-12-25 23:10 UTC (permalink / raw)
  To: linux-kbuild; +Cc: Michal Marek, Yann E. MORIN

Hello Michal, All!

Here is a trivial patch suitable for post-rc1:
  - remove duplicate variable declaration in kconfig/lxdialog

Changes v1..v2:
  - since changes about use of ${CONFIG_} have not been pulled in Linus'
    tree, I've dropped the previous two related patches from this branch.
  - added Wang's cleanup


The following changes since commit bad9955db1b73d7286f74a8136a0628a9b1ac017:

  menuconfig: Replace CIRCLEQ by list_head-style lists. (2012-10-25 15:06:00 +0200)

are available in the git repository at:
  git://gitorious.org/linux-kconfig/linux-kconfig.git yem-kconfig-rc-fixes

Wang YanQing (1):
      kconfig:lxdialog: remove duplicate code

 scripts/kconfig/lxdialog/dialog.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

Regards,
Yann E. MORIN

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/1] kconfig:lxdialog: remove duplicate code
  2012-12-25 23:10 [pull request v2] Pull request for branch yem-kconfig-rc-fixes Yann E. MORIN
@ 2012-12-25 23:10 ` Yann E. MORIN
  2013-01-12 21:47 ` [pull request v2] Pull request for branch yem-kconfig-rc-fixes Michal Marek
  1 sibling, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2012-12-25 23:10 UTC (permalink / raw)
  To: linux-kbuild; +Cc: Michal Marek, Wang YanQing, Yann E. MORIN

From: Wang YanQing <udknight@gmail.com>

dialog.h has two line the same below:
extern char dialog_input_result[];
This patch remove one of them.

Signed-off-by: Wang YanQing <udknight@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 scripts/kconfig/lxdialog/dialog.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/scripts/kconfig/lxdialog/dialog.h b/scripts/kconfig/lxdialog/dialog.h
index ee17a52..307022a 100644
--- a/scripts/kconfig/lxdialog/dialog.h
+++ b/scripts/kconfig/lxdialog/dialog.h
@@ -221,7 +221,6 @@ int dialog_menu(const char *title, const char *prompt,
 		const void *selected, int *s_scroll);
 int dialog_checklist(const char *title, const char *prompt, int height,
 		     int width, int list_height);
-extern char dialog_input_result[];
 int dialog_inputbox(const char *title, const char *prompt, int height,
 		    int width, const char *init);
 
-- 
1.7.2.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [pull request v2] Pull request for branch yem-kconfig-rc-fixes
  2012-12-25 23:10 [pull request v2] Pull request for branch yem-kconfig-rc-fixes Yann E. MORIN
  2012-12-25 23:10 ` [PATCH 1/1] kconfig:lxdialog: remove duplicate code Yann E. MORIN
@ 2013-01-12 21:47 ` Michal Marek
  1 sibling, 0 replies; 5+ messages in thread
From: Michal Marek @ 2013-01-12 21:47 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: linux-kbuild

On 26.12.2012 00:10, Yann E. MORIN wrote:
> Hello Michal, All!
> 
> Here is a trivial patch suitable for post-rc1:
>   - remove duplicate variable declaration in kconfig/lxdialog
> 
> Changes v1..v2:
>   - since changes about use of ${CONFIG_} have not been pulled in Linus'
>     tree, I've dropped the previous two related patches from this branch.
>   - added Wang's cleanup

Thanks, pulled into kbuild.git#rc-fixes. Sorry for the delay, family and
work keep me busy :). I will look at the more exciting kconfig stuff
tomorrow.

Michal


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [pull request v2] Pull request for branch yem-kconfig-rc-fixes
  2013-05-29 22:24 Yann E. MORIN
@ 2013-06-04 12:50 ` Michal Marek
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Marek @ 2013-06-04 12:50 UTC (permalink / raw)
  To: Yann E. MORIN
  Cc: linux-kbuild, linux-kernel, Dirk Gouders, Clement Chauplannaz

On 30.5.2013 00:24, Yann E. MORIN wrote:
> From: "Yann E. MORIN" <yann.morin.1998@free.fr>
> 
> Hello Michal, All,
> 
> Please pull these three rc-fixes:
>   - fix key handling in empty menus in mconf
>   - fix reference to eliminated duplicate expression in kconfig
>   - fix scripts/config wrt short --*-after options

Sorry for the delay. This is in kbuild.git#rc-fixes now, thanks.

Michal

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [pull request v2] Pull request for branch yem-kconfig-rc-fixes
@ 2013-05-29 22:24 Yann E. MORIN
  2013-06-04 12:50 ` Michal Marek
  0 siblings, 1 reply; 5+ messages in thread
From: Yann E. MORIN @ 2013-05-29 22:24 UTC (permalink / raw)
  To: Michal Marek
  Cc: linux-kbuild, linux-kernel, Yann E. MORIN, Dirk Gouders,
	Clement Chauplannaz

From: "Yann E. MORIN" <yann.morin.1998@free.fr>

Hello Michal, All,

Please pull these three rc-fixes:
  - fix key handling in empty menus in mconf
  - fix reference to eliminated duplicate expression in kconfig
  - fix scripts/config wrt short --*-after options

Changes v1 -> v2:
  - add fix for eliminated dups in menu.c
  - fix >80 chars in key handling fix

Regards,
Yann E. MORIN


The following changes since commit f722406faae2d073cc1d01063d1123c35425939e:

  Linux 3.10-rc1 (2013-05-11 17:14:08 -0700)

are available in the git repository at:

  git://gitorious.org/linux-kconfig/linux-kconfig.git yem-kconfig-rc-fixes

for you to fetch changes up to e983b7b17ad1a978e954e6aaa62cf12bfc747883:

  kconfig/menu.c: fix multiple references to expressions in menu_add_prop() (2013-05-30 00:14:01 +0200)

----------------------------------------------------------------
Clement Chauplannaz (1):
      scripts/config: fix assignment of parameters for short version of --*-after options

Dirk Gouders (2):
      mconf: handle keys in empty dialogs
      kconfig/menu.c: fix multiple references to expressions in menu_add_prop()

 scripts/config                     |  2 +-
 scripts/kconfig/lxdialog/menubox.c |  9 +++++----
 scripts/kconfig/mconf.c            | 11 ++++++-----
 scripts/kconfig/menu.c             | 15 ++++++++++++++-
 4 files changed, 26 insertions(+), 11 deletions(-)

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-06-04 12:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-25 23:10 [pull request v2] Pull request for branch yem-kconfig-rc-fixes Yann E. MORIN
2012-12-25 23:10 ` [PATCH 1/1] kconfig:lxdialog: remove duplicate code Yann E. MORIN
2013-01-12 21:47 ` [pull request v2] Pull request for branch yem-kconfig-rc-fixes Michal Marek
2013-05-29 22:24 Yann E. MORIN
2013-06-04 12:50 ` Michal Marek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.