fwupd/plugins
2018-12-25 16:08:10 -06:00
..
altos Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
amt amt: Fix a crash if AMT returns an empty response 2018-11-30 15:22:17 +00:00
colorhug Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
csr Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
dell uefi: Append the header on capsules without headers from Linux 2018-12-11 12:51:57 -06:00
dell-dock Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
dell-esrt trivial: Document the GUID generation scheme 2018-11-08 20:39:46 +00:00
dfu Allow replacing the last byte in the image when using 'dfu-tool replace-data' 2018-12-18 08:35:24 +00:00
ebitdo Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
fastboot Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
flashrom Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
nitrokey trivial: Document the GUID generation scheme 2018-11-08 20:39:46 +00:00
nvme Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
redfish Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
rts54hid Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
rts54hub Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
steelseries trivial: Document the GUID generation scheme 2018-11-08 20:39:46 +00:00
superio trivial: Document the GUID generation scheme 2018-11-08 20:39:46 +00:00
synapticsmst Add Dell TB18DC to the known devices list 2018-12-25 16:08:10 -06:00
test Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
thunderbolt Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
thunderbolt-power thunderbolt-power: Fix possible linker problem 2018-10-10 14:29:20 +01:00
udev trivial: Document the GUID generation scheme 2018-11-08 20:39:46 +00:00
uefi uefi: Add the PCR0 value as the device checksum for system firmware 2018-12-14 19:23:04 +00:00
unifying Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
upower trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
wacom-usb Allow plugins to define support for a 'well-known' protocol 2018-12-14 18:15:01 +00:00
meson.build Add a plugin to update hardware that supports fastboot 2018-12-03 15:50:38 +00:00
README.md trivial: Use the SSL www-less homepage URL everywhere 2018-03-14 18:15:17 +00: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.

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.

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/hughsie/fwupd/blob/master/src/fu-device-metadata.h

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