1. 02 9月, 2017 1 次提交
  2. 28 8月, 2017 1 次提交
  3. 15 8月, 2017 1 次提交
  4. 01 8月, 2017 1 次提交
  5. 26 7月, 2017 1 次提交
  6. 25 7月, 2017 1 次提交
  7. 23 5月, 2017 1 次提交
  8. 22 5月, 2017 1 次提交
  9. 24 1月, 2017 1 次提交
  10. 22 1月, 2017 1 次提交
  11. 30 12月, 2016 1 次提交
    • M
      mmc: complete unfinished move of CONFIG_MMC · c2726995
      Masahiro Yamada 提交于
      Commit 7a777f6d ("mmc: Add generic Kconfig option") created
      a Kconfig entry for this option without any actual moves, then
      commit 44c79879 ("sunxi: Use Kconfig CONFIG_MMC") moved
      instances only for SUNXI.
      
      We generally do not like such partial moves.  This kind of work
      is automated by tools/moveconfig.py, so it is pretty easy to
      complete this move.
      
      I am adding "default ARM || PPC || SANDBOX" (suggested by Tom).
      This shortens the configs and will ease new board porting.
      
      This commit was created as follows:
      
      [1] Edit Kconfig (remove the "depends on", add the "default",
          copy the prompt and help message from Linux)
      
      [2] Run 'tools/moveconfig.py -y -s -r HEAD MMC'
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: NJaehoon Chung <jh80.chung@samsung.com>
      c2726995
  12. 12 10月, 2016 1 次提交
  13. 27 9月, 2016 1 次提交
  14. 20 9月, 2016 1 次提交
  15. 10 9月, 2016 1 次提交
  16. 26 4月, 2016 3 次提交
  17. 15 3月, 2016 1 次提交
  18. 25 11月, 2015 1 次提交
  19. 22 11月, 2015 1 次提交
  20. 26 6月, 2015 2 次提交
  21. 01 6月, 2015 2 次提交
  22. 13 5月, 2015 1 次提交
  23. 31 8月, 2014 1 次提交
  24. 30 7月, 2014 1 次提交
    • M
      kconfig: add board Kconfig and defconfig files · dd84058d
      Masahiro Yamada 提交于
      This commit adds:
       - arch/${ARCH}/Kconfig
          provide a menu to select target boards
       - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig
          set CONFIG macros to the appropriate values for each board
       - configs/${TARGET_BOARD}_defconfig
          default setting of each board
      
      (This commit was automatically generated by a conversion script
      based on boards.cfg)
      
      In Linux Kernel, defconfig files are located under
      arch/${ARCH}/configs/ directory.
      It works in Linux Kernel since ARCH is always given from the
      command line for cross compile.
      
      But in U-Boot, ARCH is not given from the command line.
      Which means we cannot know ARCH until the board configuration is done.
      That is why all the "*_defconfig" files should be gathered into a
      single directory ./configs/.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      dd84058d