All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] Kconfig generalization
@ 2010-09-11 15:51 Arnaud Lacombe
  2010-09-11 15:51 ` [PATCH 01/15] kconfig: replace a `switch()' statement by a more flexible `if()' statement Arnaud Lacombe
                   ` (17 more replies)
  0 siblings, 18 replies; 33+ messages in thread
From: Arnaud Lacombe @ 2010-09-11 15:51 UTC (permalink / raw)
  To: Sam Ravnborg, Michal Marek; +Cc: linux-kbuild, Arnaud Lacombe

Hi Sam, Michal,

You'll find hereafter the series for kconfig generalization and interfaces
changes with the rest of the kernel.

A quick summary of the serie is:
 - patch 1 -> 3: handles the CONFIG_ prefix, its build time definition and its
mention in help text.
 - patch 4: handles the reference to the 'kernel' keyword in various strings.
 - patch 5: takes care of the "linux" domain name used to get translation
   informations.
 - patch 6 -> 15 handles the mainmenu syntax changes and related.

This series is available in the git repository at:

 git://github.com/lacombar/linux-2.6.git kbuild-generic-v5

Comments welcome !

Thanks in advance,
 - Arnaud

Arnaud Lacombe (15):
  kconfig: replace a `switch()' statement by a more flexible `if()'
    statement
  kconfig: rephrase help text not to mention the internal prefix
  kconfig: allow build-time definition of the internal config prefix
  kconfig: rephrase help texts/comments not to include the package name
  kconfig: allow PACKAGE to be defined on the compiler's command-line
  kconfig: implement the `mainmenu' directive
  kconfig: add a symbol string expansion helper
  kconfig: expand by default the rootmenu's prompt
  kconfig: replace KERNELVERSION usage by the mainmenu's prompt
  kconfig: don't emit warning upon rootmenu's prompt redefinition
  kconfig: constify file name
  kconfig: use the file's name of sourced file
  kconfig: expand file names
  kconfig: regen parser
  kbuild: migrate all arch to the kconfig mainmenu upgrade

 Documentation/kbuild/kconfig-language.txt |    3 +-
 Kconfig                                   |   11 +
 arch/alpha/Kconfig                        |    4 -
 arch/arm/Kconfig                          |    7 -
 arch/avr32/Kconfig                        |    7 -
 arch/blackfin/Kconfig                     |    7 -
 arch/cris/Kconfig                         |    7 -
 arch/frv/Kconfig                          |    6 -
 arch/h8300/Kconfig                        |    7 -
 arch/ia64/Kconfig                         |    7 -
 arch/m32r/Kconfig                         |    7 -
 arch/m68k/Kconfig                         |    6 -
 arch/m68knommu/Kconfig                    |    7 -
 arch/microblaze/Kconfig                   |    5 -
 arch/mips/Kconfig                         |    2 -
 arch/mn10300/Kconfig                      |    9 -
 arch/parisc/Kconfig                       |    7 -
 arch/powerpc/Kconfig                      |    6 -
 arch/s390/Kconfig                         |    7 -
 arch/score/Kconfig                        |    5 -
 arch/sh/Kconfig                           |    7 -
 arch/sparc/Kconfig                        |    6 -
 arch/tile/Kconfig                         |    2 -
 arch/um/Kconfig.common                    |    2 -
 arch/x86/Kconfig                          |    3 -
 arch/xtensa/Kconfig                       |    5 -
 scripts/kconfig/Makefile                  |    2 +-
 scripts/kconfig/conf.c                    |   13 +-
 scripts/kconfig/confdata.c                |   77 ++---
 scripts/kconfig/expr.h                    |    2 +-
 scripts/kconfig/gconf.c                   |    8 +-
 scripts/kconfig/lex.zconf.c_shipped       |    5 +-
 scripts/kconfig/lkc.h                     |    6 +
 scripts/kconfig/lkc_proto.h               |    1 +
 scripts/kconfig/mconf.c                   |   64 ++--
 scripts/kconfig/menu.c                    |    4 +-
 scripts/kconfig/nconf.c                   |   73 ++---
 scripts/kconfig/qconf.cc                  |    6 +-
 scripts/kconfig/symbol.c                  |   49 +++
 scripts/kconfig/util.c                    |    7 +-
 scripts/kconfig/zconf.l                   |    5 +-
 scripts/kconfig/zconf.tab.c_shipped       |  547 +++++++++++++++--------------
 scripts/kconfig/zconf.y                   |   18 +-
 43 files changed, 489 insertions(+), 550 deletions(-)
 create mode 100644 Kconfig

-- 
1.7.2.30.gc37d7.dirty


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

end of thread, other threads:[~2010-10-21  3:44 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-11 15:51 [PATCH 00/15] Kconfig generalization Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 01/15] kconfig: replace a `switch()' statement by a more flexible `if()' statement Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 02/15] kconfig: rephrase help text not to mention the internal prefix Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 03/15] kconfig: allow build-time definition of the internal config prefix Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 04/15] kconfig: rephrase help texts/comments not to include the package name Arnaud Lacombe
2010-09-11 20:22   ` Randy Dunlap
2010-09-12  4:04     ` Arnaud Lacombe
2010-10-21  2:40     ` Arnaud Lacombe
2010-10-21  3:44       ` Randy Dunlap
2010-09-17 21:59   ` Michal Marek
2010-09-11 15:51 ` [PATCH 05/15] kconfig: allow PACKAGE to be defined on the compiler's command-line Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 06/15] kconfig: implement the `mainmenu' directive Arnaud Lacombe
2010-09-19  9:42   ` Sam Ravnborg
2010-09-19 14:53     ` Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 07/15] kconfig: add a symbol string expansion helper Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 08/15] kconfig: expand by default the rootmenu's prompt Arnaud Lacombe
2010-09-11 15:57   ` Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 09/15] kconfig: replace KERNELVERSION usage by the mainmenu's prompt Arnaud Lacombe
2010-09-11 16:05   ` Arnaud Lacombe
2010-09-17 22:02   ` Michal Marek
2010-09-17 22:16   ` Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 10/15] kconfig: don't emit warning upon rootmenu's prompt redefinition Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 11/15] kconfig: constify file name Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 12/15] kconfig: use the file's name of sourced file Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 13/15] kconfig: expand file names Arnaud Lacombe
2010-09-11 15:51 ` [PATCH 14/15] kconfig: regen parser Arnaud Lacombe
2010-09-17 22:10   ` Michal Marek
2010-09-11 15:51 ` [PATCH 15/15] kbuild: migrate all arch to the kconfig mainmenu upgrade Arnaud Lacombe
2010-09-12  4:12 ` [DIFF] kbuild-generic-v5 -> kbuild-generic-v6 Arnaud Lacombe
2010-09-22 17:07   ` [DIFF] kbuild-generic-v6 -> kbuild/kconfig/kbuild-generic-v7 Arnaud Lacombe
2010-09-27 21:25     ` Michal Marek
2010-09-17 22:16 ` [PATCH 00/15] Kconfig generalization Michal Marek
2010-09-19  9:50 ` Sam Ravnborg

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.