mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
5c2227e495
Do not execute the block device test if CONFIG_DOS_PARTITION=n. Imply CONFIG_DOS_PARTITION in Kconfig. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
12 lines
369 B
Text
12 lines
369 B
Text
config CMD_BOOTEFI_SELFTEST
|
|
bool "UEFI unit tests"
|
|
depends on CMD_BOOTEFI
|
|
imply PARTITIONS
|
|
imply DOS_PARTITION
|
|
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.
|