mirror of
git://slackware.nl/current.git
synced 2024-12-29 10:25:00 +01:00
d7f8114479
ap/ksh93-1.0_7ea95b7-x86_64-1.txz: Upgraded. Changed the fetch script to pull the 1.0 branch. Packaged shcomp and man page and additional documentation. Merged some other changes to the build script. Thanks to Martijn Dekker (McDutchie). ap/vim-8.2.3605-x86_64-1.txz: Upgraded. l/imagemagick-7.1.0_14-x86_64-1.txz: Upgraded. l/python-markdown-3.3.5-x86_64-1.txz: Upgraded. xap/seamonkey-2.53.10-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.10 (* Security fix *) xap/vim-gvim-8.2.3605-x86_64-1.txz: Upgraded. extra/brltty/brltty-6.4-x86_64-4.txz: Rebuilt. Fixed installation of the Tcl bindings. Thanks to Stuart Winter. extra/tigervnc/tigervnc-1.12.0-x86_64-1.txz: Upgraded. Thanks to alienBOB for the original build script, and to 0XBF and Linux From Scratch for some useful hints on getting this back in shape.
30 lines
726 B
Diff
30 lines
726 B
Diff
Description: Use intel ddx only on pre-gen4 hw, newer ones will fall back to modesetting
|
|
Author: Timo Aaltonen <tjaalton@debian.org>
|
|
|
|
--- a/hw/xfree86/common/xf86pciBus.c
|
|
+++ b/hw/xfree86/common/xf86pciBus.c
|
|
@@ -1173,7 +1173,23 @@ xf86VideoPtrToDriverList(struct pci_devi
|
|
case 0x0bef:
|
|
/* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */
|
|
break;
|
|
- default:
|
|
+ /* Default to intel only on pre-gen4 chips */
|
|
+ case 0x3577:
|
|
+ case 0x2562:
|
|
+ case 0x3582:
|
|
+ case 0x358e:
|
|
+ case 0x2572:
|
|
+ case 0x2582:
|
|
+ case 0x258a:
|
|
+ case 0x2592:
|
|
+ case 0x2772:
|
|
+ case 0x27a2:
|
|
+ case 0x27ae:
|
|
+ case 0x29b2:
|
|
+ case 0x29c2:
|
|
+ case 0x29d2:
|
|
+ case 0xa001:
|
|
+ case 0xa011:
|
|
driverList[0] = "intel";
|
|
break;
|
|
}
|