Blame SPECS/fwupd.spec

c71751
%global glib2_version 2.45.8
c71751
%global libappstream_version 0.7.4
c71751
%global libgusb_version 0.2.11
c71751
%global libsoup_version 2.51.92
c71751
%global systemd_version 231
c71751
%global json_glib_version 1.1.1
c71751
c71751
%global enable_tests 1
c71751
%global enable_dummy 1
c71751
c71751
# fwupd.efi is only available on these arches
c71751
%ifarch x86_64 aarch64
c71751
%global have_uefi 1
c71751
%endif
c71751
c71751
# redfish is only available on this arch
c71751
%ifarch x86_64
c71751
%global have_redfish 1
c71751
%endif
c71751
c71751
# libsmbios is only available on x86
c71751
%ifarch x86_64
c71751
%global have_dell 1
c71751
%endif
c71751
c71751
Summary:   Firmware update daemon
c71751
Name:      fwupd
c71751
Version:   1.1.4
c71751
Release:   1%{?dist}
c71751
License:   LGPLv2+
c71751
URL:       https://github.com/hughsie/fwupd
c71751
Source0:   http://people.freedesktop.org/~hughsient/releases/%{name}-%{version}.tar.xz
c71751
Source1:   securebootca.cer
c71751
Source2:   secureboot.cer
c71751
c71751
# backport from upstream
c71751
Patch0:    0001-trivial-Relax-the-timing-requirements-on-the-FuDevic.patch
c71751
c71751
BuildRequires: gettext
c71751
BuildRequires: glib2-devel >= %{glib2_version}
c71751
BuildRequires: libappstream-glib-devel >= %{libappstream_version}
c71751
BuildRequires: libgcab1-devel
c71751
BuildRequires: libgudev1-devel
c71751
BuildRequires: libgusb-devel >= %{libgusb_version}
c71751
BuildRequires: libsoup-devel >= %{libsoup_version}
c71751
BuildRequires: polkit-devel >= 0.103
c71751
BuildRequires: sqlite-devel
c71751
BuildRequires: gpgme-devel
c71751
BuildRequires: systemd >= %{systemd_version}
c71751
BuildRequires: libarchive-devel
c71751
BuildRequires: gobject-introspection-devel
c71751
BuildRequires: gcab
c71751
%ifarch %{valgrind_arches}
c71751
BuildRequires: valgrind
c71751
BuildRequires: valgrind-devel
c71751
%endif
c71751
BuildRequires: elfutils-libelf-devel
c71751
BuildRequires: gtk-doc
c71751
BuildRequires: libuuid-devel
c71751
BuildRequires: gnutls-devel
c71751
BuildRequires: gnutls-utils
c71751
BuildRequires: meson
c71751
BuildRequires: help2man
c71751
BuildRequires: json-glib-devel >= %{json_glib_version}
c71751
BuildRequires: vala
c71751
BuildRequires: python3-devel
c71751
BuildRequires: bash-completion
c71751
c71751
# until rh-signing-tools is fixed
c71751
BuildRequires: nss-tools
c71751
c71751
%if 0%{?have_redfish}
c71751
BuildRequires: efivar-devel >= 33
c71751
%endif
c71751
c71751
%if 0%{?have_uefi}
c71751
BuildRequires: efivar-devel >= 33
c71751
BuildRequires: python3 python3-cairo python3-gobject python3-pillow
c71751
BuildRequires: pango-devel
c71751
BuildRequires: cairo-devel cairo-gobject-devel
c71751
BuildRequires: freetype
c71751
BuildRequires: fontconfig
c71751
BuildRequires: google-noto-sans-cjk-ttc-fonts
c71751
BuildRequires: gnu-efi-devel
c71751
BuildRequires: pesign
c71751
%endif
c71751
c71751
%if 0%{?have_dell}
c71751
BuildRequires: efivar-devel >= 33
c71751
BuildRequires: libsmbios-devel >= 2.3.0
c71751
%endif
c71751
c71751
Requires(post): systemd
c71751
Requires(preun): systemd
c71751
Requires(postun): systemd
c71751
c71751
Requires: glib2%{?_isa} >= %{glib2_version}
c71751
Requires: libappstream-glib%{?_isa} >= %{libappstream_version}
c71751
Requires: libgusb%{?_isa} >= %{libgusb_version}
c71751
Requires: libsoup%{?_isa} >= %{libsoup_version}
c71751
Requires: bubblewrap
c71751
c71751
Recommends: python3
c71751
c71751
Obsoletes: fwupd-sign < 0.1.6
c71751
Obsoletes: libebitdo < 0.7.5-3
c71751
Obsoletes: libdfu < 1.0.0
c71751
Obsoletes: fwupd-labels < 1.1.0-1
c71751
c71751
%description
c71751
fwupd is a daemon to allow session software to update device firmware.
c71751
c71751
%package devel
c71751
Summary: Development package for %{name}
c71751
Requires: %{name}%{?_isa} = %{version}-%{release}
c71751
Obsoletes: libebitdo-devel < 0.7.5-3
c71751
Obsoletes: libdfu-devel < 1.0.0
c71751
c71751
%description devel
c71751
Files for development with %{name}.
c71751
c71751
%package tests
c71751
Summary: Data files for installed tests
c71751
BuildArch: noarch
c71751
c71751
%description tests
c71751
Data files for installed tests.
c71751
c71751
%prep
c71751
%setup -q
c71751
c71751
%patch0 -p1 -b .aarch-is-slow
c71751
c71751
sed -ri '1s=^#!/usr/bin/(env )?python3=#!%{__python3}=' \
c71751
        libfwupd/generate-version-script.py \
c71751
        data/installed-tests/hardware.py \
c71751
        po/test-deps \
c71751
        po/make-images \
c71751
        contrib/ci/generate_debian.py \
c71751
        contrib/ci/generate_docker.py \
c71751
        contrib/firmware-packager/firmware-packager \
c71751
        plugins/dfu/contrib/parse-avrdude-conf.py
c71751
c71751
%build
c71751
c71751
# allow rh-signing-tools package for RHEL-8
c71751
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
c71751
c71751
%meson \
c71751
    -Dgtkdoc=true \
c71751
%if 0%{?enable_tests}
c71751
    -Dtests=true \
c71751
%else
c71751
    -Dtests=false \
c71751
%endif
c71751
%if 0%{?enable_dummy}
c71751
    -Dplugin_dummy=true \
c71751
%else
c71751
    -Dplugin_dummy=false \
c71751
%endif
c71751
    -Dplugin_thunderbolt=true \
c71751
%if 0%{?have_redfish}
c71751
    -Dplugin_redfish=true \
c71751
%else
c71751
    -Dplugin_redfish=false \
c71751
%endif
c71751
%if 0%{?have_uefi}
c71751
    -Dplugin_uefi=true \
c71751
    -Dplugin_nvme=true \
c71751
%else
c71751
    -Dplugin_uefi=false \
c71751
    -Dplugin_nvme=false \
c71751
%endif
c71751
%if 0%{?have_dell}
c71751
    -Dplugin_dell=true \
c71751
    -Dplugin_synaptics=true \
c71751
%else
c71751
    -Dplugin_dell=false \
c71751
    -Dplugin_synaptics=false \
c71751
%endif
c71751
    -Dman=true
c71751
c71751
%meson_build
c71751
c71751
%if 0%{?enable_tests}
c71751
%check
c71751
%meson_test
c71751
%endif
c71751
c71751
%install
c71751
%meson_install
c71751
c71751
# sign fwupd.efi loader
c71751
%if 0%{?have_uefi}
c71751
%ifarch x86_64
c71751
%global efiarch x64
c71751
%endif
c71751
%ifarch aarch64
c71751
%global efiarch aa64
c71751
%endif
c71751
%global fwup_efi_fn $RPM_BUILD_ROOT%{_libexecdir}/fwupd/efi/fwupd%{efiarch}.efi
c71751
%pesign -s -i %{fwup_efi_fn} -o %{fwup_efi_fn}.signed -a %{SOURCE1} -c %{SOURCE2} -n redhatsecureboot301
c71751
%endif
c71751
c71751
mkdir -p --mode=0700 $RPM_BUILD_ROOT%{_localstatedir}/lib/fwupd/gnupg
c71751
c71751
%find_lang %{name}
c71751
c71751
%post
c71751
/sbin/ldconfig
c71751
%systemd_post fwupd.service
c71751
c71751
%preun
c71751
%systemd_preun fwupd.service
c71751
c71751
%postun
c71751
/sbin/ldconfig
c71751
%systemd_postun_with_restart fwupd.service
c71751
%systemd_postun_with_restart pesign.service
c71751
c71751
%files -f %{name}.lang
c71751
%doc README.md AUTHORS NEWS
c71751
%license COPYING
c71751
%config(noreplace)%{_sysconfdir}/fwupd/daemon.conf
c71751
%if 0%{?have_uefi}
c71751
%config(noreplace)%{_sysconfdir}/fwupd/uefi.conf
c71751
%endif
c71751
%if 0%{?have_redfish}
c71751
%config(noreplace)%{_sysconfdir}/fwupd/redfish.conf
c71751
%endif
c71751
%dir %{_libexecdir}/fwupd
c71751
%{_libexecdir}/fwupd/fwupd
c71751
%{_libexecdir}/fwupd/fwupdtool
c71751
%if 0%{?have_uefi}
c71751
%{_libexecdir}/fwupd/efi/*.efi
c71751
%{_libexecdir}/fwupd/efi/*.efi.signed
c71751
%{_libexecdir}/fwupd/fwupdate
c71751
%endif
c71751
%{_bindir}/dfu-tool
c71751
%{_bindir}/fwupdmgr
c71751
%dir %{_sysconfdir}/fwupd
c71751
%dir %{_sysconfdir}/fwupd/remotes.d
c71751
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/fwupd.conf
c71751
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/lvfs.conf
c71751
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/lvfs-testing.conf
c71751
%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/vendor.conf
c71751
%config(noreplace)%{_sysconfdir}/pki/fwupd
c71751
%{_sysconfdir}/pki/fwupd-metadata
c71751
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.fwupd.conf
c71751
%{_datadir}/bash-completion/completions/fwupdmgr
c71751
%{_datadir}/bash-completion/completions/fwupdtool
c71751
%{_datadir}/fwupd/metainfo/org.freedesktop.fwupd*.metainfo.xml
c71751
%{_datadir}/fwupd/remotes.d/fwupd/metadata.xml
c71751
%{_datadir}/fwupd/remotes.d/vendor/firmware/README.md
c71751
%{_datadir}/dbus-1/interfaces/org.freedesktop.fwupd.xml
c71751
%{_datadir}/polkit-1/actions/org.freedesktop.fwupd.policy
c71751
%{_datadir}/polkit-1/rules.d/org.freedesktop.fwupd.rules
c71751
%{_datadir}/dbus-1/system-services/org.freedesktop.fwupd.service
c71751
%{_datadir}/man/man1/dfu-tool.1.gz
c71751
%{_datadir}/man/man1/fwupdmgr.1.gz
c71751
%{_datadir}/metainfo/org.freedesktop.fwupd.metainfo.xml
c71751
%{_datadir}/fwupd/firmware-packager
c71751
%{_unitdir}/fwupd-offline-update.service
c71751
%{_unitdir}/fwupd.service
c71751
%{_unitdir}/system-update.target.wants/
c71751
%dir %{_localstatedir}/lib/fwupd
c71751
%dir %{_datadir}/fwupd/quirks.d
c71751
%{_datadir}/fwupd/quirks.d/*.quirk
c71751
%{_localstatedir}/lib/fwupd/builder/README.md
c71751
%{_libdir}/libfwupd*.so.*
c71751
%{_libdir}/girepository-1.0/Fwupd-2.0.typelib
c71751
/usr/lib/udev/rules.d/*.rules
c71751
%dir %{_libdir}/fwupd-plugins-3
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_altos.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_amt.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_colorhug.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_csr.so
c71751
%if 0%{?have_dell}
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_dell.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_dell_esrt.so
c71751
%endif
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_dell_dock.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_dfu.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_ebitdo.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_flashrom.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_nitrokey.so
c71751
%if 0%{?have_uefi}
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_nvme.so
c71751
%endif
c71751
%if 0%{?have_redfish}
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_redfish.so
c71751
%endif
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_rts54hid.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_rts54hub.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_steelseries.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_superio.so
c71751
%if 0%{?have_dell}
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_synapticsmst.so
c71751
%endif
c71751
%if 0%{?enable_dummy}
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_test.so
c71751
%endif
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_thunderbolt.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_thunderbolt_power.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_udev.so
c71751
%if 0%{?have_uefi}
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_uefi.so
c71751
%endif
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_unifying.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_upower.so
c71751
%{_libdir}/fwupd-plugins-3/libfu_plugin_wacomhid.so
c71751
%ghost %{_localstatedir}/lib/fwupd/gnupg
c71751
%if 0%{?have_uefi}
c71751
%{_datadir}/locale/*/LC_IMAGES/fwupd*
c71751
%endif
c71751
c71751
%files devel
c71751
%{_datadir}/gir-1.0/Fwupd-2.0.gir
c71751
%{_datadir}/gtk-doc/html/libfwupd
c71751
%{_datadir}/vala/vapi
c71751
%{_includedir}/fwupd-1
c71751
%{_libdir}/libfwupd*.so
c71751
%{_libdir}/pkgconfig/fwupd.pc
c71751
c71751
%files tests
c71751
%dir %{_datadir}/installed-tests/fwupd
c71751
%{_datadir}/installed-tests/fwupd/firmware-example.xml.gz
c71751
%{_datadir}/installed-tests/fwupd/firmware-example.xml.gz.asc
c71751
%{_datadir}/installed-tests/fwupd/*.test
c71751
%{_datadir}/installed-tests/fwupd/*.cab
c71751
%{_datadir}/installed-tests/fwupd/*.sh
c71751
%{_datadir}/installed-tests/fwupd/*.py*
c71751
c71751
%changelog
c71751
* Wed Nov 07 2018 Richard Hughes <richard@hughsie.com> 1.1.4-1
c71751
- New upstream release
c71751
- Use HTTPS_PROXY if set
c71751
- Make the dell-dock plugin more robust in several ways
c71751
- Adjust EVB board handling
c71751
- Resolves: #1647557
c71751
c71751
* Fri Oct 12 2018 Richard Hughes <richard@hughsie.com> 1.1.3-1
c71751
- New upstream release
c71751
- Adds support for an upcoming Dell USB-C dock
c71751
- Don't use an obsolete font when building the UEFI images
c71751
- Resolves: #1607842
c71751
c71751
* Wed Oct 10 2018 Richard Hughes <richard@hughsie.com> 1.1.1-11
c71751
- Rebuild to get the EFI executable signed with the Red Hat key
c71751
- Related: #1614424
c71751
c71751
* Fri Sep 28 2018 Brendan Reilly <breilly@redhat.com> 1.1.1-10
c71751
- Rebuild
c71751
- Related: #1614424
c71751
c71751
* Thu Sep 20 2018 Brendan Reilly <breilly@redhat.com> 1.1.1-9
c71751
- Rebuild
c71751
- Related: #1614424
c71751
c71751
* Tue Sep 18 2018 Tomas Mlcoch <tmlcoch@hughsie.com> 1.1.1-8
c71751
- Rebuild
c71751
- Related: #1614424
c71751
c71751
* Tue Sep 04 2018 Richard Hughes <richard@hughsie.com> 1.1.1-7
c71751
- Rebuild to get the EFI executable signed with the Red Hat key
c71751
- Related: #1614424
c71751
c71751
* Fri Aug 31 2018 Richard Hughes <richard@hughsie.com> 1.1.1-6
c71751
- Include the certificates for secure boot signing
c71751
c71751
* Wed Aug 29 2018 Richard Hughes <richard@hughsie.com> 1.1.1-5
c71751
- Include the certificates for secure boot signing
c71751
c71751
* Tue Aug 23 2018 Richard Hughes <richard@hughsie.com> 1.1.1-4
c71751
- Rebuild to get the EFI executable signed with the Red Hat key
c71751
c71751
* Thu Aug 23 2018 Richard Hughes <richard@hughsie.com> 1.1.1-3
c71751
- Rebuild to get the EFI executable signed with the Red Hat key
c71751
c71751
* Mon Aug 20 2018 Richard Hughes <richard@hughsie.com> 1.1.1-2
c71751
- Rebuild to get the EFI executable signed with the Red Hat key
c71751
c71751
* Mon Aug 13 2018 Richard Hughes <richard@hughsie.com> 1.1.1-1
c71751
- New upstream release
c71751
- Add support for the Synaptics Panamera hardware
c71751
- Add validation for Alpine and Titan Ridge
c71751
- Allow flashing unifying devices in recovery mode
c71751
- Allow running synapticsmst on non-Dell hardware
c71751
- Check the ESP for sanity at at startup
c71751
- Do not hold hidraw devices open forever
c71751
- Fix a potential segfault in smbios data parsing
c71751
- Fix encoding the GUID into the capsule EFI variable
c71751
- Fix various bugs when reading the thunderbolt version number
c71751
- Improve the Redfish plugin to actually work with real hardware
c71751
- Reboot synapticsmst devices at the end of flash cycle
c71751
- Show the correct title when updating devices
c71751
c71751
* Fri Aug  3 2018 Florian Weimer <fweimer@redhat.com> - 1.1.0-3
c71751
- Honor %%{valgrind_arches}
c71751
c71751
* Thu Jul 12 2018 Richard Hughes <richard@hughsie.com> 1.1.0-2
c71751
- Rebuild to get the EFI executable signed with the Red Hat key
c71751
c71751
* Wed Jul 11 2018 Richard Hughes <richard@hughsie.com> 1.1.0-1
c71751
- New upstream release
c71751
- Add a initial Redfish support
c71751
- Allow devices to assign a plugin from the quirk subsystem
c71751
- Detect the EFI system partition location at runtime
c71751
- Do not use 8bitdo bootloader commands after a successful flash
c71751
- Fix a potential buffer overflow when applying a DFU patch
c71751
- Fix downgrading older releases to devices
c71751
- Fix flashing devices that require a manual replug
c71751
- Fix unifying failure to detach when using a slow host controller
c71751
- Merge fwupdate functionality into fwupd
c71751
- Support more Wacom tablets
c71751
c71751
* Wed Jun 20 2018 Tomas Orsava <torsava@redhat.com> - 1.0.6-2
c71751
- Switch hardcoded python3 shebangs into the %%{__python3} macro
c71751
- Add missing BuildRequires on python3-devel so that %%{__python3} macro is
c71751
  defined
c71751
c71751
* Mon Mar 12 2018 Richard Hughes <richard@hughsie.com> 1.0.6-1
c71751
- New upstream release
c71751
- Add bash completion for fwupdmgr
c71751
- Add support for newest Thunderbolt chips
c71751
- Allow devices to use the runtime version when in bootloader mode
c71751
- Allow overriding ESP mount point via conf file
c71751
- Correct handling of unknown Thunderbolt devices
c71751
- Correctly detect new remotes that are manually copied
c71751
- Delete any old fwupdate capsules and efivars when launching fwupd
c71751
- Fix a crash related to when passing device to downgrade in CLI
c71751
- Fix Unifying signature writing and parsing for Texas bootloader
c71751
- Generate Vala bindings
c71751
c71751
* Fri Feb 23 2018 Richard Hughes <richard@hughsie.com> 1.0.5-2
c71751
- Use the new CDN for metadata.
c71751
c71751
* Wed Feb 14 2018 Richard Hughes <richard@hughsie.com> 1.0.5-1
c71751
- New upstream release
c71751
- Be more careful deleting and modifying device history
c71751
- Fix crasher with MST flashing
c71751
- Fix DFU detach with newer releases of libusb
c71751
- Offer to reboot when processing an offline update
c71751
- Show the user a URL when they report a known problem
c71751
- Stop matching 8bitdo DS4 controller VID/PID
c71751
- Support split cabinet archives as produced by Windows Update
c71751
c71751
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-2
c71751
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c71751
c71751
* Thu Jan 25 2018 Richard Hughes <richard@hughsie.com> 1.0.4-1
c71751
- New upstream release
c71751
- Add a device name for locked UEFI devices
c71751
- Add D-Bus methods to get and modify the history information
c71751
- Allow the user to share firmware update success or failure
c71751
- Ask the user to refresh metadata when it is very old
c71751
- Never add two devices to the daemon with the same ID
c71751
- Rescan supported flags when refreshing metadata
c71751
- Store firmware update success and failure to a local database
c71751
c71751
* Fri Jan 12 2018 Richard Hughes <richard@hughsie.com> 1.0.3-2
c71751
- Backport a patch that fixes applying firmware updates using gnome-software.
c71751
c71751
* Tue Jan 09 2018 Richard Hughes <richard@hughsie.com> 1.0.3-1
c71751
- New upstream release
c71751
- Add a new plugin to add support for CSR "Driverless DFU"
c71751
- Add initial SF30/SN30 Pro support
c71751
- Block owned Dell TPM updates
c71751
- Choose the correct component from provides matches using requirements
c71751
- Do not try to parse huge compressed archive files
c71751
- Handle Thunderbolt "native" mode
c71751
- Use the new functionality in libgcab >= 1.0 to avoid writing temp files
c71751
c71751
* Tue Nov 28 2017 Richard Hughes <richard@hughsie.com> 1.0.2-1
c71751
- New upstream release
c71751
- Add a plugin for the Nitrokey Storage device
c71751
- Add quirk for AT32UC3B1256 as used in the RubberDucky
c71751
- Add support for the original AVR DFU protocol
c71751
- Allow different plugins to claim the same device
c71751
- Disable the dell plugin if libsmbios fails
c71751
- Fix critical warning when more than one remote fails to load
c71751
- Ignore useless Thunderbolt device types
c71751
- Set environment variables to allow easy per-plugin debugging
c71751
- Show a nicer error message if the requirement fails
c71751
- Sort the output of GetUpgrades correctly
c71751
- Use a SHA1 hash for the internal DeviceID
c71751
c71751
* Thu Nov 09 2017 Kalev Lember <klember@redhat.com> 1.0.1-3
c71751
- Rebuild against libappstream-glib 0.7.4
c71751
c71751
* Thu Nov 09 2017 Kalev Lember <klember@redhat.com> 1.0.1-2
c71751
- Fix libdfu obsoletes versions
c71751
c71751
* Thu Nov 09 2017 Richard Hughes <richard@hughsie.com> 1.0.1-1
c71751
- New upstream release
c71751
- Add support for HWID requirements
c71751
- Add support for programming various AVR32 and XMEGA parts using DFU
c71751
- Add the various DFU quirks for the Jabra Speak devices
c71751
- Catch invalid Dell dock component requests
c71751
- Correctly output Intel HEX files with > 16bit offset addresses
c71751
- Do not try to verify the element write if upload is unsupported
c71751
- Fix a double-unref when updating any 8Bitdo device
c71751
- Fix uploading large firmware files over DFU
c71751
- Format the BCD USB revision numbers correctly
c71751
- Guess the DFU transfer size if it is not specified
c71751
- Include the reset timeout as wValue to fix some DFU bootloaders
c71751
- Move the database of supported devices out into runtime loaded files
c71751
- Support devices with truncated DFU interface data
c71751
- Use the correct wDetachTimeOut when writing DFU firmware
c71751
- Verify devices with legacy VIDs are actually 8Bitdo controllers
c71751
c71751
* Mon Oct 09 2017 Richard Hughes <richard@hughsie.com> 1.0.0-1
c71751
- New upstream release
c71751
- This release breaks API and ABI to remove deprecated symbols
c71751
- libdfu is now not installed as a shared library
c71751
- Add FuDeviceLocker to simplify device open/close lifecycles
c71751
- Add functionality to blacklist Dell HW with problems
c71751
- Disable the fallback USB plugin
c71751
- Do not fail to load the daemon if cached metadata is invalid
c71751
- Do not use system-specific infomation for UEFI PCI devices
c71751
- Fix various printing issues with the progressbar
c71751
- Never fallback to an offline update from client code
c71751
- Only set the Dell coldplug delay when we know we need it
c71751
- Parse the SMBIOS v2 and v3 DMI tables directly
c71751
- Support uploading the UEFI firmware splash image
c71751
- Use the intel-wmi-thunderbolt kernel module to force power
c71751
c71751
* Fri Sep 01 2017 Richard Hughes <richard@hughsie.com> 0.9.7-1
c71751
- New upstream release
c71751
- Add a FirmwareBaseURI parameter to the remote config
c71751
- Add a firmware builder that uses bubblewrap
c71751
- Add a python script to create fwupd compatible cab files from .exe files
c71751
- Add a thunderbolt plugin for new kernel interface
c71751
- Fix an incomplete cipher when using XTEA on data not in 4 byte chunks
c71751
- Show a bouncing progress bar if the percentage remains at zero
c71751
- Use the new bootloader PIDs for Unifying pico receivers
c71751
c71751
* Fri Sep 01 2017 Kalev Lember <klember@redhat.com> 0.9.6-2
c71751
- Disable i686 UEFI support now that fwupdate is no longer available there
c71751
- Enable aarch64 UEFI support now that all the deps are available there
c71751
c71751
* Thu Aug 03 2017 Richard Hughes <richard@hughsie.com> 0.9.6-1
c71751
- New upstream release
c71751
- Add --version option to fwupdmgr
c71751
- Display all errors recorded by efi_error tracing
c71751
- Don't log a warning when an unknown unifying report is parsed
c71751
- Fix a hang on 32 bit machines
c71751
- Make sure the unifying percentage completion goes from 0% to 100%
c71751
- Support embedded devices with local firmware metadata
c71751
- Use new GUsb functionality to fix flashing Unifying devices
c71751
c71751
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-3
c71751
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c71751
c71751
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-2
c71751
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c71751
c71751
* Tue Jul 04 2017 Richard Hughes <richard@hughsie.com> 0.9.5-1
c71751
- New upstream release
c71751
- Add a plugin to get the version of the AMT ME interface
c71751
- Allow flashing Unifying devices in bootloader modes
c71751
- Filter by Unifying SwId when making HID++2.0 requests
c71751
- Fix downgrades when version_lowest is set
c71751
- Fix the self tests when running on PPC64 big endian
c71751
- Use the UFY DeviceID prefix for Unifying devices
c71751
c71751
* Thu Jun 15 2017 Richard Hughes <richard@hughsie.com> 0.9.4-1
c71751
- New upstream release
c71751
- Add installed tests that use the daemon
c71751
- Add the ability to restrict firmware to specific vendors
c71751
- Compile with newer versions of meson
c71751
- Fix a common crash when refreshing metadata
c71751
- Generate a images for status messages during system firmware update
c71751
- Show progress download when refreshing metadata
c71751
- Use the correct type signature in the D-Bus introspection file
c71751
c71751
* Wed Jun 07 2017 Richard Hughes <richard@hughsie.com> 0.9.3-1
c71751
- New upstream release
c71751
- Add a 'downgrade' command to fwupdmgr
c71751
- Add a 'get-releases' command to fwupdmgr
c71751
- Add support for Microsoft HardwareIDs
c71751
- Allow downloading metadata from more than just the LVFS
c71751
- Allow multiple checksums on devices and releases
c71751
- Correctly open Unifying devices with original factory firmware
c71751
- Do not expect a Unifying reply when issuing a REBOOT command
c71751
- Do not re-download firmware that exists in the cache
c71751
- Fix a problem when testing for a Dell system
c71751
- Fix flashing new firmware to 8bitdo controllers
c71751
c71751
* Tue May 23 2017 Richard Hughes <richard@hughsie.com> 0.9.2-2
c71751
- Backport several fixes for updating Unifying devices
c71751
c71751
* Mon May 22 2017 Richard Hughes <richard@hughsie.com> 0.9.2-1
c71751
- New upstream release
c71751
- Add support for Unifying DFU features
c71751
- Do not spew a critial warning when parsing an invalid URI
c71751
- Ensure steelseries device is closed if it returns an invalid packet
c71751
- Ignore spaces in the Unifying version prefix
c71751
c71751
* Thu Apr 20 2017 Richard Hughes <richard@hughsie.com> 0.8.2-1
c71751
- New upstream release
c71751
- Add a config option to allow runtime disabling plugins by name
c71751
- Add DFU quirk for OpenPICC and SIMtrace
c71751
- Create directories in /var/cache as required
c71751
- Fix the Requires lines in the dfu pkg-config file
c71751
- Only try to mkdir the localstatedir if we have the right permissions
c71751
- Support proxy servers in fwupdmgr
c71751
c71751
* Thu Mar 23 2017 Bastien Nocera <bnocera@redhat.com> - 0.8.1-2
c71751
+ fwupd-0.8.1-2
c71751
- Release claimed devices on error, fixes unusable input devices
c71751
c71751
* Mon Feb 27 2017 Richard Hughes <richard@hughsie.com> 0.8.1-1
c71751
- New upstream release
c71751
- Adjust systemd confinement restrictions
c71751
- Don't initialize libsmbios on unsupported systems
c71751
- Fix a crash when enumerating devices
c71751
c71751
* Wed Feb 08 2017 Richard Hughes <richard@hughsie.com> 0.8.0-1
c71751
- New upstream release
c71751
- Add support for Intel Thunderbolt devices
c71751
- Add support for Logitech Unifying devices
c71751
- Add support for Synaptics MST cascades hubs
c71751
- Add support for the Altus-Metrum ChaosKey device
c71751
- Always close USB devices before error returns
c71751
- Return the pending UEFI update when not on AC power
c71751
- Use a heuristic for the start address if the firmware has no DfuSe footer
c71751
- Use more restrictive settings when running under systemd
c71751
c71751
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.5-2
c71751
- Rebuild for gpgme 1.18
c71751
c71751
* Wed Oct 19 2016 Richard Hughes <richard@hughsie.com> 0.7.5-1
c71751
- New upstream release
c71751
- Add quirks for HydraBus as it does not have a DFU runtime
c71751
- Don't create the UEFI dummy device if the unlock will happen on next boot
c71751
- Fix an assert when unlocking the dummy ESRT device
c71751
- Fix writing firmware to devices using the ST reference bootloader
c71751
- Match the Dell TB16 device
c71751
c71751
* Mon Sep 19 2016 Richard Hughes <richard@hughsie.com> 0.7.4-1
c71751
- New upstream release
c71751
- Add a fallback for older appstream-glib releases
c71751
- Allow the argument to 'dfu-tool set-release' be major.minor
c71751
- Fix a possible crash when uploading firmware files using libdfu
c71751
- Fix libfwupd self tests when a host-provided fwupd is not available
c71751
- Load the Altos USB descriptor from ELF files
c71751
- Show the human-readable version in the 'dfu-tool dump' output
c71751
- Support writing the IHEX symbol table
c71751
- Write the ELF files with the correct section type
c71751
c71751
* Mon Aug 29 2016 Kalev Lember <klember@redhat.com> 0.7.3-2
c71751
- Fix an unexpanded macro in the spec file
c71751
- Tighten libebitdo-devel requires with the _isa macro
c71751
- Add ldconfig scripts for libdfu and libebitdo subpackages
c71751
c71751
* Mon Aug 29 2016 Richard Hughes <richard@hughsie.com> 0.7.3-1
c71751
- New upstream release
c71751
- Add Dell TPM and TB15/WD15 support via new Dell provider
c71751
- Add initial ELF reading and writing support to libdfu
c71751
- Add support for installing multiple devices from a CAB file
c71751
- Allow providers to export percentage completion
c71751
- Don't fail while checking versions or locked state
c71751
- Show a progress notification when installing firmware
c71751
- Show the vendor flashing instructions when installing
c71751
- Use a private gnupg key store
c71751
- Use the correct firmware when installing a composite device
c71751
c71751
* Fri Aug 19 2016 Peter Jones <pjones@redhat.com> - 0.7.2-6
c71751
- Rebuild to get libfwup.so.1 as our fwupdate dep.  This should make this the
c71751
  last time we need to rebuild for this.
c71751
c71751
* Wed Aug 17 2016 Peter Jones <pjones@redhat.com> - 0.7.2-5
c71751
- rebuild against new efivar and fwupdate
c71751
c71751
* Fri Aug 12 2016 Adam Williamson <awilliam@redhat.com> - 0.7.2-4
c71751
- rebuild against new efivar and fwupdate
c71751
c71751
* Thu Aug 11 2016 Richard Hughes <richard@hughsie.com> 0.7.2-3
c71751
- Use the new CDN for firmware metadata
c71751
c71751
* Thu Jul 14 2016 Kalev Lember <klember@redhat.com> - 0.7.2-2
c71751
- Tighten subpackage dependencies
c71751
c71751
* Mon Jun 13 2016 Richard Hughes <richard@hughsie.com> 0.7.2-1
c71751
- New upstream release
c71751
- Allow devices to have multiple assigned GUIDs
c71751
- Allow metainfo files to match only specific revisions of devices
c71751
- Only claim the DFU interface when required
c71751
- Only return updatable devices from GetDevices()
c71751
- Show the DFU protocol version in 'dfu-tool list'
c71751
c71751
* Fri May 13 2016 Richard Hughes <richard@hughsie.com> 0.7.1-1
c71751
- New upstream release
c71751
- Add device-added, device-removed and device-changed signals
c71751
- Add for a new device field "Flashes Left"
c71751
- Fix a critical warning when restarting the daemon
c71751
- Fix BE issues when reading and writing DFU files
c71751
- Make the device display name nicer
c71751
- Match the AppStream metadata after a device has been added
c71751
- Return all update descriptions newer than the installed version
c71751
- Set the device description when parsing local firmware files
c71751
c71751
* Fri Apr 01 2016 Richard Hughes <richard@hughsie.com> 0.7.0-1
c71751
- New upstream release
c71751
- Add Alienware to the version quirk table
c71751
- Add a version plugin for SteelSeries hardware
c71751
- Do not return updates that require AC when on battery
c71751
- Return the device flags when getting firmware details
c71751
c71751
* Mon Mar 14 2016 Richard Hughes <richard@hughsie.com> 0.6.3-1
c71751
- New upstream release
c71751
- Add an unlock method for devices
c71751
- Add ESRT enable method into UEFI provider
c71751
- Correct the BCD version number for DFU 1.1
c71751
- Ignore the DFU runtime on the DW1820A
c71751
- Only read PCI OptionROM firmware when devices are manually unlocked
c71751
- Require AC power before scheduling some types of firmware update
c71751
c71751
* Fri Feb 12 2016 Richard Hughes <richard@hughsie.com> 0.6.2-1
c71751
- New upstream release
c71751
- Add 'Created' and 'Modified' properties on managed devices
c71751
- Fix get-results for UEFI provider
c71751
- Support vendor-specific UEFI version encodings
c71751
c71751
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-2
c71751
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c71751
c71751
* Tue Jan 19 2016 Richard Hughes <richard@hughsie.com> 0.6.1-1
c71751
- New upstream release
c71751
- Do not misdetect different ColorHug devices
c71751
- Only dump the profiling data when run with --verbose
c71751
c71751
* Mon Dec 07 2015 Richard Hughes <richard@hughsie.com> 0.6.0-1
c71751
- New upstream release
c71751
- Add support for automatically updating USB DFU-capable devices
c71751
- Emit the changed signal after doing an update
c71751
- Export the AppStream ID when returning device results
c71751
- Use the same device identification string format as Microsoft
c71751
c71751
* Wed Nov 18 2015 Richard Hughes <richard@hughsie.com> 0.5.4-1
c71751
- New upstream release
c71751
- Use API available in fwupdate 0.5 to avoid writing temp files
c71751
- Fix compile error against fwupdate 0.5 due to API bump
c71751
c71751
* Thu Nov 05 2015 Richard Hughes <richard@hughsie.com> 0.5.3-1
c71751
- New upstream release
c71751
- Avoid seeking when reading the file magic during refresh
c71751
- Do not assume that the compressed XML data will be NUL terminated
c71751
- Use the correct user agent string for fwupdmgr
c71751
c71751
* Wed Oct 28 2015 Richard Hughes <richard@hughsie.com> 0.5.2-1
c71751
- New upstream release
c71751
- Add the update description to the GetDetails results
c71751
- Clear the in-memory firmware store only after parsing a valid XML file
c71751
- Ensure D-Bus remote errors are registered at fwupdmgr startup
c71751
- Fix verify-update to produce components with the correct provide values
c71751
- Show the dotted-decimal representation of the UEFI version number
c71751
- Support cabinet archives files with more than one firmware
c71751
c71751
* Mon Sep 21 2015 Richard Hughes <richard@hughsie.com> 0.5.1-1
c71751
- Update to 0.5.1 to fix a bug in the offline updater
c71751
c71751
* Tue Sep 15 2015 Richard Hughes <richard@hughsie.com> 0.5.0-1
c71751
- New upstream release
c71751
- Do not reboot if racing with the PackageKit offline update mechanism
c71751
c71751
* Thu Sep 10 2015 Richard Hughes <richard@hughsie.com> 0.1.6-3
c71751
- Do not merge the existing firmware metadata with the submitted files
c71751
c71751
* Thu Sep 10 2015 Kalev Lember <klember@redhat.com> 0.1.6-2
c71751
- Own system-update.target.wants directory
c71751
- Make fwupd-sign obsoletes versioned
c71751
c71751
* Thu Sep 10 2015 Richard Hughes <richard@hughsie.com> 0.1.6-1
c71751
- New upstream release
c71751
- Add application metadata when getting the updates list
c71751
- Remove fwsignd, we have the LVFS now
c71751
c71751
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> 0.1.5-3
c71751
- Disable fwupd offline update service
c71751
c71751
* Wed Aug 19 2015 Richard Hughes <richard@hughsie.com> 0.1.5-2
c71751
- Use the non-beta download URL prefix
c71751
c71751
* Wed Aug 12 2015 Richard Hughes <richard@hughsie.com> 0.1.5-1
c71751
- New upstream release
c71751
- Add a Raspberry Pi firmware provider
c71751
- Fix validation of written firmware
c71751
- Make parsing the option ROM runtime optional
c71751
- Use the AppStream 0.9 firmware specification by default
c71751
c71751
* Sat Jul 25 2015 Richard Hughes <richard@hughsie.com> 0.1.4-1
c71751
- New upstream release
c71751
- Actually parse the complete PCI option ROM
c71751
- Add a 'fwupdmgr update' command to update all devices to latest versions
c71751
- Add a simple signing server that operates on .cab files
c71751
- Add a 'verify' command that verifies the cryptographic hash of device firmware
c71751
c71751
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.3-3
c71751
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c71751
c71751
* Wed Jun 03 2015 Richard Hughes <richard@hughsie.com> 0.1.3-2
c71751
- Compile with libfwupdate for UEFI firmware support.
c71751
c71751
* Thu May 28 2015 Richard Hughes <richard@hughsie.com> 0.1.3-1
c71751
- New upstream release
c71751
- Coldplug the devices before acquiring the well known name
c71751
- Run the offline actions using systemd when required
c71751
- Support OpenHardware devices using the fwupd vendor extensions
c71751
c71751
* Wed Apr 22 2015 Richard Hughes <richard@hughsie.com> 0.1.2-1
c71751
- New upstream release
c71751
- Only allow signed firmware to be upgraded without a password
c71751
c71751
* Mon Mar 23 2015 Richard Hughes <richard@hughsie.com> 0.1.1-1
c71751
- New upstream release
c71751
- Add a 'get-updates' command to fwupdmgr
c71751
- Add and document the offline-update lifecycle
c71751
- Create a libfwupd shared library
c71751
- Create runtime directories if they do not exist
c71751
- Do not crash when there are no devices to return
c71751
c71751
* Mon Mar 16 2015 Richard Hughes <richard@hughsie.com> 0.1.0-1
c71751
- First release