fwupd/plugins/uefi-capsule/fu-uefi-grub-device.h
Mario Limonciello b87c6dab95 uefi-capsule: Add support for installing UEFI updates from GRUB
Shim has had a hard time with loading updates from arguments in the
most recent release and this isn't the first time that happened.

Give distros and users an escape hatch that will allow using GRUB
instead.
2021-07-28 17:11:39 +01:00

19 lines
408 B
C

/*
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <fwupdplugin.h>
#include "fu-uefi-device.h"
#define FU_TYPE_UEFI_GRUB_DEVICE (fu_uefi_grub_device_get_type())
G_DECLARE_FINAL_TYPE(FuUefiGrubDevice, fu_uefi_grub_device, FU, UEFI_GRUB_DEVICE, FuUefiDevice)
struct _FuUefiGrubDeviceClass {
FuUefiDeviceClass parent_class;
};