SHA256
1
0
forked from pool/fwupd

Accepting request 711910 from Base:System

- Update to version 1.2.9:
  * Release fwupd 1.2.9
  * trivial: Add two new translatable strings for new category types
  * Check if the system is offline during install, rather than at startup
  * Prompt the user to shutdown if requried when installing by ID
  * Use the correct file extension for the offline updates cache
  * trivial: Allow using --force to use the wrong daemon version
  * trivial: Display the correct expected command
  * standalone-installer: Be smarter about existing installed fwupd
  * Add a plugin to update Synaptics Prometheus fingerprint readers
  * trivial: standalone-installer: rename uninstall argument to cleanup
  * fu-util: Check the daemon version is at least the client version
  * fu-util: Check that daemon is started by expected unit
  * fu-util-common: when stopping a daemon, check for snap too
  * Allow using --force to trigger a duplicate offline update
  * trivial: Allow using FuUsbDevice without a GUsbDevice
  * trivial: Copy the icons if unset for the device child
  * trivial: Copy the physical ID if unset for the device child
  * trivial: Ensure the parent ID is up to date if the device ID changes
  * trivial: Fix typo when setting the parent ID
  * trivial: Disable the flatpak CI build
  * Allow handling FORCE for devices that subclass FuDevice
  * uefi: Fix a libasan failure when reading a UEFI variable
  * trivial: Fix a memory leak found using libasan
  * trivial: Fix an libasan failure in the dell plugin
  * trivial: Fix some dead code spotted by coverity
  * trivial: Fix a typo spotted by coverity
  * trivial: Fix a missing config.h include in a new source file
  * Dynamically read path to use for /system-update
  * Display the remote warning on the console in an easy-to-read way (forwarded request 711904 from pluskalm)

OBS-URL: https://build.opensuse.org/request/show/711910
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fwupd?expand=0&rev=19
This commit is contained in:
Dominique Leuenberger 2019-06-27 13:22:57 +00:00 committed by Git OBS Bridge
commit 1deaa73a72
7 changed files with 63 additions and 14 deletions

View File

@ -4,11 +4,11 @@
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="changesgenerate">enable</param>
<param name="revision">refs/tags/1.2.8</param>
<param name="revision">refs/tags/1.2.9</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="disabled"/>
</services>
</services>

View File

@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/hughsie/fwupd.git</param>
<param name="changesrevision">828c913e37ef9af283afb7f13b04459cd199c887</param></service></servicedata>
<param name="changesrevision">4808c0ebad49041b0ba65dcb937bcaa188bc6365</param></service></servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5c93a666c170c04334d54b61ed021b95bef7bd27b67c0b07af9fb80ab07cbf37
size 1427668

3
fwupd-1.2.9.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6c92a891fc278ca124f4d4cf7c7dbc7f00c4dfb279277748df35bd52557fbe27
size 1441184

View File

@ -10,11 +10,11 @@ Signed-off-by: Gary Lin <glin@suse.com>
plugins/uefi/fu-uefi-bootmgr.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/plugins/uefi/fu-uefi-bootmgr.c b/plugins/uefi/fu-uefi-bootmgr.c
index 7bec311..22357d4 100644
--- a/plugins/uefi/fu-uefi-bootmgr.c
+++ b/plugins/uefi/fu-uefi-bootmgr.c
@@ -322,7 +322,8 @@
Index: fwupd-1.2.9/plugins/uefi/fu-uefi-bootmgr.c
===================================================================
--- fwupd-1.2.9.orig/plugins/uefi/fu-uefi-bootmgr.c
+++ fwupd-1.2.9/plugins/uefi/fu-uefi-bootmgr.c
@@ -324,7 +324,8 @@ fu_uefi_bootmgr_bootnext (const gchar *e
return FALSE;
/* test to make sure shim is there if we need it */
@ -24,5 +24,3 @@ index 7bec311..22357d4 100644
if (shim_app == NULL)
return FALSE;
if (g_file_test (shim_app, G_FILE_TEST_EXISTS)) {
2.21.0

View File

@ -1,3 +1,54 @@
-------------------------------------------------------------------
Tue Jun 25 14:59:34 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
- Update to version 1.2.9:
* Release fwupd 1.2.9
* trivial: Add two new translatable strings for new category types
* Check if the system is offline during install, rather than at startup
* Prompt the user to shutdown if requried when installing by ID
* Use the correct file extension for the offline updates cache
* trivial: Allow using --force to use the wrong daemon version
* trivial: Display the correct expected command
* standalone-installer: Be smarter about existing installed fwupd
* Add a plugin to update Synaptics Prometheus fingerprint readers
* trivial: standalone-installer: rename uninstall argument to cleanup
* fu-util: Check the daemon version is at least the client version
* fu-util: Check that daemon is started by expected unit
* fu-util-common: when stopping a daemon, check for snap too
* Allow using --force to trigger a duplicate offline update
* trivial: Allow using FuUsbDevice without a GUsbDevice
* trivial: Copy the icons if unset for the device child
* trivial: Copy the physical ID if unset for the device child
* trivial: Ensure the parent ID is up to date if the device ID changes
* trivial: Fix typo when setting the parent ID
* trivial: Disable the flatpak CI build
* Allow handling FORCE for devices that subclass FuDevice
* uefi: Fix a libasan failure when reading a UEFI variable
* trivial: Fix a memory leak found using libasan
* trivial: Fix an libasan failure in the dell plugin
* trivial: Fix some dead code spotted by coverity
* trivial: Fix a typo spotted by coverity
* trivial: Fix a missing config.h include in a new source file
* Dynamically read path to use for /system-update
* Display the remote warning on the console in an easy-to-read way
* ata: Set version format to plain for devices obtained from udev
* trivial: Only apply SmbiosManufacturer to release version for internal
* trivial: Fix two bugs in the hardware self tests script
* Never guess the version format from the version string
* Only force a semver when the device opts-in
* Export the version-format to clients
* Add missing gtk-doc documentation
* dfu: Add some trivial, but useful, debugging for AVR DFU devices
* dfu: Correctly identify DFU firmware that starts at offset zero
* dfu: Don't keep showing trivial debug output
* dfu: Reset the forced version during attach and detach
* ata/nvme: For devices running Dell firmware, set `VersionFormat` (Fixes: #1169)
* fu-engine: Check if VersionFormat is ambiguous when adding devices
* trivial: Fix fwupdate --apply
* Only use class-based instance IDs for quirk matching
* trivial: dell-dock: set minimum board to 6
* trivial: post release version bump
-------------------------------------------------------------------
Wed May 8 10:39:24 UTC 2019 - Maurizio Galli <maurizio.galli@gmail.com>

View File

@ -28,7 +28,7 @@
%global efidir sles
%endif
Name: fwupd
Version: 1.2.8
Version: 1.2.9
Release: 0
Summary: Device firmware updater daemon
License: GPL-2.0-or-later AND LGPL-2.1-or-later