1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-11 05:17:44 +03:00

sd-boot: Remove unnecessary TPM conditionalization

This is already done in measure.h.
This commit is contained in:
Jan Janssen 2021-09-27 12:29:00 +02:00 committed by Lennart Poettering
parent d09065f894
commit 19dd3995aa

View File

@ -449,7 +449,6 @@ EFI_STATUS pack_cpio(
if (EFI_ERROR(err))
return log_error_status_stall(err, L"Failed to pack cpio trailer: %r");
#if ENABLE_TPM
err = tpm_log_event(
tpm_pcr,
POINTER_TO_PHYSICAL_ADDRESS(buffer),
@ -457,7 +456,6 @@ EFI_STATUS pack_cpio(
tpm_description);
if (EFI_ERROR(err))
log_error_stall(L"Unable to add initrd TPM measurement for PCR %u (%s), ignoring: %r", tpm_pcr, tpm_description, err);
#endif
*ret_buffer = TAKE_PTR(buffer);
*ret_buffer_size = buffer_size;