diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-24 16:41:25 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-24 16:41:25 -0400 |
commit | ec22c365e3d21c8a5c20413d537042527b33a6cf (patch) | |
tree | 06a613b648aafcc6b35e195cab65f366b6f38e7f /test/py | |
parent | 7d4ce5ea53bdf4be8a951154c65ceef4b389fea7 (diff) | |
parent | d75f48a83dc4998a49a4c35e80a9eab91566df30 (diff) |
Merge tag 'efi-2021-10-rc1-3' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2021-10-rc1-3
Documentation:
provide Makefile documentation
SMBIOS:
generate BIOS release date based on UEFI version
improve error handling in SMBIOS table generation
UEFI:
correct handling of signed capsule if authentication if off
Diffstat (limited to 'test/py')
-rw-r--r-- | test/py/tests/test_efi_capsule/test_capsule_firmware.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/py/tests/test_efi_capsule/test_capsule_firmware.py b/test/py/tests/test_efi_capsule/test_capsule_firmware.py index 4697ca6f1c5..9eeaae27d62 100644 --- a/test/py/tests/test_efi_capsule/test_capsule_firmware.py +++ b/test/py/tests/test_efi_capsule/test_capsule_firmware.py @@ -85,7 +85,7 @@ class TestEfiCapsuleFirmwareFit(object): # need to run uefi command to initiate capsule handling output = u_boot_console.run_command( - 'env print -e -all Capsule0000') + 'env print -e Capsule0000') output = u_boot_console.run_command_list([ 'host bind 0 %s' % disk_img, @@ -160,7 +160,7 @@ class TestEfiCapsuleFirmwareFit(object): # need to run uefi command to initiate capsule handling output = u_boot_console.run_command( - 'env print -e -all Capsule0000') + 'env print -e Capsule0000') output = u_boot_console.run_command_list([ 'host bind 0 %s' % disk_img, @@ -227,7 +227,7 @@ class TestEfiCapsuleFirmwareFit(object): # need to run uefi command to initiate capsule handling output = u_boot_console.run_command( - 'env print -e -all Capsule0000') + 'env print -e Capsule0000') output = u_boot_console.run_command_list(['efidebug capsule esrt']) |