Linux Kernel – How to obtain a particular version (right upto SUBLEVEL)
kernel.org has a public (read-only) git repository that you can clone. It has also tags for every kernel version, so you can checkout a specific version: # Clone the kernel to your local machine $ git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git $ cd linux-stable # Find the tag for the version you want $ git tag -l | … Read more