fwupd/data/pki/meson.build
Richard Hughes 8b04e4d16d Add the Linux Foundation public GPG keys for firmware and metadata
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.
2018-05-21 20:23:00 +01:00

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