mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-16 06:41:08 +00:00

In the latest version of the LVFS you can restrict the firmware to a specific machine type, for instance a specific baseboard vendor. This is the same as done in Microsoft Update using the CHID mechanism. This commit adds support for the <hardware> requires type, although it needs to be built against appstream-glib 0.7.4 to be supported and/or tested.
12 lines
292 B
Meson
12 lines
292 B
Meson
# generate private PKCS7 key
|
|
certtool = find_program('certtool')
|
|
pkcs7_privkey = custom_target('test-privkey.pem',
|
|
output: 'test-privkey.pem',
|
|
command: [certtool, '--generate-privkey', '--outfile', '@OUTPUT@'],
|
|
)
|
|
|
|
subdir('builder')
|
|
subdir('pki')
|
|
subdir('colorhug')
|
|
subdir('missing-hwid')
|