fwupd/plugins
2018-05-01 09:53:10 +01:00
..
altos Disable -Wunused-function on clang builds (Closes #467) 2018-04-17 10:10:43 +01:00
amt amt: Fix a compilation error on Fedora 2018-04-23 10:29:48 -05:00
colorhug Add fu_plugin_add_compile_version() 2018-04-20 20:45:08 +01:00
csr Disable -Wunused-function on clang builds (Closes #467) 2018-04-17 10:10:43 +01:00
dell trivial: Use fu_plugin_add_runtime_version() in the Dell plugin 2018-04-20 20:45:08 +01:00
dfu trivial: Add the generated SREC examples for easy fuzzing 2018-05-01 09:53:10 +01:00
ebitdo plugins/ebitdo: Stop matching DS4 controller VID/PID 2018-02-05 20:30:18 +00:00
nitrokey Allow devices to use the runtime version when in bootloader mode 2018-02-16 18:23:07 +00:00
steelseries trivial: Create the right kind of device in the steelseries plugin 2017-11-30 21:26:39 +00:00
synapticsmst Disable -Wunused-function on clang builds (Closes #467) 2018-04-17 10:10:43 +01:00
test Revert "trivial: Compile upower and test plugins with -O0 (Closes: #472)" 2018-04-23 10:29:48 -05:00
thunderbolt Enable CentOS 7 for CI 2018-04-18 10:25:22 -05:00
thunderbolt-power Disable -Wunused-function on clang builds (Closes #467) 2018-04-17 10:10:43 +01:00
udev Store firmware update success and failure to a local database 2018-01-11 09:59:34 +00:00
uefi uefi: Match the bootdir argument to fill in uefi.conf by default 2018-04-26 15:56:38 +01:00
unifying Disable -Wunused-function on clang builds (Closes #467) 2018-04-17 10:10:43 +01:00
upower Revert "trivial: Compile upower and test plugins with -O0 (Closes: #472)" 2018-04-23 10:29:48 -05:00
meson.build Remove support for RaspberryPi 2018-03-01 18:45:47 +00:00
README.md trivial: Use the SSL www-less homepage URL everywhere 2018-03-14 18:15:17 +00: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.