Skip to content
Snippets Groups Projects
  1. May 07, 2018
    • Tom Rini's avatar
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini authored
      
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      83d290c5
  2. Sep 10, 2017
  3. Aug 17, 2017
  4. Jun 12, 2017
    • Heiko Schocher's avatar
      powerpc, 8xx: remove support for 8xx · 5b8e76c3
      Heiko Schocher authored
      
      There was for long time no activity in the 8xx area.
      We need to go further and convert to Kconfig, but it
      turned out, nobody is interested anymore in 8xx,
      so remove it (with a heavy heart, knowing that I remove
      here the root of U-Boot).
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      5b8e76c3
  5. Jan 21, 2017
    • Uri Mashiach's avatar
      status_led: Kconfig migration · 2d8d190c
      Uri Mashiach authored
      
      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: default avatarUri Mashiach <uri.mashiach@compulab.co.il>
      2d8d190c
  6. May 17, 2016
  7. Mar 14, 2016
  8. Jan 25, 2016
  9. Jan 14, 2016
  10. Jun 04, 2015
  11. Jul 22, 2014
  12. Jul 24, 2013
  13. Jun 26, 2013
    • Sascha Silbe's avatar
      Fix block device accesses beyond 2TiB · ff8fef56
      Sascha Silbe authored
      
      With CONFIG_SYS_64BIT_LBA, lbaint_t gets defined as a 64-bit type,
      which is required to represent block numbers for storage devices that
      exceed 2TiB (the block size usually is 512B), e.g. recent hard drives.
      
      For some obscure reason, the current U-Boot code uses lbaint_t for the
      number of blocks to read (a rather optimistic estimation of how RAM
      sizes will evolve), but not for the starting address. Trying to access
      blocks beyond the 2TiB boundary will simply wrap around and read a
      block within the 0..2TiB range.
      
      We now use lbaint_t for block start addresses, too. This required
      changes to all block drivers as the signature of block_read(),
      block_write() and block_erase() in block_dev_desc_t changed.
      
      Signed-off-by: default avatarSascha Silbe <t-uboot@infra-silbe.de>
      ff8fef56
  14. May 01, 2013
  15. Nov 02, 2012
  16. Oct 17, 2012
  17. Oct 15, 2012
  18. Sep 25, 2012
  19. Mar 18, 2012
  20. Mar 06, 2012
  21. Nov 03, 2011
    • Wolfgang Denk's avatar
      common/cmd_ide.c: fix GCC 4.6 build warnings · a2b92a65
      Wolfgang Denk authored
      
      Fix:
      cmd_ide.c: In function 'ide_ident':
      cmd_ide.c:988:6: warning: variable 'do_retry' set but not used
      [-Wunused-but-set-variable]
      
      Delete the unused variable.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      a2b92a65
    • Wolfgang Denk's avatar
      common/cmd_ide.c: CodingStyle cleanup · 34c202c7
      Wolfgang Denk authored
      
      Make file acceptable to checkpatch.
      
      This is only a basic clean up to the extend possible without any real
      changes to the source code. Warnings due to line over 80 characters
      were accepted because these affect only printf()s with user visible
      strings.  No attempts were made to fix warnings about volatile and
      externs - these need a more thorough cleanup.
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      34c202c7
  22. Oct 27, 2011
    • Marek Vasut's avatar
      GCC4.6: Squash warning in cmd_ide.c · 5bbe10dd
      Marek Vasut authored
      
      cmd_ide.c: In function ‘ide_read’:
      cmd_ide.c:1227:2: warning: format ‘%LX’ expects argument of type ‘long long
      unsigned int’, but argument 3 has type ‘lbaint_t’ [-Wformat]
      
      Signed-off-by: default avatarMarek Vasut <marek.vasut@gmail.com>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      Cc: Mike Frysinger <vapier@gentoo.org>
      5bbe10dd
Loading