GeneralVersionToRelease

Differences between revisions 1 and 2
Revision 1 as of 2010-07-01 19:12:02
Size: 481
Editor: 85-210-153-201
Comment:
Revision 2 as of 2010-07-07 14:38:56
Size: 738
Editor: 212-139-208-82
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Given a kernel version and ABI number how do we find the release it is from? == == Given an Ubuntu kernel package version how do we find the release it is from? ==
Line 3: Line 3:
Given just the kernel version and ABI number you should be able to find the exact release the kernel was from. For example the 2.6.32-20 kernel is a v2.6.32 based kernel and is in the range 0-99. This will be recorded as the 2.6.32-0 kernel series in the [[Kernel/Dev/TopicBranches]] mapping tables (see ''Current Branches''). Once you have the release and branch you can obtain the source. The kernel package version is of the following form {{{2.6.35-6.9}}}. The numbers before the {{{-}}} represent the base upstream version from which this kernel was forked, the first number following the {{{-}}} represents the ABI number, the final number is an upload number. Taking the package version first remove the upload number, then round the ABI number down to the nearest hundred (which can include 0), for example:

    {{{2.6.35-6.9 => 2.6.35-6 => 2.6.35-0 }}}

Look up the final version in the [[Kernel/Dev/TopicBranches]] mapping tables (see ''Current Branches''). Once you have the release and branch you can obtain the source.

Given an Ubuntu kernel package version how do we find the release it is from?

The kernel package version is of the following form 2.6.35-6.9. The numbers before the - represent the base upstream version from which this kernel was forked, the first number following the - represents the ABI number, the final number is an upload number. Taking the package version first remove the upload number, then round the ABI number down to the nearest hundred (which can include 0), for example:

  • 2.6.35-6.9 => 2.6.35-6 => 2.6.35-0 

Look up the final version in the Kernel/Dev/TopicBranches mapping tables (see Current Branches). Once you have the release and branch you can obtain the source.

Kernel/FAQ/GeneralVersionToRelease (last edited 2010-07-07 14:39:33 by 212-139-208-82)