15 Dec, 2010

4 commits


02 Dec, 2010

1 commit


29 Oct, 2010

1 commit


28 Oct, 2010

1 commit


13 Oct, 2010

1 commit


12 Oct, 2010

2 commits


10 Oct, 2010

2 commits

  • Commit 861b4ea4 broke oldnoconfig when removed the oldnoconfig checks on
    if (input_mode == nonint_oldconfig ||
    input_mode == oldnoconfig) {
    if (input_mode == nonint_oldconfig &&
    sym->name &&
    !sym_is_choice_value(sym)) {
    to avoid oldnoconfig chugging through the else stanza.

    Fix that to restore expected behaviour (which I've confirmed in the
    Fedora kernel build that the configs end up looking the same.)

    Signed-off-by: Kyle McMartin
    Acked-by: Sam Ravnborg
    Signed-off-by: Michal Marek

    Kyle McMartin
     
  • After fixing a use-after-free bug in kconfig, a 'make defconfig' or
    'make allmodconfig' fills the screen with warnings that were not
    detected before. Given that we are close to the release now, disable the
    warnings temporarily and deal with them after 2.6.36.

    Signed-off-by: Michal Marek

    Michal Marek
     

04 Oct, 2010

2 commits


01 Oct, 2010

3 commits

  • Reported-by: Stephen Rothwell
    Signed-off-by: Michal Marek

    Michal Marek
     
  • Commit 2e7a091 made struct file->name a const char*, but forgot to
    constify all users of it.

    Reported-by: Stephen Rothwell
    Signed-off-by: Michal Marek

    Michal Marek
     
  • commit 8baefd30b5b0101aa07aa75da44a9eee881eed28 of linux-next replaced
    a `switch()' statement with some `if()' statements, but left `break's
    in the `switch()' statement untouched. This cause read config loop to
    exit and so "make oldconfig" is not much usable (see below).

    > $ make oldconfig
    >
    > scripts/kconfig/conf --oldconfig Kconfig
    > #
    > # using defaults found in /boot/config-2.6.34-ccs-r1
    > #
    > *
    > * Restart config...
    > *
    > *
    > * General setup
    > *
    > Prompt for development and/or incomplete code/drivers (EXPERIMENTAL) [N/y/?] (NEW)

    (I've already have "CONFIG_EXPERIMENTAL=y" in the old config file. But
    that's not read here.)

    This patch should fix this problem.

    Signed-off-by: Naohiro Aota
    Signed-off-by: Michal Marek

    Naohiro Aota
     

28 Sep, 2010

1 commit

  • …nux-2.6 into kbuild/kconfig

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

    Michal Marek
     

20 Sep, 2010

17 commits


17 Sep, 2010

1 commit


13 Sep, 2010

3 commits

  • Signed-off-by: Michal Marek

    Michal Marek
     
  • On system with QT3 and QT4 qmake in PATH may be from QT3. So we use
    pkg-config for proper QT4 detection.
    By reqesting cflags and libs for either QtCore, QtGui and QtSupport include
    dirs and libs get listed several times, but so we won't mis anything

    Signed-off-by: Alexander Stein
    Acked-by: Randy Dunlap
    Signed-off-by: Michal Marek

    Alexander Stein
     
  • When getting the help for a choice menu with a help section (for example
    the "Choose SLAB allocator" menu) nconfig pops up a window with nothing
    inside it. This is due to show_help() passing an empty string to
    show_scroll_win()'s 3rd argument. The option really does have help
    though, but it isn't a config symbol, so just add the help text for
    the option, and don't try to add anything else like the config option
    name.

    Signed-off-by: Stephen Boyd
    Acked-by: Nir Tzachar
    Signed-off-by: Michal Marek

    Stephen Boyd
     

08 Sep, 2010

1 commit

  • Commit 861b4ea4 broke oldnoconfig when removed the oldnoconfig checks on
    if (input_mode == nonint_oldconfig ||
    input_mode == oldnoconfig) {
    if (input_mode == nonint_oldconfig &&
    sym->name &&
    !sym_is_choice_value(sym)) {
    to avoid oldnoconfig chugging through the else stanza.

    Fix that to restore expected behaviour (which I've confirmed in the
    Fedora kernel build that the configs end up looking the same.)

    Signed-off-by: Kyle McMartin
    Acked-by: Sam Ravnborg
    Signed-off-by: Michal Marek

    Kyle McMartin