1. 14 4月, 2016 3 次提交
  2. 02 4月, 2016 1 次提交
  3. 26 3月, 2016 1 次提交
  4. 22 2月, 2016 1 次提交
  5. 27 1月, 2016 2 次提交
  6. 13 1月, 2016 1 次提交
  7. 18 12月, 2015 1 次提交
  8. 07 12月, 2015 2 次提交
  9. 25 11月, 2015 1 次提交
  10. 19 11月, 2015 1 次提交
  11. 04 11月, 2015 1 次提交
  12. 25 10月, 2015 3 次提交
  13. 28 9月, 2015 1 次提交
  14. 19 8月, 2015 2 次提交
  15. 01 7月, 2015 1 次提交
    • J
      zynq: defconfig: Move CONFIG_OF_* to Kconfig · d065cfd9
      Jagan Teki 提交于
      This commit moves:
      - CONFIG_OF_CONTROL
      - SPL_DISABLE_OF_CONTROL
      
      from zynq_*_defconfig files into arch/arm/Kconfig "config ARCH_ZYNQ"
      Signed-off-by: NJagan Teki <jteki@openedev.com>
      Cc: Michal Simek <michal.simek@xilinx.com>
      Cc: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
      Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
      d065cfd9
  16. 26 6月, 2015 2 次提交
  17. 11 6月, 2015 1 次提交
  18. 01 6月, 2015 1 次提交
  19. 13 5月, 2015 1 次提交
  20. 29 4月, 2015 1 次提交
  21. 19 4月, 2015 1 次提交
  22. 09 4月, 2015 1 次提交
    • M
      ARM: zynq: disable CONFIG_SYS_MALLOC_F to fix MMC boot · 321f86e1
      Masahiro Yamada 提交于
      Since commit 326a6823 (malloc_f: enable SYS_MALLOC_F by default
      if DM is on), Zynq MMC boot hangs up after printing the following:
      
          U-Boot SPL 2015.04-rc5-00053-gadcc5705 (Apr 08 2015 - 12:59:11)
          mmc boot
          reading system.dtb
      
      Prior to commit 326a6823, Zynq boards enabled CONFIG_DM, but
      not CONFIG_SYS_MALLOC_F.  That commit forcibly turned on
      CONFIG_SYS_MALLOC_F.  I have not figured out the root cause, but
      anyway it looks like CONFIG_SYS_MALLOC_F gave a bad impact on the
      Zynq MMC boot.
      
      We are planning to have the v2015.04 release in a few days.
      I know this is a defensive fixup, but what I can do now is to add
         # CONFIG_SYS_MALLOC_F is not set
      to every Zynq defconfig file to get back the original behavior.
      
      Tested on:
        - Zedboard
        - ZC706 board
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Tested-by: NMichal Simek <michal.simek@xilinx.com>
      Cc: Simon Glass <sjg@chromium.org>
      321f86e1
  23. 16 3月, 2015 1 次提交
  24. 30 1月, 2015 2 次提交
  25. 25 9月, 2014 2 次提交
  26. 31 8月, 2014 1 次提交
  27. 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