diff options
Diffstat (limited to 'libre/xorg-server-libre/autoconfig-nvidia-libre.patch')
-rw-r--r-- | libre/xorg-server-libre/autoconfig-nvidia-libre.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/libre/xorg-server-libre/autoconfig-nvidia-libre.patch b/libre/xorg-server-libre/autoconfig-nvidia-libre.patch deleted file mode 100644 index 688b495e1..000000000 --- a/libre/xorg-server-libre/autoconfig-nvidia-libre.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -Nur xorg-server-1.11.99.902.orig/hw/xfree86/common/xf86pciBus.c xorg-server-1.11.99.902/hw/xfree86/common/xf86pciBus.c ---- xorg-server-1.11.99.902.orig/hw/xfree86/common/xf86pciBus.c 2012-02-10 10:10:37.583014924 +0000 -+++ xorg-server-1.11.99.902/hw/xfree86/common/xf86pciBus.c 2012-02-10 11:16:07.148971317 +0000 -@@ -1144,7 +1144,21 @@ - int idx = 0; - - #ifdef __linux__ -- driverList[idx++] = "nouveau"; -+ switch (dev->device_id) -+ { -+ /* NV1 - Diamond Edge 3D */ -+ case 0x0008: -+ case 0x0009: -+ driverList[idx++] = "vesa"; -+ break; -+ /* NV3 - Riva 128 */ -+ case 0x0018: -+ driverList[idx++] = "nv"; -+ break; -+ default: -+ driverList[idx++] = "nouveau"; -+ break; -+ } - #endif - driverList[idx++] = "nv"; - break; |