1. 21 6月, 2016 5 次提交
  2. 20 6月, 2016 32 次提交
  3. 19 6月, 2016 3 次提交
    • P
      SPL ext: cosmetic: correct error message in spl_load_image_ext() · 9ab165d8
      Petr Kulhavy 提交于
      Correct the error message in spl_load_image_ext() when image parsing
      fails. Instead of "ext4fs_read failed" print "failed to parse image
      header".
      Signed-off-by: NPetr Kulhavy <brain@jikos.cz>
      CC: Guillaume GARDET <guillaume.gardet@free.fr>
      CC: Tom Rini <trini@konsulko.com>
      9ab165d8
    • G
      fs: cbfs: Fix build of fs/cbfs/cbfs.c when building u-boot sandbox on x86 32-bit · 7a77e909
      Guillaume GARDET 提交于
      Fix the following build errors when building sandbox on x86 32-bit:
      
      	In file included from fs/cbfs/cbfs.c:8:0:
      	include/malloc.h:364:7: error: conflicting types for 'memset'
      	void* memset(void*, int, size_t);
      	^
      	In file included from include/compiler.h:123:0,
      			from include/cbfs.h:10,
      			from fs/cbfs/cbfs.c:7:
      	include/linux/string.h:78:15: note: previous declaration of 'memset' was here
      	extern void * memset(void *,int,__kernel_size_t);
      		^
      	In file included from fs/cbfs/cbfs.c:8:0:
      	include/malloc.h:365:7: error: conflicting types for 'memcpy'
      	void* memcpy(void*, const void*, size_t);
      	^
      	In file included from include/compiler.h:123:0,
      			from include/cbfs.h:10,
      			from fs/cbfs/cbfs.c:7:
      	include/linux/string.h:81:15: note: previous declaration of 'memcpy' was here
      	extern void * memcpy(void *,const void *,__kernel_size_t);
      		^
      	scripts/Makefile.build:280: recipe for target 'fs/cbfs/cbfs.o' failed
      Signed-off-by: NGuillaume GARDET <guillaume.gardet@free.fr>
      Cc: Tom Rini <trini@konsulko.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      7a77e909
    • S
      test/py: fix printenv signon message disable code · 7a8f8865
      Stephen Warren 提交于
      CONFIG_VERSION_VARIABLE isn't always defined, so we can't simply look up
      its value directly, or an exception will occur if it isn't defined.
      Instead, we must use .get() to supply a default value if the variable
      isn't defined.
      
      Fixes: da37f006 ("tests: py: disable main_signon check for printenv cmd")
      Acked-by: NHeiko Schocher <hs@denx.de>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      7a8f8865