From d243b369e95139f77d04007755a4af42a0a03b30 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Sat, 25 May 2024 18:10:53 +1000 Subject: [PATCH] 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 Reviewed-by: Simon Glass Fix conflict and reformat to 80cols: Signed-off-by: Simon Glass --- cmd/unlz4.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/unlz4.c b/cmd/unlz4.c index fc5200117a..2eadc753e6 100644 --- a/cmd/unlz4.c +++ b/cmd/unlz4.c @@ -6,6 +6,7 @@ #include #include +#include #include #include @@ -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; -- 2.39.5