fwupd/plugins
2018-09-04 20:37:17 +01:00
..
altos trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
amt trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
colorhug trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
csr trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
dell trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
dell-esrt trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
dfu trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
ebitdo trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
flashrom trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
nitrokey trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
nvme nvme: Convert known version formats to semvers 2018-09-04 20:37:17 +01:00
redfish trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
steelseries trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
superio trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
synapticsmst trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
test trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
thunderbolt trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
thunderbolt-power trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
udev trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
uefi trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
unifying trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
upower trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
wacomhid trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
meson.build flashrom: Add a plugin for updating using the flashrom command line tool 2018-08-28 09:25:36 +01: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.