mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-06 04:23:33 +00:00

This plugin does not yet allow the device to be upgraded, and is provided for information only.
37 lines
3.4 KiB
Meson
37 lines
3.4 KiB
Meson
option('build', type : 'combo', choices : ['all', 'standalone', 'library'], value : 'all', description : 'build type')
|
|
option('agent', type : 'boolean', value : true, description : 'enable the fwupd agent')
|
|
option('consolekit', type : 'boolean', value : true, description : 'enable ConsoleKit support')
|
|
option('firmware-packager', type : 'boolean', value : true, description : 'enable firmware-packager installation')
|
|
option('gpg', type : 'boolean', value : true, description : 'enable the GPG verification support')
|
|
option('gtkdoc', type : 'boolean', value : false, description : 'enable developer documentation')
|
|
option('introspection', type : 'boolean', value : true, description : 'generate GObject Introspection data')
|
|
option('lvfs', type : 'boolean', value : true, description : 'enable LVFS remotes')
|
|
option('man', type : 'boolean', value : true, description : 'enable man pages')
|
|
option('gudev', type : 'boolean', value : true, description : 'enable GUdev support')
|
|
option('pkcs7', type : 'boolean', value : true, description : 'enable the PKCS7 verification support')
|
|
option('plugin_altos', type : 'boolean', value : true, description : 'enable altos support')
|
|
option('plugin_amt', type : 'boolean', value : true, description : 'enable Intel AMT support')
|
|
option('plugin_dell', type : 'boolean', value : true, description : 'enable Dell-specific support')
|
|
option('plugin_dummy', type : 'boolean', value : false, description : 'enable the dummy device')
|
|
option('plugin_emmc', type : 'boolean', value : true, description : 'enable eMMC support')
|
|
option('plugin_synaptics', type: 'boolean', value: true, description : 'enable Synaptics MST hub support')
|
|
option('plugin_thunderbolt', type : 'boolean', value : true, description : 'enable Thunderbolt support')
|
|
option('plugin_redfish', type : 'boolean', value : true, description : 'enable Redfish support')
|
|
option('plugin_tpm', type : 'boolean', value : true, description : 'enable TPM support')
|
|
option('plugin_uefi', type : 'boolean', value : true, description : 'enable UEFI support')
|
|
option('plugin_nvme', type : 'boolean', value : true, description : 'enable NVMe support')
|
|
option('plugin_modem_manager', type : 'boolean', value : false, description : 'enable ModemManager support')
|
|
option('plugin_flashrom', type : 'boolean', value : false, description : 'enable libflashrom support')
|
|
option('plugin_coreboot', type : 'boolean', value : true, description : 'enable coreboot support')
|
|
option('systemd', type : 'boolean', value : true, description : 'enable systemd support')
|
|
option('systemdunitdir', type: 'string', value: '', description: 'Directory for systemd units')
|
|
option('elogind', type : 'boolean', value : false, description : 'enable elogind support')
|
|
option('tests', type : 'boolean', value : true, description : 'enable tests')
|
|
option('udevdir', type: 'string', value: '', description: 'Directory for udev rules')
|
|
option('efi-cc', type : 'string', value : 'gcc', description : 'the compiler to use for EFI modules')
|
|
option('efi-ld', type : 'string', value : 'ld', description : 'the linker to use for EFI modules')
|
|
option('efi-libdir', type : 'string', description : 'path to the EFI lib directory')
|
|
option('efi-ldsdir', type : 'string', description : 'path to the EFI lds directory')
|
|
option('efi-includedir', type : 'string', value : '/usr/include/efi', description : 'path to the EFI header directory')
|
|
option('efi_os_dir', type: 'string', description : 'the name of OS directory in ESP')
|