fwupd/plugins/vbe/fu-vbe-simple-device.h
Simon Glass cbfda0739c vbe: Add a new plugin for writing Flat Image Trees
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>
2022-07-11 08:28:42 +01:00

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)