Re: [U-Boot] [PATCH 1/1] blk: set log2blksz in blk_create_device()

2019-10-29 Thread Heinrich Schuchardt
On 10/30/19 2:49 AM, Simon Glass wrote: Hi Heinrich, On Fri, 25 Oct 2019 at 04:15, Heinrich Schuchardt wrote: The ext4 file system requires log2blksz to be set. So when setting the block size on the block descriptor we should fill this field too. This fixes a problem with EFI block devices p

Re: [U-Boot] [PATCH 1/1] blk: set log2blksz in blk_create_device()

2019-10-29 Thread Simon Glass
Hi Heinrich, On Fri, 25 Oct 2019 at 04:15, Heinrich Schuchardt wrote: > > The ext4 file system requires log2blksz to be set. So when setting the > block size on the block descriptor we should fill this field too. > > This fixes a problem with EFI block devices providing ext4 partitions, cf. > htt

[U-Boot] [PATCH 1/1] blk: set log2blksz in blk_create_device()

2019-10-25 Thread Heinrich Schuchardt
The ext4 file system requires log2blksz to be set. So when setting the block size on the block descriptor we should fill this field too. This fixes a problem with EFI block devices providing ext4 partitions, cf. https://lists.denx.de/pipermail/u-boot/2019-October/387702.html. Signed-off-by: Heinr