Re: [PATCH 3/4] tools: add fdtsig command

2021-05-13 Thread AKASHI Takahiro
On Thu, May 13, 2021 at 07:23:43AM +0200, Heinrich Schuchardt wrote: > On 5/12/21 6:57 AM, AKASHI Takahiro wrote: > > This command allows us to add a certificate (or public key) to dtb blob: > > { > > signature { > > capsule-key = "..."; > > }; > > } > > > > The value is actual

Re: [PATCH 3/4] tools: add fdtsig command

2021-05-12 Thread Heinrich Schuchardt
On 5/12/21 6:57 AM, AKASHI Takahiro wrote: This command allows us to add a certificate (or public key) to dtb blob: { signature { capsule-key = "..."; }; } The value is actually a signature list in terms of UEFI specificaion, and used in verifying UEFI capsules.

[PATCH 3/4] tools: add fdtsig command

2021-05-11 Thread AKASHI Takahiro
This command allows us to add a certificate (or public key) to dtb blob: { signature { capsule-key = "..."; }; } The value is actually a signature list in terms of UEFI specificaion, and used in verifying UEFI capsules. The code was originally developed by Sughosh