New upstream release
This commit is contained in:
parent
de01aba994
commit
4f25b50805
1
.gitignore
vendored
1
.gitignore
vendored
@ -91,3 +91,4 @@
|
|||||||
/fwupd-1.7.5.tar.xz
|
/fwupd-1.7.5.tar.xz
|
||||||
/fwupd-1.7.6.tar.xz
|
/fwupd-1.7.6.tar.xz
|
||||||
/fwupd-1.7.7.tar.xz
|
/fwupd-1.7.7.tar.xz
|
||||||
|
/fwupd-1.8.0.tar.xz
|
||||||
|
96
fwupd.spec
96
fwupd.spec
@ -5,7 +5,7 @@
|
|||||||
%global libjcat_version 0.1.0
|
%global libjcat_version 0.1.0
|
||||||
%global systemd_version 231
|
%global systemd_version 231
|
||||||
%global json_glib_version 1.1.1
|
%global json_glib_version 1.1.1
|
||||||
%global fwupdplugin_version 5
|
%global fwupdplugin_version 6
|
||||||
|
|
||||||
# although we ship a few tiny python files these are utilities that 99.99%
|
# although we ship a few tiny python files these are utilities that 99.99%
|
||||||
# of users do not need -- use this to avoid dragging python onto CoreOS
|
# of users do not need -- use this to avoid dragging python onto CoreOS
|
||||||
@ -42,6 +42,11 @@
|
|||||||
%global have_dell 1
|
%global have_dell 1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
# AMD PSP is only available on x86
|
||||||
|
%ifarch x86_64
|
||||||
|
%global have_pci_psp 1
|
||||||
|
%endif
|
||||||
|
|
||||||
# only available recently
|
# only available recently
|
||||||
%if 0%{?fedora} >= 30
|
%if 0%{?fedora} >= 30
|
||||||
%global have_modem_manager 1
|
%global have_modem_manager 1
|
||||||
@ -49,7 +54,7 @@
|
|||||||
|
|
||||||
Summary: Firmware update daemon
|
Summary: Firmware update daemon
|
||||||
Name: fwupd
|
Name: fwupd
|
||||||
Version: 1.7.7
|
Version: 1.8.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: https://github.com/fwupd/fwupd
|
URL: https://github.com/fwupd/fwupd
|
||||||
@ -69,6 +74,7 @@ BuildRequires: sqlite-devel
|
|||||||
BuildRequires: systemd >= %{systemd_version}
|
BuildRequires: systemd >= %{systemd_version}
|
||||||
BuildRequires: systemd-devel
|
BuildRequires: systemd-devel
|
||||||
BuildRequires: libarchive-devel
|
BuildRequires: libarchive-devel
|
||||||
|
BuildRequires: libcbor-devel
|
||||||
BuildRequires: gobject-introspection-devel
|
BuildRequires: gobject-introspection-devel
|
||||||
BuildRequires: gcab
|
BuildRequires: gcab
|
||||||
%ifarch %{valgrind_arches}
|
%ifarch %{valgrind_arches}
|
||||||
@ -212,47 +218,47 @@ or server machines.
|
|||||||
-Dplugin_dummy=false \
|
-Dplugin_dummy=false \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?have_flashrom}
|
%if 0%{?have_flashrom}
|
||||||
-Dplugin_flashrom=true \
|
-Dplugin_flashrom=enabled \
|
||||||
%else
|
%else
|
||||||
-Dplugin_flashrom=false \
|
-Dplugin_flashrom=disabled \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?have_msr}
|
%if 0%{?have_msr}
|
||||||
-Dplugin_msr=true \
|
-Dplugin_msr=enabled \
|
||||||
%else
|
%else
|
||||||
-Dplugin_msr=false \
|
-Dplugin_msr=disabled \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?have_gpio}
|
%if 0%{?have_gpio}
|
||||||
-Dplugin_gpio=true \
|
-Dplugin_gpio=enabled \
|
||||||
%else
|
%else
|
||||||
-Dplugin_gpio=false \
|
-Dplugin_gpio=disabled \
|
||||||
%endif
|
%endif
|
||||||
-Dplugin_thunderbolt=true \
|
-Dplugin_thunderbolt=enabled \
|
||||||
%if 0%{?have_uefi}
|
%if 0%{?have_uefi}
|
||||||
-Dplugin_uefi_capsule=true \
|
-Dplugin_uefi_capsule=enabled \
|
||||||
-Dplugin_uefi_pk=true \
|
-Dplugin_uefi_pk=enabled \
|
||||||
-Dplugin_tpm=true \
|
-Dplugin_tpm=enabled \
|
||||||
-Defi_binary=false \
|
-Defi_binary=false \
|
||||||
%else
|
%else
|
||||||
-Dplugin_uefi_capsule=false \
|
-Dplugin_uefi_capsule=disabled \
|
||||||
-Dplugin_uefi_pk=false \
|
-Dplugin_uefi_pk=disabled \
|
||||||
-Dplugin_tpm=false \
|
-Dplugin_tpm=disabled \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?have_dell}
|
%if 0%{?have_dell}
|
||||||
-Dplugin_dell=true \
|
-Dplugin_dell=enabled \
|
||||||
-Dplugin_synaptics_mst=true \
|
-Dplugin_synaptics_mst=enabled \
|
||||||
%else
|
%else
|
||||||
-Dplugin_dell=false \
|
-Dplugin_dell=disabled \
|
||||||
-Dplugin_synaptics_mst=false \
|
-Dplugin_synaptics_mst=disabled \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?have_modem_manager}
|
%if 0%{?have_modem_manager}
|
||||||
-Dplugin_modem_manager=true \
|
-Dplugin_modem_manager=enabled \
|
||||||
%else
|
%else
|
||||||
-Dplugin_modem_manager=false \
|
-Dplugin_modem_manager=disabled \
|
||||||
%endif
|
%endif
|
||||||
-Dman=true \
|
-Dman=true \
|
||||||
-Dbluez=true \
|
-Dbluez=enabled \
|
||||||
-Dplugin_powerd=false \
|
-Dplugin_powerd=disabled \
|
||||||
-Dsupported_build=true
|
-Dsupported_build=enabled
|
||||||
|
|
||||||
%meson_build
|
%meson_build
|
||||||
|
|
||||||
@ -379,15 +385,17 @@ done
|
|||||||
/usr/lib/udev/rules.d/*.rules
|
/usr/lib/udev/rules.d/*.rules
|
||||||
/usr/lib/systemd/system-shutdown/fwupd.shutdown
|
/usr/lib/systemd/system-shutdown/fwupd.shutdown
|
||||||
%dir %{_libdir}/fwupd-plugins-%{fwupdplugin_version}
|
%dir %{_libdir}/fwupd-plugins-%{fwupdplugin_version}
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_acpi_dmar.so
|
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_acpi_facp.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_acpi_facp.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_acpi_phat.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_acpi_phat.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_amt.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_amt.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_analogix.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_analogix.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_ata.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_ata.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_bcm57xx.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_bcm57xx.so
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_cfu.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_ccgx.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_ccgx.so
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_ch341a.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_colorhug.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_colorhug.so
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_corsair.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_cros_ec.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_cros_ec.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_cpu.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_cpu.so
|
||||||
%if 0%{?have_dell}
|
%if 0%{?have_dell}
|
||||||
@ -419,8 +427,13 @@ done
|
|||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_linux_swap.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_linux_swap.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_linux_tainted.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_linux_tainted.so
|
||||||
%if 0%{?have_msr}
|
%if 0%{?have_msr}
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_acpi_dmar.so
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_acpi_ivrs.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_msr.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_msr.so
|
||||||
%endif
|
%endif
|
||||||
|
%if 0%{?have_pci_psp}
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_pci_psp.so
|
||||||
|
%endif
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_mtd.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_mtd.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_nitrokey.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_nitrokey.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_nordic_hid.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_nordic_hid.so
|
||||||
@ -513,6 +526,39 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Apr 28 2022 Richard Hughes <richard@hughsie.com> 1.8.0-1
|
||||||
|
- New upstream release
|
||||||
|
- Add coSWID and uSWID parsers to libfwupdplugin for initial SBoM support
|
||||||
|
- Add new HSI attributes for the AMD PSP and various other system protections
|
||||||
|
- Add support for Corsair Sabre RGB PRO and Slipstream USB receiver
|
||||||
|
- Add support for FlatFrog devices
|
||||||
|
- Add support for Genesys GL3521 and GL3590 hubs
|
||||||
|
- Add support for Google Servo Dock
|
||||||
|
- Add support for Logitech M550, M650 and K650
|
||||||
|
- Add support for more ELAN fingerprint readers
|
||||||
|
- Add support for more integrated Wacom panels
|
||||||
|
- Add support for more NovaCustom machines
|
||||||
|
- Add support for more StaLabs StarLite machines
|
||||||
|
- Add support for more Tuxedo laptops
|
||||||
|
- Add support for System76 launch_lite_1
|
||||||
|
- Add support for the Quectel EM05
|
||||||
|
- Add the runtime fwupd-efi version as a firmware requirement
|
||||||
|
- Allow Capsule-on-Disk to work in more cases
|
||||||
|
- Allow 'fwupdmgr install' to install a specified firmware version
|
||||||
|
- Check the update protocol exists when checking requirements
|
||||||
|
- Correctly probe USB-2 hubs with more than 7 ports
|
||||||
|
- Do not add the Windows compatibility ID to capsule devices
|
||||||
|
- Do not throw away the TPM eventlog when uploading to the LVFS
|
||||||
|
- Export the version_lowest_raw value correctly
|
||||||
|
- Fix several small memory leaks
|
||||||
|
- Mark the ME region device locked if it is read only
|
||||||
|
- Only show the CLI time remaining for predictable status phases
|
||||||
|
- Respect the NO_COLOR env variable
|
||||||
|
- Restart the BMC after installing BCM updates
|
||||||
|
- Show the device serial number and instance IDs by default
|
||||||
|
- Support dumping the MTD image to a firmware blob
|
||||||
|
- Use the correct icon automatically for more hardware
|
||||||
|
|
||||||
* Tue Apr 05 2022 Richard Hughes <richard@hughsie.com> 1.7.7-1
|
* Tue Apr 05 2022 Richard Hughes <richard@hughsie.com> 1.7.7-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
- Add signed and unsigned payload metadata to more devices
|
- Add signed and unsigned payload metadata to more devices
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (fwupd-1.7.7.tar.xz) = dbb75e98e8860fe284f7127981dd9852890dafa7f3c5bb7fe6ad6db6617a272a54163793f3b621bf49256c545414db73d6c157534a10ce31a96048e024e1c234
|
SHA512 (fwupd-1.8.0.tar.xz) = 8adec12e95630e4575ec2e3212050012f9555a9da27a2e8beb21777e93451264354b1b4a5c69b6df996e9b99571e2148f775dfcc3533013903fec2427de3528c
|
||||||
|
Loading…
Reference in New Issue
Block a user