Re: [RFC 06/14] efi_loader: capsule: add capsule_on_disk support

2020-03-30 Thread AKASHI Takahiro
On Thu, Mar 19, 2020 at 06:08:15PM +0100, Heinrich Schuchardt wrote: > On 3/18/20 9:55 AM, Heinrich Schuchardt wrote: > > On 3/17/20 3:12 AM, AKASHI Takahiro wrote: > >> Capsule data can be loaded into the system either via UpdateCapsule > >> runtime service or files on a file system (of boot devic

Re: [RFC 06/14] efi_loader: capsule: add capsule_on_disk support

2020-03-19 Thread Heinrich Schuchardt
On 3/18/20 9:55 AM, Heinrich Schuchardt wrote: > On 3/17/20 3:12 AM, AKASHI Takahiro wrote: >> Capsule data can be loaded into the system either via UpdateCapsule >> runtime service or files on a file system (of boot device). >> The latter case is called "capsules on disk", and actual updates will

Re: [RFC 06/14] efi_loader: capsule: add capsule_on_disk support

2020-03-18 Thread Heinrich Schuchardt
On 3/17/20 3:12 AM, AKASHI Takahiro wrote: Capsule data can be loaded into the system either via UpdateCapsule runtime service or files on a file system (of boot device). The latter case is called "capsules on disk", and actual updates will take place at the next boot time. In this commit, we wi

[RFC 06/14] efi_loader: capsule: add capsule_on_disk support

2020-03-16 Thread AKASHI Takahiro
Capsule data can be loaded into the system either via UpdateCapsule runtime service or files on a file system (of boot device). The latter case is called "capsules on disk", and actual updates will take place at the next boot time. In this commit, we will support capsule on disk mechanism. Please