Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-26 Thread Simon Glass
Hi Stefan, On 13 August 2017 at 17:01, Stefan Bruens wrote: > On Sonntag, 13. August 2017 23:36:57 CEST Simon Glass wrote: >> Hi Rob, >> >> On 10 August 2017 at 12:13, Rob Clark wrote: >> > On Sun, Aug 6, 2017 at 1:16 AM, Simon Glass wrote: >> >> Hi Rob, >> >> >> >> On 3 August 2017 at 13:36, R

Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-13 Thread Stefan Bruens
On Sonntag, 13. August 2017 23:36:57 CEST Simon Glass wrote: > Hi Rob, > > On 10 August 2017 at 12:13, Rob Clark wrote: > > On Sun, Aug 6, 2017 at 1:16 AM, Simon Glass wrote: > >> Hi Rob, > >> > >> On 3 August 2017 at 13:36, Rob Clark wrote: > >>> On Thu, Aug 3, 2017 at 3:10 PM, Brüns, Stefan

Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-13 Thread Simon Glass
Hi Rob, On 10 August 2017 at 12:13, Rob Clark wrote: > On Sun, Aug 6, 2017 at 1:16 AM, Simon Glass wrote: >> Hi Rob, >> >> On 3 August 2017 at 13:36, Rob Clark wrote: >>> On Thu, Aug 3, 2017 at 3:10 PM, Brüns, Stefan >>> wrote: On Donnerstag, 3. August 2017 18:54:30 CEST Rob Clark wrote:

Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-10 Thread Rob Clark
On Sun, Aug 6, 2017 at 1:16 AM, Simon Glass wrote: > Hi Rob, > > On 3 August 2017 at 13:36, Rob Clark wrote: >> On Thu, Aug 3, 2017 at 3:10 PM, Brüns, Stefan >> wrote: >>> On Donnerstag, 3. August 2017 18:54:30 CEST Rob Clark wrote: Needed to support efi file protocol. The fallback.efi loa

Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-06 Thread Rob Clark
On Sun, Aug 6, 2017 at 1:16 AM, Simon Glass wrote: > Hi Rob, > > On 3 August 2017 at 13:36, Rob Clark wrote: >> On Thu, Aug 3, 2017 at 3:10 PM, Brüns, Stefan >> wrote: >>> On Donnerstag, 3. August 2017 18:54:30 CEST Rob Clark wrote: Needed to support efi file protocol. The fallback.efi loa

Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-05 Thread Simon Glass
Hi Rob, On 3 August 2017 at 13:36, Rob Clark wrote: > On Thu, Aug 3, 2017 at 3:10 PM, Brüns, Stefan > wrote: >> On Donnerstag, 3. August 2017 18:54:30 CEST Rob Clark wrote: >>> Needed to support efi file protocol. The fallback.efi loader wants >>> to be able to read the contents of the /EFI dir

Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-03 Thread Rob Clark
On Thu, Aug 3, 2017 at 3:10 PM, Brüns, Stefan wrote: > On Donnerstag, 3. August 2017 18:54:30 CEST Rob Clark wrote: >> Needed to support efi file protocol. The fallback.efi loader wants >> to be able to read the contents of the /EFI directory to find an OS >> to boot. >> >> Currently only impleme

Re: [U-Boot] [PATCH] fs: add fs_readdir()

2017-08-03 Thread Brüns , Stefan
On Donnerstag, 3. August 2017 18:54:30 CEST Rob Clark wrote: > Needed to support efi file protocol. The fallback.efi loader wants > to be able to read the contents of the /EFI directory to find an OS > to boot. > > Currently only implemented for FAT, but that is all that UEFI is > required to sup

[U-Boot] [PATCH] fs: add fs_readdir()

2017-08-03 Thread Rob Clark
Needed to support efi file protocol. The fallback.efi loader wants to be able to read the contents of the /EFI directory to find an OS to boot. Currently only implemented for FAT, but that is all that UEFI is required to support. Signed-off-by: Rob Clark --- fs/fat/fat.c | 59