1. 20 Sep, 2010 2 commits
  2. 19 Sep, 2010 9 commits
  3. 08 Sep, 2010 1 commit
  4. 06 Sep, 2010 1 commit
  5. 01 Sep, 2010 1 commit
    • Alexander Stein's avatar
      kconfig qconf: port to QT4 · 133c5f7c
      Alexander Stein authored
      A straight forward port to QT4 using qt3to4 and compiling against
        qt3support
      
      * Use pkg-config to detect QT4 which is hopefully portable enough
      * If no QT4, QT3 will by tried instead
      * Classes renamed using qt3to4
        * If build using QT3 renamed to QT3 class names using defines
      * ConfigInfoView::menu has to be renamed as QT4 moc strips struct from
        struct menu and creates a name conflict
      * QT2 support has been dropped
      * The hidden options inserted in 39a4897c
        are use in native API
      Signed-off-by: default avatarAlexander Stein <alexander.stein@informatik.tu-chemnitz.de>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
      133c5f7c
  6. 31 Aug, 2010 1 commit
  7. 26 Aug, 2010 1 commit
  8. 17 Aug, 2010 3 commits
  9. 16 Aug, 2010 1 commit
    • Nir Tzachar's avatar
      nconfig: add search support · a72f3e2b
      Nir Tzachar authored
      Remove the old hotkeys feature, and replace it by an interactive string
      search.
      From nconfig help:
      
      Searching: pressing '/' triggers interactive search mode.
                 nconfig performs a case insensitive search for the string
                 in the menu prompts (no regex support).
                 Pressing the up/down keys highlights the previous/next
                 matching item. Backspace removes one character from the
                 match string. Pressing either '/' again or ESC exits
                 search mode. All other keys behave normally.
      
      Miscellaneous other changes (including Rundy's and Justin's input).
      Signed-off-by: default avatarNir Tzachar <nir.tzachar@gmail.com>
      Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
      a72f3e2b
  10. 14 Aug, 2010 2 commits
    • Sam Ravnborg's avatar
      kconfig: fix segfault when detecting recursive dependency · 3643f849
      Sam Ravnborg authored
      Following sample Kconfig generated a segfault:
      
      config FOO
              bool
              select PERF_EVENTS if HAVE_HW_BREAKPOINT
      
      config PERF_EVENTS
              bool
      
      config HAVE_HW_BREAKPOINT
              bool
              depends on PERF_EVENTS
      
      Fix by reverting back to a valid property if there was no
      property on the stack of symbols.
      
      The above pattern were seen in sh Kconfig.
      A fix for the Kconfig file has been sent to the sh folks.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
      3643f849
    • Sam Ravnborg's avatar
      kconfig: fix savedefconfig with choice marked optional · 84062dd3
      Sam Ravnborg authored
      savedefconfig failed to save the correct minimal config
      when it encountered a choice marked optional.
      
      Consider following minimal configuration:
      $cat Kconfig
      choice
      	prompt "choice"
      	optional
      
      config A
      	bool "a"
      
      config B
      	bool "b"
      
      endchoice
      
      $cat .config | grep -v ^#
      CONFIG_A=y
      
      $conf --savedefconfig=defconfig Kconfig
      
      would before this fix result in an empty file, because
      kconfig would assume that CONFIG_A=y is a default value.
      But because the choice is optional the default is that
      both A and B are =n.
      
      Fix so we handle optional choices correct.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
      84062dd3
  11. 12 Aug, 2010 5 commits
  12. 04 Aug, 2010 1 commit
  13. 03 Aug, 2010 9 commits
  14. 01 Aug, 2010 2 commits
  15. 31 Jul, 2010 1 commit
    • Linus Torvalds's avatar
      Merge master.kernel.org:/home/rmk/linux-2.6-arm · a63ecd83
      Linus Torvalds authored
      * master.kernel.org:/home/rmk/linux-2.6-arm:
        cyber2000fb: fix console in truecolor modes
        cyber2000fb: fix machine hang on module load
        SA1111: Eliminate use after free
        ARM: Fix Versatile/Realview/VExpress MMC card detection sense
        ARM: 6279/1: highmem: fix SMP preemption bug in kmap_high_l1_vipt
        ARM: Add barriers to io{read,write}{8,16,32} accessors as well
        ARM: 6273/1: Add barriers to the I/O accessors if ARM_DMA_MEM_BUFFERABLE
        ARM: 6272/1: Convert L2x0 to use the IO relaxed operations
        ARM: 6271/1: Introduce *_relaxed() I/O accessors
        ARM: 6275/1: ux500: don't use writeb() in uncompress.h
        ARM: 6270/1: clean files in arch/arm/boot/compressed/
        ARM: Fix csum_partial_copy_from_user()
      a63ecd83