public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] Core Update 168: Hard-code kernel version to 5.15.35
Date: Thu, 12 May 2022 17:41:37 +0000	[thread overview]
Message-ID: <db645393-1655-b2c8-f00c-f1cd7ef798bf@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1892 bytes --]

On systems that have previously running on testing, kernel 5.15.32 might
still be installed. dracut being called with ${KVER} will then build an
inital ramdisk for the wrong kernel, as 5.15.32 might still be running,
albeit 5.15.35 has been installed due to the Pakfire procedure when
upgrading on testing.

Due to lack of hardware, this patch is untested on ARM.

https://lists.ipfire.org/pipermail/development/2022-May/013433.html

Reported-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 config/rootfiles/core/168/update.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/config/rootfiles/core/168/update.sh b/config/rootfiles/core/168/update.sh
index d21f648dd..7cc8800b2 100644
--- a/config/rootfiles/core/168/update.sh
+++ b/config/rootfiles/core/168/update.sh
@@ -107,14 +107,14 @@ chmod -v 750 /etc/sudoers.d
 chmod -v 640 /etc/sudoers.d/*
 
 # Rebuild initial ramdisk to apply microcode updates
-dracut --regenerate-all --force
+dracut --kver="5.15.35-ipfire" --regenerate-all --force
 case "$(uname -m)" in
         armv*)
-                mkimage -A arm -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
-                rm /boot/initramfs-${KVER}-ipfire.img
+                mkimage -A arm -T ramdisk -C lzma -d /boot/initramfs-5.15.35-ipfire.img /boot/uInit-5.15.35-ipfire
+                rm /boot/initramfs-5.15.35-ipfire.img
                 ;;
         aarch64)
-                mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
+                mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-5.15.35-ipfire.img /boot/uInit-5.15.35-ipfire
                 # dont remove initramfs because grub need this to boot.
                 ;;
 esac
-- 
2.35.3

             reply	other threads:[~2022-05-12 17:41 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-12 17:41 Peter Müller [this message]
2022-05-12 18:10 ` Jon Murphy
2022-05-12 19:33   ` Peter Müller
2022-05-12 19:53     ` Adolf Belka
2022-05-12 20:00       ` Peter Müller
2022-05-12 20:11         ` Adolf Belka
2022-05-13 10:11 ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=db645393-1655-b2c8-f00c-f1cd7ef798bf@ipfire.org \
    --to=peter.mueller@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox