Re: [RFC 7/8] efi_loader: create EFI BOOTDEV

2025-05-02 Thread Ilias Apalodimas
Hi Heinrich, [...] >>> +static const struct udevice_id efi_bootdev_ids[] = { >>> + { .compatible = "u-boot,bootdev-efi" }, >>> + { } >>> +}; >>> + >>> +U_BOOT_DRIVER(efi_bootdev) = { >>> + .name = "efi_bootdev", >>> + .id = UCLASS_BOOTDEV, >>> +

Re: [RFC 7/8] efi_loader: create EFI BOOTDEV

2025-04-23 Thread Heinrich Schuchardt
On 23.04.25 14:28, Simon Glass wrote: Hi Heinrich, On Mon, 21 Apr 2025 at 10:26, Heinrich Schuchardt wrote: Create a bootdev device for the EFI boot manager. Signed-off-by: Heinrich Schuchardt --- include/dm/uclass-id.h | 1 + lib/efi_loader/Makefile | 1 + lib/efi_loader

Re: [RFC 7/8] efi_loader: create EFI BOOTDEV

2025-04-23 Thread Simon Glass
Hi Heinrich, On Mon, 21 Apr 2025 at 10:26, Heinrich Schuchardt wrote: > > Create a bootdev device for the EFI boot manager. > > Signed-off-by: Heinrich Schuchardt > --- > include/dm/uclass-id.h | 1 + > lib/efi_loader/Makefile | 1 + > lib/efi_loader/efi_bootdev.c | 102 +

[RFC 7/8] efi_loader: create EFI BOOTDEV

2025-04-21 Thread Heinrich Schuchardt
Create a bootdev device for the EFI boot manager. Signed-off-by: Heinrich Schuchardt --- include/dm/uclass-id.h | 1 + lib/efi_loader/Makefile | 1 + lib/efi_loader/efi_bootdev.c | 102 +++ 3 files changed, 104 insertions(+) create mode 100644 lib/