From: Luca Boccassi Date: Wed, 13 Nov 2024 23:04:09 +0000 (+0100) Subject: Ignore failure to set DRM interface X-Git-Tag: archive/raspbian/3.2.1-31+rpi1^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=72b7cbe1094d93faf3d4d093f1fc0d591a0ce58b;p=bumblebee.git Ignore failure to set DRM interface Bug: https://github.com/Bumblebee-Project/Bumblebee/issues/652 Origin: commit:881fab51122f7fe3c7c18565556ad96c25d0660f Applied-Upstream: commit:881fab51122f7fe3c7c18565556ad96c25d0660f This always fail due to problems in libdrm, but does not affect Bumblebee's functionality. See GH-652 for more details. Gbp-Pq: Name ignore-failure-to-set-DRM-interface.patch --- diff --git a/src/bblogger.c b/src/bblogger.c index c882275..ba3787e 100644 --- a/src/bblogger.c +++ b/src/bblogger.c @@ -146,6 +146,7 @@ static void parse_xorg_output(char * string){ if (strstr(string, "Failed to load module \"kbd\"") || strstr(string, "No input driver matching") || strstr(string, "systemd-logind: failed to get session:") || + strstr(string, "failed to set DRM interface version 1.4:") || strstr(string, "Server terminated successfully")) { /* non-fatal errors */ prio = LOG_DEBUG;