OBS User unknown 2007-09-06 19:06:55 +00:00 committed by Git OBS Bridge
parent 026ed22056
commit 4a25ea45c3
3 changed files with 24 additions and 1 deletions

12
fbdevhw.diff Normal file
View File

@ -0,0 +1,12 @@
--- hw/xfree86/fbdevhw/fbdevhw.c.orig 2007-09-03 20:48:47.000000000 +0000
+++ hw/xfree86/fbdevhw/fbdevhw.c 2007-09-03 20:53:12.000000000 +0000
@@ -245,7 +245,8 @@
set->green.length == req->green.length &&
set->blue.length == req->blue.length &&
set->xres == req->xres && set->yres == req->yres &&
- set->pixclock == req->pixclock &&
+ /* xenfb sets pixclock to 0 (Novell Bug #285523) */
+ ((set->pixclock == req->pixclock) || !set->pixclock) &&
set->right_margin == req->right_margin &&
set->hsync_len == req->hsync_len &&
set->left_margin == req->left_margin &&

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Sep 3 23:08:42 CEST 2007 - sndirsch@suse.de
- fbdevhw.diff:
* ignore pixclock set to 0 by Xen kernel (Bug #285523)
-------------------------------------------------------------------
Fri Aug 31 17:02:26 CEST 2007 - sndirsch@suse.de

View File

@ -21,7 +21,7 @@ BuildRequires: libjpeg-devel
URL: http://xorg.freedesktop.org/
%define EXPERIMENTAL 0
Version: 7.2
Release: 129
Release: 131
License: X11/MIT
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Group: System/X11/Servers/XF86_4
@ -99,6 +99,7 @@ Patch73: randr12-aec0d06469a2fa7440fdd5ee03dc256a68704e77.diff
Patch74: randr12-b4193a2eee80895c5641e77488df0e72a73a3d99.diff
Patch75: randr12-b2dcfbca2441ca8c561f86a78a76ab59ecbb40e4.diff
Patch76: randr12-2926cf1da7e4ed63573bfaecdd7e19beb3057d9b.diff
Patch77: fbdevhw.diff
Patch334: p_pci-domain.diff
Patch357: p_pci-ce-x.diff
@ -218,6 +219,7 @@ popd
%patch74 -p1
%patch75 -p1
%patch76 -p1
%patch77
%build
pushd xorg-docs-*
@ -553,6 +555,9 @@ exit 0
%endif
%changelog
* Mon Sep 03 2007 - sndirsch@suse.de
- fbdevhw.diff:
* ignore pixclock set to 0 by Xen kernel (Bug #285523)
* Fri Aug 31 2007 - sndirsch@suse.de
- added several RANDR 1.2 fixes (Bug #306699)
* randr12-2926cf1da7e4ed63573bfaecdd7e19beb3057d9b.diff