1
0
OBS User unknown 2007-03-10 23:18:00 +00:00 committed by Git OBS Bridge
parent 08f349ea02
commit 3f6dba9d5f
3 changed files with 37 additions and 1 deletions

23
xf86crtc_allowdual.diff Normal file
View File

@ -0,0 +1,23 @@
--- xorg-server-1.2.99.901/hw/xfree86/modes/xf86Crtc.c.orig 2007-03-05 04:10:32.000000000 +0100
+++ xorg-server-1.2.99.901/hw/xfree86/modes/xf86Crtc.c 2007-03-08 17:08:56.000000000 +0100
@@ -1099,9 +1099,6 @@ xf86ProbeOutputModes (ScrnInfoPtr scrn,
*/
output->status = (*output->funcs->detect)(output);
- if (output->status == XF86OutputStatusDisconnected)
- continue;
-
memset (&mon_rec, '\0', sizeof (mon_rec));
conf_monitor = output->conf_monitor;
@@ -1273,6 +1270,10 @@ xf86ProbeOutputModes (ScrnInfoPtr scrn,
output->name);
}
#endif
+
+ if (output->status == XF86OutputStatusDisconnected)
+ continue;
+
for (mode = output->probed_modes; mode != NULL; mode = mode->next)
{
/* The code to choose the best mode per pipe later on will require

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Mar 9 16:10:23 CET 2007 - sndirsch@suse.de
- xf86crtc_allowdual.diff:
* allows dualhead even when the second monitor is not yet
connected during Xserver start
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Mar 6 11:42:23 CET 2007 - sndirsch@suse.de Tue Mar 6 11:42:23 CET 2007 - sndirsch@suse.de

View File

@ -21,7 +21,7 @@ BuildRequires: libjpeg-devel
URL: http://xorg.freedesktop.org/ URL: http://xorg.freedesktop.org/
%define EXPERIMENTAL 0 %define EXPERIMENTAL 0
Version: 7.2 Version: 7.2
Release: 56 Release: 58
License: X11/MIT License: X11/MIT
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
Group: System/X11/Servers/XF86_4 Group: System/X11/Servers/XF86_4
@ -82,6 +82,7 @@ Patch42: bug227111-ddc_screensize.diff
Patch43: bug-211314_mesa-context.diff Patch43: bug-211314_mesa-context.diff
Patch44: bug-211314_p_drawable_privclean.diff Patch44: bug-211314_p_drawable_privclean.diff
Patch45: bug-197858_dpms.diff Patch45: bug-197858_dpms.diff
Patch46: xf86crtc_allowdual.diff
Patch334: p_pci-domain.diff Patch334: p_pci-domain.diff
Patch357: p_pci-ce-x.diff Patch357: p_pci-ce-x.diff
@ -177,6 +178,7 @@ pushd ../Mesa
popd popd
%patch44 -p0 %patch44 -p0
%patch45 -p0 %patch45 -p0
%patch46 -p1
%build %build
autoreconf -fi autoreconf -fi
@ -507,6 +509,10 @@ exit 0
%endif %endif
%changelog %changelog
* Fri Mar 09 2007 - sndirsch@suse.de
- xf86crtc_allowdual.diff:
* allows dualhead even when the second monitor is not yet
connected during Xserver start
* Tue Mar 06 2007 - sndirsch@suse.de * Tue Mar 06 2007 - sndirsch@suse.de
- %%post: replace "i810beta" with "intel" in existing xorg.conf - %%post: replace "i810beta" with "intel" in existing xorg.conf
* Mon Mar 05 2007 - sndirsch@suse.de * Mon Mar 05 2007 - sndirsch@suse.de