diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-11 10:59:08 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-15 00:51:51 +0100 |
commit | 1064f2ef03c7fbed15119403c65f1de0de7f7b6d (patch) | |
tree | f56a7615b03b0064df53a5cbe79395b2ec2edb57 | |
parent | 55111c5052b3a6b6d26daacc1950e30a2c3aa55f (diff) | |
download | u-boot-1064f2ef03c7fbed15119403c65f1de0de7f7b6d.tar.gz |
efi_selftest: enable CONFIG_CMD_POWEROFF
For automating testing we should be able to power off the test system.
The implementation of EFI_RESET_SHUTDOWN requires the do_poweroff()
function which is only available if CONFIG_CMD_POWEROFF=y.
Enable CONFIG_CMD_POWEROFF if PSCI reset is available.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_selftest/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_selftest/Kconfig b/lib/efi_selftest/Kconfig index d20f5899af..478140330b 100644 --- a/lib/efi_selftest/Kconfig +++ b/lib/efi_selftest/Kconfig @@ -3,6 +3,7 @@ config CMD_BOOTEFI_SELFTEST depends on CMD_BOOTEFI imply FAT imply FAT_WRITE + imply CMD_POWEROFF if PSCI_RESET || SYSRESET_PSCI help This adds a UEFI test application to U-Boot that can be executed via the 'bootefi selftest' command. It provides extended tests of |