aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index 1ac1b8ee9..8a6cc7573 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -2387,7 +2387,7 @@ var linuxOopses = append([]*oops{
[]byte("Booting the kernel."),
[]oopsFormat{
{
- title: compile("Booting the kernel."),
+ title: compile("^Booting the kernel"),
fmt: "unexpected kernel reboot",
noStackTrace: true,
reportType: crash.UnexpectedReboot,
@@ -2397,7 +2397,7 @@ var linuxOopses = append([]*oops{
// These may appear on the same line when the fuzzer reads from the console the existing
// boot message and then pass it as mount option, kernel then prints it back
// as an invalid mount option and we detect false reboot.
- compile("Parsing ELF|Decompressing Linux"),
+ compile("Parsing ELF|Decompressing Linux|Unknown parameter '"),
},
crash.UnknownType,
},