mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
bootstd: Always create the EFI bootmgr bootmeth
Now that we can separate this out from the normal bootmeths, update the code to create it always. We cannot rely on the device tree to create this, since the EFI project is quite opposed to having anything in the device tree that helps U-Boot with its processing. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -133,12 +133,7 @@ int dm_scan_other(bool pre_reloc_only)
|
||||
return 0;
|
||||
|
||||
for (i = 0; i < n_ents; i++, drv++) {
|
||||
/*
|
||||
* Disable EFI Manager for now as no one uses it so it is
|
||||
* confusing
|
||||
*/
|
||||
if (drv->id == UCLASS_BOOTMETH &&
|
||||
strcmp("efi_mgr_bootmeth", drv->name)) {
|
||||
if (drv->id == UCLASS_BOOTMETH) {
|
||||
const char *name = drv->name;
|
||||
|
||||
if (!strncmp("bootmeth_", name, 9))
|
||||
|
Reference in New Issue
Block a user