mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-14 14:20:15 +00:00

New enough hardware to have this feature isn't going to be in the marketplace for a while. To use that newer hardware requires a very recent kernel (5.6 at least, although it will probably be at least 5.9 by the time the hardware is released). The CET status will be used in future functionality.
17 lines
456 B
C
17 lines
456 B
C
/*
|
|
* Copyright (C) 2020 Mario Limonciello <mario.limonciello@dell.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-plugin.h"
|
|
|
|
#define FU_TYPE_CPU_DEVICE (fu_cpu_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuCpuDevice, fu_cpu_device, FU, CPU_DEVICE, FuDevice)
|
|
|
|
FuCpuDevice *fu_cpu_device_new (const gchar *section);
|
|
gboolean fu_cpu_device_has_shstk (FuCpuDevice *self);
|
|
gboolean fu_cpu_device_has_ibt (FuCpuDevice *self);
|