Skip to content
Snippets Groups Projects
  1. Jul 23, 2009
  2. Jul 22, 2009
  3. Jun 12, 2009
    • Wolfgang Denk's avatar
      General help message cleanup · a89c33db
      Wolfgang Denk authored
      
      Many of the help messages were not really helpful; for example, many
      commands that take no arguments would not print a correct synopsis
      line, but "No additional help available." which is not exactly wrong,
      but not helpful either.
      
      Commit ``Make "usage" messages more helpful.'' changed this
      partially. But it also became clear that lots of "Usage" and "Help"
      messages (fields "usage" and "help" in struct cmd_tbl_s respective)
      were actually redundant.
      
      This patch cleans this up - for example:
      
      Before:
      	=> help dtt
      	dtt - Digital Thermometer and Thermostat
      
      	Usage:
      	dtt         - Read temperature from digital thermometer and thermostat.
      
      After:
      	=> help dtt
      	dtt - Read temperature from Digital Thermometer and Thermostat
      
      	Usage:
      	dtt
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      a89c33db
  4. Apr 04, 2009
  5. Feb 21, 2009
  6. Jan 28, 2009
  7. Jan 27, 2009
    • Matthias Fuchs's avatar
      Fix gunzip in case of insufficient output buffer · 107b801c
      Matthias Fuchs authored
      
      U-Boot's gunzip() function does not handle the return code
      of zlib's inflate() function correctly. gunzip() is implemented
      to uncompress all input data in one run. So the correct return
      code for the good case is Z_STREAM_END. In case of insufficient
      output buffer memory inflate returns Z_OK. For gunzip() this
      is an error.
      
      It also makes sense to me to call inflateEnd() also in case
      of an error.
      
      Signed-off-by: default avatarMatthias Fuchs <matthias.fuchs@esd-electronics.com>
      107b801c
  8. Oct 29, 2008
  9. Oct 28, 2008
  10. Oct 18, 2008
  11. Oct 13, 2008
  12. Sep 12, 2008
  13. Sep 09, 2008
  14. Sep 08, 2008
  15. Sep 06, 2008
  16. Aug 26, 2008
  17. Aug 18, 2008
    • Kumar Gala's avatar
      Clean up usage of icache_disable/dcache_disable · fcd69a1a
      Kumar Gala authored
      
      There is no point in disabling the icache on 7xx/74xx/86xx parts and not
      also flushing the icache.  All callers of invalidate_l1_instruction_cache()
      call icache_disable() right after.  Make it so icache_disable() calls
      invalidate_l1_instruction_cache() for us.
      
      Also, dcache_disable() already calls dcache_flush() so there is no point
      in the explicit calls of dcache_flush().
      
      Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
      fcd69a1a
  18. Aug 11, 2008
  19. Aug 09, 2008
  20. Aug 06, 2008
  21. Jul 31, 2008
  22. Jul 29, 2008
  23. Jul 15, 2008
  24. Jul 10, 2008
    • Markus Klotzbuecher's avatar
      USB: shutdown USB before booting · 3d71c81a
      Markus Klotzbuecher authored
      
      This patch fixes a potentially serious issue related to USB which was
      discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
      ARM920T. Martin wrote:
      
        Turn off USB to prevent the host controller from writing to the
        SDRAM while Linux is booting. This could happen, because the HCCA
        (Host Controller Communication Area) lies within the SDRAM and the
        host controller writes continously to this area (as busmaster!), for
        example to increase the HccaFrameNumber variable, which happens
        every 1 ms.
      
      This is a slightly modified version of the patch in order to shutdown
      USB when booting on all architectures.
      
      Signed-off-by: default avatarMarkus Klotzbuecher <mk@denx.de>
      3d71c81a
    • Wolfgang Denk's avatar
      Fix some more print() format errors. · 06c53bea
      Wolfgang Denk authored
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      06c53bea
Loading