Git Repositories
kernel-source.git
There are two openSUSE Kernel repositories. Development happens in the kernel-source git repository. This tree is a quile-like series of patches against the upstream kernel, plus spec files and various scripts. You can clone it with
git clone git://kernel.opensuse.org/kernel-source.git -b stable
If the above command fails, try one of these alternatives:
git clone http://kernel.opensuse.org/kernel-source.git -b stable git clone git://gitorious.org/opensuse/kernel-source.git -b stable git clone http://git.gitorious.org/opensuse/kernel-source.git -b stable
kernel.git
Note: due to a bug in the conversion script, we had to rewrite the history of the kernel.git repository at 2013-03-01. See this message in the opensuse-kernel mainling list for details.
If you just want to hack on the sources and do not need to package the kernel, use the kernel git repository. This one has the same layout as the upstream kernel. Clone command:
git clone git://kernel.opensuse.org/kernel.git -b stable
If the above command fails, try one of these alternatives:
git clone http://kernel.opensuse.org/kernel.git -b stable git clone git://gitorious.org/opensuse/kernel.git -b stable git clone http://git.gitorious.org/opensuse/kernel.git -b stable