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. Jul 11, 2017
  3. Nov 20, 2015
  4. Aug 28, 2015
  5. Aug 13, 2015
  6. May 15, 2015
  7. Apr 30, 2015
  8. Oct 27, 2014
  9. Mar 04, 2014
  10. Jul 24, 2013
  11. Mar 11, 2013
    • Andreas Bießmann's avatar
      display_options:print_buffer: align ASCII print · efd7c114
      Andreas Bießmann authored
      
      This patch adds whitespace to the printed hex numbers to have an aligned ASCII
      printout at the end of the line.
      
      This changes for example the md output from:
      
      ---8<---
      OMAP3 Tricorder # md.l $loadaddr 5
      82000000: 30200109 20a4028c 90010000 08a00000    .. 0... ........
      82000010: 01010000    ....
      --->8---
      
      to
      
      ---8<---
      OMAP3 Tricorder # md.l $loadaddr 5
      82000000: 30200109 20a4028c 90010000 08a00000    .. 0... ........
      82000010: 01010000                               ....
      --->8---
      
      The cost of this is about 72 byte .text increase (tested with at91 build).
      
      Signed-off-by: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
      efd7c114
  12. Mar 01, 2013
  13. Jul 28, 2011
  14. Sep 13, 2010
  15. Aug 08, 2010
    • Mike Frysinger's avatar
      print_buffer: optimize & shrink · 64419e47
      Mike Frysinger authored
      
      Applying a little creative format string allows us to shrink the initial
      data read & display loop by only calling printf once.  Re-using the local
      data buffer to generate the string we want to display then allows us to
      output everything with just one printf call instead of multiple calls to
      the putc function.
      
      The local stack buffer needs increasing by 1 byte, but the resulting code
      shrink and speed up is worth it I think.
      
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      64419e47
  16. May 17, 2010
  17. May 05, 2010
  18. Apr 13, 2010
  19. Jul 09, 2008
  20. Jun 11, 2008
  21. Feb 20, 2007
  22. Jul 01, 2003
  23. Sep 08, 2002
  24. Aug 27, 2002
  25. Dec 28, 2000
  26. Dec 14, 2000
  27. Nov 12, 2000
Loading