1. 30 4月, 2017 1 次提交
  2. 20 3月, 2017 1 次提交
  3. 28 1月, 2017 2 次提交
  4. 22 1月, 2017 1 次提交
    • U
      status_led: Kconfig migration · 2d8d190c
      Uri Mashiach 提交于
      Move all of the status LED feature to drivers/led/Kconfig.
      The LED status definitions were moved from the board configuration
      files to the defconfig files.
      
      TBD: Move all of the definitions in the include/status_led.h to the
      relevant board's defconfig files.
      
      Tested boards: CL-SOM-AM57x, CM-T335
      Signed-off-by: NUri Mashiach <uri.mashiach@compulab.co.il>
      2d8d190c
  5. 12 10月, 2016 1 次提交
  6. 10 6月, 2016 1 次提交
  7. 26 4月, 2016 4 次提交
  8. 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
  9. 25 10月, 2015 1 次提交
  10. 21 10月, 2015 1 次提交
  11. 26 6月, 2015 1 次提交
  12. 29 10月, 2014 1 次提交
  13. 05 11月, 2013 2 次提交
  14. 24 7月, 2013 1 次提交
  15. 21 3月, 2013 1 次提交
  16. 17 10月, 2012 1 次提交
    • P
      split mpc8xx hooks from cmd_ide.c · 8d1165e1
      Pavel Herrmann 提交于
      move most of mpc8xx hooks from cmd_ide.c into ide_preinit() and newly created
      ide_init_postreset() (invoked after calling ide_reset after ide_preinit),
      some cleanup to make checkpatch happy, enable IDE init hooks in configs of
      affected boards.
      confusingly, these hooks are used by more than just mpc8xx-based boards, and
      therefore are placed in arch/ppc/lib/
      
      note: checkpatch still emits warnings about using volatile
      Signed-off-by: NPavel Herrmann <morpheus.ibis@gmail.com>
      8d1165e1
  17. 21 6月, 2012 2 次提交
  18. 27 10月, 2010 2 次提交
    • W
      Replace CONFIG_SYS_GBL_DATA_SIZE by auto-generated value · 25ddd1fb
      Wolfgang Denk 提交于
      CONFIG_SYS_GBL_DATA_SIZE has always been just a bad workarond for not
      being able to use "sizeof(struct global_data)" in assembler files.
      Recent experience has shown that manual synchronization is not
      reliable enough.  This patch renames CONFIG_SYS_GBL_DATA_SIZE into
      GENERATED_GBL_DATA_SIZE which gets automatically generated by the
      asm-offsets tool.  In the result, all definitions of this value can be
      deleted from the board config files.  We have to make sure that all
      files that reference such data include the new <asm-offsets.h> file.
      
      No other changes have been done yet, but it is obvious that similar
      changes / simplifications can be done for other, related macro
      definitions as well.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Acked-by: NKumar Gala <galak@kernel.crashing.org>
      25ddd1fb
    • W
      Rename CONFIG_SYS_INIT_RAM_END into CONFIG_SYS_INIT_RAM_SIZE · 553f0982
      Wolfgang Denk 提交于
      CONFIG_SYS_INIT_RAM_END was a misnomer as it suggests this might be
      some end address; to make the meaning more clear we rename it into
      CONFIG_SYS_INIT_RAM_SIZE
      
      No other code changes are performed in this patch, only minor editing
      of white space (due to the changed length) and the comments was done,
      where noticed.
      
      Note that the code for the PATI and cmi_mpc5xx board configurations
      looks seriously broken.  Last known maintainers on Cc:
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Denis Peter <d.peter@mpl.ch>
      Cc: Martin Winistoerfer <martinwinistoerfer@gmx.ch>
      Acked-by: NKumar Gala <galak@kernel.crashing.org>
      553f0982
  19. 19 10月, 2010 2 次提交
    • P
      powerpc: Cleanup BOOTFLAG_* references · d98b0523
      Peter Tyser 提交于
      Now that warm booting is not supported, there isn't a need for the
      BOOTFLAG_COLD and BOOTFLAG_WARM defines, so remove them.
      
      Note that this change makes the board info bd_bootflags field useless.
      It will always be set to 0, but we leave it around so that we don't
      break the board info structure that some OSes are expecting to be passed
      from U-Boot.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      d98b0523
    • W
      Makefile: move all Power Architecture boards into boards.cfg · 2ae18241
      Wolfgang Denk 提交于
      Clean up Makefile, and drop a lot of the config.mk files on the way.
      
      We now also automatically pick all boards that are listed in
      boards.cfg (and with all configurations), so we can drop the redundant
      entries from MAKEALL to avoid building these twice.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      2ae18241
  20. 12 3月, 2010 1 次提交
  21. 29 7月, 2009 1 次提交
    • W
      TQM8xx* boards: set larger SMC Rx buffer len · 3cb7a480
      Wolfgang Denk 提交于
      Commit 2b3f12c2 added support for configurable SMC Rx buffer length on
      8xx systems. Enable this feature on TQM8xx* based boards.
      
      This fixes the problem that pasting text in the middle of a line
      (i. e. inserting in edit mode) did not work - only the first two
      characters got inserted, the rest was lost.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      3cb7a480
  22. 13 6月, 2009 1 次提交
    • S
      mtd: MTD related config header changes (mtdparts command) · 942556a9
      Stefan Roese 提交于
      By changing the cmd_mtdparts to only use the MTD infrastructure and
      not the direct interface to the CFI NOR FLASH driver we now need
      to add the MTD infrastructure to all boards using those mtdparts
      commands. This patch adds those components:
      
      CONFIG_MTD_DEVICE (for all FLASH types)
      
      plus
      
      CONFIG_FLASH_CFI_MTD (for NOR FLASH)
      
      To all board maintainers: Please test this on your platforms and
      report any problems/issues found. Thanks.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Ron Madrid <info@sheldoninst.com>
      Cc: Georg Schardt <schardt@team-ctech.de>
      Cc: Michal Simek <monstr@monstr.eu>
      Cc: Ladislav Michl <ladis@linux-mips.org>
      Cc: Martin Krause <martin.krause@tqs.de>
      Cc: Gary Jennejohn <garyj@denx.de>
      Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
      942556a9
  23. 21 3月, 2009 1 次提交
  24. 22 2月, 2009 1 次提交
  25. 19 10月, 2008 1 次提交
  26. 17 9月, 2008 1 次提交
  27. 11 9月, 2008 2 次提交
  28. 13 8月, 2008 1 次提交
  29. 12 8月, 2008 1 次提交
  30. 10 8月, 2008 1 次提交