fwupd/plugins
2020-02-07 11:49:01 +00:00
..
altos trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
amt trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
ata trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
colorhug trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
coreboot plugins/coreboot: Add missing fu_hash dependency 2019-12-18 08:33:10 +00:00
csr trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
dell trivial: rename synapticsmst to synaptics-mst 2019-12-12 13:59:41 -06:00
dell-dock trivial: add some missing protocol definitions 2020-01-08 15:49:38 -06:00
dell-esrt trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
dfu trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
ebitdo trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
emmc trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
fastboot trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
flashrom trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
fresco-pd Add a plugin to update PD controllers by Fresco Logic 2020-02-07 11:46:25 +00:00
jabra trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
logitech-hidpp trivial: Fix up some typos found using codespell 2020-01-14 12:25:41 +00:00
modem-manager trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
nitrokey trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
nvme Don't always get the vendor ID for udev devices using the parent 2020-01-06 14:48:58 +00:00
optionrom Don't always get the vendor ID for udev devices using the parent 2020-01-06 14:48:58 +00:00
redfish trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
rts54hid trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
rts54hub trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
solokey solokeys: Parse old versions of the bootloader string 2020-02-07 11:49:01 +00:00
steelseries trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
superio Detect kernel lockdown status 2020-02-04 10:08:25 -06:00
synaptics-cxaudio trivial: synaptics-cxaudio: Add Google type C <-> 3.5mm adapter 2019-12-15 20:17:42 -06:00
synaptics-mst trivial: synaptics-mst: adjust last part of triplet to be 2 digits not 3 2020-01-22 15:22:11 -06:00
synaptics-prometheus trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
synaptics-rmi trivial: Allow setting an ID of NULL for the FuFirmwareImage 2020-01-16 11:24:55 -06:00
test Allow applying all releases to get to a target version 2020-01-07 15:33:12 +00:00
thelio-io trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
thunderbolt trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
thunderbolt-power Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
tpm trivial: Fix up some typos found using codespell 2020-01-14 12:25:41 +00:00
tpm-eventlog tpm-eventlog: Replay the TPM event log to get the PCRx values 2020-02-04 11:54:27 +00:00
uefi Support the new gnuefi file locations 2020-02-05 07:41:35 -06:00
uefi-recovery trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
upower trivial: Fix a tiny memory leak introduced with the UPower fix 2020-01-16 15:29:08 +00:00
vli vli: Set the device progress correctly when erasing a PD device 2020-02-06 20:38:19 +00:00
wacom-raw trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
wacom-usb trivial: Document the use of vendor-id in each plugin 2019-12-11 18:10:44 +00:00
meson.build Add a plugin to update PD controllers by Fresco Logic 2020-02-07 11:46:25 +00:00
README.md trivial: plugins: clarify stance on afuefi.efi 2019-08-23 10:54:58 -05:00

Adding a new plugin

An extensible architecture allows for providing new plugin types (for reading and writing different firmware) as well as ways quirk their behavior.

You can find more information about the architecture in the developers section of the fwupd website.

You can use the fwupd developer documentation to assist with APIs available to write the plugin.

If you have a firmware specification and would like to see support in this project, please file an issue and share the spec. Patches are also welcome.

We will not accept plugins that upgrade hardware using a proprietary Linux executable, proprietary UEFI executable, proprietary library, or DBus interface.

Plugin interaction

Some plugins may be able to influence the behavior of other plugins. This includes things like one plugin turning on a device, or providing missing metadata to another plugin.

The ABI for these interactions is defined in: https://github.com/fwupd/fwupd/blob/master/src/fu-device-metadata.h

All interactions between plugins should have the interface defined in that file.