Kernel not updated to latest version - 5.15.0-1050-raspi per USN-6725-1

Asked by Relyt

Apologies in advance, I am not Linux foo.

Trying to update to 5.15.0-1050-raspi, currently on 5.15.0-1049-raspi. Have run apt update / upgrade (yes sudo) but shows no updates available. Need to address issues identified in USN-6725-1.

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.4 LTS
Release: 22.04

cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.4 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.4 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy

Arch - arm64

Many thanks in advance!

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu linux-raspi Edit question
Assignee:
No assignee Edit question
Solved by:
Manfred Hampl
Solved:
Last query:
Last reply:
Revision history for this message
Manfred Hampl (m-hampl) said :
#1

For diagnostic purposes, what output do you receive for the following commands (to be executed in a terminal window)

uname -a
lsb_release -crid
apt policy linux-image-raspi

Revision history for this message
Relyt (relyt6788) said :
#2

uname -a
Linux aug1dns01 5.15.0-1049-raspi #52-Ubuntu SMP PREEMPT Thu Mar 14 08:39:42 UTC 2024 aarch64 aarch64 aarch64 GNU/Linux

lsb_release -crid
Distributor ID: Ubuntu
Description: Ubuntu 22.04.4 LTS
Release: 22.04
Codename: jammy

apt policy linux-image-raspi
linux-image-raspi:
  Installed: (none)
  Candidate: 5.15.0.1050.48
  Version table:
     5.15.0.1050.48 500
        500 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 Packages
        500 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 Packages
     5.15.0.1005.5 500
        500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Package

Revision history for this message
Manfred Hampl (m-hampl) said :
#3

It seems that you are missing certain meta-packages that ensure an upgrade to the most recent kernel-packages.

What output do you receive for the command

dpkg -l | grep ' linux-'

Revision history for this message
Relyt (relyt6788) said :
#4

Thank you! Here’s the output requested:

dpkg -l | grep ' linux-'
ii linux-base 4.5ubuntu9 all Linux image base package
ii linux-firmware 20220329.git681281e4-0ubuntu3.29 all Firmware for Linux kernel drivers
ii linux-firmware-raspi 8-0ubuntu1~22.04 arm64 Raspberry Pi 2/3/4 GPU firmware and bootloaders
ii linux-firmware-raspi2 8-0ubuntu1~22.04 arm64 transitional package
ii linux-headers-5.15.0-1049-raspi 5.15.0-1049.52 arm64 Linux kernel headers for version 5.15.0 on ARMv8 SMP
ii linux-image-5.15.0-1049-raspi 5.15.0-1049.52 arm64 Linux kernel image for version 5.15.0 on ARMv8 SMP
ii linux-modules-5.15.0-1049-raspi 5.15.0-1049.52 arm64 Linux kernel extra modules for version 5.15.0 on ARMv8 SMP
ii linux-raspi-headers-5.15.0-1049 5.15.0-1049.52 arm64 Header files related to Linux kernel version 5.15.0
ii linux-raspi-headers-5.4.0-1045 5.4.0-1045.49 arm64 Header files related to Linux kernel version 5.4.0

Revision history for this message
Best Manfred Hampl (m-hampl) said :
#5

Run the command

sudo apt install linux-raspi

and this should care for installing the new kernel package, whenever there is a new one available (including the 5.15.0-1050 version already available)

Revision history for this message
Relyt (relyt6788) said :
#6

This took care of it! Thank you!!

Revision history for this message
Relyt (relyt6788) said :
#7

Thanks Manfred Hampl, that solved my question.