Skip to content
Snippets Groups Projects
  1. Aug 10, 2010
  2. Aug 08, 2010
  3. Aug 07, 2010
  4. Aug 06, 2010
  5. Aug 05, 2010
  6. Aug 03, 2010
    • Wolfgang Denk's avatar
      Rename getenv_r() into getenv_f() · cdb74977
      Wolfgang Denk authored
      
      While running from flash, i. e. before relocation, we have only a
      limited C runtime environment without writable data segment. In this
      phase, some configurations (for example with environment in EEPROM)
      must not use the normal getenv(), but a special function.  This
      function had been called getenv_r(), with the idea that the "_r"
      suffix would mean the same as in the _r_eentrant versions of some of
      the C library functions (for example getdate vs. getdate_r, getgrent
      vs. getgrent_r, etc.).
      
      Unfortunately this was a misleading name, as in U-Boot the "_r"
      generally means "running from RAM", i. e. _after_ relocation.
      
      To avoid confusion, rename into getenv_f() [as "running from flash"]
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      Acked-by: default avatarDetlev Zundel <dzu@denx.de>
      cdb74977
    • Mike Frysinger's avatar
      bootm: fix pointer warning with lzma · 78e1e846
      Mike Frysinger authored
      
      Avoid warning:
      cmd_bootm.c: In function 'bootm_load_os':
      cmd_bootm.c:394: warning: passing argument 2 of
      	'lzmaBuffToBuffDecompress' from incompatible pointer type
      
      For 32 bit systems, this change shouldn't make a difference to code size
      since sizeof(size_t) and sizeof(unsigned int) are equal.  But it does fix
      the warning.
      
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      78e1e846
    • Wolfgang Denk's avatar
  7. Aug 01, 2010
  8. Jul 29, 2010
  9. Jul 26, 2010
Loading