mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-03 02:09:13 +00:00

Some devices do not have a stable PCR0 for the same firmware version, and I'd like to collect the TPM event log for affected machines to debug why.
18 lines
516 B
C
18 lines
516 B
C
/*
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-plugin.h"
|
|
|
|
#define FU_TYPE_TPM_EVENTLOG_DEVICE (fu_tpm_eventlog_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuTpmEventlogDevice, fu_tpm_eventlog_device, FU, TPM_EVENTLOG_DEVICE, FuDevice)
|
|
|
|
FuTpmEventlogDevice *fu_tpm_eventlog_device_new (const guint8 *buf,
|
|
gsize bufsz,
|
|
GError **error);
|
|
gchar *fu_tpm_eventlog_device_report_metadata (FuTpmEventlogDevice *self);
|