Comment 30 for bug 1724657

Revision history for this message
Kai-Heng Feng (kaihengfeng) wrote :

No I can't. You can't build a kernel before knowing next commit to try.

It can be much faster if you build your own kernel locally,

$ sudo apt build-dep linux
$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
$ cd linux
$ git bisect start
$ git bisect good v4.12
$ git bisect bad v4.13-rc1
$ make localmodconfig
$ make -j`nproc` deb-pkg

Install the newly built kernel.
If the issue still happens,
$ git bisect bad

Otherwise
$ git bisect good

Repeat to "make -j`nproc` deb-pkg" until you find the commit that causes the regression.