New upstream release
This commit is contained in:
parent
0b199c37d8
commit
b1019745f8
1
.gitignore
vendored
1
.gitignore
vendored
@ -89,3 +89,4 @@
|
|||||||
/fwupd-1.7.3.tar.xz
|
/fwupd-1.7.3.tar.xz
|
||||||
/fwupd-1.7.4.tar.xz
|
/fwupd-1.7.4.tar.xz
|
||||||
/fwupd-1.7.5.tar.xz
|
/fwupd-1.7.5.tar.xz
|
||||||
|
/fwupd-1.7.6.tar.xz
|
||||||
|
37
fwupd.spec
37
fwupd.spec
@ -23,6 +23,11 @@
|
|||||||
%global have_uefi 1
|
%global have_uefi 1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
# gpio.h is only available on these arches
|
||||||
|
%ifarch x86_64 aarch64
|
||||||
|
%global have_gpio 1
|
||||||
|
%endif
|
||||||
|
|
||||||
# flashrom is only available on these arches
|
# flashrom is only available on these arches
|
||||||
%ifarch i686 x86_64 armv7hl aarch64 ppc64le
|
%ifarch i686 x86_64 armv7hl aarch64 ppc64le
|
||||||
%global have_flashrom 1
|
%global have_flashrom 1
|
||||||
@ -44,7 +49,7 @@
|
|||||||
|
|
||||||
Summary: Firmware update daemon
|
Summary: Firmware update daemon
|
||||||
Name: fwupd
|
Name: fwupd
|
||||||
Version: 1.7.5
|
Version: 1.7.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: https://github.com/fwupd/fwupd
|
URL: https://github.com/fwupd/fwupd
|
||||||
@ -215,6 +220,11 @@ or server machines.
|
|||||||
-Dplugin_msr=true \
|
-Dplugin_msr=true \
|
||||||
%else
|
%else
|
||||||
-Dplugin_msr=false \
|
-Dplugin_msr=false \
|
||||||
|
%endif
|
||||||
|
%if 0%{?have_gpio}
|
||||||
|
-Dplugin_gpio=true \
|
||||||
|
%else
|
||||||
|
-Dplugin_gpio=false \
|
||||||
%endif
|
%endif
|
||||||
-Dplugin_thunderbolt=true \
|
-Dplugin_thunderbolt=true \
|
||||||
%if 0%{?have_uefi}
|
%if 0%{?have_uefi}
|
||||||
@ -315,6 +325,7 @@ done
|
|||||||
%{_sysconfdir}/pki/fwupd-metadata
|
%{_sysconfdir}/pki/fwupd-metadata
|
||||||
%if 0%{?have_msr}
|
%if 0%{?have_msr}
|
||||||
/usr/lib/modules-load.d/fwupd-msr.conf
|
/usr/lib/modules-load.d/fwupd-msr.conf
|
||||||
|
%config(noreplace)%{_sysconfdir}/fwupd/msr.conf
|
||||||
%endif
|
%endif
|
||||||
/usr/lib/modules-load.d/fwupd-redfish.conf
|
/usr/lib/modules-load.d/fwupd-redfish.conf
|
||||||
%{_datadir}/dbus-1/system.d/org.freedesktop.fwupd.conf
|
%{_datadir}/dbus-1/system.d/org.freedesktop.fwupd.conf
|
||||||
@ -393,6 +404,10 @@ done
|
|||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_ep963x.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_ep963x.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_fastboot.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_fastboot.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_fresco_pd.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_fresco_pd.so
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_genesys.so
|
||||||
|
%if 0%{?have_gpio}
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_gpio.so
|
||||||
|
%endif
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_hailuck.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_hailuck.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_iommu.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_iommu.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_jabra.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_jabra.so
|
||||||
@ -419,6 +434,7 @@ done
|
|||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_redfish.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_redfish.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_rts54hid.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_rts54hid.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_rts54hub.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_rts54hub.so
|
||||||
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_scsi.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_steelseries.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_steelseries.so
|
||||||
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_superio.so
|
%{_libdir}/fwupd-plugins-%{fwupdplugin_version}/libfu_plugin_superio.so
|
||||||
%if 0%{?have_dell}
|
%if 0%{?have_dell}
|
||||||
@ -497,6 +513,25 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Feb 25 2022 Richard Hughes <richard@hughsie.com> 1.7.6-1
|
||||||
|
- New upstream release
|
||||||
|
- Add a flag to indicate the device has a signed or unsigned payload
|
||||||
|
- Add a simple plugin to enumerate (but not update) SCSI hardware
|
||||||
|
- Allow assigning issues to devices for known high priority problems
|
||||||
|
- Do not run fwupd-refresh automatically in containers
|
||||||
|
- Do not show a warning if the TPM eventlog does not exist
|
||||||
|
- Do not show TSS2 warning messages by default
|
||||||
|
- Fix a critical warning when loading an empty TPM eventlog item
|
||||||
|
- Fix a logic error when adding the community warning in fwupdmgr
|
||||||
|
- Fix loading flashrom devices in coreboot mode
|
||||||
|
- Fix the error handling when updating USB4 retimers
|
||||||
|
- Modify the AT retry behavior to fix getting the firmware branch
|
||||||
|
- Parse the MTD firmware version using the defined GType
|
||||||
|
- Show the user when devices are not updatable due to inhibits
|
||||||
|
- Skip probing the Dell DA300 device to avoid a warning
|
||||||
|
- Try harder to convert to a version into a correct semver
|
||||||
|
- Use multiple checksums when there are no provided artifacts
|
||||||
|
|
||||||
* Mon Feb 07 2022 Richard Hughes <richard@hughsie.com> 1.7.5-1
|
* Mon Feb 07 2022 Richard Hughes <richard@hughsie.com> 1.7.5-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
- Add a flag to indicate the firmware is not provided by the vendor
|
- Add a flag to indicate the firmware is not provided by the vendor
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (fwupd-1.7.5.tar.xz) = f8b14eb550be1f75124162635c52f0eeb7d9cf5b986e51bb87d5f788f2dd063ae544af16818c66f133a96a8a111a32329eecca8f84a6543cd976990599bda8d1
|
SHA512 (fwupd-1.7.6.tar.xz) = d767c5d75659d205d77f34c86fb0603f89f8651ddb007994b1fa4d615e55a0e942c18f8ec5e0ebe31667873eb7e385805e92bc8ddec415f650337837174ed861
|
||||||
|
Loading…
Reference in New Issue
Block a user