fwupd/plugins
Mario Limonciello 86b3bcf8c9 ebitdo: Stop matching Nintendo Switch Pro VID/PID
Unfortuantely similar to ead5bf392 this is causing problems with
real Nintendo Switch controllers.
2018-05-07 09:22:12 -05:00
..
altos Disable -Wunused-function on clang builds (Closes #467) 2018-04-17 10:10:43 +01:00
amt amt: Put the AMT device as a child under the system UEFI firmware 2018-05-03 08:07:04 +01: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 dell: Set parents for Dell WD15/TB16 docks 2018-05-03 08:07:04 +01:00
dfu dfu: Allow parsing SREC files without the optional S5 record 2018-05-03 19:58:31 +01:00
ebitdo ebitdo: Stop matching Nintendo Switch Pro VID/PID 2018-05-07 09:22:12 -05: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 trivial: synapticsmst: Recognize boardid 0x103 2018-05-03 14:07:42 -05:00
test Revert "trivial: Compile upower and test plugins with -O0 (Closes: #472)" 2018-04-23 10:29:48 -05:00
thunderbolt thunderbolt: Set known parent for Thunderbolt devices in Dell TB16 2018-05-03 08:07:04 +01: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 amt: Put the AMT device as a child under the system UEFI firmware 2018-05-03 08:07:04 +01:00
unifying unifying: Set known parent for unifying peripherals 2018-05-03 08:07:04 +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.