* Fri May 11 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-5
- xserver-1.3.0-fbdevhw-magic-numbers.patch: If the fbdev driver claims to have a zero pixel clock, believe it. Fixes Xen paravirt. (#238451)
This commit is contained in:
parent
336a7e768b
commit
372e55c5db
@ -9,7 +9,7 @@
|
|||||||
Summary: X.Org X11 X server
|
Summary: X.Org X11 X server
|
||||||
Name: xorg-x11-server
|
Name: xorg-x11-server
|
||||||
Version: 1.3.0.0
|
Version: 1.3.0.0
|
||||||
Release: 4%{?dist}
|
Release: 5%{?dist}
|
||||||
URL: http://www.x.org
|
URL: http://www.x.org
|
||||||
License: MIT/X11
|
License: MIT/X11
|
||||||
Group: User Interface/X
|
Group: User Interface/X
|
||||||
@ -31,6 +31,7 @@ Patch18: xorg-x11-server-1.1.1-glcore-visual-matching.patch
|
|||||||
Patch19: xserver-1.3.0-xnest-exposures.patch
|
Patch19: xserver-1.3.0-xnest-exposures.patch
|
||||||
Patch20: xserver-1.3.0-x86emu-imul-int64.patch
|
Patch20: xserver-1.3.0-x86emu-imul-int64.patch
|
||||||
Patch21: xserver-1.3.0-xkb-and-loathing.patch
|
Patch21: xserver-1.3.0-xkb-and-loathing.patch
|
||||||
|
Patch22: xserver-1.3.0-fbdevhw-magic-numbers.patch
|
||||||
|
|
||||||
# OpenGL compositing manager feature/optimization patches.
|
# OpenGL compositing manager feature/optimization patches.
|
||||||
Patch100: xorg-x11-server-1.1.0-no-move-damage.patch
|
Patch100: xorg-x11-server-1.1.0-no-move-damage.patch
|
||||||
@ -277,6 +278,7 @@ Xserver source code needed to build VNC server (Xvnc)
|
|||||||
%patch19 -p1 -b .xnest-expose
|
%patch19 -p1 -b .xnest-expose
|
||||||
%patch20 -p1 -b .x86emu-imul
|
%patch20 -p1 -b .x86emu-imul
|
||||||
%patch21 -p1 -b .xkb-signal-loathing
|
%patch21 -p1 -b .xkb-signal-loathing
|
||||||
|
%patch22 -p1 -b .magic-numbers
|
||||||
|
|
||||||
%patch100 -p0 -b .no-move-damage
|
%patch100 -p0 -b .no-move-damage
|
||||||
%patch101 -p0 -b .dont-backfill-bg-none
|
%patch101 -p0 -b .dont-backfill-bg-none
|
||||||
@ -568,6 +570,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 11 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-5
|
||||||
|
- xserver-1.3.0-fbdevhw-magic-numbers.patch: If the fbdev driver claims to
|
||||||
|
have a zero pixel clock, believe it. Fixes Xen paravirt. (#238451)
|
||||||
|
|
||||||
* Mon May 07 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-4
|
* Mon May 07 2007 Adam Jackson <ajax@redhat.com> 1.3.0.0-4
|
||||||
- xorg-x11-server-1.1.1-offscreen-pixmaps.patch: Fix a crash when activating
|
- xorg-x11-server-1.1.1-offscreen-pixmaps.patch: Fix a crash when activating
|
||||||
GLX_EXT_texture_from_pixmap without XAA.
|
GLX_EXT_texture_from_pixmap without XAA.
|
||||||
|
11
xserver-1.3.0-fbdevhw-magic-numbers.patch
Normal file
11
xserver-1.3.0-fbdevhw-magic-numbers.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- xorg-server-1.3.0.0/./hw/xfree86/fbdevhw/fbdevhw.c.jx 2007-03-26 23:32:36.000000000 -0400
|
||||||
|
+++ xorg-server-1.3.0.0/./hw/xfree86/fbdevhw/fbdevhw.c 2007-05-11 15:10:05.000000000 -0400
|
||||||
|
@@ -258,7 +258,7 @@
|
||||||
|
static void
|
||||||
|
fbdev2xfree_timing(struct fb_var_screeninfo *var, DisplayModePtr mode)
|
||||||
|
{
|
||||||
|
- mode->Clock = var->pixclock ? 1000000000/var->pixclock : 28000000;
|
||||||
|
+ mode->Clock = var->pixclock ? 1000000000/var->pixclock : 0;
|
||||||
|
mode->HDisplay = var->xres;
|
||||||
|
mode->HSyncStart = mode->HDisplay+var->right_margin;
|
||||||
|
mode->HSyncEnd = mode->HSyncStart+var->hsync_len;
|
Loading…
Reference in New Issue
Block a user