Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tboot for openSUSE:Factory checked in at 2024-06-25 23:08:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tboot (Old) and /work/SRC/openSUSE:Factory/.tboot.new.18349 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "tboot" Tue Jun 25 23:08:38 2024 rev:49 rq:1183112 version:20210614_1.11.4 Changes: -------- --- /work/SRC/openSUSE:Factory/tboot/tboot.changes 2024-06-18 22:52:28.823803971 +0200 +++ /work/SRC/openSUSE:Factory/.tboot.new.18349/tboot.changes 2024-06-25 23:09:52.207538818 +0200 @@ -1,0 +2,13 @@ +Tue Jun 25 07:34:57 UTC 2024 - Matthias Gerstner <matthias.gerstner@suse.com> + +- add tboot-bsc#1207833-copy-mbi.patch: correctly move MBI from a lower + address above tboot (bsc#1207833). This fixes a broken boot situation in + some configurations stopping with log line "TBOOT: loader context was moved + from 0x<address> to 0x<address>". + + this patch syncs the Factory package with the SLE package. For some reason I + forgot to add the patch to Factory first. Also upstream did not react to the + patch, that I posted to their mailing list, so it's not contained in the + upstream tarball. + +------------------------------------------------------------------- New: ---- tboot-bsc#1207833-copy-mbi.patch BETA DEBUG BEGIN: New: - add tboot-bsc#1207833-copy-mbi.patch: correctly move MBI from a lower address above tboot (bsc#1207833). This fixes a broken boot situation in BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tboot.spec ++++++ --- /var/tmp/diff_new_pack.DPVeuo/_old 2024-06-25 23:09:52.767559232 +0200 +++ /var/tmp/diff_new_pack.DPVeuo/_new 2024-06-25 23:09:52.771559378 +0200 @@ -30,6 +30,7 @@ Patch4: tboot-grub2-fix-xen-submenu-name.patch Patch7: tboot-distributor.patch Patch8: tboot-grub2-refuse-secure-boot.patch +Patch9: tboot-bsc#1207833-copy-mbi.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build ExclusiveArch: %{ix86} x86_64 BuildRequires: openssl-devel ++++++ tboot-bsc#1207833-copy-mbi.patch ++++++ --- tboot-1.10.2/tboot/common/loader.c.orig 2023-05-31 01:49:45.935321582 -0500 +++ tboot-1.10.2/tboot/common/loader.c 2023-05-31 01:57:27.914405762 -0500 @@ -1099,11 +1099,17 @@ move_modules(loader_ctx *lctx) if ( below_tboot(lowest) ) from = lowest; - else - if ( below_tboot((unsigned long)lctx->addr) ) + + /* + * if MBI is below tboot & the lowest module, make sure it gets + * copied, too! + */ + if ( below_tboot((unsigned long)lctx->addr) && + (unsigned long)lctx->addr < lowest ) from = (unsigned long)lctx->addr; - else - return; + + if (from == 0) + return; unsigned long highest = get_highest_mod_end(lctx); unsigned long to = PAGE_UP(highest);
participants (1)
-
Source-Sync