2013-12-12 15:33:35 +01:00
|
|
|
From: Stefan Dirsch <sndirsch@suse.de>
|
|
|
|
|
|
|
|
Modify driver fallback list for automatic configuration
|
|
|
|
such that the proprietary ATI, NVIDIA and VIA drivers are
|
|
|
|
considered first.
|
|
|
|
|
2012-04-20 11:32:05 +02:00
|
|
|
Index: hw/xfree86/common/xf86pciBus.c
|
|
|
|
===================================================================
|
|
|
|
--- hw/xfree86/common/xf86pciBus.c.orig
|
2010-08-26 11:09:27 +02:00
|
|
|
+++ hw/xfree86/common/xf86pciBus.c
|
2019-09-18 14:48:07 +02:00
|
|
|
@@ -1186,6 +1186,13 @@ xf86VideoPtrToDriverList(struct pci_devi
|
2012-04-20 11:32:05 +02:00
|
|
|
driverList[0] = "neomagic";
|
|
|
|
break;
|
|
|
|
case 0x10de:
|
|
|
|
+ driverList[0] = "nvidia";
|
|
|
|
+ driverList[1] = "nouveau";
|
|
|
|
+ /* GeForce 6150SE support broken (bnc #465190/544674) */
|
|
|
|
+ if (dev->device_id != 0x03D0) {
|
|
|
|
+ driverList[2] = "nv";
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
case 0x12d2:
|
|
|
|
{
|
|
|
|
int idx = 0;
|
2019-09-18 14:48:07 +02:00
|
|
|
@@ -1197,7 +1204,8 @@ xf86VideoPtrToDriverList(struct pci_devi
|
2012-04-20 11:32:05 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0x1106:
|
|
|
|
- driverList[0] = "openchrome";
|
|
|
|
+ driverList[0] = "via";
|
|
|
|
+ driverList[1] = "openchrome";
|
|
|
|
break;
|
|
|
|
case 0x1b36:
|
|
|
|
driverList[0] = "qxl";
|