Re: [PATCH v2 1/2] efi_loader: auto-generate boot option for each blkio device

2024-01-10 Thread Masahisa Kojima
Hi Heinrich, On Wed, 10 Jan 2024 at 22:53, Heinrich Schuchardt wrote: > > On 26.12.23 07:28, Masahisa Kojima wrote: > > Current efibootmgr auto-generates the boot option for all > > disks and partitions installing EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, > > while EDK II reference implementation auto-gen

Re: [PATCH v2 1/2] efi_loader: auto-generate boot option for each blkio device

2024-01-10 Thread Heinrich Schuchardt
On 26.12.23 07:28, Masahisa Kojima wrote: Current efibootmgr auto-generates the boot option for all disks and partitions installing EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, while EDK II reference implementation auto-generates the boot option for all devices installing EFI_BLOCK_IO_PROTOCOL with eliminat

Re: [PATCH v2 1/2] efi_loader: auto-generate boot option for each blkio device

2024-01-08 Thread Masahisa Kojima
Hi Ilias, On Thu, 28 Dec 2023 at 22:14, Ilias Apalodimas wrote: > > Kojima-san > > [...] > > > /** > > * try_load_entry() - try to load image for boot option > > * > > @@ -594,7 +638,6 @@ static efi_status_t try_load_entry(u16 n, efi_handle_t > > *handle, > > } > > > > if (lo.at

Re: [PATCH v2 1/2] efi_loader: auto-generate boot option for each blkio device

2023-12-28 Thread Ilias Apalodimas
Kojima-san [...] > /** > * try_load_entry() - try to load image for boot option > * > @@ -594,7 +638,6 @@ static efi_status_t try_load_entry(u16 n, efi_handle_t > *handle, > } > > if (lo.attributes & LOAD_OPTION_ACTIVE) { > - struct efi_device_path *file_path; >

[PATCH v2 1/2] efi_loader: auto-generate boot option for each blkio device

2023-12-25 Thread Masahisa Kojima
Current efibootmgr auto-generates the boot option for all disks and partitions installing EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, while EDK II reference implementation auto-generates the boot option for all devices installing EFI_BLOCK_IO_PROTOCOL with eliminating logical partitions. This commit modifie