fwupd/plugins
Francois Berder bb5385de76 plugins: Fix potential use of NULL pointer in fu_dell_dock_mst_write_register
Signed-off-by: Francois Berder <18538310+francois-berder@users.noreply.github.com>
2019-11-29 06:33:09 -06: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 trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00: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 Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +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 Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
dfu trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00:00
ebitdo Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
emmc Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
fastboot Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
flashrom Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +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 trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00: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: Reload the device version after IOTA update 2019-11-29 12:04:42 +00:00
synaptics-rmi Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
synapticsmst Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
test Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
thelio-io Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
thunderbolt trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00:00
thunderbolt-power Convert libfwupdprivate to a shared library libfwupdplugin 2019-11-27 11:32:43 +00:00
uefi trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +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 trivial: Fix a NULL/FALSE confusion 2019-11-27 16:36:17 +00:00
wacom-raw trivial: wacom: remove coretronic config from Moffett scope 2019-11-28 06:37:53 -06:00
wacom-usb trivial: Unexport fu_test_get_filename() 2019-11-27 12:45:35 +00:00
meson.build Make gudev a compile-time option 2019-11-25 09:29:46 +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.