diff options
| author | Simon Glass <[email protected]> | 2024-11-07 14:31:43 -0700 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2024-11-09 10:00:38 +0100 |
| commit | 9fd623afede63a7049b498bbc285f3555eb2bf26 (patch) | |
| tree | d4e2dcdd0604cc60223fc0a314806cea5d60e4ca /test | |
| parent | efe9bd4a088c958eefaaf39bb83320871669662e (diff) | |
efi: Move default filename to a function
Use a function to obtain the device EFI filename, so that we can control
how sandbox behaves.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'test')
| -rw-r--r-- | test/boot/bootflow.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/boot/bootflow.c b/test/boot/bootflow.c index 2f859c40adb..372bbab6b8d 100644 --- a/test/boot/bootflow.c +++ b/test/boot/bootflow.c @@ -12,7 +12,7 @@ #include <bootstd.h> #include <cli.h> #include <dm.h> -#include <efi_default_filename.h> +#include <efi.h> #include <expo.h> #ifdef CONFIG_SANDBOX #include <asm/test.h> @@ -184,8 +184,9 @@ static int bootflow_cmd_scan_e(struct unit_test_state *uts) ut_assert_nextline(" 3 efi media mmc 0 mmc1.bootdev.whole "); ut_assert_nextline(" ** No partition found, err=-2: No such file or directory"); ut_assert_nextline(" 4 extlinux ready mmc 1 mmc1.bootdev.part_1 /extlinux/extlinux.conf"); - ut_assert_nextline(" 5 efi fs mmc 1 mmc1.bootdev.part_1 /EFI/BOOT/" - BOOTEFI_NAME); + ut_assert_nextline( + " 5 efi fs mmc 1 mmc1.bootdev.part_1 /EFI/BOOT/%s", + efi_get_basename()); ut_assert_skip_to_line("Scanning bootdev 'mmc0.bootdev':"); ut_assert_skip_to_line( |
