Where can I find the changelog
between versions of the kernel released for Ubuntu 10.04? Note that I need to find the changelog for 10.04 from an 11.04 system, so if I have to, I can run a VM for this purpose.
"Why do I need the kernel changelog?" you may ask. I need it because I'm going to package a custom build of the kernel for myself onto a PPA I own, and I need the changelog to show my changes to the kernel in addition to all previous changes done by the Ubuntu developers.
The latest version of the kernel for Ubuntu can be seen on Launchpad. See all current changelogs here:
That should tell you what changed in each release.
Given that your main aim is to build your own kernel packages though, you might be better off following these guides:
You could also add the relevant repos for lucid (it will not harm your system, given that the packages have older version number, so are ignored in
dist-upgrade
), update the cache and use the commandI find http://kernelnewbies.org/LinuxChanges to be more human readable for each Major Kernel change (2.6.31, 2.6.32... 2.6.39)
For individual kernel versions i normally go here:
http://kernelnewbies.org/Linux26Changes
Which shows in a more human readable way what is new, improved or fixed in each kernel version release.
NOTE: Not related to specific Ubuntu kernel releases but as help for kernel news for future Ubuntu versions.
@enzotib's answer didn't work for me, but one of the packages which include the kernel version is bound to get the correct report.
You can use this to figure out which one works:
And in my case all except
linux-image-${version}-generic
worked.E.g.,
apt changelog linux-headers-5.0.0-23-generic
.