From 86d368fe15d1ec06cda9fedc5faf2e7adb034eb8 Mon Sep 17 00:00:00 2001 From: Darby Sauter Date: Tue, 23 Feb 2021 20:11:53 -0800 Subject: pkg/report: added extra ignore cases for android Ignore cases that match "INFO:" that were not important. These occured on Pixel3XL running Android 11. --- pkg/report/linux.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index ada85e910..9eb6c0972 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1546,6 +1546,8 @@ var linuxOopses = append([]*oops{ compile("_INFO::"), // Android can print this during boot. compile("INFO: sys_.* is not present in /proc/kallsyms"), // pkg/host output in debug mode compile("INFO: no syscalls can create resource"), // pkg/host output in debug mode + compile("CAM_INFO:"), // Android prints this. + compile("rmt_storage:INFO:"), // Android prints this. }, }, { -- cgit mrf-deployment