Re: [PATCH] efi_loader: disk: allow blk devices even without UCLASS_PARTITION

2022-05-31 Thread AKASHI Takahiro
Hi Simon, On Thu, May 19, 2022 at 02:11:02PM +0900, AKASHI Takahiro wrote: > Hi Simon, > > On Mon, May 09, 2022 at 02:33:10PM +0900, AKASHI Takahiro wrote: > > Simon, > > > > On Thu, Apr 28, 2022 at 12:43:03PM +0200, Heinrich Schuchardt wrote: > > > On 4/28/22 06:49, AKASHI Takahiro wrote: > > >

Re: [PATCH] efi_loader: disk: allow blk devices even without UCLASS_PARTITION

2022-05-18 Thread AKASHI Takahiro
Hi Simon, On Mon, May 09, 2022 at 02:33:10PM +0900, AKASHI Takahiro wrote: > Simon, > > On Thu, Apr 28, 2022 at 12:43:03PM +0200, Heinrich Schuchardt wrote: > > On 4/28/22 06:49, AKASHI Takahiro wrote: > > > While GPT partition is mandated in UEFI specification, CONFIG_PARTITION is > > > seen opt

Re: [PATCH] efi_loader: disk: allow blk devices even without UCLASS_PARTITION

2022-05-08 Thread AKASHI Takahiro
Simon, On Thu, Apr 28, 2022 at 12:43:03PM +0200, Heinrich Schuchardt wrote: > On 4/28/22 06:49, AKASHI Takahiro wrote: > > While GPT partition is mandated in UEFI specification, CONFIG_PARTITION is > > seen optional under the current implementation. > > So modify efi_disk_rw_blocks() to allow acce

Re: [PATCH] efi_loader: disk: allow blk devices even without UCLASS_PARTITION

2022-04-28 Thread Mark Kettenis
> From: AKASHI Takahiro > Date: Thu, 28 Apr 2022 13:49:16 +0900 > > While GPT partition is mandated in UEFI specification, CONFIG_PARTITION is > seen optional under the current implementation. > So modify efi_disk_rw_blocks() to allow accepting UCLASS_BLK devices. > > Fixes: commit d97e98c887ed

Re: [PATCH] efi_loader: disk: allow blk devices even without UCLASS_PARTITION

2022-04-28 Thread Heinrich Schuchardt
On 4/28/22 06:49, AKASHI Takahiro wrote: While GPT partition is mandated in UEFI specification, CONFIG_PARTITION is seen optional under the current implementation. So modify efi_disk_rw_blocks() to allow accepting UCLASS_BLK devices. Fixes: commit d97e98c887ed ("efi_loader: disk: use udevice ins

[PATCH] efi_loader: disk: allow blk devices even without UCLASS_PARTITION

2022-04-27 Thread AKASHI Takahiro
While GPT partition is mandated in UEFI specification, CONFIG_PARTITION is seen optional under the current implementation. So modify efi_disk_rw_blocks() to allow accepting UCLASS_BLK devices. Fixes: commit d97e98c887ed ("efi_loader: disk: use udevice instead of blk_desc") Signed-off-by: AKASHI Ta