1. 03 Aug, 2010 8 commits
  2. 29 Jul, 2010 1 commit
    • Ulf Magnusson's avatar
      kconfig: fix MODULES-related bug in case of no .config · ac1ffde1
      Ulf Magnusson authored
      There seems to be a kconfig bug due to MODULES not always being
      evaluated if no .config is found. Take the following Kconfig as an
      example:
      
      config MODULES
      	def_bool y
      
      config FOO
      	def_tristate m
      
      With no .config, the following configuration is generated:
      
      CONFIG_MODULES=y
      CONFIG_FOO=y
      
      With an empty .config, the following:
      
      CONFIG_MODULES=y
      CONFIG_FOO=m
      
      Tristate choice statements can also exhibit the problem, due to having an
      implicit rev_dep (select) containing "m".
      
      The problem is that MODULES is never evaluted in conf_read_simple() unless
      there's a .config. The following patch fixes this.
      Signed-off-by: default avatarUlf Magnusson <ulfalizer.lkml@gmail.com>
      Reviewed-by: default avatarWANG Cong <xiyou.wangcong@gmail.com>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
      ac1ffde1
  3. 26 Jul, 2010 1 commit
  4. 08 Jul, 2010 1 commit
  5. 02 Jul, 2010 1 commit
    • Catalin Marinas's avatar
      kbuild: Warn on selecting symbols with unmet direct dependencies · 246cf9c2
      Catalin Marinas authored
      The "select" statement in Kconfig files allows the enabling of options
      even if they have unmet direct dependencies (i.e. "depends on" expands
      to "no"). Currently, the "depends on" clauses are used in calculating
      the visibility but they do not affect the reverse dependencies in any
      way.
      
      The patch introduces additional tracking of the "depends on" statements
      and prints a warning on selecting an option if its direct dependencies
      are not met.
      Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
      Cc: Sam Ravnborg <sam@ravnborg.org>
      Cc: Arnd Bergmann <arnd@arndb.de>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Linus Torvalds <torvalds@linux-foundation.org>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
      246cf9c2
  6. 11 Jun, 2010 1 commit
  7. 03 Jun, 2010 2 commits
  8. 02 Jun, 2010 10 commits
  9. 27 May, 2010 1 commit
  10. 06 May, 2010 1 commit
  11. 14 Apr, 2010 6 commits
  12. 08 Apr, 2010 1 commit
  13. 23 Mar, 2010 4 commits
  14. 11 Mar, 2010 1 commit
  15. 10 Mar, 2010 1 commit