mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-05 23:22:12 +00:00

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.
19 lines
408 B
C
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;
|
|
};
|