diff options
author | Heinrich Schuchardt | 2024-02-12 17:18:37 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2024-02-28 14:38:47 +0100 |
commit | ee446e15fb3da69076dcef1e14bf5d8e4c7a6218 (patch) | |
tree | 6d01c8c7c3df000f0500ed2707d0bee94532386c /lib/efi_loader | |
parent | c9f368b597a02f9919cb0c1c03e6b231129e9262 (diff) |
efi_driver: provide SBI based runtime system reset
On RISC-V systems system the Supervisory Binary Interface provides system
reset and poweroff. Use it at EFI runtime.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'lib/efi_loader')
-rw-r--r-- | lib/efi_loader/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index db5571de1d9..a7c3e05c13a 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -366,7 +366,7 @@ config EFI_HAVE_RUNTIME_RESET bool default y depends on ARCH_BCM283X || FSL_LAYERSCAPE || PSCI_RESET || \ - SANDBOX || SYSRESET_X86 + SANDBOX || SYSRESET_SBI || SYSRESET_X86 config EFI_GRUB_ARM32_WORKAROUND bool "Workaround for GRUB on 32bit ARM" |