1. 14 2月, 2018 1 次提交
  2. 11 2月, 2018 2 次提交
  3. 28 1月, 2018 1 次提交
  4. 25 1月, 2018 1 次提交
  5. 16 1月, 2018 1 次提交
  6. 11 10月, 2017 1 次提交
    • T
      cmd: Toggle the default value of CONFIG_CMD_IMLS · ad12dc18
      Tuomas Tynkkynen 提交于
      Having this as a 'default y' is rather annoying because it doesn't
      actually compile unless other options are defined in the board header:
      
      ../cmd/bootm.c: In function 'do_imls_nor':
      ../cmd/bootm.c:330:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared (first use in this function); did you mean 'CONFIG_SYS_MAX_FLASH_SECT'?
         i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
      
      Make it 'default n' so people who develop new boards that start from a
      blank defconfig have one less compilation failure to debug.
      Signed-off-by: NTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
      ad12dc18
  7. 28 8月, 2017 1 次提交
  8. 15 8月, 2017 1 次提交
  9. 12 8月, 2017 1 次提交
  10. 08 8月, 2017 2 次提交
  11. 03 8月, 2017 1 次提交
  12. 26 7月, 2017 1 次提交
  13. 16 5月, 2017 1 次提交
  14. 08 4月, 2017 1 次提交
  15. 20 3月, 2017 1 次提交
  16. 10 9月, 2016 2 次提交
  17. 09 9月, 2016 1 次提交
  18. 17 8月, 2016 2 次提交
  19. 10 6月, 2016 1 次提交
  20. 26 4月, 2016 2 次提交
  21. 15 3月, 2016 1 次提交
  22. 25 11月, 2015 1 次提交
  23. 28 9月, 2015 1 次提交
  24. 02 7月, 2015 1 次提交
  25. 26 6月, 2015 2 次提交
  26. 01 6月, 2015 1 次提交
  27. 19 4月, 2015 1 次提交
  28. 25 2月, 2015 2 次提交
  29. 10 11月, 2014 1 次提交
  30. 31 8月, 2014 1 次提交
  31. 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