From: Heinrich Schuchardt Date: Sat, 20 Nov 2021 13:49:18 +0000 (+0100) Subject: sandbox: poweroff in efi_system_reset() X-Git-Tag: v2022.01~34^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a001e0f3d516d0c626375ca934438596a94702d;p=platform%2Fkernel%2Fu-boot.git sandbox: poweroff in efi_system_reset() efi_system_reset() should exit if called with EFI_RESET_SHUTDOWN. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index a74f5ec..13b0731 100644 --- a/arch/sandbox/cpu/start.c +++ b/arch/sandbox/cpu/start.c @@ -434,8 +434,10 @@ void __efi_runtime EFIAPI efi_reset_system( efi_status_t reset_status, unsigned long data_size, void *reset_data) { - os_fd_restore(); - os_relaunch(os_argv); + if (reset_type == EFI_RESET_SHUTDOWN) + sandbox_exit(); + else + sandbox_reset(); } void sandbox_reset(void)