mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-28 18:41:48 +00:00
In the future the Linux Foundation will be running the LVFS server. To make this possible, include the Linux Foundation public keys by default as we already trust them. Obviously the keys need to be available long before vendors move, so nobody should get too worried at this point.
31 lines
672 B
Meson
31 lines
672 B
Meson
if get_option('gpg')
|
|
install_data([
|
|
'GPG-KEY-Hughski-Limited',
|
|
'GPG-KEY-Linux-Foundation-Firmware',
|
|
'GPG-KEY-Linux-Vendor-Firmware-Service',
|
|
],
|
|
install_dir : join_paths(sysconfdir, 'pki', 'fwupd')
|
|
)
|
|
|
|
install_data([
|
|
'GPG-KEY-Linux-Foundation-Metadata',
|
|
'GPG-KEY-Linux-Vendor-Firmware-Service',
|
|
],
|
|
install_dir : join_paths(sysconfdir, 'pki', 'fwupd-metadata')
|
|
)
|
|
endif
|
|
|
|
if get_option('pkcs7')
|
|
install_data([
|
|
'LVFS-CA.pem',
|
|
],
|
|
install_dir : join_paths(sysconfdir, 'pki', 'fwupd')
|
|
)
|
|
install_data([
|
|
'LVFS-CA.pem',
|
|
],
|
|
install_dir : join_paths(sysconfdir, 'pki', 'fwupd-metadata')
|
|
)
|
|
endif
|
|
|