fwupd/plugins
2017-09-07 21:54:44 +01:00
..
altos altos: Use FuDeviceLocker 2017-09-07 19:00:51 +01:00
amt plugins/amt: Move UUID_LE initialisation into function scope 2017-08-16 12:53:28 +01:00
colorhug colorhug: Use FuDeviceLocker 2017-09-07 19:00:51 +01:00
dell trivial: Remove useless config.h defines 2017-09-06 23:07:50 +01:00
dfu dfu: Use FuDeviceLocker 2017-09-07 19:00:51 +01:00
ebitdo ebitdo: Use FuDeviceLocker 2017-09-07 19:00:51 +01:00
raspberrypi trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
steelseries steelseries: Use FuDeviceLocker 2017-09-07 19:00:51 +01:00
synapticsmst trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
test Remove the confusing ALLOW_OFFLINE and ALLOW_ONLINE flags 2017-08-26 18:09:21 +01:00
thunderbolt Fix build with newer versions of libgudev 2017-09-01 14:53:14 +01:00
udev trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
uefi trivial: Remove useless config.h defines 2017-09-06 23:07:50 +01:00
unifying trivial: remove unused variable in unifying (Fixes: #229) 2017-09-07 21:54:44 +01:00
upower trivial: fix various spelling errors 2017-07-17 13:07:05 -05:00
usb usb: Use FuDeviceLocker 2017-09-07 19:00:51 +01:00
meson.build Remove the ELF support from libdfu and move the code to the altos plugin 2017-09-07 18:39:23 +01:00
README.md trivial: minor typo that was missed on cherry-pick 2017-08-24 13:48:28 -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.

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.