You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adds automatic bisection support first through the CLI by
using simple command line options. The first target goal to test
is very simple, check if the kernel boots or not. There is no need
for a custom workflow for this. We just enable the user to set the
values through the command line interface like this:
git clone git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git \
--reference /mirror/linux-next.git linux
make defconfig-bisection \
GOOD=v6.15-rc2 \
BAD=next-20250422 \
KDEVOPS_HOSTS_PREFIX="bisect" \
LINUX_TREE="git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git" -j128
make -j128
make bringup
make linux # Boots to good at first
make linux-bisection # Runs the bisection script
For now confine this feature to BOOTLINUX_9P as its not clear what to do
about terraform yet. We can add that support later.
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
0 commit comments