mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-11 07:24:46 +00:00
sandbox: enable support for the unlz4 command
This does not work with sandbox at present. Fix it up to use map_sysmem() to convert an address to a pointer. Signed-off-by: Jonathan Liu <net147@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Fix conflict and reformat to 80cols: Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
18de1afd48
commit
d243b369e9
1 changed files with 3 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include <command.h>
|
||||
#include <env.h>
|
||||
#include <mapmem.h>
|
||||
#include <vsprintf.h>
|
||||
#include <u-boot/lz4.h>
|
||||
|
||||
|
@ -26,7 +27,8 @@ static int do_unlz4(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
return CMD_RET_USAGE;
|
||||
}
|
||||
|
||||
ret = ulz4fn((void *)src, src_len, (void *)dst, &dst_len);
|
||||
ret = ulz4fn(map_sysmem(src, 0), src_len, map_sysmem(dst, dst_len),
|
||||
&dst_len);
|
||||
if (ret) {
|
||||
printf("Uncompressed err :%d\n", ret);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue