diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2023-11-21 10:29:46 +0900 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-12-17 13:04:54 +0100 |
commit | 7017fc54a5bccd95bebaf371bfa3098fcf84068a (patch) | |
tree | 27f3409063918d0b50fd22e2cba3e23909ebc98b /boot/bootmeth_efi.c | |
parent | 01adf0a408e34a24f7471ff67f3defdeec4c56f3 (diff) | |
download | u-boot-7017fc54a5bccd95bebaf371bfa3098fcf84068a.tar.gz u-boot-7017fc54a5bccd95bebaf371bfa3098fcf84068a.tar.bz2 u-boot-7017fc54a5bccd95bebaf371bfa3098fcf84068a.zip |
bootmeth: use efi_loader interfaces instead of bootefi command
Now that efi_loader subsystem provides interfaces that are equivalent
with bootefi command, we can replace command invocations with APIs.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Diffstat (limited to 'boot/bootmeth_efi.c')
-rw-r--r-- | boot/bootmeth_efi.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/boot/bootmeth_efi.c b/boot/bootmeth_efi.c index 9ba7734911..d46bff51d8 100644 --- a/boot/bootmeth_efi.c +++ b/boot/bootmeth_efi.c @@ -413,7 +413,6 @@ static int distro_efi_read_bootflow(struct udevice *dev, struct bootflow *bflow) static int distro_efi_boot(struct udevice *dev, struct bootflow *bflow) { ulong kernel, fdt; - char cmd[50]; int ret; kernel = env_get_hex("kernel_addr_r", 0); @@ -442,12 +441,7 @@ static int distro_efi_boot(struct udevice *dev, struct bootflow *bflow) fdt = env_get_hex("fdt_addr_r", 0); } - /* - * At some point we can add a real interface to bootefi so we can call - * this directly. For now, go through the CLI, like distro boot. - */ - snprintf(cmd, sizeof(cmd), "bootefi %lx %lx", kernel, fdt); - if (run_command(cmd, 0)) + if (efi_binary_run(map_sysmem(kernel, 0), 0, map_sysmem(fdt, 0))) return log_msg_ret("run", -EINVAL); return 0; |