mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-28 15:05:53 +00:00

This patch is adding the fwupd wrapper for Qubes. The wrapper provides fwupd functionalities for Qubes R4.1. It creates three packages (two RPMs and one Debian package): fwupd-qubes-dom0 (RPM) fwupd-qubes-vm (RPM) fwupd-qubes-vm-whonix (deb) More information about the wrapper could be found in the contrib/qubes/README.md Signed-off-by: Norbert Kamiński <norbert.kaminski@3mdeb.com>
17 lines
333 B
Meson
17 lines
333 B
Meson
subdir('firmware_packager')
|
|
if get_option('qubes')
|
|
subdir('qubes')
|
|
endif
|
|
|
|
if host_machine.system() == 'windows'
|
|
con2 = configuration_data()
|
|
con2.set('FWUPD_VERSION', fwupd_version)
|
|
|
|
# replace @FWUPD_VERSION@
|
|
configure_file(
|
|
input : 'setup-win32.nsi',
|
|
output : 'setup-win32.nsi',
|
|
configuration : con2,
|
|
)
|
|
endif
|