fwupd/plugins
Yehezkel Bernat e43f7fb655 trivial: cleanup for many compilation warnings from clang
Signed-off-by: Yehezkel Bernat <yehezkel.bernat@intel.com>
2017-08-30 10:43:15 +01:00
..
altos Remove the confusing ALLOW_OFFLINE and ALLOW_ONLINE flags 2017-08-26 18:09:21 +01:00
amt plugins/amt: Move UUID_LE initialisation into function scope 2017-08-16 12:53:28 +01:00
colorhug Remove the confusing ALLOW_OFFLINE and ALLOW_ONLINE flags 2017-08-26 18:09:21 +01:00
dell trivial: dell: TPM switching blacklist->whitelist 2017-08-29 16:37:14 -05:00
dfu trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
ebitdo Remove the confusing ALLOW_OFFLINE and ALLOW_ONLINE flags 2017-08-26 18:09:21 +01:00
raspberrypi trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
steelseries trivial: Remove or downgrade some superfluous warnings 2017-07-21 13:38:27 +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 trivial: fix TBT controller safe mode handling on Dell 2017-08-28 13:24:59 -05:00
udev trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
uefi trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
unifying trivial: cleanup for many compilation warnings from clang 2017-08-30 10:43:15 +01:00
upower trivial: fix various spelling errors 2017-07-17 13:07:05 -05:00
usb Add the ability to restrict the firmware installation to specific vendor IDs 2017-06-12 20:22:25 +01:00
meson.build Add back options for HAVE_SYNAPTICS and HAVE_THUNDERBOLT 2017-08-23 13:26:42 -05: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.