From: Heinrich Schuchardt Date: Tue, 16 Oct 2018 05:44:53 +0000 (+0200) Subject: efi_loader: implement EFI_RESET_SHUTDOWN at boot time X-Git-Tag: v2019.01-rc1~9^2~57 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e706ed7f5b291282e8747e65c2f2d0e4f8ef5e03;p=oweals%2Fu-boot.git efi_loader: implement EFI_RESET_SHUTDOWN at boot time Allow an EFI application to shut down the system. If EFI_RESET_SHUTDOWN is issued call do_poweroff(). Signed-off-by: Heinrich Schuchardt Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c index f059dc97fd..abcf03c5a4 100644 --- a/lib/efi_loader/efi_runtime.c +++ b/lib/efi_loader/efi_runtime.c @@ -141,7 +141,9 @@ static void EFIAPI efi_reset_system_boottime( do_reset(NULL, 0, 0, NULL); break; case EFI_RESET_SHUTDOWN: - /* We don't have anything to map this to */ +#ifdef CONFIG_CMD_POWEROFF + do_poweroff(NULL, 0, 0, NULL); +#endif break; }