Re: [PATCH] tools: mkimage: Avoid ENODATA in host tools

2022-05-05 Thread Tom Rini
On Tue, Apr 26, 2022 at 07:24:38PM +0200, Mark Kettenis wrote: > ENODATA isn't part of POSIX. Use EINVAL instead. > > Signed-off-by: Mark Kettenis > Reviewed-by: Tom Rini Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

Re: [PATCH] tools: mkimage: Avoid ENODATA in host tools

2022-04-26 Thread Tom Rini
On Tue, Apr 26, 2022 at 07:24:38PM +0200, Mark Kettenis wrote: > ENODATA isn't part of POSIX. Use EINVAL instead. > > Signed-off-by: Mark Kettenis Fixes: 6e052d1cbafb ("mkimage: add public key for image pre-load stage") Reviewed-by: Tom Rini -- Tom signature.asc Description: PGP signature

[PATCH] tools: mkimage: Avoid ENODATA in host tools

2022-04-26 Thread Mark Kettenis
ENODATA isn't part of POSIX. Use EINVAL instead. Signed-off-by: Mark Kettenis --- tools/image-host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/image-host.c b/tools/image-host.c index ab6f756cf1..698adfb3e1 100644 --- a/tools/image-host.c +++ b/tools/image-host.c