Re: [PATCH] sandbox: enable support for the unlz4 command

2024-07-15 Thread Simon Glass
On Sat, 25 May 2024 at 02:11, Jonathan Liu wrote: > > 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 > --- > cmd/unlz4.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > Reviewed-by:

Re: [PATCH] sandbox: enable support for the unlz4 command

2024-05-29 Thread Simon Glass
On Sat, 25 May 2024 at 02:11, Jonathan Liu wrote: > > 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 > --- > cmd/unlz4.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > Reviewed-by:

[PATCH] sandbox: enable support for the unlz4 command

2024-05-25 Thread Jonathan Liu
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 --- cmd/unlz4.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/unlz4.c b/cmd/unlz4.c index 5f20838e899..4b66794a72c 100644 ---