1. 21 1月, 2011 1 次提交
    • D
      kconfig: rename CONFIG_EMBEDDED to CONFIG_EXPERT · 6a108a14
      David Rientjes 提交于
      The meaning of CONFIG_EMBEDDED has long since been obsoleted; the option
      is used to configure any non-standard kernel with a much larger scope than
      only small devices.
      
      This patch renames the option to CONFIG_EXPERT in init/Kconfig and fixes
      references to the option throughout the kernel.  A new CONFIG_EMBEDDED
      option is added that automatically selects CONFIG_EXPERT when enabled and
      can be used in the future to isolate options that should only be
      considered for embedded systems (RISC architectures, SLOB, etc).
      
      Calling the option "EXPERT" more accurately represents its intention: only
      expert users who understand the impact of the configuration changes they
      are making should enable it.
      Reviewed-by: NIngo Molnar <mingo@elte.hu>
      Acked-by: NDavid Woodhouse <david.woodhouse@intel.com>
      Signed-off-by: NDavid Rientjes <rientjes@google.com>
      Cc: Greg KH <gregkh@suse.de>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jens Axboe <axboe@kernel.dk>
      Cc: Arnd Bergmann <arnd@arndb.de>
      Cc: Robin Holt <holt@sgi.com>
      Cc: <linux-arch@vger.kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      6a108a14
  2. 22 11月, 2010 1 次提交
  3. 21 10月, 2010 1 次提交
  4. 09 8月, 2010 1 次提交
  5. 06 12月, 2009 1 次提交
  6. 30 3月, 2009 4 次提交
  7. 27 7月, 2008 2 次提交
  8. 20 7月, 2008 1 次提交
  9. 05 6月, 2008 1 次提交
    • I
      V4L/DVB (7974): fix MEDIA_TUNER && FW_LOADER build error · 6637dea6
      Ingo Molnar 提交于
      -tip testing found the following build failure:
      
        LD      .tmp_vmlinux1
        drivers/built-in.o: In function `generic_set_freq':
        tuner-xc2028.c:(.text+0xbd896): undefined reference to `request_firmware'
        tuner-xc2028.c:(.text+0xbdd7a): undefined reference to `release_firmware'
        drivers/built-in.o: In function `xc_load_fw_and_init_tuner':
        xc5000.c:(.text+0xc68e6): undefined reference to `request_firmware'
        xc5000.c:(.text+0xc6abe): undefined reference to `release_firmware'
      
      with this config:
      
        http://redhat.com/~mingo/misc/config-Tue_May_20_18_11_34_CEST_2008.bad
      
      the reason is another kconfig tool bug that has to be worked around in
      the driver's Kconfig file: if FW_LOADER is selected in a second
      dependency, that is not properly propagated up the dependencies.
      
      in this case, FW_LOADER is selected from MEDIA_TUNER_XC2028:
      
        config MEDIA_TUNER_XC2028
              tristate "XCeive xc2028/xc3028 tuners"
              depends on VIDEO_MEDIA && I2C
              depends on HOTPLUG
              select FW_LOADER
      
      which got selected by MEDIA_TUNER:
      
        config MEDIA_TUNER
              tristate
              default VIDEO_MEDIA && I2C
              depends on VIDEO_MEDIA && I2C
              select FW_LOADER if !MEDIA_TUNER_CUSTOMIZE && HOTPLUG
      
      but the kconfig tool did not pick up this second-order dependency and
      allowed CONFIG_FW_LOADER=m to be selected - in which case the build
      fails.
      
      the workaround i found was to move the select of FW_LOADER one level up,
      so that the buggy kconfig tool can notice it and can act appropriately.
      This problem can probably be worked around in other ways as well, i went
      for the minimal fix.
      
      Obviously, the kconfig tool should be fixed, it is not reasonable to
      expect driver authors to do manual dependency resolution (that kconfig
      itself already does) and uglify the Kconfig files. The kconfig tool did
      nothing to warn about this situation and did not prevent this faulty
      .config from being constructed.
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      6637dea6
  10. 14 5月, 2008 6 次提交
  11. 30 4月, 2008 4 次提交