Re: [U-Boot] [PATCH] rsa: reject images with unknown padding

2019-06-22 Thread Tom Rini
On Fri, Jun 14, 2019 at 01:43:38PM -0400, Patrick Doyle wrote: > Previously we would store NULL in info->padding and jump to an illegal > instruction if an unknown value for "padding" was specified in the > device tree. > > Signed-off-by: Patrick Doyle Applied to u-boot/master, thanks! -- Tom

[U-Boot] [PATCH] rsa: reject images with unknown padding

2019-06-14 Thread Patrick Doyle
Previously we would store NULL in info->padding and jump to an illegal instruction if an unknown value for "padding" was specified in the device tree. Signed-off-by: Patrick Doyle --- common/image-sig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/image-sig.c b/comm