diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-21 13:26:02 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-21 13:26:02 +0000 |
commit | 714a096d29186cb6c484945b9bc3adc076123278 (patch) | |
tree | 72fd1fb2d23128561dba10baac48b32d4e0f5f6c /main/xf86-video-cirrus/qemu.patch | |
parent | acf62076a6e6d8ec91bf8785401d2bd88653cba9 (diff) | |
download | aports-714a096d29186cb6c484945b9bc3adc076123278.tar.bz2 aports-714a096d29186cb6c484945b9bc3adc076123278.tar.xz |
main/xf86-video-cirrus: add patch so qemu screen is detected
comes from:
http://cvs.fedoraproject.org/viewvc/rpms/xorg-x11-drv-cirrus/devel/cirrus-1.2.0-qemu.patch
Diffstat (limited to 'main/xf86-video-cirrus/qemu.patch')
-rw-r--r-- | main/xf86-video-cirrus/qemu.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/main/xf86-video-cirrus/qemu.patch b/main/xf86-video-cirrus/qemu.patch new file mode 100644 index 000000000..444fb6010 --- /dev/null +++ b/main/xf86-video-cirrus/qemu.patch @@ -0,0 +1,25 @@ +diff -up xf86-video-cirrus-1.2.0/src/alp_driver.c.jx xf86-video-cirrus-1.2.0/src/alp_driver.c +--- xf86-video-cirrus-1.2.0/src/alp_driver.c.jx 2008-03-19 10:29:23.000000000 -0400 ++++ xf86-video-cirrus-1.2.0/src/alp_driver.c 2009-02-27 10:59:27.000000000 -0500 +@@ -812,6 +812,20 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) + else + xf86SetDDCproperties(pScrn,xf86PrintEDID( + xf86DoEDID_DDC2(pScrn->scrnIndex,pCir->I2CPtr1))); ++#ifdef XSERVER_LIBPCIACCESS ++ if (!pScrn->monitor->DDC && ++ ((pCir->PciInfo->subvendor_id & 0xffff) == 0x1af4)) { ++ xf86DrvMsg(pScrn->scrnIndex, X_INFO, ++ "Defaulting to 1024x768 for QEMU\n"); ++ pScrn->monitor->nHsync = 1; ++ pScrn->monitor->hsync[0].lo = 31.5; ++ pScrn->monitor->hsync[0].hi = 48.0; ++ pScrn->monitor->nVrefresh = 1; ++ pScrn->monitor->vrefresh[0].lo = 56.0; ++ pScrn->monitor->vrefresh[0].hi = 60.1; ++ pScrn->monitor->maxPixClock = 65000; ++ } ++#endif + + /* Probe the possible LCD display */ + AlpProbeLCD(pScrn); + |