1. 04 6月, 2016 1 次提交
    • M
      usb: move CONFIG_USB_XHCI to Kconfig with renaming · 0a8cc1a3
      Masahiro Yamada 提交于
      Move CONFIG_USB_XHCI to defconfig files for all boards, renaming it
      into CONFIG_USB_XHCI_HCD.
      
      As commented in the help of "config USB_XHCI" entry, this has been
      a TODO for a long time; now CONFIG_USB_XHCI_HCD and CONFIG_USB_XHCI
      have been unified in favor of the former.
      
      Note:
      Some boards define CONFIG_USB_XHCI in their headers without
      CONFIG_USB, which does not meet the "depends on" in Kconfig.
      I added CONFIG_USB=y for those boards when converting.
      Otherwise, they would fail to build.
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      0a8cc1a3
  2. 28 5月, 2016 2 次提交
  3. 26 4月, 2016 3 次提交
  4. 20 4月, 2016 6 次提交
  5. 19 4月, 2016 1 次提交
  6. 26 3月, 2016 1 次提交
  7. 16 3月, 2016 1 次提交
  8. 15 3月, 2016 1 次提交
  9. 21 1月, 2016 1 次提交
  10. 13 1月, 2016 1 次提交
  11. 25 11月, 2015 2 次提交
  12. 22 11月, 2015 1 次提交
  13. 19 11月, 2015 1 次提交
  14. 23 10月, 2015 1 次提交
  15. 28 9月, 2015 1 次提交
  16. 13 8月, 2015 2 次提交
  17. 02 7月, 2015 1 次提交
  18. 26 6月, 2015 2 次提交
  19. 01 6月, 2015 1 次提交
  20. 13 5月, 2015 1 次提交
  21. 16 3月, 2015 1 次提交
  22. 31 8月, 2014 1 次提交
  23. 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