Re: [U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-09-11 Thread AKASHI Takahiro
On Wed, Sep 11, 2019 at 07:31:31PM +0200, Heinrich Schuchardt wrote: > On 9/11/19 8:16 AM, AKASHI Takahiro wrote: > >Heinrich, > > > >On Fri, Aug 23, 2019 at 09:04:21AM +0900, AKASHI Takahiro wrote: > >>On Thu, Aug 22, 2019 at 12:52:41PM +0200, Heinrich Schuchardt wrote: > >>>On 8/22/19 11:11 AM, M

Re: [U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-09-11 Thread Heinrich Schuchardt
On 9/11/19 8:16 AM, AKASHI Takahiro wrote: Heinrich, On Fri, Aug 23, 2019 at 09:04:21AM +0900, AKASHI Takahiro wrote: On Thu, Aug 22, 2019 at 12:52:41PM +0200, Heinrich Schuchardt wrote: On 8/22/19 11:11 AM, Mark Kettenis wrote: From: AKASHI Takahiro Date: Thu, 22 Aug 2019 17:06:25 +0900 Cu

Re: [U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-09-10 Thread AKASHI Takahiro
Heinrich, On Fri, Aug 23, 2019 at 09:04:21AM +0900, AKASHI Takahiro wrote: > On Thu, Aug 22, 2019 at 12:52:41PM +0200, Heinrich Schuchardt wrote: > > On 8/22/19 11:11 AM, Mark Kettenis wrote: > > >>From: AKASHI Takahiro > > >>Date: Thu, 22 Aug 2019 17:06:25 +0900 > > >> > > >>Currently, a whole d

Re: [U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-08-22 Thread AKASHI Takahiro
On Thu, Aug 22, 2019 at 12:52:41PM +0200, Heinrich Schuchardt wrote: > On 8/22/19 11:11 AM, Mark Kettenis wrote: > >>From: AKASHI Takahiro > >>Date: Thu, 22 Aug 2019 17:06:25 +0900 > >> > >>Currently, a whole disk without any partitions is not associated > >>with EFI_SIMPLE_FILE_SYSTEM_PROTOCOL. S

Re: [U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-08-22 Thread Heinrich Schuchardt
On 8/22/19 11:11 AM, Mark Kettenis wrote: From: AKASHI Takahiro Date: Thu, 22 Aug 2019 17:06:25 +0900 Currently, a whole disk without any partitions is not associated with EFI_SIMPLE_FILE_SYSTEM_PROTOCOL. So even if it houses FAT file system, there is a chance that we may not be able to access

Re: [U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-08-22 Thread Mark Kettenis
> From: AKASHI Takahiro > Date: Thu, 22 Aug 2019 17:06:25 +0900 > > Currently, a whole disk without any partitions is not associated > with EFI_SIMPLE_FILE_SYSTEM_PROTOCOL. So even if it houses FAT > file system, there is a chance that we may not be able to access > it, particularly, when accesse

[U-Boot] [PATCH] efi_loader: disk: install file system protocol to a whole disk

2019-08-22 Thread AKASHI Takahiro
Currently, a whole disk without any partitions is not associated with EFI_SIMPLE_FILE_SYSTEM_PROTOCOL. So even if it houses FAT file system, there is a chance that we may not be able to access it, particularly, when accesses are to be attempted after searching that protocol against a device handle.