fwupd/plugins
2019-12-11 18:10:44 +00:00
..
altos Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
amt Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
ata Add fu_udev_device_set_flags() 2019-12-05 14:08:48 -06:00
colorhug Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
coreboot trivial: Fix coreboot commit to fix CI 2019-11-27 14:40:49 +00:00
csr trivial: Properly namespace the defines in the exported header 2019-11-27 12:45:35 +00:00
dell dell: Hardcode a plausible vendor ID 2019-12-11 18:10:44 +00:00
dell-dock plugins: Fix potential use of NULL pointer in fu_dell_dock_mst_write_register 2019-11-29 06:33:09 -06:00
dell-esrt dell: Hardcode a plausible vendor ID 2019-12-11 18:10:44 +00:00
dfu trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00:00
ebitdo Export the raw device version to the client --verbose output 2019-12-02 06:51:25 +00:00
emmc emmc: Set the correct vendor ID prefix 2019-12-11 18:10:44 +00:00
fastboot Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
flashrom flashrom: Use the BIOS vendor as the vendor ID 2019-12-11 18:10:44 +00:00
jabra Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
logitech-hidpp trivial: Properly namespace the defines in the exported header 2019-11-27 12:45:35 +00:00
modem-manager Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
nitrokey Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
nvme Add fu_udev_device_set_flags() 2019-12-05 14:08:48 -06:00
optionrom trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00:00
redfish trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00:00
rts54hid trivial: Properly namespace the defines in the exported header 2019-11-27 12:45:35 +00:00
rts54hub Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
solokey Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
steelseries Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
superio Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
synaptics-cxaudio trivial: Properly namespace the defines in the exported header 2019-11-27 12:45:35 +00:00
synaptics-prometheus synaptics-prometheus: Allow incremental version major and minor number 2019-12-03 11:06:52 +00:00
synaptics-rmi Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
synapticsmst trivial: Only dlopen the test plugin once 2019-12-01 20:59:19 +00:00
test trivial: Only dlopen the test plugin once 2019-12-01 20:59:19 +00:00
thelio-io Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
thunderbolt trivial: Only dlopen the test plugin once 2019-12-01 20:59:19 +00:00
thunderbolt-power Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
tpm Add a new plugin that can parse the TPM event log 2019-12-06 15:05:16 +00:00
tpm-eventlog Add a new plugin that can parse the TPM event log 2019-12-06 15:05:16 +00:00
uefi Add a new plugin that can parse the TPM event log 2019-12-06 15:05:16 +00:00
uefi-recovery Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
upower Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
vli-usbhub vli-usbhub: Fix the quirk for the legacy VIA 813 chip 2019-12-10 14:02:13 +00:00
wacom-raw trivial: wacom-raw: mark all Moffett SKUs as self recovery 2019-12-05 08:05:49 -06:00
wacom-usb trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00:00
meson.build Add a new plugin that can parse the TPM event log 2019-12-06 15:05:16 +00:00
README.md trivial: plugins: clarify stance on afuefi.efi 2019-08-23 10:54:58 -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.

You can use the fwupd developer documentation to assist with APIs available to write the plugin.

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.

We will not accept plugins that upgrade hardware using a proprietary Linux executable, proprietary UEFI executable, proprietary library, or DBus interface.

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/fwupd/fwupd/blob/master/src/fu-device-metadata.h

All interactions between plugins should have the interface defined in that file.