Blame SPECS/fwupd.spec

66d618
%global glib2_version 2.45.8
66d618
%global libxmlb_version 0.1.3
66d618
%global libgusb_version 0.3.5
66d618
%global libcurl_version 7.62.0
66d618
%global libjcat_version 0.1.0
66d618
%global systemd_version 231
66d618
%global json_glib_version 1.1.1
66d618
66d618
# although we ship a few tiny python files these are utilities that 99.99%
66d618
# of users do not need -- use this to avoid dragging python onto CoreOS
66d618
%global __requires_exclude ^%{python3}$
66d618
66d618
# PPC64 is too slow to complete the tests under 3 minutes...
66d618
%ifnarch ppc64le
66d618
%global enable_tests 1
66d618
%endif
66d618
66d618
%global enable_dummy 1
66d618
66d618
# fwupd.efi is only available on these arches
66d618
%ifarch x86_64 aarch64
66d618
%global have_uefi 1
66d618
%endif
66d618
75fbaf
# gpio.h is only available on these arches
75fbaf
%ifarch x86_64 aarch64
75fbaf
%global have_gpio 1
75fbaf
%endif
75fbaf
66d618
# flashrom is only available on these arches
66d618
%ifarch i686 x86_64 armv7hl aarch64 ppc64le
66d618
%global have_flashrom 1
66d618
%endif
66d618
66d618
%ifarch i686 x86_64
66d618
%global have_msr 1
66d618
%endif
66d618
66d618
# libsmbios is only available on x86
66d618
%ifarch x86_64
66d618
%global have_dell 1
66d618
%endif
66d618
75fbaf
# Until we actually have seen it outside x86
75fbaf
%ifarch i686 x86_64
75fbaf
%global have_thunderbolt 1
75fbaf
%endif
75fbaf
66d618
# only available recently
66d618
%if 0%{?fedora} >= 30
66d618
%global have_modem_manager 1
66d618
%endif
66d618
66d618
Summary:   Firmware update daemon
66d618
Name:      fwupd
75fbaf
Version:   1.8.10
75fbaf
Release:   2%{?dist}
66d618
License:   LGPLv2+
66d618
URL:       https://github.com/fwupd/fwupd
66d618
Source0:   http://people.freedesktop.org/~hughsient/releases/%{name}-%{version}.tar.xz
75fbaf
Source2:   http://people.freedesktop.org/~hughsient/releases/fwupd-efi-1.4.tar.xz
75fbaf
75fbaf
Patch1:    0001-trivial-Fix-build-fix-when-using-ppc64le-system.patch
75fbaf
Patch2:    0001-Only-include-the-attribute-not-exported-warning-on-d.patch
75fbaf
Patch3:    0001-Do-not-make-any-of-the-HWIDs-setup-failures-fatal.patch
75fbaf
Patch4:    0001-modem-manager-remove-improper-use-of-assert.patch
75fbaf
Patch5:    0001-wacom-usb-Retry-set_report-on-failure.patch
75fbaf
75fbaf
Patch101:  0001-generate_binary-Add-NX-COMPAT-flag-manually-when-gen.patch
66d618
66d618
Source10:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20100307-x64.cab
66d618
Source11:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20140413-x64.cab
66d618
Source12:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20160809-x64.cab
66d618
Source13:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20200729-aa64.cab
66d618
Source14:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20200729-ia32.cab
66d618
Source15:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20200729-x64.cab
75fbaf
Source16:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20210429-x64.cab
75fbaf
Source17:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20220812-aa64.cab
75fbaf
Source18:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20220812-ia32.cab
75fbaf
Source19:  http://people.redhat.com/rhughes/dbx/DBXUpdate-20220812-x64.cab
66d618
66d618
# these are numbered high just to keep them wildly away from colliding with
66d618
# the real package sources, in order to reduce churn.
66d618
Source300:   redhatsecurebootca3.cer
66d618
Source301:   redhatsecureboot301.cer
66d618
Source500:   redhatsecurebootca5.cer
66d618
Source503:   redhatsecureboot503.cer
66d618
66d618
BuildRequires: gettext
66d618
BuildRequires: glib2-devel >= %{glib2_version}
66d618
BuildRequires: libxmlb-devel >= %{libxmlb_version}
66d618
BuildRequires: libgcab1-devel
66d618
BuildRequires: libgudev1-devel
66d618
BuildRequires: libgusb-devel >= %{libgusb_version}
66d618
BuildRequires: libcurl-devel >= %{libcurl_version}
66d618
BuildRequires: libjcat-devel >= %{libjcat_version}
66d618
BuildRequires: polkit-devel >= 0.103
66d618
BuildRequires: sqlite-devel
66d618
BuildRequires: systemd >= %{systemd_version}
66d618
BuildRequires: systemd-devel
66d618
BuildRequires: libarchive-devel
66d618
BuildRequires: gobject-introspection-devel
66d618
BuildRequires: gcab
66d618
%ifarch %{valgrind_arches}
66d618
BuildRequires: valgrind
66d618
BuildRequires: valgrind-devel
66d618
%endif
66d618
BuildRequires: gnutls-devel
66d618
BuildRequires: gnutls-utils
66d618
BuildRequires: meson
66d618
BuildRequires: json-glib-devel >= %{json_glib_version}
66d618
BuildRequires: vala
66d618
BuildRequires: bash-completion
66d618
BuildRequires: git-core
66d618
%if 0%{?have_flashrom}
66d618
BuildRequires: flashrom-devel >= 1.2-2
66d618
%endif
66d618
66d618
%if 0%{?have_modem_manager}
66d618
BuildRequires: ModemManager-glib-devel >= 1.10.0
66d618
BuildRequires: libqmi-devel >= 1.22.0
66d618
BuildRequires: libmbim-devel
66d618
%endif
66d618
66d618
%if 0%{?have_uefi}
66d618
BuildRequires: efivar-devel >= 33
66d618
BuildRequires: python3 python3-cairo python3-gobject
66d618
BuildRequires: pango-devel
66d618
BuildRequires: cairo-devel cairo-gobject-devel
66d618
BuildRequires: freetype
66d618
BuildRequires: fontconfig
66d618
BuildRequires: google-noto-sans-cjk-ttc-fonts
66d618
BuildRequires: gnu-efi-devel
66d618
BuildRequires: tpm2-tss-devel >= 2.2.3
66d618
BuildRequires: pesign >= 113-20
66d618
%endif
66d618
66d618
%if 0%{?have_dell}
66d618
BuildRequires: efivar-devel >= 33
66d618
BuildRequires: libsmbios-devel >= 2.3.0
66d618
%endif
66d618
66d618
Requires(post): systemd
66d618
Requires(preun): systemd
66d618
Requires(postun): systemd
66d618
66d618
Requires: glib2%{?_isa} >= %{glib2_version}
66d618
Requires: libxmlb%{?_isa} >= %{libxmlb_version}
66d618
Requires: libgusb%{?_isa} >= %{libgusb_version}
66d618
Requires: shared-mime-info
66d618
66d618
Obsoletes: fwupd-sign < 0.1.6
66d618
Obsoletes: libebitdo < 0.7.5-3
66d618
Obsoletes: libdfu < 1.0.0
66d618
Obsoletes: fwupd-labels < 1.1.0-1
66d618
66d618
Obsoletes: dbxtool < 9
66d618
Provides: dbxtool
66d618
66d618
# optional, but a really good idea
66d618
Recommends: udisks2
66d618
66d618
%if 0%{?have_modem_manager}
66d618
Recommends: %{name}-plugin-modem-manager
66d618
%endif
66d618
%if 0%{?have_flashrom}
66d618
Recommends: %{name}-plugin-flashrom
66d618
%endif
66d618
66d618
%description
66d618
fwupd is a daemon to allow session software to update device firmware.
66d618
66d618
%package devel
66d618
Summary: Development package for %{name}
66d618
Requires: %{name}%{?_isa} = %{version}-%{release}
66d618
Obsoletes: libebitdo-devel < 0.7.5-3
66d618
Obsoletes: libdfu-devel < 1.0.0
66d618
66d618
%description devel
66d618
Files for development with %{name}.
66d618
66d618
%package tests
66d618
Summary: Data files for installed tests
66d618
Requires: %{name}%{?_isa} = %{version}-%{release}
66d618
66d618
%description tests
66d618
Data files for installed tests.
66d618
66d618
%if 0%{?have_modem_manager}
66d618
%package plugin-modem-manager
66d618
Summary: fwupd plugin using ModemManger
66d618
Requires: %{name}%{?_isa} = %{version}-%{release}
66d618
66d618
%description plugin-modem-manager
66d618
This provides the optional package which is only required on hardware that
66d618
might have mobile broadband hardware. It is probably not required on servers.
66d618
%endif
66d618
66d618
%if 0%{?have_flashrom}
66d618
%package plugin-flashrom
66d618
Summary: fwupd plugin using flashrom
66d618
Requires: %{name}%{?_isa} = %{version}-%{release}
66d618
66d618
%description plugin-flashrom
66d618
This provides the optional package which is only required on hardware that
66d618
can be flashed using flashrom. It is probably not required on servers.
66d618
%endif
66d618
66d618
%prep
75fbaf
%setup -q
75fbaf
%patch1 -p1
75fbaf
%patch2 -p1
75fbaf
%patch3 -p1
75fbaf
%patch4 -p1
75fbaf
%patch5 -p1
66d618
66d618
mkdir -p subprojects/fwupd-efi
66d618
tar xfvs %{SOURCE2} -C subprojects/fwupd-efi --strip-components=1
75fbaf
cd subprojects/fwupd-efi
75fbaf
%patch101 -p1
75fbaf
cd -
66d618
66d618
%build
66d618
66d618
%meson \
75fbaf
    -Ddocs=disabled \
66d618
    -Dlvfs=disabled \
66d618
%if 0%{?enable_tests}
66d618
    -Dtests=true \
66d618
%else
66d618
    -Dtests=false \
66d618
%endif
66d618
%if 0%{?enable_dummy}
66d618
    -Dplugin_dummy=true \
66d618
%else
66d618
    -Dplugin_dummy=false \
66d618
%endif
66d618
%if 0%{?have_flashrom}
75fbaf
    -Dplugin_flashrom=enabled \
66d618
%else
75fbaf
    -Dplugin_flashrom=disabled \
66d618
%endif
66d618
%if 0%{?have_msr}
75fbaf
    -Dplugin_msr=enabled \
75fbaf
%else
75fbaf
    -Dplugin_msr=disabled \
75fbaf
%endif
75fbaf
%if 0%{?have_gpio}
75fbaf
    -Dplugin_gpio=enabled \
66d618
%else
75fbaf
    -Dplugin_gpio=disabled \
66d618
%endif
66d618
%if 0%{?have_uefi}
75fbaf
    -Dplugin_uefi_capsule=enabled \
75fbaf
    -Dplugin_uefi_pk=enabled \
75fbaf
    -Dplugin_tpm=enabled \
66d618
    -Defi_os_dir=%{efi_vendor} \
66d618
%ifarch x86_64
66d618
    -Dfwupd-efi:efi_sbat_distro_id="rhel" \
66d618
    -Dfwupd-efi:efi_sbat_distro_summary="Red Hat Enterprise Linux" \
66d618
    -Dfwupd-efi:efi_sbat_distro_pkgname="%{name}" \
66d618
    -Dfwupd-efi:efi_sbat_distro_version="%{version}" \
66d618
    -Dfwupd-efi:efi_sbat_distro_url="mail:secalert@redhat.com" \
66d618
    -Dfwupd-efi:efi-libdir="/usr/lib64" \
66d618
%endif
66d618
%else
75fbaf
    -Dplugin_uefi_capsule=disabled \
75fbaf
    -Dplugin_uefi_pk=disabled \
75fbaf
    -Dplugin_tpm=disabled \
66d618
%endif
66d618
%if 0%{?have_dell}
75fbaf
    -Dplugin_dell=enabled \
66d618
%else
75fbaf
    -Dplugin_dell=disabled \
66d618
%endif
66d618
%if 0%{?have_modem_manager}
75fbaf
    -Dplugin_modem_manager=enabled \
66d618
%else
75fbaf
    -Dplugin_modem_manager=disabled \
66d618
%endif
66d618
    -Dman=true \
75fbaf
    -Dbluez=disabled \
75fbaf
    -Dcbor=disabled \
75fbaf
    -Dplugin_android_boot=disabled \
75fbaf
    -Dplugin_cfu=disabled \
75fbaf
    -Dplugin_igsc=disabled \
75fbaf
    -Dplugin_intel_me=disabled \
75fbaf
    -Dplugin_logitech_bulkcontroller=disabled \
75fbaf
    -Dplugin_logitech_scribe=disabled \
75fbaf
    -Dplugin_mtd=disabled \
75fbaf
    -Dplugin_powerd=disabled \
75fbaf
    -Dplugin_uf2=disabled \
75fbaf
    -Dsupported_build=enabled
66d618
66d618
%meson_build
66d618
66d618
%if 0%{?enable_tests}
66d618
%check
66d618
%meson_test
66d618
%endif
66d618
66d618
%install
66d618
%meson_install
66d618
66d618
# on RHEL the LVFS is disabled by default
66d618
mkdir -p %{buildroot}/%{_datadir}/dbxtool
75fbaf
install %{SOURCE10} %{SOURCE11} %{SOURCE12} %{SOURCE13} %{SOURCE14} %{SOURCE15} %{SOURCE16} %{SOURCE17} %{SOURCE18} %{SOURCE19} %{buildroot}/%{_datadir}/dbxtool
66d618
66d618
# sign fwupd.efi loader
66d618
%ifarch x86_64
66d618
%global efiarch x64
66d618
%global fwup_efi_fn $RPM_BUILD_ROOT%{_libexecdir}/fwupd/efi/fwupd%{efiarch}.efi
66d618
%pesign -s -i %{fwup_efi_fn} -o %{fwup_efi_fn}.tmp -a %{SOURCE300} -c %{SOURCE301} -n redhatsecureboot301
66d618
%pesign -s -i %{fwup_efi_fn}.tmp -o %{fwup_efi_fn}.signed -a %{SOURCE500} -c %{SOURCE503} -n redhatsecureboot503
66d618
rm -fv %{fwup_efi_fn}.tmp
66d618
%endif
66d618
66d618
mkdir -p --mode=0700 $RPM_BUILD_ROOT%{_localstatedir}/lib/fwupd/gnupg
66d618
66d618
# workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1757948
66d618
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/fwupd
66d618
66d618
%find_lang %{name}
66d618
66d618
%post
66d618
%systemd_post fwupd.service
66d618
66d618
# change vendor-installed remotes to use the default keyring type
66d618
for fn in /etc/fwupd/remotes.d/*.conf; do
66d618
    if grep -q "Keyring=gpg" "$fn"; then
66d618
        sed -i 's/Keyring=gpg/#Keyring=pkcs/g' "$fn";
66d618
    fi
66d618
done
66d618
66d618
%preun
66d618
%systemd_preun fwupd.service
66d618
66d618
%postun
66d618
%systemd_postun_with_restart fwupd.service
66d618
%systemd_postun_with_restart pesign.service
66d618
66d618
%files -f %{name}.lang
66d618
%doc README.md AUTHORS
66d618
%license COPYING
66d618
%config(noreplace)%{_sysconfdir}/fwupd/daemon.conf
66d618
%if 0%{?have_uefi}
66d618
%config(noreplace)%{_sysconfdir}/fwupd/uefi_capsule.conf
66d618
%endif
66d618
%config(noreplace)%{_sysconfdir}/fwupd/redfish.conf
75fbaf
%if 0%{?have_thunderbolt}
66d618
%config(noreplace)%{_sysconfdir}/fwupd/thunderbolt.conf
75fbaf
%endif
66d618
%dir %{_libexecdir}/fwupd
66d618
%{_libexecdir}/fwupd/fwupd
66d618
%ifarch i686 x86_64
66d618
%{_libexecdir}/fwupd/fwupd-detect-cet
66d618
%endif
66d618
%{_libexecdir}/fwupd/fwupdoffline
66d618
%if 0%{?have_uefi}
66d618
%{_libexecdir}/fwupd/efi/*.efi
66d618
%ifarch x86_64
66d618
%{_libexecdir}/fwupd/efi/*.efi.signed
66d618
%endif
66d618
%{_bindir}/fwupdate
66d618
%endif
66d618
%{_bindir}/dfu-tool
66d618
%if 0%{?have_uefi}
66d618
%{_bindir}/dbxtool
66d618
%endif
66d618
%{_bindir}/fwupdmgr
66d618
%{_bindir}/fwupdtool
66d618
%{_bindir}/fwupdagent
66d618
%dir %{_sysconfdir}/fwupd
75fbaf
%dir %{_sysconfdir}/fwupd/bios-settings.d
75fbaf
%{_sysconfdir}/fwupd/bios-settings.d/README.md
66d618
%dir %{_sysconfdir}/fwupd/remotes.d
66d618
%if 0%{?have_dell}
66d618
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/dell-esrt.conf
66d618
%endif
66d618
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/lvfs.conf
66d618
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/lvfs-testing.conf
66d618
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/vendor.conf
66d618
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/vendor-directory.conf
66d618
%config(noreplace)%{_sysconfdir}/pki/fwupd
66d618
%{_sysconfdir}/pki/fwupd-metadata
66d618
%if 0%{?have_msr}
66d618
/usr/lib/modules-load.d/fwupd-msr.conf
20bf55
%config(noreplace)%{_sysconfdir}/fwupd/msr.conf
66d618
%endif
66d618
%{_datadir}/dbus-1/system.d/org.freedesktop.fwupd.conf
66d618
%{_datadir}/bash-completion/completions/fwupdmgr
66d618
%{_datadir}/bash-completion/completions/fwupdtool
66d618
%{_datadir}/bash-completion/completions/fwupdagent
66d618
%{_datadir}/fish/vendor_completions.d/fwupdmgr.fish
66d618
%{_datadir}/fwupd/metainfo/org.freedesktop.fwupd*.metainfo.xml
66d618
%if 0%{?have_dell}
66d618
%{_datadir}/fwupd/remotes.d/dell-esrt/metadata.xml
66d618
%endif
66d618
%{_datadir}/fwupd/remotes.d/vendor/firmware/README.md
66d618
%{_datadir}/dbus-1/interfaces/org.freedesktop.fwupd.xml
66d618
%{_datadir}/polkit-1/actions/org.freedesktop.fwupd.policy
66d618
%{_datadir}/polkit-1/rules.d/org.freedesktop.fwupd.rules
66d618
%{_datadir}/dbus-1/system-services/org.freedesktop.fwupd.service
66d618
%dir %{_datadir}/dbxtool
66d618
%{_datadir}/dbxtool/DBXUpdate-20100307-x64.cab
66d618
%{_datadir}/dbxtool/DBXUpdate-20140413-x64.cab
66d618
%{_datadir}/dbxtool/DBXUpdate-20160809-x64.cab
66d618
%{_datadir}/dbxtool/DBXUpdate-20200729-aa64.cab
66d618
%{_datadir}/dbxtool/DBXUpdate-20200729-ia32.cab
66d618
%{_datadir}/dbxtool/DBXUpdate-20200729-x64.cab
75fbaf
%{_datadir}/dbxtool/DBXUpdate-20210429-x64.cab
75fbaf
%{_datadir}/dbxtool/DBXUpdate-20220812-aa64.cab
75fbaf
%{_datadir}/dbxtool/DBXUpdate-20220812-ia32.cab
75fbaf
%{_datadir}/dbxtool/DBXUpdate-20220812-x64.cab
66d618
%{_mandir}/man1/fwupdtool.1*
66d618
%{_mandir}/man1/fwupdagent.1*
66d618
%{_mandir}/man1/dfu-tool.1*
66d618
%if 0%{?have_uefi}
66d618
%{_mandir}/man1/dbxtool.*
66d618
%endif
66d618
%{_mandir}/man1/fwupdmgr.1*
66d618
%if 0%{?have_uefi}
66d618
%{_mandir}/man1/fwupdate.1*
66d618
%endif
66d618
%{_datadir}/metainfo/org.freedesktop.fwupd.metainfo.xml
66d618
%{_datadir}/icons/hicolor/scalable/apps/org.freedesktop.fwupd.svg
66d618
%{_datadir}/fwupd/firmware_packager.py
66d618
%{_datadir}/fwupd/simple_client.py
66d618
%{_datadir}/fwupd/add_capsule_header.py
66d618
%{_datadir}/fwupd/install_dell_bios_exe.py
66d618
%{_unitdir}/fwupd-offline-update.service
66d618
%{_unitdir}/fwupd.service
66d618
%{_unitdir}/fwupd-refresh.service
66d618
%{_unitdir}/fwupd-refresh.timer
66d618
%{_presetdir}/fwupd-refresh.preset
66d618
%{_unitdir}/system-update.target.wants/
66d618
%dir %{_localstatedir}/lib/fwupd
66d618
%dir %{_localstatedir}/cache/fwupd
66d618
%dir %{_datadir}/fwupd/quirks.d
75fbaf
%{_datadir}/fwupd/quirks.d/builtin.quirk.gz
66d618
%if 0%{?have_uefi}
66d618
%{_sysconfdir}/grub.d/35_fwupd
66d618
%endif
66d618
%{_libdir}/libfwupd.so.2*
66d618
%{_libdir}/girepository-1.0/Fwupd-2.0.typelib
66d618
/usr/lib/udev/rules.d/*.rules
66d618
/usr/lib/systemd/system-shutdown/fwupd.shutdown
75fbaf
%dir %{_libdir}/fwupd-%{version}
75fbaf
%{_libdir}/fwupd-%{version}/libfwupd*.so
66d618
%ghost %{_localstatedir}/lib/fwupd/gnupg
66d618
66d618
%if 0%{?have_modem_manager}
66d618
%files plugin-modem-manager
75fbaf
%{_libdir}/fwupd-%{version}/libfu_plugin_modem_manager.so
66d618
%endif
66d618
%if 0%{?have_flashrom}
66d618
%files plugin-flashrom
75fbaf
%{_libdir}/fwupd-%{version}/libfu_plugin_flashrom.so
66d618
%endif
66d618
%if 0%{?have_uefi}
66d618
%{_datadir}/fwupd/uefi-capsule-ux.tar.xz
66d618
%endif
66d618
66d618
%files devel
66d618
%{_datadir}/gir-1.0/Fwupd-2.0.gir
66d618
%{_datadir}/vala/vapi
66d618
%{_includedir}/fwupd-1
66d618
%{_libdir}/libfwupd*.so
66d618
%{_libdir}/pkgconfig/fwupd.pc
66d618
%if 0%{?have_uefi}
66d618
%{_libdir}/pkgconfig/fwupd-efi.pc
66d618
%endif
66d618
66d618
%files tests
66d618
%if 0%{?enable_tests}
75fbaf
%{_datadir}/fwupd/host-emulate.d/*.json.gz
66d618
%dir %{_datadir}/installed-tests/fwupd
66d618
%{_datadir}/installed-tests/fwupd/tests/*
66d618
%{_datadir}/installed-tests/fwupd/fwupd-tests.xml
66d618
%{_datadir}/installed-tests/fwupd/*.test
66d618
%{_datadir}/installed-tests/fwupd/*.cab
66d618
%{_datadir}/installed-tests/fwupd/*.sh
75fbaf
%{_datadir}/installed-tests/fwupd/*.zip
66d618
%if 0%{?have_uefi}
66d618
%{_datadir}/installed-tests/fwupd/efi
66d618
%endif
75fbaf
%{_datadir}/installed-tests/fwupd/chassis_type
75fbaf
%{_datadir}/installed-tests/fwupd/sys_vendor
66d618
%{_datadir}/fwupd/device-tests/*.json
66d618
%{_libexecdir}/installed-tests/fwupd/*
66d618
%dir %{_sysconfdir}/fwupd/remotes.d
66d618
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/fwupd-tests.conf
66d618
%endif
66d618
66d618
%changelog
75fbaf
* Thu Feb 02 2023 Richard Hughes <richard@hughsie.com> 1.8.10-2
75fbaf
- Rebuild because distrobaker did entirely the wrong thing.
75fbaf
- Resolves: rhbz#2128384, needed for rhbz#2119436 and rhbz#2128384
75fbaf
75fbaf
* Fri Jan 27 2023 Richard Hughes <richard@hughsie.com> 1.8.10-1
75fbaf
- Rebase to latest upstream release to fix multiple ESP detection problems
75fbaf
- Resolves: rhbz#2128384, needed for rhbz#2119436 and rhbz#2128384
75fbaf
75fbaf
* Fri Sep 23 2022 Richard Hughes <richard@hughsie.com> 1.7.10-1
75fbaf
- New upstream release
75fbaf
- Resolves: rhbz#2129280
75fbaf
75fbaf
* Thu Sep 01 2022 Richard Hughes <rhughes@redhat.com> 1.7.9-2
75fbaf
- Include the new dbx updates on the filesystem; clients typically do not have LVFS enabled.
75fbaf
- Resolves: rhbz#2120708
75fbaf
20bf55
* Mon Jul 25 2022 Richard Hughes <richard@hughsie.com> 1.7.8-1
20bf55
- New upstream release
20bf55
- Resolves: rhbz#2059075
20bf55
20bf55
* Wed Apr 06 2022 Richard Hughes <richard@hughsie.com> 1.7.4-3
20bf55
- Disable the Logitech bulkcontroller plugin to avoid adding a dep to protobuf-c
20bf55
  which lives in AppStream, not BaseOS.
66d618
- Use the efi_vendor variable from EFI-RPM
20bf55
- Resolves: rhbz#2064904
66d618
66d618
* Thu Jan 13 2022 Richard Hughes <richard@hughsie.com> 1.7.4-1
66d618
- New upstream release
66d618
- Backport Fedora 34 changes
66d618
- Include support for Lenovo TBT4 Docking stations
66d618
- Do not cause systemd-modules-load failures
66d618
- Build against a new enough pesign
66d618
- Resolves: rhbz#2007520
66d618
66d618
* Mon Nov 01 2021 Richard Hughes <richard@hughsie.com> 1.7.1-1
66d618
- New upstream release
66d618
- Backport Fedora 34 changes
66d618
- Include support for Dell TBT4 Docking stations
66d618
- Resolves: rhbz#1974347
66d618
- Resolves: rhbz#1991426
66d618
66d618
* Fri Sep 24 2021 Richard Hughes <richard@hughsie.com> 1.5.9-4
66d618
- Rebuilt to use redhatsecureboot503 signatures
66d618
- Undo last Fedora sync to use the RHEL-specific patches
66d618
- Resolves: rhbz#2007520
66d618
66d618
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.9-3
66d618
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
66d618
  Related: rhbz#1991688
66d618
66d618
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.9-2
66d618
- Rebuilt for RHEL 9 BETA for openssl 3.0
66d618
  Related: rhbz#1971065
66d618
66d618
* Mon Apr 19 2021 Richard Hughes <richard@hughsie.com> 1.5.9-1
66d618
- Rebase to include the SBAT metadata section to allow fixing BootHole
66d618
- Resolves: rhbz#1951030
66d618
66d618
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.5.5-4
66d618
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
66d618
66d618
* Mon Apr 12 2021 Richard Hughes <richard@hughsie.com> 1.5.5-3
66d618
- Backport a patch from master to drop the python3-pillow dep
66d618
- Resolves: rhbz#1935838
66d618
66d618
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
66d618
66d618
* Mon Jan 11 2021 Richard Hughes <richard@hughsie.com> 1.5.5-1
66d618
- New upstream release
66d618
- Add a plugin to update PixArt RF devices
66d618
- Add new hardware to use the elantp and rts54hid plugins
66d618
- Detect the AMD TSME encryption state for HSI-4
66d618
- Detect the AMI PK test key is not installed for HSI-1
66d618
- Fix flashing a fingerprint reader that is in use
66d618
- Fix several critical warnings when parsing invalid firmware
66d618
- Fix updating DFU devices that use DNLOAD_BUSY
66d618
- Ignore the legacy UEFI OVMF dummy GUID
66d618
- Make libfwupd more thread safe to fix a crash in gnome-software
66d618
- Never show unprintable chars from invalid firmware in the logs
66d618
66d618
* Wed Dec 16 2020 Richard Hughes <richard@hughsie.com> 1.5.4-1
66d618
- New upstream release
66d618
- Add Maple Ridge Thunderbolt firmware parsing support
66d618
- Allow creating FMAP and Synaptics firmware using builder.xml
66d618
- Allow using fwupdtool as non-root for firmware commands
66d618
- Do not trust the Block.HintSystem boolean for ESP filtering
66d618
- Fix a memory leak when parsing Synaptics firmware
66d618
- Fix a possible crash when reading the Goodix MOC USB request
66d618
- Fix possible crashes when parsing invalid firmware
66d618
66d618
* Tue Dec 08 2020 Richard Hughes <richard@hughsie.com> 1.5.3-1
66d618
- New upstream release
66d618
- Add a UEFI quirk for Star Labs Lite Mk III
66d618
- Add the device firmare ID for serio class hardware
66d618
- Allow setting the GMainContext when used for sync methods
66d618
- Allow the client to send legacy PKCS7 and GPG signatures
66d618
- Export the driver name from FuUdevDevice
66d618
- Fix a possible critical warning due to missing retval
66d618
- Fix the endianness for the CRC check in bcm57xx
66d618
- Make sure the correct interface number is used for QMI
66d618
- Mark more user-visible strings as translatable
66d618
- Restrict loading component types of firmware
66d618
- Validate ModemManager firmware update method combinations
66d618
66d618
* Mon Nov 23 2020 Richard Hughes <richard@hughsie.com> 1.5.2-1
66d618
- New upstream release
66d618
- Add a flag to indicate if packages are supported
66d618
- Add a plugin for the Pinebook Pro laptop
66d618
- Allow components to set the icon from the metadata
66d618
- Fall back to FAT32 internal partitions for detecting ESP
66d618
- Fix detection of ColorHug version on older firmware versions
66d618
- Fix reading BCM57XX vendor and device ids from firmware
66d618
- Fix replugging the MSP430 device
66d618
- Fix sync method when called from threads without a context
66d618
- Ignore an invalid vendor-id when adding releases for display
66d618
- Improve synaptics-mst reliability when writing data
66d618
- Install modules-load configs in the correct directory
66d618
- Notify the service manager when idle-quitting
66d618
- Only download the remote metadata as required
66d618
- Remove HSI update and attestation suffixes
66d618
- Restore recognizing GPG and PKCS7 signature types in libfwupd
66d618
- Set the SMBIOS chassis type to portable if a DT battery exists
66d618
- Switch from libsoup to libcurl for downloading data
66d618
66d618
* Fri Nov 20 2020 Adam Williamson <awilliam@redhat.com> - 1.5.1-2
66d618
- Backport #2605 for #2600, seems to help RHBZ #1896540
66d618
66d618
* Mon Nov 01 2020 Richard Hughes <richard@hughsie.com> 1.5.1-1
66d618
- New upstream release
66d618
- Delete unused EFI variables when deploying firmware
66d618
- Fix probe warning for the Logitech Unifying device
66d618
- Include the amount of NVRAM size in use in the LVFS failure report
66d618
- Make bcm57xx hotplug more reliable
66d618
- Recognize authorized thunderbolt value of 2
66d618
- Remove the duplicate parent-child data in FwupdDevice and FuDevice
66d618
- Show a less scary fwupdate output for devices without info
66d618
- Use a different Device ID for the OptionROM devices
66d618
- Use UDisks to find out if swap devices are encrypted
66d618
66d618
* Mon Oct 26 2020 Richard Hughes <richard@hughsie.com> 1.5.0-1
66d618
- New upstream release
66d618
- Add async versions of the library for GUI tools
66d618
- Add commands for interacting with the ESP to fwupdtool
66d618
- Add plugin for Goodix fingerprint sensors
66d618
- Add plugin that can update the BCM5719 network adapter
66d618
- Add plugin to update Elan Touchpads using HID
66d618
- Add support for ChromeOS Quiche and Gingerbread
66d618
- Add support for the Host Security ID
66d618
- Add support for ThunderBolt retimers
66d618
- Add switch-branch command to fwupdtool and fwupdmgr
66d618
- Allow blocking specific firmware releases by checksum
66d618
- Allow constructing a firmware with multiple images
66d618
- Allow firmware to require specific features from front-end clients
66d618
- Fix setting BootNext correctly when multiple updates are scheduled
66d618
- Fix the topology of the audio device on the Lenovo TR dock
66d618
- Include the HSI results and attributes in the uploaded report
66d618
- Make return code different for get-updates with no updates
66d618
- Make specific authorizations also imply others
66d618
- Parse the HEX version before comparing for equality
66d618
- Prevent dell-dock updates to occur via synaptics-mst plugin
66d618
- Record the UEFI failure in more cases
66d618
- Support loading DMI data from DT systems
66d618
- Support LVFS::UpdateImage for GUI clients
66d618
- Use pkttyagent to request user passwords if running without GUI
66d618
66d618
* Mon Sep 07 2020 Richard Hughes <richard@hughsie.com> 1.4.6-1
66d618
- New upstream release
66d618
- Add a re-implementation of the rhboot dbxtool
66d618
- Add missing Synaptics Prometheus GUIDs for ConfigId
66d618
- Add support for the LabTop Mk IV
66d618
- Add support for the Realtek RTD21XX I²C protocol
66d618
- Allow blocking specific firmware releases by checksum
66d618
- Allow DFU device to attach to runtime without a bus reset
66d618
- Allow plugins to set remove delay only on the child
66d618
- Cancel the file monitor before disposal to avoid a potential deadlock
66d618
- Correctly label the vebdor for more NVMe devices
66d618
- Specify a remove delay for Poly USB Cameras
66d618
- Support download of large DFU firmware
66d618
- Support polling the status from device in dfuManifest state
66d618
- Use newer libxmlb features to properly display more AppStream markup
66d618
66d618
* Tue Aug 18 2020 Richard Hughes <richard@hughsie.com> 1.4.5-4
66d618
- Rebuild for the libxmlb API bump.
66d618
66d618
* Mon Aug 03 2020 Peter Jones <pjones@redhat.com> - 1.4.5-3
66d618
- Make dual signing happen.
66d618
  Related: CVE-2020-10713
66d618
66d618
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5-2
66d618
- Second attempt - Rebuilt for
66d618
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
66d618
66d618
* Thu Jul 30 2020 Richard Hughes <richard@hughsie.com> 1.4.5-1
66d618
- New upstream release
66d618
- Add dual-image feature for VL103 backup firmware
66d618
- Add more CCGX hybrid dock support
66d618
- Add support for a delayed activation flow for Thunderbolt
66d618
- Allow firmware to require specific features from front-end clients
66d618
- Be more defensive when remotes are missing required keys
66d618
- Check all AppStream components when verifying
66d618
- Check for free space after cleaning up ESP
66d618
- Fix TPM PCR0 calculation
66d618
- Modernize the thunderbolt plugin for future hardware
66d618
- Only show UpdateMessage when state is success
66d618
- Read the modem vendor ID correctly
66d618
- Set the runtime version to 0.0.0 for pre-1.0.0 Thelio Io firmware
66d618
- Support compiling libqmi-glib 1.26.0 and later
66d618
- Support LVFS::UpdateImage in GUI clients
66d618
- Use the GPIOB reset for the MiniDock VL103
66d618
- Wait for the root device to be replugged when updating the MSP430
66d618
66d618
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
66d618
66d618
* Wed Jun 10 2020 Richard Hughes <richard@hughsie.com> 1.4.4-1
66d618
- New upstream release
66d618
- Fix refreshing when checking for downgraded metadata
66d618
66d618
* Tue Jun 09 2020 Richard Hughes <richard@hughsie.com> 1.4.3-1
66d618
- New upstream release
66d618
- Add support for HP DMC dock devices
66d618
- Always enforce the metadata signature has a valid timestamp
66d618
- Capture the dock SKU in metadata
66d618
- Check the device requirements when returning from GetDetails
66d618
- Prevent Dell dock updates to occur via synaptics-mst plugin
66d618
66d618
* Fri May 22 2020 Richard Hughes <richard@hughsie.com> 1.4.2-2
66d618
- Backport a patch to fix the synaptics fingerprint reader update.
66d618
66d618
* Mon May 18 2020 Richard Hughes <richard@hughsie.com> 1.4.2-1
66d618
- New upstream release
66d618
- Add several more ATA OUI quirks
66d618
- Avoid communicating with DFU devices when bitManifestationTolerant is off
66d618
- Correct the display of final calculated PCRs
66d618
- Delay activation for Dell Thunderbolt updates
66d618
- Do not use synaptics-rmi on the Dell K12A
66d618
- Fix switching wacom-raw to bootloader mode
66d618
- Switch the default of EnumerateAllDevices to false
66d618
- Use GPIOB to reset the VL817 found in two Lenovo products
66d618
66d618
* Mon Apr 27 2020 Richard Hughes <richard@hughsie.com> 1.4.1-1
66d618
- New upstream release
66d618
- Allow specifying the device on the command line by GUID
66d618
- Correctly format firmware version of Dynabook X30 and X40
66d618
- Do not show safe mode errors for USB4 host controllers
66d618
- Do not show the USB 2 VLI recovery devices for USB 3 hubs
66d618
- Fix the correct DeviceID set by GetDetails
66d618
- Only update the FW2 partition of the ThinkPad USB-C Dock Gen2
66d618
- Prefer to update the child device first if the order is unspecified
66d618
- Refresh device name and format before setting supported flag
66d618
- Reset the progressbar time estimate if the percentage is invalid
66d618
- Set the CCGX device name and summary from quirk files
66d618
- Wait for the cxaudio device to reboot after writing firmware
66d618
66d618
* Tue Apr 14 2020 Richard Hughes <richard@hughsie.com> 1.4.0-1
66d618
- New upstream release
66d618
- Actually reload the DFU device after upgrade has completed
66d618
- Add plugin for CPU microcode
66d618
- Add plugin for Cypress CCGX hardware
66d618
- Add plugin for EP963x hardware
66d618
- Add STM32F745 DfuSe version quirk
66d618
- Allow server metadata to set the device name and version format
66d618
- Always check for 'PLAIN' when doing vercmp() operations
66d618
- Apply version format to releases and devices at same time
66d618
- Check the firmware requirements before adding 'SUPPORTED'
66d618
- Correctly attach VL103 after a firmware update
66d618
- Do not allow devices that have no vendor ID to be 'UPDATABLE'
66d618
- Do not use shim for non-secure boot configurations
66d618
- Export the device state, release creation time and urgency
66d618
- Fix a crash when removing device parents
66d618
- Fix a difficult-to-trigger daemon hang when replugging devices
66d618
- Fix a runtime error when detaching MSP430
66d618
- Fix CounterpartGuid when there is more than one supported device
66d618
- Fix reporting Synaptics cxaudio version number
66d618
- Introduce a new VersionFormat of 'hex'
66d618
- Load the signature to get the aliased CDN-safe version of the metadata
66d618
- Never add USB hub devices that are not upgradable
66d618
- Only auto-add counterpart GUIDs when required
66d618
- Parse the CSR firmware as a DFU file
66d618
- Set the protocol when updating logitech HID++ devices
66d618
- Use Jcat files in firmware archives and for metadata
66d618
- When TPM PCR0 measurements fail, query if secure boot is available and enabled
66d618
66d618
* Thu Mar 05 2020 Nicolas Mailhot <nim@fedoraproject.org> 1.3.9-2
66d618
- Rebuild against the new Gusb.
66d618
66d618
* Wed Mar 04 2020 Richard Hughes <richard@hughsie.com> 1.3.9-1
66d618
- New upstream release
66d618
- Added completion script for fish shell
66d618
- Always check for PLAIN when doing vercmp() operations
66d618
- Always return AppStream markup for remote agreements
66d618
- Apply UEFI capsule update even with single valid capsule
66d618
- Check the device protocol before de-duping devices
66d618
- Copy the version and format from donor device in get-details
66d618
- Correctly append the release to devices in `fwupdtool get-details`
66d618
- Decrease minimum battery requirement to 10%
66d618
- Discard the reason upgrades aren't available
66d618
- Do not fail loading in /etc/machine-id is not available
66d618
- Fix a critical warning when installing some firmware
66d618
- For the `get-details` command make sure to always show devices
66d618
- Inhibit all power management actions using logind when updating
66d618
- Set the MSP430 version format to pair
66d618
- Switch off the ATA verbose logging by default
66d618
- Use unknown for version format by default on get-details
66d618
66d618
* Thu Feb 13 2020 Richard Hughes <richard@hughsie.com> 1.3.8-1
66d618
- New upstream release
66d618
- Add an extra instance ID to disambiguate USB hubs
66d618
- Add a plugin to update PD controllers by Fresco Logic
66d618
- Correctly reset VL100 PD devices
66d618
- Do not rewrite BootOrder in the EFI helper
66d618
- Do not use vercmp when the device version format is plain
66d618
- Fix firmware regression in the EFI capsule helper
66d618
- Fix updating Synaptics MST devics with no PCI parent
66d618
- Ignore Unifying detach failures
66d618
- Make the cxaudio version match that of the existing Windows tools
66d618
- Replay the TPM event log to get the PCRx values
66d618
- Set up more parent devices for various Lenovo USB hubs
66d618
- Support the new gnuefi file locations
66d618
- Use the correct command to get the VLI device firmware version
66d618
66d618
* Fri Jan 31 2020 Richard Hughes <richard@hughsie.com> 1.3.7-1
66d618
- New upstream release
66d618
- Add 'get-remotes' and 'refresh' to fwupdtool
66d618
- Add support for standalone VIA PD devices
66d618
- Allow applying all releases to get to a target version
66d618
- Correctly delete UEFI variables
66d618
- Correctly import PKCS-7 remote metadata
66d618
- Discourage command line metadata refreshes more than once per day
66d618
- Do not always get the vendor ID for udev devices using the parent
66d618
- Get the list of updates in JSON format from fwupdagent
66d618
- Show the device parent if there is an interesting child
66d618
- Shut down automatically when there is system memory pressure
66d618
- Use a different protocol ID for VIA i2c devices
66d618
- Use the correct timeout for Logitech IO channel writes
66d618
66d618
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.6-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
66d618
66d618
* Mon Dec 30 2019 Richard Hughes <richard@hughsie.com> 1.3.6-1
66d618
- New upstream release
66d618
- Add a dell-bios version format to match what is shown on the vendor website
66d618
- Add a new plugin that exposes the TPM device
66d618
- Allow incremental version major and minor number for Synaptics Prometheus devices
66d618
- Clarify error messages when no upgrades are available
66d618
- Correct the default prompt for reboot/shutdown
66d618
- Do not expose bootloader version errors to users
66d618
- Enforce that device protocol matches the metadata value
66d618
- Export the device protocol and raw device version to the client --verbose output
66d618
- Fix the quirk for the legacy VIA 813 usbhub chip
66d618
- Only check the vendor ID if the device has one set
66d618
- Return exit status success if there is no firmware to be updated
66d618
- Set the correct vendor eMMC ID prefix
66d618
- Use the baseboard vendor as the superio vendor ID
66d618
- Use the BIOS vendor as the coreboot and flashrom vendor ID
66d618
66d618
* Fri Nov 29 2019 Richard Hughes <richard@hughsie.com> 1.3.5-1
66d618
- New upstream release
66d618
- Convert libfwupdprivate to a shared library libfwupdplugin
66d618
- Create a REV_00 instance ID as this may be what the vendor needs to target
66d618
- Improve coreboot version detection
66d618
- Invert default behavior to be safer for reboot and shutdown prompts
66d618
- Reload the Synaptics prometheus device version after update
66d618
- Use the correct unlocker when using GRWLock
66d618
- Whitelist VIA USB hub PD and I²C devices
66d618
66d618
* Fri Nov 22 2019 Richard Hughes <richard@hughsie.com> 1.3.4-1
66d618
- New upstream release
66d618
- Add support for Foxconn T77W968 and DW5821e eSIM
66d618
- Add support for matching firmware requirements on device parents
66d618
- Add support for writing VIA PD and I2C devices
66d618
- Add versions formats for the Microsoft Surface devices
66d618
- Correct Wacom panel HWID support
66d618
- Fix a fastboot regression when updating modem firmware
66d618
- Fix regression when coldplugging superio devices
66d618
- Fix the linking of the UEFI update binary
66d618
- Fix the vendor id of hidraw devices
66d618
- Make loading USB device strings non-fatal
66d618
- Reject invalid Synaptics MST chip IDs
66d618
- Skip cleanup after device is done updating if required
66d618
66d618
* Fri Nov 01 2019 Richard Hughes <richard@hughsie.com> 1.3.3-1
66d618
- New upstream release
66d618
- Add a plugin for systems running coreboot
66d618
- Add a plugin to update eMMC devices
66d618
- Add a plugin to update Synaptics RMI4 devices
66d618
- Add a plugin to update VIA USB hub hardware
66d618
- Add several quirks for Realtek webcams
66d618
- Add some success messages when CLI tasks have completed
66d618
- Add support for automatically uploading reports
66d618
- Add support for `fwupdmgr reinstall`
66d618
- Add support for the 8bitdo SN30Pro+
66d618
- Add support for the ThinkPad USB-C Dock Gen2 audio device
66d618
- Allow fwupdtool to dump details of common firmware formats
66d618
- Always report the update-error correctly for multiple updates
66d618
- Create a unique GUID for the Thunderbolt controller path
66d618
- Fix a regression for Wacom EMR devices
66d618
- Recognize new 'generation' Thunderbolt sysfs attribute for USB4
66d618
- Rework ESP path detection and lifecycle to auto-unmount when required
66d618
- Show a useful error for Logitech devices that cannot self-reset
66d618
- Use correct method for stopping systemd units
66d618
- Use device safety flags to show prompts before installing updates
66d618
- Use will-disappear flag for 8bitdo SF30/SN30 controllers
66d618
- Use XMLb to query quirks to reduce the RSS when running
66d618
66d618
* Tue Oct 08 2019 Richard Hughes <richard@hughsie.com> 1.3.2-2
66d618
- Manually create /var/cache/fwupd to work around #1757948
66d618
66d618
* Thu Sep 26 2019 Richard Hughes <richard@hughsie.com> 1.3.2-1
66d618
- New upstream release
66d618
- Add aliases for get-upgrades and upgrade
66d618
- Add support for Conexant audio devices
66d618
- Add support for the Minnowboard Turbot
66d618
- Add support for the SoloKey Secure
66d618
- Add support for the Thelio IO board
66d618
- Add support to integrate into the motd
66d618
- Allow disabling SSL strict mode for broken corporate proxies
66d618
- Allow filtering devices when using the command line tools
66d618
- Allow specifying a firmware GUID to check any version exists
66d618
- Be more accepting when trying to recover a failed database migration
66d618
- Display more helpful historical device information
66d618
- Do not ask the user to upload a report if ReportURI is not set
66d618
- Do not segfault when trying to quit the downgrade selection
66d618
- Ensure HID++ v2.0 peripheral devices get added
66d618
- Never show AppStream markup on the console
66d618
- Only write the new UEFI device path if different than before
66d618
- Partially rewrite the Synapticsmst plugin to support more hardware
66d618
- Print devices, remotes, releases using a tree
66d618
- Support issues in AppStream metadata
66d618
- Use tpm2-tss library to read PCR values
66d618
66d618
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.10-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
66d618
66d618
* Mon Jul 15 2019 Richard Hughes <richard@hughsie.com> 1.2.10-1
66d618
- New upstream release
66d618
- Add a specific error code for the low battery case
66d618
- Add support for 8bitdo USB Retro Receiver
66d618
- Export new API to build objects from GVariant blobs
66d618
- Fix installing synaptics-prometheus config updates
66d618
- Prompt for reboot when unlocking on the command line if applicable
66d618
- Show a warning when running in UEFI legacy mode
66d618
- Show devices with an UpdateError in get-devices output
66d618
- Support a UEFI quirk to disable the use of the UX capsule
66d618
- Support empty proxy server strings
66d618
- Try harder to find duplicate UEFI boot entries
66d618
66d618
* Mon May 20 2019 Richard Hughes <richard@hughsie.com> 1.2.9-1
66d618
- New upstream release
66d618
- Add support for Synaptics Prometheus fingerprint readers
66d618
- Check the daemon version is at least the client version
66d618
- Correctly identify DFU firmware that starts at offset zero
66d618
- Display the remote warning on the console in an easy-to-read way
66d618
- Export the version-format used by devices to clients
66d618
- Fix a libasan failure when reading a UEFI variable
66d618
- Never guess the version format from the version string
66d618
- Only use class-based instance IDs for quirk matching
66d618
- Prompt the user to shutdown if required when installing by ID
66d618
- Reset the forced version during DFU attach and detach
66d618
- Set the version format for more device types
66d618
66d618
* Tue Apr 23 2019 Richard Hughes <richard@hughsie.com> 1.2.8-1
66d618
- New upstream release
66d618
- Allow the fwupdmgr tool to modify the daemon config
66d618
- Correctly parse DFU interfaces with extra vendor-specific data
66d618
- Do not report transient or invalid system failures
66d618
- Fix problems with the version format checking for some updates
66d618
66d618
* Wed Apr 17 2019 Richard Hughes <richard@hughsie.com> 1.2.7-3
66d618
- Revert a patch from upstream that was causing problems with Dell hardware
66d618
66d618
* Tue Apr 16 2019 Adam Williamson <awilliam@redhat.com> - 1.2.7-2
66d618
- Rebuild with Meson fix for #1699099
66d618
66d618
* Thu Apr 11 2019 Richard Hughes <richard@hughsie.com> 1.2.7-1
66d618
- New upstream release
66d618
- Add a component categories to express the firmware type
66d618
- Add support for 8BitDo M30
66d618
- Add support for the not-child extension from Logitech
66d618
- Blacklist the synapticsmst plugin when using amdgpu
66d618
- Correct ATA activation functionality to work for all vendors
66d618
- Implement QMI PDC active config selection for modems
66d618
- Make an error message clearer when there are no updates available
66d618
- Match the old or new version number when setting NEEDS_REBOOT
66d618
- More carefully check the output from tpm2_pcrlist
66d618
- Recreate the history database if migration failed
66d618
- Require AC power when updating Thunderbolt devices
66d618
- Require --force to install a release with a different version format
66d618
- Shut down the daemon if the on-disk binary is replaced
66d618
66d618
* Wed Mar 27 2019 Richard Hughes <richard@hughsie.com> 1.2.6-2
66d618
- Enable the ModemManager plugin
66d618
66d618
* Tue Mar 26 2019 Richard Hughes <richard@hughsie.com> 1.2.6-1
66d618
- New upstream release
66d618
- Add support for delayed activation of docks and ATA devices
66d618
- Add support for reading the SuperIO device checksum and writing to e-flash
66d618
- Add the fwupdagent binary for use in shell scripts
66d618
- Allow restricting firmware updates for enterprise use
66d618
- Allow running offline updates when in system-update.target
66d618
- Allow signing the fwupd report with a client certificate
66d618
- Ask to reboot after scheduling an offline firmware update
66d618
- Correctly check the new version for devices that replug
66d618
- Do not fail to start the daemon if tpm2_pcrlist hangs
66d618
- Do not fail when scheduling more than one update to be run offline
66d618
- Do not schedule an update on battery power if it requires AC power
66d618
- Include all device checksums in the LVFS report
66d618
- Rename the shimx64.efi binary for known broken firmware
66d618
- Upload the UPDATE_INFO entry for the UEFI UX capsule
66d618
- Use Plymouth when updating offline firmware
66d618
66d618
* Mon Feb 25 2019 Richard Hughes <richard@hughsie.com> 1.2.5-1
66d618
- New upstream release
66d618
- Allow a device to be updated using more than one plugin
66d618
- Call composite prepare and cleanup using fwupdtool
66d618
- Detect and special case Dell ATA hardware
66d618
- Fix flashing failure with latest Intuos Pro tablet
66d618
- Fix potential segfault when applying UEFI updates
66d618
- Fix unifying regression when recovering from failed flash
66d618
- Report the DeviceInstanceIDs from fwupdmgr when run as root
66d618
66d618
* Tue Feb 12 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.2.4-2
66d618
- Remove obsolete scriptlets
66d618
66d618
* Fri Feb 01 2019 Richard Hughes <richard@hughsie.com> 1.2.4-1
66d618
- New upstream release
66d618
- Add a directory remote that generates metadata
66d618
- Add a plugin to update Wacom embedded EMR and AES panels
66d618
- Add a plugin to upgrade firmware on ATA-ATAPI hardware
66d618
- Add a quirk to use the legacy bootmgr description
66d618
- Add SuperIO IT89xx device support
66d618
- Add support for Dell dock passive flow
66d618
- Add the needs-shutdown quirk to Phison NVMe drives
66d618
- Add 'update' and 'get-updates' commands to fwupdtool
66d618
- Allow Dell dock flashing Thunderbolt over I2C
66d618
- Check the battery percentage before flashing
66d618
- Correct Nitrokey Storage invalid firmware version read
66d618
- Do not check the BGRT status before uploading a UX capsule
66d618
- Do the UEFI UX checksum calculation in fwupd
66d618
- Fix flashing various Jabra devices
66d618
- Fix the parser to support extended segment addresses
66d618
- Flash the fastboot partition after downloading the file
66d618
- Show a console warning if loading an out-of-tree plugin
66d618
- Show a per-release source and details URL
66d618
- Show a `UpdateMessage` and display it in tools
66d618
- Support FGUID to get the SKU GUID for NVMe hardware
66d618
66d618
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
66d618
66d618
* Fri Jan 04 2019 Richard Hughes <richard@hughsie.com> 1.2.3-1
66d618
- New upstream release
66d618
- Correctly migrate the history database
66d618
66d618
* Sun Dec 30 2018 Richard Hughes <richard@hughsie.com> 1.2.2-1
66d618
- New upstream release
66d618
- Add support for devices that support fastboot
66d618
- Add more standard USB identifier GUIDs
66d618
- Add the PCR0 value as the device checksum for system firmware
66d618
- Add Dell TB18DC to the supported devices list
66d618
- Allow replacing the last byte in the image when using 'dfu-tool replace-data'
66d618
- Append the UEFI capsule header in userspace rather than in the loader
66d618
- Check the device checksum as well as the content checksum during verify
66d618
- Correctly parse format the version numbers correctly using old metadata
66d618
- Fix a crash if AMT returns an empty response
66d618
- Fix a regression when doing GetReleases on unsupported hardware
66d618
- Remove the Wacom DTH generation hardware from the whitelist
66d618
- Sanitize the version if the version format has been specified
66d618
66d618
* Tue Nov 27 2018 Richard Hughes <richard@hughsie.com> 1.2.1-1
66d618
- New upstream release
66d618
- Add per-release install duration values
66d618
- Fix a use-after-free when using --immediate-exit
66d618
- Fix flashing the 8bitdo SF30
66d618
- Fix showing the custom remote agreements
66d618
- Include the os-release information in the release metadata
66d618
- Shut down the daemon after 2h of inactivity when possible
66d618
- Speed up startup by loading less thunderbolt firmware
66d618
- Speed up startup by using a silo index for GUID queries
66d618
- Use less memory and fragment the heap less when starting
66d618
66d618
* Wed Nov 07 2018 Richard Hughes <richard@hughsie.com> 1.2.0-1
66d618
- New upstream release
66d618
- Add a standalone installer creation script
66d618
- Add version format quirks for several Lenovo machines
66d618
- Adjust synapticsmst EVB board handling
66d618
- Allow setting the version format from a quirk entry
66d618
- Port from libappstream-glib to libxmlb for a large reduction in RSS
66d618
- Set the full AMT device version including the BuildNum
66d618
- Sort the firmware sack by component priority
66d618
- Stop any running daemon over dbus when using fu-tool
66d618
- Support the Intel ME version format
66d618
- Use HTTPS_PROXY if set
66d618
66d618
* Fri Oct 12 2018 Richard Hughes <richard@hughsie.com> 1.1.3-1
66d618
- New upstream release
66d618
- Add a plugin for an upcoming Dell USB-C dock
66d618
- Add support for devices to show an estimated flash time
66d618
- Add support for Realtek USB devices using vendor HID and HUB commands
66d618
- Adjust panamera ESM update routine for some reported issues
66d618
- Allow firmware files to depend on versions from other devices
66d618
- Check the amount of free space on the ESP before upgrading
66d618
- Don't show devices pending a reboot in GetUpgrades
66d618
- Fix possible crash in the thunderbolt-power plugin
66d618
- Make various parts of the daemon thread-safe
66d618
- Redirect all debugging output to stderr instead of stdout
66d618
- Run the Dell plugin initialization after the UEFI plugin
66d618
- Update all sub-devices for a composite update
66d618
66d618
* Mon Sep 10 2018 Richard Hughes <richard@hughsie.com> 1.1.2-1
66d618
- New upstream release
66d618
- Add a new plugin to enumerate EC firmware
66d618
- Add a new plugin to update NVMe hardware
66d618
- Allow updating just one specific device from the command line
66d618
- Always use the same HardwareIDs as Windows
66d618
- Download firmware if the user specifies a URI
66d618
- Implement the systemd recommendations for offline updates
66d618
- Improve performance when reading keys from the quirk database
66d618
- Rewrite the unifying plugin to use the new daemon-provided functionality
66d618
- Show a time estimate on the progressbar after an update has started
66d618
66d618
* Mon Aug 13 2018 Richard Hughes <richard@hughsie.com> 1.1.1-1
66d618
- New upstream release
66d618
- Add support for the Synaptics Panamera hardware
66d618
- Add validation for Alpine and Titan Ridge
66d618
- Allow flashing unifying devices in recovery mode
66d618
- Allow running synapticsmst on non-Dell hardware
66d618
- Check the ESP for sanity at at startup
66d618
- Do not hold hidraw devices open forever
66d618
- Fix a potential segfault in smbios data parsing
66d618
- Fix encoding the GUID into the capsule EFI variable
66d618
- Fix various bugs when reading the thunderbolt version number
66d618
- Improve the Redfish plugin to actually work with real hardware
66d618
- Reboot synapticsmst devices at the end of flash cycle
66d618
- Show the correct title when updating devices
66d618
66d618
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
66d618
66d618
* Thu Jul 12 2018 Richard Hughes <richard@hughsie.com> 1.1.0-2
66d618
- Rebuild to get the EFI executable signed with the Red Hat key
66d618
66d618
* Wed Jul 11 2018 Richard Hughes <richard@hughsie.com> 1.1.0-1
66d618
- New upstream release
66d618
- Add a initial Redfish support
66d618
- Allow devices to assign a plugin from the quirk subsystem
66d618
- Detect the EFI system partition location at runtime
66d618
- Do not use 8bitdo bootloader commands after a successful flash
66d618
- Fix a potential buffer overflow when applying a DFU patch
66d618
- Fix downgrading older releases to devices
66d618
- Fix flashing devices that require a manual replug
66d618
- Fix unifying failure to detach when using a slow host controller
66d618
- Merge fwupdate functionality into fwupd
66d618
- Support more Wacom tablets
66d618
66d618
* Thu Jun 07 2018 Richard Hughes <richard@hughsie.com> 1.0.8-1
66d618
- New upstream release
66d618
- Adjust all licensing to be 100% LGPL 2.1+
66d618
- Add a firmware diagnostic tool called fwupdtool
66d618
- Add an plugin to update some future Wacom tablets
66d618
- Add support for Motorola S-record files
66d618
- Add the Linux Foundation public GPG keys for firmware and metadata
66d618
- Allow installing more than one firmware using 'fwupdmgr install'
66d618
- Allow specifying hwids with OR relationships
66d618
- Fix a potential DoS in libdfu by limiting holes to 1MiB
66d618
- Fix Hardware-ID{0,1,2,12} compatibility with Microsoft
66d618
- Hide devices that aren't updatable by default in fwupdmgr
66d618
- Stop matching Nintendo Switch Pro in the 8bitdo plugin
66d618
66d618
* Mon Apr 30 2018 Richard Hughes <richard@hughsie.com> 1.0.7-1
66d618
- New upstream release
66d618
- Add enable-remote and disable-remote commands to fwupdmgr
66d618
- Allow requiring specific versions of libraries for firmware updates
66d618
- Don't recoldplug thunderbolt to fix a flashing failure
66d618
- Fix SQL error when running 'fwupdmgr clear-offline'
66d618
- Only enumerate Dell Docks if the type is known
66d618
- Reboot after scheduling using logind not systemd
66d618
- Show a warning with interactive prompt when enabling a remote
66d618
66d618
* Mon Mar 12 2018 Richard Hughes <richard@hughsie.com> 1.0.6-1
66d618
- New upstream release
66d618
- Add bash completion for fwupdmgr
66d618
- Add support for newest Thunderbolt chips
66d618
- Allow devices to use the runtime version when in bootloader mode
66d618
- Allow overriding ESP mount point via conf file
66d618
- Correct handling of unknown Thunderbolt devices
66d618
- Correctly detect new remotes that are manually copied
66d618
- Delete any old fwupdate capsules and efivars when launching fwupd
66d618
- Fix a crash related to when passing device to downgrade in CLI
66d618
- Fix Unifying signature writing and parsing for Texas bootloader
66d618
- Generate Vala bindings
66d618
66d618
* Fri Feb 23 2018 Richard Hughes <richard@hughsie.com> 1.0.5-2
66d618
- Use the new CDN for metadata.
66d618
66d618
* Wed Feb 14 2018 Richard Hughes <richard@hughsie.com> 1.0.5-1
66d618
- New upstream release
66d618
- Be more careful deleting and modifying device history
66d618
- Fix crasher with MST flashing
66d618
- Fix DFU detach with newer releases of libusb
66d618
- Offer to reboot when processing an offline update
66d618
- Show the user a URL when they report a known problem
66d618
- Stop matching 8bitdo DS4 controller VID/PID
66d618
- Support split cabinet archives as produced by Windows Update
66d618
66d618
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
66d618
66d618
* Thu Jan 25 2018 Richard Hughes <richard@hughsie.com> 1.0.4-1
66d618
- New upstream release
66d618
- Add a device name for locked UEFI devices
66d618
- Add D-Bus methods to get and modify the history information
66d618
- Allow the user to share firmware update success or failure
66d618
- Ask the user to refresh metadata when it is very old
66d618
- Never add two devices to the daemon with the same ID
66d618
- Rescan supported flags when refreshing metadata
66d618
- Store firmware update success and failure to a local database
66d618
66d618
* Fri Jan 12 2018 Richard Hughes <richard@hughsie.com> 1.0.3-2
66d618
- Backport a patch that fixes applying firmware updates using gnome-software.
66d618
66d618
* Tue Jan 09 2018 Richard Hughes <richard@hughsie.com> 1.0.3-1
66d618
- New upstream release
66d618
- Add a new plugin to add support for CSR "Driverless DFU"
66d618
- Add initial SF30/SN30 Pro support
66d618
- Block owned Dell TPM updates
66d618
- Choose the correct component from provides matches using requirements
66d618
- Do not try to parse huge compressed archive files
66d618
- Handle Thunderbolt "native" mode
66d618
- Use the new functionality in libgcab >= 1.0 to avoid writing temp files
66d618
66d618
* Tue Nov 28 2017 Richard Hughes <richard@hughsie.com> 1.0.2-1
66d618
- New upstream release
66d618
- Add a plugin for the Nitrokey Storage device
66d618
- Add quirk for AT32UC3B1256 as used in the RubberDucky
66d618
- Add support for the original AVR DFU protocol
66d618
- Allow different plugins to claim the same device
66d618
- Disable the dell plugin if libsmbios fails
66d618
- Fix critical warning when more than one remote fails to load
66d618
- Ignore useless Thunderbolt device types
66d618
- Set environment variables to allow easy per-plugin debugging
66d618
- Show a nicer error message if the requirement fails
66d618
- Sort the output of GetUpgrades correctly
66d618
- Use a SHA1 hash for the internal DeviceID
66d618
66d618
* Thu Nov 09 2017 Kalev Lember <klember@redhat.com> 1.0.1-3
66d618
- Rebuild against libappstream-glib 0.7.4
66d618
66d618
* Thu Nov 09 2017 Kalev Lember <klember@redhat.com> 1.0.1-2
66d618
- Fix libdfu obsoletes versions
66d618
66d618
* Thu Nov 09 2017 Richard Hughes <richard@hughsie.com> 1.0.1-1
66d618
- New upstream release
66d618
- Add support for HWID requirements
66d618
- Add support for programming various AVR32 and XMEGA parts using DFU
66d618
- Add the various DFU quirks for the Jabra Speak devices
66d618
- Catch invalid Dell dock component requests
66d618
- Correctly output Intel HEX files with > 16bit offset addresses
66d618
- Do not try to verify the element write if upload is unsupported
66d618
- Fix a double-unref when updating any 8Bitdo device
66d618
- Fix uploading large firmware files over DFU
66d618
- Format the BCD USB revision numbers correctly
66d618
- Guess the DFU transfer size if it is not specified
66d618
- Include the reset timeout as wValue to fix some DFU bootloaders
66d618
- Move the database of supported devices out into runtime loaded files
66d618
- Support devices with truncated DFU interface data
66d618
- Use the correct wDetachTimeOut when writing DFU firmware
66d618
- Verify devices with legacy VIDs are actually 8Bitdo controllers
66d618
66d618
* Mon Oct 09 2017 Richard Hughes <richard@hughsie.com> 1.0.0-1
66d618
- New upstream release
66d618
- This release breaks API and ABI to remove deprecated symbols
66d618
- libdfu is now not installed as a shared library
66d618
- Add FuDeviceLocker to simplify device open/close lifecycles
66d618
- Add functionality to blacklist Dell HW with problems
66d618
- Disable the fallback USB plugin
66d618
- Do not fail to load the daemon if cached metadata is invalid
66d618
- Do not use system-specific infomation for UEFI PCI devices
66d618
- Fix various printing issues with the progressbar
66d618
- Never fallback to an offline update from client code
66d618
- Only set the Dell coldplug delay when we know we need it
66d618
- Parse the SMBIOS v2 and v3 DMI tables directly
66d618
- Support uploading the UEFI firmware splash image
66d618
- Use the intel-wmi-thunderbolt kernel module to force power
66d618
66d618
* Fri Sep 01 2017 Richard Hughes <richard@hughsie.com> 0.9.7-1
66d618
- New upstream release
66d618
- Add a FirmwareBaseURI parameter to the remote config
66d618
- Add a firmware builder that uses bubblewrap
66d618
- Add a python script to create fwupd compatible cab files from .exe files
66d618
- Add a thunderbolt plugin for new kernel interface
66d618
- Fix an incomplete cipher when using XTEA on data not in 4 byte chunks
66d618
- Show a bouncing progress bar if the percentage remains at zero
66d618
- Use the new bootloader PIDs for Unifying pico receivers
66d618
66d618
* Fri Sep 01 2017 Kalev Lember <klember@redhat.com> 0.9.6-2
66d618
- Disable i686 UEFI support now that fwupdate is no longer available there
66d618
- Enable aarch64 UEFI support now that all the deps are available there
66d618
66d618
* Thu Aug 03 2017 Richard Hughes <richard@hughsie.com> 0.9.6-1
66d618
- New upstream release
66d618
- Add --version option to fwupdmgr
66d618
- Display all errors recorded by efi_error tracing
66d618
- Don't log a warning when an unknown unifying report is parsed
66d618
- Fix a hang on 32 bit machines
66d618
- Make sure the unifying percentage completion goes from 0% to 100%
66d618
- Support embedded devices with local firmware metadata
66d618
- Use new GUsb functionality to fix flashing Unifying devices
66d618
66d618
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-3
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
66d618
66d618
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
66d618
66d618
* Tue Jul 04 2017 Richard Hughes <richard@hughsie.com> 0.9.5-1
66d618
- New upstream release
66d618
- Add a plugin to get the version of the AMT ME interface
66d618
- Allow flashing Unifying devices in bootloader modes
66d618
- Filter by Unifying SwId when making HID++2.0 requests
66d618
- Fix downgrades when version_lowest is set
66d618
- Fix the self tests when running on PPC64 big endian
66d618
- Use the UFY DeviceID prefix for Unifying devices
66d618
66d618
* Thu Jun 15 2017 Richard Hughes <richard@hughsie.com> 0.9.4-1
66d618
- New upstream release
66d618
- Add installed tests that use the daemon
66d618
- Add the ability to restrict firmware to specific vendors
66d618
- Compile with newer versions of meson
66d618
- Fix a common crash when refreshing metadata
66d618
- Generate a images for status messages during system firmware update
66d618
- Show progress download when refreshing metadata
66d618
- Use the correct type signature in the D-Bus introspection file
66d618
66d618
* Wed Jun 07 2017 Richard Hughes <richard@hughsie.com> 0.9.3-1
66d618
- New upstream release
66d618
- Add a 'downgrade' command to fwupdmgr
66d618
- Add a 'get-releases' command to fwupdmgr
66d618
- Add support for Microsoft HardwareIDs
66d618
- Allow downloading metadata from more than just the LVFS
66d618
- Allow multiple checksums on devices and releases
66d618
- Correctly open Unifying devices with original factory firmware
66d618
- Do not expect a Unifying reply when issuing a REBOOT command
66d618
- Do not re-download firmware that exists in the cache
66d618
- Fix a problem when testing for a Dell system
66d618
- Fix flashing new firmware to 8bitdo controllers
66d618
66d618
* Tue May 23 2017 Richard Hughes <richard@hughsie.com> 0.9.2-2
66d618
- Backport several fixes for updating Unifying devices
66d618
66d618
* Mon May 22 2017 Richard Hughes <richard@hughsie.com> 0.9.2-1
66d618
- New upstream release
66d618
- Add support for Unifying DFU features
66d618
- Do not spew a critial warning when parsing an invalid URI
66d618
- Ensure steelseries device is closed if it returns an invalid packet
66d618
- Ignore spaces in the Unifying version prefix
66d618
66d618
* Thu Apr 20 2017 Richard Hughes <richard@hughsie.com> 0.8.2-1
66d618
- New upstream release
66d618
- Add a config option to allow runtime disabling plugins by name
66d618
- Add DFU quirk for OpenPICC and SIMtrace
66d618
- Create directories in /var/cache as required
66d618
- Fix the Requires lines in the dfu pkg-config file
66d618
- Only try to mkdir the localstatedir if we have the right permissions
66d618
- Support proxy servers in fwupdmgr
66d618
66d618
* Thu Mar 23 2017 Bastien Nocera <bnocera@redhat.com> - 0.8.1-2
66d618
+ fwupd-0.8.1-2
66d618
- Release claimed devices on error, fixes unusable input devices
66d618
66d618
* Mon Feb 27 2017 Richard Hughes <richard@hughsie.com> 0.8.1-1
66d618
- New upstream release
66d618
- Adjust systemd confinement restrictions
66d618
- Don't initialize libsmbios on unsupported systems
66d618
- Fix a crash when enumerating devices
66d618
66d618
* Wed Feb 08 2017 Richard Hughes <richard@hughsie.com> 0.8.0-1
66d618
- New upstream release
66d618
- Add support for Intel Thunderbolt devices
66d618
- Add support for Logitech Unifying devices
66d618
- Add support for Synaptics MST cascades hubs
66d618
- Add support for the Altus-Metrum ChaosKey device
66d618
- Always close USB devices before error returns
66d618
- Return the pending UEFI update when not on AC power
66d618
- Use a heuristic for the start address if the firmware has no DfuSe footer
66d618
- Use more restrictive settings when running under systemd
66d618
66d618
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.5-2
66d618
- Rebuild for gpgme 1.18
66d618
66d618
* Wed Oct 19 2016 Richard Hughes <richard@hughsie.com> 0.7.5-1
66d618
- New upstream release
66d618
- Add quirks for HydraBus as it does not have a DFU runtime
66d618
- Don't create the UEFI dummy device if the unlock will happen on next boot
66d618
- Fix an assert when unlocking the dummy ESRT device
66d618
- Fix writing firmware to devices using the ST reference bootloader
66d618
- Match the Dell TB16 device
66d618
66d618
* Mon Sep 19 2016 Richard Hughes <richard@hughsie.com> 0.7.4-1
66d618
- New upstream release
66d618
- Add a fallback for older appstream-glib releases
66d618
- Allow the argument to 'dfu-tool set-release' be major.minor
66d618
- Fix a possible crash when uploading firmware files using libdfu
66d618
- Fix libfwupd self tests when a host-provided fwupd is not available
66d618
- Load the Altos USB descriptor from ELF files
66d618
- Show the human-readable version in the 'dfu-tool dump' output
66d618
- Support writing the IHEX symbol table
66d618
- Write the ELF files with the correct section type
66d618
66d618
* Mon Aug 29 2016 Kalev Lember <klember@redhat.com> 0.7.3-2
66d618
- Fix an unexpanded macro in the spec file
66d618
- Tighten libebitdo-devel requires with the _isa macro
66d618
- Add ldconfig scripts for libdfu and libebitdo subpackages
66d618
66d618
* Mon Aug 29 2016 Richard Hughes <richard@hughsie.com> 0.7.3-1
66d618
- New upstream release
66d618
- Add Dell TPM and TB15/WD15 support via new Dell provider
66d618
- Add initial ELF reading and writing support to libdfu
66d618
- Add support for installing multiple devices from a CAB file
66d618
- Allow providers to export percentage completion
66d618
- Don't fail while checking versions or locked state
66d618
- Show a progress notification when installing firmware
66d618
- Show the vendor flashing instructions when installing
66d618
- Use a private gnupg key store
66d618
- Use the correct firmware when installing a composite device
66d618
66d618
* Fri Aug 19 2016 Peter Jones <pjones@redhat.com> - 0.7.2-6
66d618
- Rebuild to get libfwup.so.1 as our fwupdate dep.  This should make this the
66d618
  last time we need to rebuild for this.
66d618
66d618
* Wed Aug 17 2016 Peter Jones <pjones@redhat.com> - 0.7.2-5
66d618
- rebuild against new efivar and fwupdate
66d618
66d618
* Fri Aug 12 2016 Adam Williamson <awilliam@redhat.com> - 0.7.2-4
66d618
- rebuild against new efivar and fwupdate
66d618
66d618
* Thu Aug 11 2016 Richard Hughes <richard@hughsie.com> 0.7.2-3
66d618
- Use the new CDN for firmware metadata
66d618
66d618
* Thu Jul 14 2016 Kalev Lember <klember@redhat.com> - 0.7.2-2
66d618
- Tighten subpackage dependencies
66d618
66d618
* Mon Jun 13 2016 Richard Hughes <richard@hughsie.com> 0.7.2-1
66d618
- New upstream release
66d618
- Allow devices to have multiple assigned GUIDs
66d618
- Allow metainfo files to match only specific revisions of devices
66d618
- Only claim the DFU interface when required
66d618
- Only return updatable devices from GetDevices()
66d618
- Show the DFU protocol version in 'dfu-tool list'
66d618
66d618
* Fri May 13 2016 Richard Hughes <richard@hughsie.com> 0.7.1-1
66d618
- New upstream release
66d618
- Add device-added, device-removed and device-changed signals
66d618
- Add for a new device field "Flashes Left"
66d618
- Fix a critical warning when restarting the daemon
66d618
- Fix BE issues when reading and writing DFU files
66d618
- Make the device display name nicer
66d618
- Match the AppStream metadata after a device has been added
66d618
- Return all update descriptions newer than the installed version
66d618
- Set the device description when parsing local firmware files
66d618
66d618
* Fri Apr 01 2016 Richard Hughes <richard@hughsie.com> 0.7.0-1
66d618
- New upstream release
66d618
- Add Alienware to the version quirk table
66d618
- Add a version plugin for SteelSeries hardware
66d618
- Do not return updates that require AC when on battery
66d618
- Return the device flags when getting firmware details
66d618
66d618
* Mon Mar 14 2016 Richard Hughes <richard@hughsie.com> 0.6.3-1
66d618
- New upstream release
66d618
- Add an unlock method for devices
66d618
- Add ESRT enable method into UEFI provider
66d618
- Correct the BCD version number for DFU 1.1
66d618
- Ignore the DFU runtime on the DW1820A
66d618
- Only read PCI OptionROM firmware when devices are manually unlocked
66d618
- Require AC power before scheduling some types of firmware update
66d618
66d618
* Fri Feb 12 2016 Richard Hughes <richard@hughsie.com> 0.6.2-1
66d618
- New upstream release
66d618
- Add 'Created' and 'Modified' properties on managed devices
66d618
- Fix get-results for UEFI provider
66d618
- Support vendor-specific UEFI version encodings
66d618
66d618
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-2
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
66d618
66d618
* Tue Jan 19 2016 Richard Hughes <richard@hughsie.com> 0.6.1-1
66d618
- New upstream release
66d618
- Do not misdetect different ColorHug devices
66d618
- Only dump the profiling data when run with --verbose
66d618
66d618
* Mon Dec 07 2015 Richard Hughes <richard@hughsie.com> 0.6.0-1
66d618
- New upstream release
66d618
- Add support for automatically updating USB DFU-capable devices
66d618
- Emit the changed signal after doing an update
66d618
- Export the AppStream ID when returning device results
66d618
- Use the same device identification string format as Microsoft
66d618
66d618
* Wed Nov 18 2015 Richard Hughes <richard@hughsie.com> 0.5.4-1
66d618
- New upstream release
66d618
- Use API available in fwupdate 0.5 to avoid writing temp files
66d618
- Fix compile error against fwupdate 0.5 due to API bump
66d618
66d618
* Thu Nov 05 2015 Richard Hughes <richard@hughsie.com> 0.5.3-1
66d618
- New upstream release
66d618
- Avoid seeking when reading the file magic during refresh
66d618
- Do not assume that the compressed XML data will be NUL terminated
66d618
- Use the correct user agent string for fwupdmgr
66d618
66d618
* Wed Oct 28 2015 Richard Hughes <richard@hughsie.com> 0.5.2-1
66d618
- New upstream release
66d618
- Add the update description to the GetDetails results
66d618
- Clear the in-memory firmware store only after parsing a valid XML file
66d618
- Ensure D-Bus remote errors are registered at fwupdmgr startup
66d618
- Fix verify-update to produce components with the correct provide values
66d618
- Show the dotted-decimal representation of the UEFI version number
66d618
- Support cabinet archives files with more than one firmware
66d618
66d618
* Mon Sep 21 2015 Richard Hughes <richard@hughsie.com> 0.5.1-1
66d618
- Update to 0.5.1 to fix a bug in the offline updater
66d618
66d618
* Tue Sep 15 2015 Richard Hughes <richard@hughsie.com> 0.5.0-1
66d618
- New upstream release
66d618
- Do not reboot if racing with the PackageKit offline update mechanism
66d618
66d618
* Thu Sep 10 2015 Richard Hughes <richard@hughsie.com> 0.1.6-3
66d618
- Do not merge the existing firmware metadata with the submitted files
66d618
66d618
* Thu Sep 10 2015 Kalev Lember <klember@redhat.com> 0.1.6-2
66d618
- Own system-update.target.wants directory
66d618
- Make fwupd-sign obsoletes versioned
66d618
66d618
* Thu Sep 10 2015 Richard Hughes <richard@hughsie.com> 0.1.6-1
66d618
- New upstream release
66d618
- Add application metadata when getting the updates list
66d618
- Remove fwsignd, we have the LVFS now
66d618
66d618
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> 0.1.5-3
66d618
- Disable fwupd offline update service
66d618
66d618
* Wed Aug 19 2015 Richard Hughes <richard@hughsie.com> 0.1.5-2
66d618
- Use the non-beta download URL prefix
66d618
66d618
* Wed Aug 12 2015 Richard Hughes <richard@hughsie.com> 0.1.5-1
66d618
- New upstream release
66d618
- Add a Raspberry Pi firmware provider
66d618
- Fix validation of written firmware
66d618
- Make parsing the option ROM runtime optional
66d618
- Use the AppStream 0.9 firmware specification by default
66d618
66d618
* Sat Jul 25 2015 Richard Hughes <richard@hughsie.com> 0.1.4-1
66d618
- New upstream release
66d618
- Actually parse the complete PCI option ROM
66d618
- Add a 'fwupdmgr update' command to update all devices to latest versions
66d618
- Add a simple signing server that operates on .cab files
66d618
- Add a 'verify' command that verifies the cryptographic hash of device firmware
66d618
66d618
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.3-3
66d618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
66d618
66d618
* Wed Jun 03 2015 Richard Hughes <richard@hughsie.com> 0.1.3-2
66d618
- Compile with libfwupdate for UEFI firmware support.
66d618
66d618
* Thu May 28 2015 Richard Hughes <richard@hughsie.com> 0.1.3-1
66d618
- New upstream release
66d618
- Coldplug the devices before acquiring the well known name
66d618
- Run the offline actions using systemd when required
66d618
- Support OpenHardware devices using the fwupd vendor extensions
66d618
66d618
* Wed Apr 22 2015 Richard Hughes <richard@hughsie.com> 0.1.2-1
66d618
- New upstream release
66d618
- Only allow signed firmware to be upgraded without a password
66d618
66d618
* Mon Mar 23 2015 Richard Hughes <richard@hughsie.com> 0.1.1-1
66d618
- New upstream release
66d618
- Add a 'get-updates' command to fwupdmgr
66d618
- Add and document the offline-update lifecycle
66d618
- Create a libfwupd shared library
66d618
- Create runtime directories if they do not exist
66d618
- Do not crash when there are no devices to return
66d618
66d618
* Mon Mar 16 2015 Richard Hughes <richard@hughsie.com> 0.1.0-1
66d618
- First release