diff options
author | Tom Rini <trini@konsulko.com> | 2022-02-11 15:07:49 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-11 15:11:52 -0500 |
commit | 162c22bfbc4141f22937c6bc37aa02fd4621e76c (patch) | |
tree | 11bf6381111a8a5eade9fc5f8a0dc91e5f402b74 /test/py/tests/test_efi_capsule/capsule_defs.py | |
parent | dd1c255cbc6d3bdf3211a7c9d8fd36e7696e39bb (diff) | |
parent | 72b509b7019878e2a5f69bcf7198a0927a77ad60 (diff) |
Merge tag 'efi-2022-04-rc2-4' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-04-rc2-4
Documentation:
* mkeficapsule man-page
UEFI changes:
* add support for signing images to mkeficapsule
* add support for user define capsule GUID
* adjust unit tests for capsules
* fix UEFI image signature validation in case of multiple signatures
Diffstat (limited to 'test/py/tests/test_efi_capsule/capsule_defs.py')
-rw-r--r-- | test/py/tests/test_efi_capsule/capsule_defs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/py/tests/test_efi_capsule/capsule_defs.py b/test/py/tests/test_efi_capsule/capsule_defs.py index 4fd6353c20..59b40f11bd 100644 --- a/test/py/tests/test_efi_capsule/capsule_defs.py +++ b/test/py/tests/test_efi_capsule/capsule_defs.py @@ -3,3 +3,8 @@ # Directories CAPSULE_DATA_DIR = '/EFI/CapsuleTestData' CAPSULE_INSTALL_DIR = '/EFI/UpdateCapsule' + +# v1.5.1 or earlier of efitools has a bug in sha256 calculation, and +# you need build a newer version on your own. +# The path must terminate with '/' if it is not null. +EFITOOLS_PATH = '' |