mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-12 19:34:28 +00:00

This adds the logic for the VBE plugin. It supports reading information from the system to determine which VBE method (a device in fwupd) is in use, then creating those devices to handle the actual update. Verified Boot for Embedded (VBE) relies on FIT files to operate. FIT is a way of packaging multiple images along with information about them. Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
290 B
C
13 lines
290 B
C
/*
|
|
* Copyright (C) 2022 Google LLC
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-vbe-device.h"
|
|
|
|
#define FU_TYPE_VBE_SIMPLE_DEVICE (fu_vbe_simple_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuVbeSimpleDevice, fu_vbe_simple_device, FU, VBE_SIMPLE_DEVICE, FuVbeDevice)
|