1. 10 7月, 2012 37 次提交
  2. 09 7月, 2012 3 次提交
    • W
      Revert "arm: bugfix: save_boot_params_default accesses uninitalized stack when -O0" · 18277f70
      Wolfgang Denk 提交于
      This reverts commit fa042186.
      It causes build warnings like this:
      cpu.c:48:1: warning: -fstack-usage not supported for this target
      [enabled by default]
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      18277f70
    • S
      fdt: send all dtc output to stderr · 58e22f8a
      Stephen Warren 提交于
      Commit 896bbb53 "fdt: avoid bad MAKEALL status" added logic to capture
      the result code from dtc by echoing $? to stdout and capturing it using
      $(). However, dtc emits some diagnostics to stderr and some to stdout.
      The diagnostics send to stdout ended up getting captured via $() rather
      than being echo'd to the user. This caused those diagnostics to be passed
      to the exit command, which would then fail with the following cryptic
      error message:
      
          /bin/sh: line 1: exit: too many arguments
      
      Solve this by redirecting all dtc output to stderr so that $() does not
      capture it. This allows the user to see the actual error message from dtc.
      
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      Cc: albert.u.boot@aribaud.net
      Cc: Tom Warren <twarren@nvidia.com>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      58e22f8a
    • K
      ext2fs: fix warning: 'blocknxt' may be used uninitialized · b8032734
      Kim Phillips 提交于
      This warning was introduced in 436da3cd "ext2load: increase read
      speed":
      
      ext2fs.c: In function 'ext2fs_read_file':
      ext2fs.c:458:19: warning: 'blocknxt' may be used uninitialized in this function [-Wuninitialized]
      
      this change makes it go away.
      
      Cc: Eric Nelson <eric.nelson@boundarydevices.com>
      Cc: Thierry Reding <thierry.reding@avionic-design.de>
      Cc: Jason Cooper <u-boot@lakedaemon.net>
      Cc: Andreas Bießmann <andreas.devel@googlemail.com>
      Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
      Signed-off-by: NKim Phillips <kim.phillips@freescale.com>
      b8032734