1. 13 10月, 2007 4 次提交
    • A
      kconfig: syntax cleanup - drop support for "depends/requires/def_boolean" · 247537b9
      Adrian Bunk 提交于
      Remove the following redundant and never or rarely used kconfig syntax:
      
      - "def_boolean" (same as "def_bool")
      - "requires" (same as "depends on")
      - "depends" (same as "depends on")
      
      This patch contains the code changes and Kconfig updates.
      The shipped files are in next patch to let actual codechange stand out.
      Signed-off-by: NAdrian Bunk <bunk@kernel.org>
      Cc: "Randy.Dunlap" <rdunlap@xenotime.net>
      Cc: Bryan Wu <bryan.wu@analog.com>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      Cc: "John W. Linville" <linville@tuxdriver.com>
      Cc: Roman Zippel <zippel@linux-m68k.org>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      247537b9
    • S
      kconfig: fix segv fault in menuconfig · a67cb131
      Sam Ravnborg 提交于
      With specific configurations requesting help for certain
      menu lines caused menuconfig to crash.
      This was tracked down to a null pointer bug.
      Thanks to "Miles Lane" <miles.lane@gmail.com> for inital reporting
      and to Gabriel C <nix.or.die@googlemail.com> for the backtrace
      that helped me locating the bug.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      a67cb131
    • S
      kconfig: make comments stand out in menuconfig · 48874077
      Sam Ravnborg 提交于
      Matěj Laitl <strohel@gmail.com> noticed that there was no way
      to distingush between comments and un-selectable menu lines.
      This patch marks comments with *** comment ***
      
      Cc: Matěj Laitl <strohel@gmail.com>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      48874077
    • S
      kbuild: check if we can link gettext not just compile · aa1e5ef5
      Sam Ravnborg 提交于
      cygwin provides the header file but the lib file needs
      to be added manually. A generic fix is to check if
      we can compile and link a program that uses gettext()
      and if it fails fall back to NO_NLS.
      
      International users of cygwin may have to specify
      HOST_LOADLIBES := "-lintl" on the make command line.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      aa1e5ef5
  2. 01 9月, 2007 1 次提交
  3. 26 7月, 2007 2 次提交
  4. 17 7月, 2007 4 次提交
  5. 19 5月, 2007 1 次提交
  6. 06 5月, 2007 2 次提交
  7. 03 5月, 2007 8 次提交
  8. 15 2月, 2007 5 次提交
  9. 12 1月, 2007 1 次提交
  10. 06 1月, 2007 1 次提交
  11. 14 12月, 2006 4 次提交
  12. 08 12月, 2006 1 次提交
  13. 26 11月, 2006 2 次提交
  14. 13 11月, 2006 1 次提交
  15. 12 10月, 2006 1 次提交
    • L
      [PATCH] Fix menuconfig build failure due to missing stdbool.h · 1db11ea6
      Luca Tettamanti 提交于
      scripts/kconfig/lxdialog/util.c fails to build because it uses
      true/false without including stdbool.h:
      
      kronos:~/src/linux-2.6$ make O=../linux-build-git menuconfig
        GEN     /home/kronos/src/linux-build/Makefile
        HOSTCC  scripts/kconfig/lxdialog/util.o
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c: In function 'set_classic_theme':
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c:68: error: 'true' undeclared (first use in this function)
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c:68: error: (Each undeclared identifier is reported only once
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c:68: error: for each function it appears in.)
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c:70: error: 'false' undeclared (first use in this function)
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c: In function 'set_blackbg_theme':
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c:101: error: 'true' undeclared (first use in this function)
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c:102: error: 'false' undeclared (first use in this function)
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c: In function 'set_bluetitle_theme':
      /home/kronos/src/linux-2.6/scripts/kconfig/lxdialog/util.c:144: error: 'true' undeclared (first use in this function)
      make[2]: *** [scripts/kconfig/lxdialog/util.o] Error 1
      make[1]: *** [menuconfig] Error 2
      make: *** [menuconfig] Error 2
      
      Add <stdbool.h> to dialog.h to fix the breakage.
      Signed-off-by: NLuca Tettamanti <kronos.it@gmail.com>
      Cc: Sam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      1db11ea6
  16. 01 10月, 2006 1 次提交
  17. 30 9月, 2006 1 次提交