X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.66]) by lists.alpinelinux.org (Postfix) with ESMTP id 012CA5C5161 for ; Thu, 28 Jun 2018 05:25:29 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 89AA220F10 for ; Thu, 28 Jun 2018 07:25:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1530163528; bh=n9H0AELeTCAa6JQkiFyZNnv1YfS2l+i1A5ujho7I5aM=; h=From:To:Cc:Subject:Date:From; b=dcxHQgNS5weeFnIGaj+DyQ4wKqurxnGq1IVHLkWh+x/oJ7LFugXqUsjSTX3z4abyG f45ofF6AIP5MQqioSJ/7BfYfdQEiKvSbqU5bkJEsZd3GN7gP7S+9gx2H5q/EMq/G7X g73VovFpJkzdfnvYKB7/zPMqG4/mWYBjGTZ1G9pEJtmi9kaNjqpeL8Q+Iuw7npgwxF Va4weRQk/qUalhl0J5RpSasdQcIOSZJqyUBfvWsuLZM+eF+mOoyR+Jk9P8UJv6lGNE kkU7MkciqsVldaxeyt4iNq8TZNec9dblg8BXU3TbRBY4sIHTbK3yUkt59egiPGlJTC 2jOMmcpnIyeVg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 41GSsg5dKcz10HD; Thu, 28 Jun 2018 07:25:27 +0200 (CEST) From: Sascha Paunovic To: alpine-aports@lists.alpinelinux.org Cc: Sascha Paunovic Subject: [alpine-aports] [PATCH] main/alpine-baselayout: enable modeset for nouveau Date: Thu, 28 Jun 2018 07:25:24 +0200 Message-Id: <20180628052524.11416-1-azarus@posteo.net> X-Mailer: git-send-email 2.18.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: This fixes running Xorg on machines with Nvidia graphics, as modeset also needs enabled for them. Found after an hour of debugging a bickering Xorg. --- main/alpine-baselayout/kms.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/main/alpine-baselayout/kms.conf b/main/alpine-baselayout/kms.conf index 59d56fbcd6..80974a6ed1 100644 --- a/main/alpine-baselayout/kms.conf +++ b/main/alpine-baselayout/kms.conf @@ -1,3 +1,4 @@ # enable modeset options radeon modeset=1 options i915 modeset=1 +options nouveau modeset=1 -- 2.18.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---