fwupd/plugins
Mario Limonciello 2dd731b2f0 Update all sub-devices for a composite update
This allows a frontend to call update on an individual device ID which will
cause a CAB file to be downloaded, but then also re-use the same CAB file to
try to process devices with a relationship as part of a transaction.
2018-10-10 11:24:27 -05:00
..
altos trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
amt trivial: amt: correct a situation that might overwrite error 2018-09-21 07:35:08 +01:00
colorhug trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
csr trivial: Ensure the daemon sends IDLE when firmware is updated 2018-09-10 16:12:12 +01:00
dell uefi: Move the TPM unlocking functionality from the Dell to UEFI plugin 2018-10-10 14:30:49 +01:00
dell-esrt trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
dfu Marked some CL options for translation 2018-09-24 16:18:48 +01:00
ebitdo trivial: Ensure the daemon sends IDLE when firmware is updated 2018-09-10 16:12:12 +01:00
flashrom trivial: Ensure the daemon sends IDLE when firmware is updated 2018-09-10 16:12:12 +01:00
nitrokey trivial: Include appstream-glib.h in the main plugin header 2018-09-04 08:22:39 -05:00
nvme trivial: nvme: Allow quirking the NVME write block size 2018-10-02 14:30:02 -05:00
redfish trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
rts54hid rts54hid: Add support for Realtek USB devices using vendor HID commands 2018-09-14 12:40:20 +01:00
rts54hub rts54hub: Add support for Realtek USB devices using vendor HUB commands 2018-09-12 14:18:55 +01:00
steelseries trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
superio superio: Set the physical and logical IDs 2018-09-11 16:02:03 +01:00
synapticsmst trivial: synapticsmst: clarify some error flows 2018-09-28 08:39:44 -05:00
test Update all sub-devices for a composite update 2018-10-10 11:24:27 -05:00
thunderbolt thunderbolt: Use replugging from the daemon (Closes: #730) 2018-09-26 07:56:12 -05:00
thunderbolt-power thunderbolt-power: Fix possible linker problem 2018-10-10 14:29:20 +01:00
udev trivial: Do not use AsProfile 2018-09-18 06:23:25 -05:00
uefi uefi: Move the TPM unlocking functionality from the Dell to UEFI plugin 2018-10-10 14:30:49 +01:00
unifying unifying: Remove some logically dead code 2018-09-10 16:56:44 +01:00
upower trivial: Remove duplicate header includes 2018-09-04 08:22:39 -05:00
wacomhid trivial: wacom: correct some errors caught by static analysis 2018-09-21 07:35:08 +01:00
meson.build rts54hid: Add support for Realtek USB devices using vendor HID commands 2018-09-14 12:40:20 +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.