From 9525fe0ba5d6a29353f819f7350c724117a85eec Mon Sep 17 00:00:00 2001 From: Jan Macku Date: Mon, 8 Jun 2026 13:07:19 +0200 Subject: [PATCH] Do not build efi stub on i686 anymore to avoid debuginfo generation issues like: ``` debugedit: Failed to update file: invalid section entry size ``` Resolves: RHEL-182998 --- systemd.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/systemd.spec b/systemd.spec index 68db54a..1e70294 100644 --- a/systemd.spec +++ b/systemd.spec @@ -48,7 +48,7 @@ Url: https://systemd.io # Allow users to specify the version and release when building the rpm by # setting the %%version_override and %%release_override macros. Version: %{?version_override}%{!?version_override:257} -Release: 26%{?dist} +Release: 27%{?dist} %global stable %(c="%version"; [ "$c" = "${c#*.*}" ]; echo $?) @@ -796,7 +796,7 @@ Patch0682: 0682-fstab-generator-fix-spurious-quota-warning-for-xfs.patch # Downstream-only patches (9000–9999) %endif -%ifarch %{ix86} x86_64 aarch64 riscv64 +%ifarch x86_64 aarch64 riscv64 %global want_bootloader 1 %endif @@ -1743,6 +1743,9 @@ rm -f .file-list-* rm -f %{name}.lang %changelog +* Mon Jun 15 2026 systemd maintenance team - 257-27 +- Do not build efi stub on i686 anymore (RHEL-176073) + * Mon Jun 08 2026 systemd maintenance team - 257-26 - fstab-generator: fix spurious quota warning for xfs (RHEL-169955)