Re: [RFC PATCH v3 9/9] mkeficapsule: Add support for generating empty capsules

2022-01-31 Thread Sughosh Ganu
hi Ilias, On Fri, 21 Jan 2022 at 18:30, Ilias Apalodimas wrote: > > Hi Sughosh, > > On Thu, Jan 20, 2022 at 12:25:48AM +0530, Sughosh Ganu wrote: > > The Dependable Boot specification describes the structure of the > > firmware accept and revert capsules. These are empty capsules which > > are us

Re: [RFC PATCH v3 9/9] mkeficapsule: Add support for generating empty capsules

2022-01-23 Thread Masami Hiramatsu
Hi, 2022年1月24日(月) 11:08 AKASHI Takahiro : > > > > + memcpy(&header.capsule_guid, &capsule_guid, sizeof(efi_guid_t)); > > > > + header.header_size = sizeof(header); > > > > + header.flags = 0; > > > > + > > > > + if (fw_accept) { > > > > + header.capsule_image_size = si

Re: [RFC PATCH v3 9/9] mkeficapsule: Add support for generating empty capsules

2022-01-23 Thread AKASHI Takahiro
On Fri, Jan 21, 2022 at 12:18:38PM +0530, Sughosh Ganu wrote: > hi Takahiro, > > On Thu, 20 Jan 2022 at 07:43, AKASHI Takahiro > wrote: > > > > Hi Sughosh, > > > > From user's point of view, > > > > On Thu, Jan 20, 2022 at 12:25:48AM +0530, Sughosh Ganu wrote: > > > The Dependable Boot specificat

Re: [RFC PATCH v3 9/9] mkeficapsule: Add support for generating empty capsules

2022-01-21 Thread Ilias Apalodimas
Hi Sughosh, On Thu, Jan 20, 2022 at 12:25:48AM +0530, Sughosh Ganu wrote: > The Dependable Boot specification describes the structure of the > firmware accept and revert capsules. These are empty capsules which > are used for signalling the acceptance or rejection of the updated > firmware by the

Re: [RFC PATCH v3 9/9] mkeficapsule: Add support for generating empty capsules

2022-01-20 Thread Sughosh Ganu
hi Takahiro, On Thu, 20 Jan 2022 at 07:43, AKASHI Takahiro wrote: > > Hi Sughosh, > > From user's point of view, > > On Thu, Jan 20, 2022 at 12:25:48AM +0530, Sughosh Ganu wrote: > > The Dependable Boot specification describes the structure of the > > May we have a pointer or reference to it? Ok

Re: [RFC PATCH v3 9/9] mkeficapsule: Add support for generating empty capsules

2022-01-19 Thread AKASHI Takahiro
Hi Sughosh, >From user's point of view, On Thu, Jan 20, 2022 at 12:25:48AM +0530, Sughosh Ganu wrote: > The Dependable Boot specification describes the structure of the May we have a pointer or reference to it? > firmware accept and revert capsules. These are empty capsules which > are used for

[RFC PATCH v3 9/9] mkeficapsule: Add support for generating empty capsules

2022-01-19 Thread Sughosh Ganu
The Dependable Boot specification describes the structure of the firmware accept and revert capsules. These are empty capsules which are used for signalling the acceptance or rejection of the updated firmware by the OS. Add support for generating these empty capsules. Signed-off-by: Sughosh Ganu