Blame SOURCES/0031-kernel-install-90-loaderentry-do-not-override-an-exi.patch
|
|
2aacef |
From c440081c968c93d527d441f4d106e0acad9540eb Mon Sep 17 00:00:00 2001
|
|
|
2aacef |
From: Antonio Alvarez Feijoo <antonio.feijoo@suse.com>
|
|
|
2aacef |
Date: Mon, 7 Nov 2022 15:25:25 +0100
|
|
|
2aacef |
Subject: [PATCH] kernel-install/90-loaderentry: do not override an existing
|
|
|
2aacef |
systemd.machine_id
|
|
|
2aacef |
|
|
|
2aacef |
If the systemd.machine_id command line option is already set, do not override
|
|
|
2aacef |
it.
|
|
|
2aacef |
|
|
|
2aacef |
(cherry picked from commit 802d9219aa19d759113dd6cd1e91b2bb661fe9ba)
|
|
|
2aacef |
|
|
|
2aacef |
Related #2138081
|
|
|
2aacef |
---
|
|
|
2aacef |
src/kernel-install/90-loaderentry.install | 2 +-
|
|
|
2aacef |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
2aacef |
|
|
|
2aacef |
diff --git a/src/kernel-install/90-loaderentry.install b/src/kernel-install/90-loaderentry.install
|
|
|
2aacef |
index ea75e1b0d8..41a05534b9 100755
|
|
|
2aacef |
--- a/src/kernel-install/90-loaderentry.install
|
|
|
2aacef |
+++ b/src/kernel-install/90-loaderentry.install
|
|
|
2aacef |
@@ -85,7 +85,7 @@ BOOT_OPTIONS="${BOOT_OPTIONS% }"
|
|
|
2aacef |
# command line with the machine ID we use, so that the machine ID remains
|
|
|
2aacef |
# stable, even during factory reset, in the initrd (where the system's machine
|
|
|
2aacef |
# ID is not directly accessible yet), and if the root file system is volatile.
|
|
|
2aacef |
-if [ "$ENTRY_TOKEN" = "$MACHINE_ID" ] && ! echo "$BOOT_OPTIONS" | grep -q "systemd.machine_id=$MACHINE_ID"; then
|
|
|
2aacef |
+if [ "$ENTRY_TOKEN" = "$MACHINE_ID" ] && ! echo "$BOOT_OPTIONS" | grep -q "systemd.machine_id="; then
|
|
|
2aacef |
BOOT_OPTIONS="$BOOT_OPTIONS systemd.machine_id=$MACHINE_ID"
|
|
|
2aacef |
fi
|
|
|
2aacef |
|