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

Rename FuPending to FuHistory to better represent what the object is now doing. Also, while we're here, switch to using SQLite prepared statements to avoid a possible invalid read on i386 hardware.
24 lines
575 B
Meson
24 lines
575 B
Meson
gcab = find_program('gcab', required : false)
|
|
if gcab.found()
|
|
hwid_test_firmware = custom_target('hwid-test-firmware',
|
|
input : [
|
|
'firmware.bin',
|
|
'firmware.metainfo.xml',
|
|
],
|
|
output : 'hwid-1.2.3.cab',
|
|
command : [
|
|
gcab, '--create', '--nopath', '@OUTPUT@', '@INPUT@',
|
|
],
|
|
)
|
|
noreqs_test_firmware = custom_target('noreqs-test-firmware',
|
|
input : [
|
|
'firmware.bin',
|
|
'firmware2.metainfo.xml',
|
|
],
|
|
output : 'noreqs-1.2.3.cab',
|
|
command : [
|
|
gcab, '--create', '--nopath', '@OUTPUT@', '@INPUT@',
|
|
],
|
|
)
|
|
endif
|