Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package grub2 for openSUSE:Factory checked in at 2022-08-19 17:53:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/grub2 (Old) and /work/SRC/openSUSE:Factory/.grub2.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "grub2" Fri Aug 19 17:53:16 2022 rev:270 rq:997711 version:2.06 Changes: -------- --- /work/SRC/openSUSE:Factory/grub2/grub2.changes 2022-08-12 17:46:21.218070773 +0200 +++ /work/SRC/openSUSE:Factory/.grub2.new.2083/grub2.changes 2022-08-19 17:54:22.251835330 +0200 @@ -1,0 +2,8 @@ +Thu Aug 18 02:47:28 UTC 2022 - Michael Chang <[email protected]> + +- Fix tpm error stop tumbleweed from booting (bsc#1202374) + * 0001-tpm-Pass-unknown-error-as-non-fatal-but-debug-print-.patch +- Patch Removed + * 0001-tpm-Log-EFI_VOLUME_FULL-and-continue.patch + +------------------------------------------------------------------- Old: ---- 0001-tpm-Log-EFI_VOLUME_FULL-and-continue.patch New: ---- 0001-tpm-Pass-unknown-error-as-non-fatal-but-debug-print-.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ grub2.spec ++++++ --- /var/tmp/diff_new_pack.472I3Q/_old 2022-08-19 17:54:25.063841224 +0200 +++ /var/tmp/diff_new_pack.472I3Q/_new 2022-08-19 17:54:25.067841232 +0200 @@ -315,6 +315,7 @@ Patch790: 0001-30_uefi-firmware-fix-printf-format-with-null-byte.patch Patch791: 0001-i386-pc-build-btrfs-zstd-support-into-separate-modul.patch Patch792: 0001-templates-Follow-the-path-of-usr-merged-kernel-confi.patch +Patch793: 0001-tpm-Pass-unknown-error-as-non-fatal-but-debug-print-.patch Patch794: 0001-Filter-out-POSIX-locale-for-translation.patch Patch795: 0001-ieee1275-implement-FCP-methods-for-WWPN-and-LUNs.patch Patch796: 0001-disk-diskfilter-Use-nodes-in-logical-volume-s-segmen.patch @@ -422,7 +423,6 @@ Patch898: 0014-util-grub-protect-Add-new-tool.patch Patch899: fix-tpm2-build.patch Patch900: 0001-crytodisk-fix-cryptodisk-module-looking-up.patch -Patch901: 0001-tpm-Log-EFI_VOLUME_FULL-and-continue.patch Requires: gettext-runtime %if 0%{?suse_version} >= 1140 ++++++ 0001-tpm-Pass-unknown-error-as-non-fatal-but-debug-print-.patch ++++++ >From 2cecb472ffba4dbc534f4ce3346a453762371c52 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre <[email protected]> Date: Fri, 25 Oct 2019 10:27:54 -0400 Subject: [PATCH] tpm: Pass unknown error as non-fatal, but debug print the error we got Signed-off-by: Mathieu Trudel-Lapierre <[email protected]> Patch-Name: ubuntu-tpm-unknown-error-non-fatal.patch --- grub-core/commands/efi/tpm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grub-core/commands/efi/tpm.c b/grub-core/commands/efi/tpm.c index a97d85368..1e399a964 100644 --- a/grub-core/commands/efi/tpm.c +++ b/grub-core/commands/efi/tpm.c @@ -145,7 +145,8 @@ grub_efi_log_event_status (grub_efi_status_t status) case GRUB_EFI_NOT_FOUND: return grub_error (GRUB_ERR_UNKNOWN_DEVICE, N_("TPM unavailable")); default: - return grub_error (GRUB_ERR_UNKNOWN_DEVICE, N_("Unknown TPM error")); + grub_dprintf("tpm", "Unknown TPM error: %" PRIdGRUB_SSIZE, status); + return 0; } } -- 2.31.1
