mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-03 17:04:54 +00:00

This feature adds support for platform capability BOS descriptors which allows the device itself to ship quirk data. Use `sudo fwupdtool get-devices --save-backends=FILENAME` to save fake backend devices to a file. This allows easy creation of self tests that do not require physical hardware.
20 lines
404 B
C
20 lines
404 B
C
/*
|
|
* Copyright (C) 2022 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-usb-device-ds20.h"
|
|
|
|
#define FU_TYPE_USB_DEVICE_FW_DS20 (fu_usb_device_fw_ds20_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuUsbDeviceFwDs20,
|
|
fu_usb_device_fw_ds20,
|
|
FU,
|
|
USB_DEVICE_FW_DS20,
|
|
FuUsbDeviceDs20)
|
|
|
|
FuFirmware *
|
|
fu_usb_device_fw_ds20_new(void);
|