From patchwork Tue Jan 22 11:55:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: data: klog.json: Make PnP BIOS message into an info message From: Colin King X-Patchwork-Id: 214535 Message-Id: <1358855740-20459-1-git-send-email-colin.king@canonical.com> To: fwts-devel@lists.ubuntu.com Date: Tue, 22 Jan 2013 11:55:40 +0000 From: Colin Ian King PnP BIOS messages are normally classified as errors. The following warning is just an info message from the kernel and currently triggers fwts klog scanner to report an error: "PnPBIOS: Disabled by ACPI PNP" ..so make this into an info message rather than an error. This false positive was detected by fwts in bug report LP:#1102370 Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Alex Hung --- data/klog.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/data/klog.json b/data/klog.json index 447c331..d526979 100644 --- a/data/klog.json +++ b/data/klog.json @@ -1356,6 +1356,14 @@ }, { "compare_mode": "regex", + "log_level": "LOG_LEVEL_INFO", + "tag": "FWTS_TAG_ACPI", + "pattern": "PnPBIOS.*Disabled by ACPI PNP", + "advice": "The PnPBIOS driver was disabled because PnP support is provided by the ACPI driver.", + "label": "KlogPnpBiosDisabled" + }, + { + "compare_mode": "regex", "log_level": "LOG_LEVEL_HIGH", "tag": "FWTS_TAG_ACPI", "pattern": "PnPBIOS.*",