mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
1064f2ef03
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>
10 lines
330 B
Text
10 lines
330 B
Text
config CMD_BOOTEFI_SELFTEST
|
|
bool "UEFI unit tests"
|
|
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
|
|
the UEFI API implementation.
|