Re: [PATCH 1/1] boot: set correct block device name in set_efi_bootdev()

2024-08-08 Thread Simon Glass
Hi Heinrich, On Wed, 7 Aug 2024 at 14:52, Simon Glass wrote: > > Hi Heinrich, > > On Wed, 7 Aug 2024 at 08:39, Heinrich Schuchardt > wrote: > > > > On 07.08.24 16:36, Simon Glass wrote: > > > On Tue, 6 Aug 2024 at 18:13, Heinrich Schuchardt > > > wrote: > > >> > > >> For SATA devices the class

Re: [PATCH 1/1] boot: set correct block device name in set_efi_bootdev()

2024-08-07 Thread Simon Glass
Hi Heinrich, On Wed, 7 Aug 2024 at 08:39, Heinrich Schuchardt wrote: > > On 07.08.24 16:36, Simon Glass wrote: > > On Tue, 6 Aug 2024 at 18:13, Heinrich Schuchardt > > wrote: > >> > >> For SATA devices the class name is 'ahci' but the block device name is > >> 'sata'. > >> > >> Use function blk_

Re: [PATCH 1/1] boot: set correct block device name in set_efi_bootdev()

2024-08-07 Thread Heinrich Schuchardt
On 07.08.24 16:36, Simon Glass wrote: On Tue, 6 Aug 2024 at 18:13, Heinrich Schuchardt wrote: For SATA devices the class name is 'ahci' but the block device name is 'sata'. Use function blk_get_uclass_name() to retrieve the correct string. Signed-off-by: Heinrich Schuchardt --- boot/bootm

Re: [PATCH 1/1] boot: set correct block device name in set_efi_bootdev()

2024-08-07 Thread Simon Glass
On Tue, 6 Aug 2024 at 18:13, Heinrich Schuchardt wrote: > > For SATA devices the class name is 'ahci' but the block device name is > 'sata'. > > Use function blk_get_uclass_name() to retrieve the correct string. > > Signed-off-by: Heinrich Schuchardt > --- > boot/bootmeth_efi.c | 7 +++ > 1

Re: [PATCH 1/1] boot: set correct block device name in set_efi_bootdev()

2024-08-06 Thread Ilias Apalodimas
On Wed, 7 Aug 2024 at 03:13, Heinrich Schuchardt wrote: > > For SATA devices the class name is 'ahci' but the block device name is > 'sata'. > > Use function blk_get_uclass_name() to retrieve the correct string. > > Signed-off-by: Heinrich Schuchardt > --- > boot/bootmeth_efi.c | 7 +++ > 1

Re: [PATCH 1/1] boot: set correct block device name in set_efi_bootdev()

2024-08-06 Thread Mattijs Korpershoek
Hi Heinrich, Thank you for the patch. On mer., août 07, 2024 at 02:13, Heinrich Schuchardt wrote: > For SATA devices the class name is 'ahci' but the block device name is > 'sata'. > > Use function blk_get_uclass_name() to retrieve the correct string. > > Signed-off-by: Heinrich Schuchardt R

[PATCH 1/1] boot: set correct block device name in set_efi_bootdev()

2024-08-06 Thread Heinrich Schuchardt
For SATA devices the class name is 'ahci' but the block device name is 'sata'. Use function blk_get_uclass_name() to retrieve the correct string. Signed-off-by: Heinrich Schuchardt --- boot/bootmeth_efi.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/boot/bootmeth_e