1. 09 8月, 2010 13 次提交
  2. 08 8月, 2010 3 次提交
  3. 07 8月, 2010 1 次提交
  4. 06 8月, 2010 1 次提交
  5. 04 8月, 2010 3 次提交
    • W
      Rename getenv_r() into getenv_f() · cdb74977
      Wolfgang Denk 提交于
      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: NWolfgang Denk <wd@denx.de>
      Acked-by: NDetlev Zundel <dzu@denx.de>
      cdb74977
    • M
      bootm: fix pointer warning with lzma · 78e1e846
      Mike Frysinger 提交于
      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: NMike Frysinger <vapier@gentoo.org>
      78e1e846
    • W
      36448c60
  6. 02 8月, 2010 3 次提交
  7. 30 7月, 2010 1 次提交
  8. 27 7月, 2010 15 次提交