fwupd/plugins
Richard Hughes 3979ba5039 nitrokey: Fix a buffer overrun spotted by Coverity
This only happens when debugging, so it was not spotted by valgrind.
2017-11-13 21:59:57 +00:00
..
altos altos: Rename FuDeviceAltos to FuAltosDevice 2017-11-13 13:58:37 +00:00
amt Add optional icons to each device 2017-09-11 17:27:35 +01:00
colorhug colorhug: Do not save the firmware blob in the device state 2017-11-11 21:58:17 +00:00
dell dell: Fix a trivial warning spotted by clang 2017-11-09 12:15:55 +00:00
dfu dfu: Ensure the mode is set correctly for fake runtimes 2017-11-13 16:01:57 +00:00
ebitdo ebitdo: Rename FuDeviceEbitdo to FuEbitdoDevice 2017-11-13 14:03:02 +00:00
nitrokey nitrokey: Fix a buffer overrun spotted by Coverity 2017-11-13 21:59:57 +00:00
raspberrypi Add optional icons to each device 2017-09-11 17:27:35 +01:00
steelseries Add optional icons to each device 2017-09-11 17:27:35 +01:00
synapticsmst trivial: Unconstify an allocated variable to avoid a GCC warning 2017-11-10 14:31:22 +00:00
test trivial: Remove EnableTestSuite from daemon.conf 2017-09-19 20:06:44 +01:00
thunderbolt thunderbolt: move test for mock environment (Closes #280) 2017-10-19 08:40:08 -05:00
thunderbolt-power trivial: Set the appropriate status when waiting for tbt hardware 2017-10-12 12:43:47 +01:00
udev trivial: Fix a Werror=sign-compare on Fedora 28 2017-10-07 11:11:25 +01:00
uefi dell: Use the new quirk infrastructure for version numbers 2017-11-02 19:08:51 +00:00
unifying trivial: C99ify more for-loops 2017-09-28 09:23:52 +01:00
upower trivial: fix various spelling errors 2017-07-17 13:07:05 -05:00
usb Format the BCD USB revision numbers correctly 2017-10-13 10:03:06 +01:00
meson.build Add a nitrokey plugin 2017-11-13 16:25:46 +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.