fwupd/plugins
Richard Hughes 99f33c7414 Move some common code down into LuDeviceBootloader
This is common API shared by the nordic and texas bootloaders.
2017-12-05 16:11:50 +00:00
..
altos Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
amt amt: Move the coldplug to the correct startup phase 2017-11-27 18:07:53 +00:00
colorhug Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
dell trivial: Remove the now-unused fu_plugin_set_status() 2017-12-04 17:00:22 +00:00
dfu Add a more general quirk for adding GUIDs to devices 2017-12-04 17:00:22 +00:00
ebitdo Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
nitrokey nitrokey: Use the new ->probe vfunc 2017-11-30 14:16:34 +00:00
raspberrypi Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
steelseries trivial: Create the right kind of device in the steelseries plugin 2017-11-30 21:26:39 +00:00
synapticsmst trivial: Remove the now-unused fu_plugin_set_status() 2017-12-04 17:00:22 +00:00
test Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
thunderbolt Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
thunderbolt-power Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
udev udev: Fix a double-free bug 2017-11-30 13:44:41 +00:00
uefi Set the progress and state on the FuDevice, not the FuPlugin 2017-11-30 20:51:52 +00:00
unifying Move some common code down into LuDeviceBootloader 2017-12-05 16:11:50 +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.