commit xorg-x11-driver-video for openSUSE:Factory
Hello community, here is the log from the commit of package xorg-x11-driver-video for openSUSE:Factory checked in at Wed Feb 4 00:48:05 CET 2009. -------- --- xorg-x11-driver-video/xorg-x11-driver-video.changes 2009-01-23 15:13:15.000000000 +0100 +++ xorg-x11-driver-video/xorg-x11-driver-video.changes 2009-02-02 22:17:01.805796729 +0100 @@ -1,0 +2,8 @@ +Mon Feb 2 22:15:45 CET 2009 - sndirsch@suse.de + +- xf86-video-intel-commit-1e974ff.diff + * Try to always probe SDVOC on 965G/965GM. Detect bit of SDVOC + is reserved on 965G/965GM, instead of ignore SDVOC this trys + to always probe it on these chipsets. (bfo #19770) + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- xf86-video-intel-commit-1e974ff.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xorg-x11-driver-video.spec ++++++ --- /var/tmp/diff_new_pack.a14298/_old 2009-02-04 00:47:32.000000000 +0100 +++ /var/tmp/diff_new_pack.a14298/_new 2009-02-04 00:47:32.000000000 +0100 @@ -22,7 +22,7 @@ BuildRequires: Mesa-devel libdrm-devel pkgconfig xorg-x11-proto-devel xorg-x11-server-sdk Url: http://xorg.freedesktop.org/ Version: 7.4 -Release: 33 +Release: 34 License: X11/MIT BuildRoot: %{_tmppath}/%{name}-%{version}-build Group: System/X11/Servers/XF86_4 @@ -97,6 +97,7 @@ Patch62: xf86-video-intel-NoFBC-945GME.diff Patch63: xf86-video-intel-SDVO_LVDS.diff Patch64: xf86-video-vesa_DefaultRefresh.diff +Patch65: xf86-video-intel-commit-1e974ff.diff Patch103: xf86-video-ati-6.7.197-r128-xvideo.patch Patch104: xf86-video-ati-disable-dri-bug437651-ia64only.diff @@ -128,6 +129,7 @@ %patch61 -p1 %patch62 -p1 %patch63 -p1 +%patch65 -p1 popd pushd xf86-video-nv-* %patch3 -p0 @@ -264,6 +266,11 @@ /var/lib/hardware/ids/20.%{name} %changelog +* Mon Feb 02 2009 sndirsch@suse.de +- xf86-video-intel-commit-1e974ff.diff + * Try to always probe SDVOC on 965G/965GM. Detect bit of SDVOC + is reserved on 965G/965GM, instead of ignore SDVOC this trys + to always probe it on these chipsets. (bfo #19770) * Fri Jan 23 2009 sndirsch@suse.de - added intel-i810-xorg-x11, xorg-x11-driver-video-intel to Provides/Obsoletes, i.e. get rid of SLE10 packages (bnc #468796) ++++++ xf86-video-intel-commit-1e974ff.diff ++++++ commit 1e974ff6b8446ecd64677b3c9aba60ca850923cc Author: Zhenyu Wang <zhenyu.z.wang@intel.com> Date: Wed Dec 10 10:54:31 2008 +0800 Try to always probe SDVOC on 965G/965GM Detect bit of SDVOC is reserved on 965G/965GM, instead of ignore SDVOC this trys to always probe it on these chipsets. diff --git a/src/i830_driver.c b/src/i830_driver.c index 4f87efb..7590257 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -919,7 +919,9 @@ I830SetupOutputs(ScrnInfoPtr pScrn) i830_hdmi_init(pScrn, SDVOB); } - if ((INREG(SDVOC) & SDVO_DETECTED) || pI830->force_sdvo_detect) { + if ((INREG(SDVOC) & SDVO_DETECTED) || pI830->force_sdvo_detect || + /* SDVOC detect bit is reserved on 965G/965GM */ + (IS_I965G(pI830) && !IS_G4X(pI830))) { Bool found = i830_sdvo_init(pScrn, SDVOC); if (!found && SUPPORTS_INTEGRATED_HDMI(pI830)) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de