fwupd/plugins
2017-11-27 18:07:53 +00:00
..
altos Add a fu_plugin_usb_device_added() dedicated vfunc 2017-11-24 16:13:44 +00:00
amt amt: Move the coldplug to the correct startup phase 2017-11-27 18:07:53 +00:00
colorhug trivial: Remove dead code 2017-11-27 18:07:53 +00:00
dell Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
dfu Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
ebitdo Add a fu_plugin_usb_device_added() dedicated vfunc 2017-11-24 16:13:44 +00:00
nitrokey Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
raspberrypi Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
steelseries steelseries: Release the interface if getting the version failed 2017-11-27 18:07:53 +00:00
synapticsmst Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
test Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
thunderbolt Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
thunderbolt-power trivial: Set the appropriate status when waiting for tbt hardware 2017-10-12 12:43:47 +01:00
udev Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00:00
uefi dell: Use the new quirk infrastructure for version numbers 2017-11-02 19:08:51 +00:00
unifying unifying: Move the coldplug to the correct startup phase 2017-11-27 18:07:53 +00:00
upower trivial: fix various spelling errors 2017-07-17 13:07:05 -05:00
meson.build Remove autoconf-isms from the meson configure options 2017-11-27 18:07:53 +00: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.