1. 04 5月, 2016 1 次提交
  2. 26 4月, 2016 4 次提交
  3. 23 3月, 2016 1 次提交
  4. 15 3月, 2016 2 次提交
    • S
      Kconfig: Move CONFIG_FIT and related options to Kconfig · 73223f0e
      Simon Glass 提交于
      There are already two FIT options in Kconfig but the CONFIG options are
      still in the header files. We need to do a proper move to fix this.
      
      Move these options to Kconfig and tidy up board configuration:
      
         CONFIG_FIT
         CONFIG_OF_BOARD_SETUP
         CONFIG_OF_SYSTEM_SETUP
         CONFIG_FIT_SIGNATURE
         CONFIG_FIT_BEST_MATCH
         CONFIG_FIT_VERBOSE
         CONFIG_OF_STDOUT_VIA_ALIAS
         CONFIG_RSA
      
      Unfortunately the first one is a little complicated. We need to make sure
      this option is not enabled in SPL by this change. Also this option is
      enabled automatically in the host builds by defining CONFIG_FIT in the
      image.h file. To solve this, add a new IMAGE_USE_FIT #define which can
      be used in files that are built on the host but must also build for U-Boot
      and SPL.
      
      Note: Masahiro's moveconfig.py script is amazing.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      [trini: Add microblaze change, various configs/ re-applies]
      Signed-off-by: NTom Rini <trini@konsulko.com>
      73223f0e
    • S
      Move CONFIG_OF_LIBFDT to Kconfig · 69e173eb
      Simon Glass 提交于
      Move this option to Kconfig and tidy up existing boards.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      69e173eb
  5. 25 11月, 2015 2 次提交
  6. 22 11月, 2015 1 次提交
  7. 20 11月, 2015 1 次提交
    • S
      video: Drop unused console functions · 7fe0933c
      Simon Glass 提交于
      CONFIG_CONSOLE_CURSOR, CONFIG_SYS_CONSOLE_BLINK_COUNT and
      CONFIG_CONSOLE_TIME are not used by any board. The implementation is not
      great and stands in the way of a refactor of i8042. Drop these for now.
      They can be re-introduced quite easily later, perhaps with driver-model
      real-time-clock (RTC) support.
      
      When reintroducing, it might be useful to make a few changes:
      - Blink time would be more useful than blink count
      - The confusing #ifdefs should be avoided
      - The time functions should support driver model
      - It would be best keyed off console_tstc() or some similar idle loop
          rather than a particular input driver (i8042 in this case)
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Reviewed-by: NBin Meng <bmeng.cn@gmail.com>
      7fe0933c
  8. 30 10月, 2015 1 次提交
  9. 25 10月, 2015 2 次提交
  10. 21 10月, 2015 1 次提交
  11. 22 8月, 2015 1 次提交
  12. 26 6月, 2015 2 次提交
  13. 01 6月, 2015 2 次提交
  14. 20 5月, 2015 1 次提交
  15. 31 3月, 2015 1 次提交
  16. 06 6月, 2014 1 次提交
  17. 13 5月, 2014 1 次提交
    • Y
      powerpc/freescale: Convert selected boards to generic board architecture · 15672c6d
      York Sun 提交于
      This patch converts the following boards to use generic board: MPC8536DS,
      MPC8572DS, MPC8641HPCN, p1_p2_rdb_pc, corenet_ds, t4qds, B4860QDS. It has
      been tested on NOR boot on MPC8536DS, MPC8572DS, P1021RDB, P4080DS,
      P5020DS, P5040DS, P3041DS, T4240QDS, B4860QDS.
      Signed-off-by: NYork Sun <yorksun@freescale.com>
      CC: Ying Zhang <b40530@freescale.com>
      CC: Prabhakar Kushwaha <prabhakar@freescale.com>
      CC: Haijun.Zhang <Haijun.Zhang@freescale.com>
      CC: Scott Wood <scottwood@freescale.com>
      CC: Shaohui Xie <Shaohui.Xie@freescale.com>
      15672c6d
  18. 23 4月, 2014 1 次提交
  19. 26 2月, 2014 1 次提交
    • M
      kbuild: Move linker sciript check to prepare1 · 4a377552
      Masahiro Yamada 提交于
      Same as the previous commit.
      Move sanity check to prepare1 target to avoid nasty troubles.
      
      Before this commit, LDSCRIPT existence was not checked
      when it was specified by CONFIG_SYS_LDSCRIPT.
      Now LDSCRIPT existence is checked for all boards.
      
      $(wildcard $(LDSCRIPT)) must point to the linker scripts
      with absolute path.
      Otherwise, make will terminate with a false error
      on out-of-tree build.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      4a377552
  20. 25 2月, 2014 1 次提交
  21. 25 1月, 2014 1 次提交
  22. 13 12月, 2013 1 次提交
  23. 26 11月, 2013 1 次提交
  24. 05 11月, 2013 2 次提交
  25. 24 7月, 2013 1 次提交
  26. 23 7月, 2013 2 次提交
  27. 08 6月, 2013 1 次提交
    • G
      pci: introduce CONFIG_PCI_INDIRECT_BRIDGE option · 842033e6
      Gabor Juhos 提交于
      The pci_indirect.c file is always compiled when
      CONFIG_PCI is defined although the indirect PCI
      bridge support is not needed by every board.
      
      Introduce a new CONFIG_PCI_INDIRECT_BRIDGE
      config option and only compile indirect PCI
      bridge support if this options is enabled.
      
      Also add the new option into the configuration
      files of the boards which needs that.
      
      Compile tested for powerpc, x86, arm and nds32.
      MAKEALL results:
      
      powerpc:
        --------------------- SUMMARY ----------------------------
        Boards compiled: 641
        Boards with warnings but no errors: 2 ( ELPPC MPC8323ERDB )
        ----------------------------------------------------------
        Note: the warnings for ELPPC and MPC8323ERDB are present even
        without the actual patch.
      
      x86:
        --------------------- SUMMARY ----------------------------
        Boards compiled: 1
        ----------------------------------------------------------
      
      arm:
        --------------------- SUMMARY ----------------------------
        Boards compiled: 311
        ----------------------------------------------------------
      
      nds32:
        --------------------- SUMMARY ----------------------------
        Boards compiled: 3
        ----------------------------------------------------------
      
      Cc: Tom Rini <trini@ti.com>
      Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
      Signed-off-by: NGabor Juhos <juhosg@openwrt.org>
      842033e6
  28. 16 10月, 2012 1 次提交
  29. 09 8月, 2012 1 次提交
  30. 07 7月, 2012 1 次提交