https://bugzilla.kernel.org/show_bug.cgi?id=153401
--- Comment #6 from Lv Zheng <[email protected]> --- 4.6.5 and 4.7.0 can only be found in the stable kernel. So you need to clone the stable tree for doing the git bisect: https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/ They can be found as tags with "git tag": # git remote add stable https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git # git fetch stable # git checkout stable # git tag If you can find them (for example linux-4.6.5 and linux-4.7.0) and confirm that they are really good/bad via: # git branch stable-4.6.5 stable/linux-4.6.5 # git checkout stable-4.6.5 Then you can mark them as good/bad: # git bisect good linux-4.6.5 # git bisect bad linux-4.7.0 But be aware of that: most kernel developers are only working with the upstream kernels. So if you want to work with the developers, you may try to use the upstream kernel, you can type "git tag" and choose the tags closer to 4.6.5/4.7.0. So the good/bad should be one of the v4.5.x, v4.6.x, v4.7.x tags. You confirm if it is good/bad via: # git branch v4.y.x origin/v4.y.x # git checkout v4.y.x After finding out which is last good and which is the first bad. You can start to bisect between the last good and the first bad. -- You are receiving this mail because: You are watching the assignee of the bug. ------------------------------------------------------------------------------ _______________________________________________ acpi-bugzilla mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
