Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'ktest-v5.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-ktest

Pull ktest fix from Steven Rostedt:
"Fix issues with grub2bls in ktest.pl

ktest.pl did not know about grub2bls that was introduced in Fedora 30,
and now it does"

* tag 'ktest-v5.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-ktest:
ktest.pl: Fix incorrect reboot for grub2bls

+1 -1
+1 -1
tools/testing/ktest/ktest.pl
··· 2040 2040 2041 2041 if ($reboot_type eq "grub") { 2042 2042 run_ssh "'(echo \"savedefault --default=$grub_number --once\" | grub --batch)'"; 2043 - } elsif ($reboot_type eq "grub2") { 2043 + } elsif (($reboot_type eq "grub2") or ($reboot_type eq "grub2bls")) { 2044 2044 run_ssh "$grub_reboot $grub_number"; 2045 2045 } elsif ($reboot_type eq "syslinux") { 2046 2046 run_ssh "$syslinux --once \\\"$syslinux_label\\\" $syslinux_path";