mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-04 19:55:48 +00:00

The VBIOS version is actually fetched by udev, this plugin sets up the relationship so it's displayed in the right place.
117 lines
1.6 KiB
Meson
117 lines
1.6 KiB
Meson
# some of these are controlled by meson tristate features
|
|
plugin_deps = [
|
|
gio,
|
|
giounix,
|
|
gnutls,
|
|
gmodule,
|
|
gudev,
|
|
gusb,
|
|
libarchive,
|
|
libjsonglib,
|
|
libxmlb,
|
|
protobufc,
|
|
]
|
|
|
|
plugins = [
|
|
'uefi-capsule',
|
|
'acpi-dmar',
|
|
'acpi-facp',
|
|
'acpi-ivrs',
|
|
'acpi-phat',
|
|
'amd-pmc',
|
|
'amd-gpu',
|
|
'analogix',
|
|
'android-boot',
|
|
'ata',
|
|
'bcm57xx',
|
|
'bios',
|
|
'ccgx',
|
|
'cfu',
|
|
'ch341a',
|
|
'colorhug',
|
|
'corsair',
|
|
'cpu',
|
|
'cros-ec',
|
|
'dell',
|
|
'dell-dock',
|
|
'dell-esrt',
|
|
'dfu',
|
|
'dfu-csr',
|
|
'ebitdo',
|
|
'elantp',
|
|
'elanfp',
|
|
'emmc',
|
|
'ep963x',
|
|
'fastboot',
|
|
'flashrom',
|
|
'focalfp',
|
|
'fpc',
|
|
'fresco-pd',
|
|
'genesys',
|
|
'goodix-moc',
|
|
'gpio',
|
|
'hailuck',
|
|
'intel-gsc',
|
|
'intel-me',
|
|
'intel-spi',
|
|
'intel-usb4',
|
|
'iommu',
|
|
'jabra',
|
|
'lenovo-thinklmi',
|
|
'linux-lockdown',
|
|
'linux-sleep',
|
|
'linux-swap',
|
|
'linux-tainted',
|
|
'logind',
|
|
'logitech-hidpp',
|
|
'logitech-bulkcontroller',
|
|
'logitech-scribe',
|
|
'modem-manager',
|
|
'msr',
|
|
'mtd',
|
|
'nitrokey',
|
|
'nordic-hid',
|
|
'nvme',
|
|
'optionrom',
|
|
'parade-lspcon',
|
|
'pci-bcr',
|
|
'pci-mei',
|
|
'pci-psp',
|
|
'pixart-rf',
|
|
'powerd',
|
|
'qsi-dock',
|
|
'realtek-mst',
|
|
'redfish',
|
|
'rts54hid',
|
|
'rts54hub',
|
|
'steelseries',
|
|
'scsi',
|
|
'superio',
|
|
'synaptics-cape',
|
|
'synaptics-cxaudio',
|
|
'synaptics-mst',
|
|
'synaptics-prometheus',
|
|
'synaptics-rmi',
|
|
'system76-launch',
|
|
'test',
|
|
'thelio-io',
|
|
'thunderbolt',
|
|
'ti-tps6598x',
|
|
'tpm',
|
|
'uefi-dbx',
|
|
'uefi-pk',
|
|
'uefi-recovery',
|
|
'uf2',
|
|
'upower',
|
|
'usi-dock',
|
|
'vbe',
|
|
'vli',
|
|
'wacom-raw',
|
|
'wacom-usb',
|
|
'wistron-dock',
|
|
]
|
|
|
|
foreach plugin: plugins
|
|
subdir(plugin)
|
|
endforeach
|