![]() Remove it's references to it's own GUdevclient and instead use FuUdevDevice. Some intentional casualties of the move: * Plugin metadata around native and safe mode dropped. - These haven't been useful in debugging anything and aren't relevant on new hardware * Extra GUID for 2 host controllers in same system dropped - Although this was normally static information BIOS operations like turning off PCI-E SD card reader or LAN controller changed things. * The NVM version is parsed directly instead of through gudev to prevent cached data breaking change events. Remaining TODO: * Force power w/ thunderbolt-power doesn't work |
||
---|---|---|
.. | ||
altos | ||
amt | ||
ata | ||
ccgx | ||
colorhug | ||
coreboot | ||
cpu | ||
csr | ||
dell | ||
dell-dock | ||
dell-esrt | ||
dfu | ||
ebitdo | ||
emmc | ||
ep963x | ||
fastboot | ||
flashrom | ||
fresco-pd | ||
jabra | ||
logind | ||
logitech-hidpp | ||
modem-manager | ||
nitrokey | ||
nvme | ||
optionrom | ||
redfish | ||
rts54hid | ||
rts54hub | ||
solokey | ||
steelseries | ||
superio | ||
synaptics-cxaudio | ||
synaptics-mst | ||
synaptics-prometheus | ||
synaptics-rmi | ||
test | ||
thelio-io | ||
thunderbolt | ||
thunderbolt-power | ||
tpm | ||
tpm-eventlog | ||
uefi | ||
uefi-recovery | ||
upower | ||
vli | ||
wacom-raw | ||
wacom-usb | ||
meson.build | ||
README.md |
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.