cirrus: Disable by default, as it is currently incompatible with xserver-xorg-video-cirrus

svn path=/dists/trunk/linux/; revision=19462
This commit is contained in:
Ben Hutchings 2012-10-29 03:29:43 +00:00
parent a366f23fc9
commit 1ef383f5a2
3 changed files with 23 additions and 0 deletions

3
debian/changelog vendored
View File

@ -9,6 +9,9 @@ linux (3.6.4-1~experimental.1) UNRELEASED; urgency=low
[ Ben Hutchings ]
* aufs: Update to aufs3.x-rcN-20120827
* cirrus: Disable by default, as it is currently incompatible with
xserver-xorg-video-cirrus. It can be forced to load with module
parameter modeset=1.
[ Uwe Kleine-König ]
* reenable the rt featureset using 3.6.3-rt8

View File

@ -0,0 +1,19 @@
From: Ben Hutchings <ben@decadent.org.uk>
Subject: cirrus: Disable by default
Current Debian userland is not compatible with this driver, so set
modeset=0 by default (making module init fail).
xserver-xorg-video-cirrus will need to override this once it is
compatible, by installing a modprobe config file.
--- a/drivers/gpu/drm/cirrus/cirrus_drv.c
+++ b/drivers/gpu/drm/cirrus/cirrus_drv.c
@@ -15,7 +15,7 @@
#include "cirrus_drv.h"
-int cirrus_modeset = -1;
+int cirrus_modeset = 0;
MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
module_param_named(modeset, cirrus_modeset, int, 0400);

View File

@ -46,3 +46,4 @@ debian/debugfs-set-default-mode-to-700.patch
bugfix/alpha/alpha-use-large-data-model.diff
bugfix/all/speakup-lower-default-software-speech-rate.patch
debian/iwlwifi-do-not-request-unreleased-firmware.patch
debian/cirrus-disable-modeset-by-default.patch