Comment 24 for bug 1035172

Revision history for this message
Joseph Salisbury (jsalisbury) wrote :

Hi Adam,

Here's some info to perform the kernel bisect.

I was using the upstream linux-stable tree to perform the bisect. To clone that tree, you can run:
git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-stable

Then cd into linux-stable

I used stable v3.2 as the first good and stable v3.3-rc1 as the first bad. Here are the actual commands:

git bisect start
git bisect good v3.2
git bisect bad v3.3-rc1

Or you could use the SHA1's for the kernel versions:
git bisect start
git bisect good 805a6af8dba5dfdd35ec35dc52ec0122400b2610
git bisect bad dcd6c92267155e70a94b3927bce681ce74b80d1f

git will then report the SHA1 for the first kernel build.