1
0

Accepting request 135792 from X11:XOrg

- N_driver-autoconfig.diff
  * "ati" needs to be the second choice right after "fglrx"; there
    must not be a gap between "fglrx" and "ati" introduced by 
    removing "radeonhd" from this list by the previous change

- N_driver-autoconfig.diff:
  * removed radeonhd and unichrome from driver list, since no
    longer supported upstream

OBS-URL: https://build.opensuse.org/request/show/135792
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xorg-x11-server?expand=0&rev=245
This commit is contained in:
Stephan Kulow 2012-09-25 12:04:44 +00:00 committed by Git OBS Bridge
commit 69152ad9e0
2 changed files with 18 additions and 5 deletions

View File

@ -2,14 +2,13 @@ Index: hw/xfree86/common/xf86pciBus.c
===================================================================
--- hw/xfree86/common/xf86pciBus.c.orig
+++ hw/xfree86/common/xf86pciBus.c
@@ -1107,7 +1107,9 @@ videoPtrToDriverList(struct pci_device *
@@ -1107,7 +1107,8 @@ videoPtrToDriverList(struct pci_device *
driverList[0] = "ast";
break;
case 0x1002:
- driverList[0] = "ati";
+ driverList[0] = "fglrx";
+ driverList[1] = "radeonhd";
+ driverList[2] = "ati";
+ driverList[1] = "ati";
break;
case 0x102c:
driverList[0] = "chips";
@ -27,14 +26,13 @@ Index: hw/xfree86/common/xf86pciBus.c
case 0x12d2:
{
int idx = 0;
@@ -1150,7 +1159,9 @@ videoPtrToDriverList(struct pci_device *
@@ -1150,7 +1159,8 @@ videoPtrToDriverList(struct pci_device *
break;
}
case 0x1106:
- driverList[0] = "openchrome";
+ driverList[0] = "via";
+ driverList[1] = "openchrome";
+ driverList[2] = "unichrome";
break;
case 0x1b36:
driverList[0] = "qxl";

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Sep 20 11:34:01 UTC 2012 - sndirsch@suse.com
- N_driver-autoconfig.diff
* "ati" needs to be the second choice right after "fglrx"; there
must not be a gap between "fglrx" and "ati" introduced by
removing "radeonhd" from this list by the previous change
-------------------------------------------------------------------
Tue Sep 18 21:41:15 UTC 2012 - sndirsch@suse.com
- N_driver-autoconfig.diff:
* removed radeonhd and unichrome from driver list, since no
longer supported upstream
-------------------------------------------------------------------
Wed Aug 8 20:15:33 UTC 2012 - tobias.johannes.klausmann@mni.thm.de