PDA

View Full Version : [SOLVED] Linux Most Recent Stable Kernel Snapshot



gardnan
April 9th, 2012, 06:52 AM
I was wondering if there was a git repository that contained the most recent stable kernel release on kernel.org. What I want is a git tree that is just the code in the most recent stable release, but has all of the git log history in it. I have tried looking through the linux-stable.git branch, but I can't seem to find a tag for the most recent kernel version.

dylan07
April 9th, 2012, 06:58 AM
Maybe look on launchpad.net ?

r-senior
April 9th, 2012, 08:41 AM
The stable tree is: http://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git;a=summary

Which you can clone locally (and get commit history) using the git url that it quotes on that page:


$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-stable

That clones into a 'linux-stable' sub-directory of your current working directory. It takes a while, but then you can keep it up to date with:


$ cd linux-stable
$ git pull

The tree is at 3.4-rc2, but if you want the latest stable release, look in the list of tags on the kernel .org page I linked at the top. The latest stable is tagged v3.3.1, so:


$ git checkout v3.3.1

gardnan
April 10th, 2012, 10:40 PM
Thanks r-senior, that worked!

I had tried looking for the 3.3.1 tag before in the log, but I couldn't seem to find a log entry announcing it, so I thought it didn't exist.