Hi,
As far as I can tell, most pc-kernel snap variations seem to be built from deb packages. These packages are just variations of, or similar, to packages that you might install on Ubuntu Classic.
The snap recipes seem to be in various branches of the following repo:
I can clone that, and inspect the snapcraft files.
However, unless I’m missing something, some of the versions of snaps that are produced from these branches don’t seem to have publicly available packages.
For instance, of particualr interest to me is pc-kernel, 24-rt/stable
The snapcraft for that, kernel part, has a build-package line of linux-image-uc-realtime=@SWM:version@
My assumption is that @SWM:version@ is a placeholder string that gets replaced in a build system somewhere outside of the actual snapcraft file, before snapcraft is run.
The current version info for this package in noble repos is, 6.8.1-1015.16
$ apt-cache madison linux-image-uc-realtime
linux-image-uc-realtime | 6.8.1-1015.16 | http://gb.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages
linux-meta-realtime | 6.8.1-1015.16 | http://gb.archive.ubuntu.com/ubuntu noble-updates/universe Sources
But, the current snap version is, 6.8.1-1036.37
$ snap info pc-kernel
~~~8<~~~
24-rt/stable: 6.8.1-1036.37 2025-10-20 (2886) 360MB -
~~~8<~~~
Googling around turns up a few CVE notification messages for package version 6.8.1-1036.37, but I can’t find it in an apt repo or launchpad anywhere.
The reason I want to packages is to get hold of the accompanying header files. The relevant versions of those are available for linux-image-uc-realtime=6.8.1-1015.16 in the noble repo, as:
linux-realtime-headers-6.8.1-1015=6.8.1-1015.16
linux-headers-6.8.1-1015-realtime=6.8.1-1015.16
Where can I find them and other realted packages for linux-image-uc-realtime=6.8.1-1036.37 ?
Thanks!
Cheers, Just