diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-05-25 12:30:39 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-06-03 15:27:21 +0200 |
commit | 03fb2691cb2699584b514ac332fcd7bedce626d9 (patch) | |
tree | 79f8a0c447291fe2dc9547b47fe2cbda20064127 | |
parent | 6b03cd107ece1fb6c84ce9ef2958b6cc1563367c (diff) | |
download | u-boot-03fb2691cb2699584b514ac332fcd7bedce626d9.tar.gz u-boot-03fb2691cb2699584b514ac332fcd7bedce626d9.tar.bz2 u-boot-03fb2691cb2699584b514ac332fcd7bedce626d9.zip |
efi_selftest: imply FAT, FAT_WRITE
efi_selftest_block_device accesses a FAT file system.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r-- | lib/efi_selftest/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/efi_selftest/Kconfig b/lib/efi_selftest/Kconfig index 3b5f3a1230..59f9f36801 100644 --- a/lib/efi_selftest/Kconfig +++ b/lib/efi_selftest/Kconfig @@ -1,6 +1,8 @@ config CMD_BOOTEFI_SELFTEST bool "Allow booting an EFI efi_selftest" depends on CMD_BOOTEFI + imply FAT + imply FAT_WRITE help This adds an EFI test application to U-Boot that can be executed with the 'bootefi selftest' command. It provides extended tests of |