mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
boot: correct the default sequence of boot methods
The default sequence of boot methods is determined by alphabetical sorting during linkage. * efi_mgr must run before efi to be UEFI compliant * pxe should run as last resort Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
6b0f194648
commit
08c51a715a
4 changed files with 4 additions and 4 deletions
|
@ -377,7 +377,7 @@ static int bootflow_system(struct unit_test_state *uts)
|
|||
if (!IS_ENABLED(CONFIG_EFI_BOOTMGR))
|
||||
return -EAGAIN;
|
||||
ut_assertok(uclass_first_device_err(UCLASS_BOOTSTD, &bootstd));
|
||||
ut_assertok(device_bind(bootstd, DM_DRIVER_GET(bootmeth_efi_mgr),
|
||||
ut_assertok(device_bind(bootstd, DM_DRIVER_GET(bootmeth_3efi_mgr),
|
||||
"efi_mgr", 0, ofnode_null(), &dev));
|
||||
ut_assertok(device_probe(dev));
|
||||
sandbox_set_fake_efi_mgr_dev(dev, true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue