From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AC10515800F for ; Fri, 20 Jan 2023 09:37:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF282E0876; Fri, 20 Jan 2023 09:37:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 959FAE0876 for ; Fri, 20 Jan 2023 09:37:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C01F340C7C for ; Fri, 20 Jan 2023 09:37:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20DD0884 for ; Fri, 20 Jan 2023 09:37:15 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1674207422.7f6e04a9631927951cf1b49431622dac5e70ed22.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/lightdm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/lightdm/lightdm-1.32.0-r2.ebuild X-VCS-Directories: x11-misc/lightdm/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 7f6e04a9631927951cf1b49431622dac5e70ed22 X-VCS-Branch: master Date: Fri, 20 Jan 2023 09:37:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7ba0bf8c-e5fe-4245-8fcc-3289cd15ba73 X-Archives-Hash: ffdcda5d3b539ca33ec822134bb26f58 commit: 7f6e04a9631927951cf1b49431622dac5e70ed22 Author: Marek Szuba gentoo org> AuthorDate: Fri Jan 20 09:29:24 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Jan 20 09:37:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6e04a9 x11-misc/lightdm: tell the users experiencing the "X not started on a Nvidia GPU" problem what to do Leaving the deployed default configuration be because the issue appears to be a bug in Nvidia drivers rather than lightdm itself, and I see no point in switching this off for everyone when all that is needed is a one-time, one-line change. Closes: https://bugs.gentoo.org/886607 Signed-off-by: Marek Szuba gentoo.org> x11-misc/lightdm/lightdm-1.32.0-r2.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/x11-misc/lightdm/lightdm-1.32.0-r2.ebuild b/x11-misc/lightdm/lightdm-1.32.0-r2.ebuild index d54f37d5244b..1209f8df2a34 100644 --- a/x11-misc/lightdm/lightdm-1.32.0-r2.ebuild +++ b/x11-misc/lightdm/lightdm-1.32.0-r2.ebuild @@ -156,4 +156,12 @@ src_install() { pkg_postinst() { systemd_reenable "${PN}.service" + + # Bug #886607 + ewarn + ewarn "If you have a Nvidia GPU and ${PN} fails to launch X, edit /etc/${PN}/${PN}.conf to include the line" + ewarn + ewarn "logind-check-graphical=false" + ewarn + ewarn "in the section [LightDM]. See https://github.com/canonical/lightdm/issues/263 for details." }