Processed: bug 473838 is forwarded to http://bugs.freedesktop.org/show_bug.cgi?id=15313
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.20 > forwarded 473838 http://bugs.freedesktop.org/show_bug.cgi?id=15313 Bug#473838: [855GM] blank screen with panel fitting changes Noted your statement that Bug has been forwarded to http://bugs.freedesktop.org/show_bug.cgi?id=15313. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#473838: (no subject)
On Wed, Apr 2, 2008 at 13:20:58 +0200, Soenke wrote: > Hi Julien, > > thanks for the quick reply and the patch. Unfortunately, it did not solve the > problem. > I attached the missing Xorg.log, once from a hanging server with the rc2 > driver and once with > the patch applied to 2.3-branch. > Additionally, I have put in my xorg.conf, which was also missing before. > Thanks for this. The intel developers are tracking this issue at http://bugs.freedesktop.org/show_bug.cgi?id=15313 There's another patch attached to that bug, could you try it? I'll attach it to this message as well. Cheers, Julien diff --git a/src/i830_lvds.c b/src/i830_lvds.c index 33b4f26..a6be155 100644 --- a/src/i830_lvds.c +++ b/src/i830_lvds.c @@ -542,15 +542,6 @@ i830_lvds_mode_fixup(xf86OutputPtr output, DisplayModePtr mode, adjusted_mode->Clock = dev_priv->panel_fixed_mode->Clock; xf86SetModeCrtc(adjusted_mode, INTERLACE_HALVE_V); -/* Native modes don't need fitting */ -if (adjusted_mode->HDisplay == mode->HDisplay && - adjusted_mode->VDisplay == mode->VDisplay) { - pfit_control = 0; - pfit_pgm_ratios = 0; - border = 0; - goto out; -} - /* Basic panel fitting options */ if (!IS_I965G(pI830)) { if (dev_priv->panel_wants_dither) @@ -560,6 +551,14 @@ i830_lvds_mode_fixup(xf86OutputPtr output, DisplayModePtr mode, PFIT_FILTER_FUZZY; } +/* Native modes don't need fitting */ +if ((adjusted_mode->HDisplay == mode->HDisplay && + adjusted_mode->VDisplay == mode->VDisplay)) { + pfit_pgm_ratios = 0; + border = 0; + goto out; +} + /* * Deal with panel fitting options. Figure out how to stretch the image * based on its aspect ratio & the current panel fitting mode. @@ -742,7 +741,6 @@ i830_lvds_prepare(xf86OutputPtr output) lvds = INREG(LVDS); -i830_lvds_dpms(output, DPMSModeOff); /* * ->prepare will be called after the CRTC is off but before * we set the mode, so program the PFIT regs here. @@ -751,6 +749,7 @@ i830_lvds_prepare(xf86OutputPtr output) OUTREG(LVDS, lvds | LVDS_BORDER_ENABLE); else OUTREG(LVDS, lvds & (~LVDS_BORDER_ENABLE)); +i830_lvds_dpms(output, DPMSModeOff); } static void @@ -767,8 +766,6 @@ i830_lvds_mode_set(xf86OutputPtr output, DisplayModePtr mode, */ OUTREG(PFIT_PGM_RATIOS, dev_priv->pfit_pgm_ratios); OUTREG(PFIT_CONTROL, dev_priv->pfit_control); -/* It's harmless to turn on the LVDS if it's already on */ -i830_lvds_dpms(output, DPMSModeOn); } /** @@ -1110,6 +1107,9 @@ i830_lvds_set_property(xf86OutputPtr output, Atom property, if (value->type != XA_ATOM || value->format != 32 || value->size != 1) return FALSE; + if (!IS_I9XX(pI830)) + return FALSE; + memcpy(&atom, value->data, 4); name = NameForAtom(atom);
xorg-server: Changes to 'debian-unstable'
debian/changelog |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) New commits: commit 13809edcdf3e64807facc10d37e30d14ccbed8ef Author: Julien Cristau <[EMAIL PROTECTED]> Date: Wed Apr 2 00:20:20 2008 +0200 Prepare changelog for upload. diff --git a/debian/changelog b/debian/changelog index b7b3518..1dc798d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xorg-server (2:1.4.1~git20080131-3) UNRELEASED; urgency=low +xorg-server (2:1.4.1~git20080131-3) unstable; urgency=low * XKB: Fix processInputProc wrapping (cherry-picked from upstream). Thanks to Thomas Jaeger. This should fix the bug with some keys getting @@ -21,7 +21,7 @@ xorg-server (2:1.4.1~git20080131-3) UNRELEASED; urgency=low * Add 17_x86emu_handle_cpuid.patch to fix X86EMU CPUID handling. (closes: #451089). - -- Julien Cristau <[EMAIL PROTECTED]> Tue, 01 Apr 2008 15:56:23 +0200 + -- Julien Cristau <[EMAIL PROTECTED]> Wed, 02 Apr 2008 00:20:15 +0200 xorg-server (2:1.4.1~git20080131-2) unstable; urgency=low commit c3931151b18393f9da28dff8832611cd1641240a Author: Julien Cristau <[EMAIL PROTECTED]> Date: Wed Apr 2 00:19:59 2008 +0200 Fix patch name in changelog diff --git a/debian/changelog b/debian/changelog index 689b0d3..b7b3518 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,7 +18,7 @@ xorg-server (2:1.4.1~git20080131-3) UNRELEASED; urgency=low - Restrict access to I/O ports in range 0-0xFF from x86emu. * 16_X86EMU-pass-the-correct-bus-dev-fn-tag-to-pci-emula.patch - Fix improper emulation of PCI access General Software BIOS. - * Add 151_x86emu_handle_cpuid.patch to fix X86EMU CPUID handling. + * Add 17_x86emu_handle_cpuid.patch to fix X86EMU CPUID handling. (closes: #451089). -- Julien Cristau <[EMAIL PROTECTED]> Tue, 01 Apr 2008 15:56:23 +0200 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xorg-server: Changes to 'refs/tags/xorg-server-2_1.4.1-git20080131-3'
Tag 'xorg-server-2_1.4.1-git20080131-3' created by Julien Cristau <[EMAIL PROTECTED]> at 2008-04-02 00:56 + Tagging upload of xorg-server 2:1.4.1~git20080131-3 to unstable. Changes since xorg-server-2_1.4.1-git20080131-2: Eric Anholt (1): Fix overly-restrictive integer overflow check in EXA pixmap creation. Julien Cristau (7): Update changelog Add patches to fix broken -amd support. Add 17_x86emu_handle_cpuid.patch to fix X86EMU CPUID handling. Update changelog, add closers. Update changelog with cherry-picked patches Fix patch name in changelog Prepare changelog for upload. Michel Dänzer (2): __glXDRIbindTexImage: Fail if no texture bound to pixmap's texture target. EXA: Skip empty glyphs. Peter Hutterer (1): xkb: when copying the keymap, make sure the structs default to 0/NULL. Pierre Willenbrock (1): EXA: Fix off-by-one in polyline drawing. Thomas Jaeger (1): XKB: Fix processInputProc wrapping --- GL/glx/glxdri.c | 17 debian/changelog| 25 + debian/patches/15_X86EMU-added-blacklist-for-I-O-port-in-0-0xFF-range.patch | 190 debian/patches/16_X86EMU-pass-the-correct-bus-dev-fn-tag-to-pci-emula.patch | 96 debian/patches/17_x86emu_handle_cpuid.patch | 230 ++ debian/patches/series | 3 exa/exa.c | 2 exa/exa_accel.c | 2 exa/exa_render.c| 1 include/xkbsrv.h| 16 xkb/xkbActions.c| 9 xkb/xkbUtils.c | 23 - 12 files changed, 588 insertions(+), 26 deletions(-) --- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of xorg-server_1.4.1~git20080131-3_i386.changes
xorg-server_1.4.1~git20080131-3_i386.changes uploaded successfully to localhost along with the files: xorg-server_1.4.1~git20080131-3.dsc xorg-server_1.4.1~git20080131-3.diff.gz xserver-xorg-core_1.4.1~git20080131-3_i386.deb xserver-xorg-dev_1.4.1~git20080131-3_i386.deb xnest_1.4.1~git20080131-3_i386.deb xvfb_1.4.1~git20080131-3_i386.deb xserver-xephyr_1.4.1~git20080131-3_i386.deb xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#179647: very CheapPrice Bacheelor, MasteerMBA, and Doctoraate dip1omas njguizp 5t0s6s3we
We can assist with Diplomas from prestigious universities based on your present knowledge and LifeExperience No required examination, tests, classes, books, or interviews Bacheelor, MasteerMBA, and Doctoraate diplomas available in the field of your choice - that's right, you can become a Doctor and receive all the benefits that comes with it! No one is turned down Confidentiality assured CALL US 24 HOURS A DAY, 7 DAYS A WEEK For US: 1-309-407-3749 Outside US: +1-309-407-3749 "Just leave your NAME & PHONE NO. (with CountryCode)" in the voicemail Please call today!! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#473838: (no subject)
Hi again, the patch from xorg bugzilla fixes this for me, I will report that there as well. Thank you for your help. Regards, Soenke -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#461783: marked as done (X.org segfaults all the time since last update)
Your message dated Wed, 02 Apr 2008 12:32:18 + with message-id <[EMAIL PROTECTED]> and subject line Bug#461783: fixed in xorg-server 2:1.4.1~git20080131-3 has caused the Debian Bug report #461783, regarding X.org segfaults all the time since last update to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 461783: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461783 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems --- Begin Message --- Package: xserver-xorg-core Version: 2:1.4.1~git20080118-1 Severity: important --- Please enter the report below this line. --- Hi, I'm running Sid here, and since the last update, X.org segfaults all the time. This is the relevant entry from the dpkg log file: 2008-01-19 23:42:40 upgrade xserver-xorg-core 2:1.4.1~git20080105-1 2:1.4.1~git20080118-1 It segfaults when I log in to KDE, it segfaults when I xauth generate :0 . and it segfaults when I send it a SIGINT. I've attached a stack trace from the xauth crash. The crashes all seem to be the same, the stack traces look basically identical. What looks very strange to me is that Xorg -version says X.Org X Server 1.4.0.90 Shouldn't it be 1.4.1? --- System information. --- Architecture: i386 Kernel: Linux 2.6.22-3-k7 Debian Release: lenny/sid 500 unstablejens.lody.name 500 unstableftp2.de.debian.org 500 gutsy wine.budgetdedicated.com 500 etch-wx apt.wxwidgets.org --- Package information. --- Depends (Version) | Installed =-+- libc6 (>= 2.7-1) | 2.7-6 libdbus-1-3(>= 1.1.1) | 1.1.2-1 libdrm2(>= 2.3.0) | 2.3.0-4 libfontenc1 | 1:1.0.4-2 libgcc1 (>= 1:4.1.1-21) | 1:4.3-20080116-1 libhal1 (>= 0.5.10) | 0.5.10-5 libpixman-1-0(>= 0.9.4-2) | 0.9.6-1 libxau6 | 1:1.0.3-2 libxdmcp6 | 1:1.0.2-2 libxfont1(>= 1:1.2.9) | 1:1.3.1-2 x11-common (>= 1:7.0.0) | 1:7.3+10 xserver-xorg | 1:7.3+10 Using host libthread_db library "/lib/i686/cmov/libthread_db.so.1". Core was generated by `Xorg'. Program terminated with signal 11, Segmentation fault. #0 0xb7d1c33c in free () from /lib/i686/cmov/libc.so.6 #0 0xb7d1c33c in free () from /lib/i686/cmov/libc.so.6 No symbol table info available. #1 0x081b4611 in Xfree (ptr=0x1180002) at ../../os/utils.c:1466 No locals. #2 0x081a6880 in _XkbFreeGeomLeafElems (freeAll=, first=, count=17, num_inout=0x824a5dc, sz_inout=0x824a5de, elems=0x824a5e4, elem_sz=8) at ../../xkb/XKBGAlloc.c:62 No locals. #3 0x081a691c in _XkbClearRow (row_in=0x0) at ../../xkb/XKBGAlloc.c:342 No locals. #4 0x081a635d in _XkbFreeGeomNonLeafElems (freeAll=1, first=0, count=4, num_inout=0x824a2e8, sz_inout=0x824a2ee, elems=0x824a2f4, elem_sz=24, freeFunc=0x81a68e0 <_XkbClearRow>) at ../../xkb/XKBGAlloc.c:119 i = 2 ptr = 0x824a5d8 "" #5 0x081a64c9 in SrvXkbFreeGeomRows (section=0x824a2d8, first=0, count=4, freeAll=1) at ../../xkb/XKBGAlloc.c:349 No locals. #6 0x081a6511 in _XkbClearSection (section_in=0x824a2d8 "Æ") at ../../xkb/XKBGAlloc.c:363 No locals. #7 0x081a635d in _XkbFreeGeomNonLeafElems (freeAll=1, first=0, count=7, num_inout=0x8249706, sz_inout=0x82496fa, elems=0x8249718, elem_sz=48, freeFunc=0x81a64d0 <_XkbClearSection>) at ../../xkb/XKBGAlloc.c:119 i = 3 ptr = 0x824a2d8 "Æ" #8 0x081a6479 in SrvXkbFreeGeomSections (geom=0x82496e0, first=0, count=7, freeAll=1) at ../../xkb/XKBGAlloc.c:374 No locals. #9 0x081a6b8f in SrvXkbFreeGeometry (geom=0x82496e0, which=63, freeMap=1) at ../../xkb/XKBGAlloc.c:443 No locals. #10 0x081a4d61 in SrvXkbFreeKeyboard (xkb=0x825ecd8, which=127, freeAll=1) at ../../xkb/XKBAlloc.c:328 No locals. #11 0x0819342f in XkbFreeInfo (xkbi=0x82438a0) at ../../xkb/xkbInit.c:820 No locals. #12 0x0808546f in CloseDevice (dev=0x8245ac0) at ../../dix/devices.c:530 k = knext = p = pnext = i = inext = s = snext = b = bnext = l = lnext = #13 0x080858c9 in CloseDownDevices () at ../../dix/devices.c:626 dev = (DeviceIntPtr) 0x1180002 next = (DeviceIntPtr) 0x824add8 #14 0x0807473e in main (argc=1, argv=0xbfec0cd4, envp=) at ../../dix/main.c:472 pScreen = i = error = 136148012 xauthfile = alwaysCheckForInput = {0, 1} --- End Message --- --- Begin Message --- Source: xorg-server Source-Ver
Bug#463567: marked as done (kdebase: kxkb crashes X11)
Your message dated Wed, 02 Apr 2008 12:32:18 + with message-id <[EMAIL PROTECTED]> and subject line Bug#461783: fixed in xorg-server 2:1.4.1~git20080131-3 has caused the Debian Bug report #461783, regarding kdebase: kxkb crashes X11 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 461783: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461783 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems --- Begin Message --- Package: kdebase Version: 4:3.5.8.dfsg.1-7 Severity: normal Hi, starting kxkb or applying any changes in the keyboard layout kcm crashes X11 for me. The Xorg.log contains the following info: Backtrace: 0: /usr/bin/X(xf86SigHandler+0x7e) [0x80c675e] 1: [0xe420] 2: /usr/bin/X(Xfree+0x21) [0x81b4661] 3: /usr/bin/X(XkbCopyKeymap+0x15c2) [0x818b222] 4: /usr/bin/X(ProcXkbGetKbdByName+0xa46) [0x8181a96] 5: /usr/bin/X [0x818939a] 6: /usr/bin/X [0x814d86e] 7: /usr/bin/X(Dispatch+0x2bf) [0x808d1ef] 8: /usr/bin/X(main+0x48b) [0x807470b] 9: /lib/i686/cmov/libc.so.6(__libc_start_main+0xe0) [0xb7c92450] 10: /usr/bin/X(FontFileCompleteXLFD+0x205) [0x8073a81] Fatal server error: Caught signal 11. Server aborting I can't see any other log information about this. Oh and, I know "renders package unusable" is not quite true, but under grave there where no other applicable justifications Andreas -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (990, 'unstable'), (500, 'experimental'), (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.23 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages kdebase depends on: ii hal0.5.10-5 Hardware Abstraction Layer ii kappfinder 4:3.5.8.dfsg.1-7 non-KDE application finder for KDE ii kate 4:3.5.8.dfsg.1-7 advanced text editor for KDE ii kcontrol 4:3.5.8.dfsg.1-7 control center for KDE ii kdebase-bi 4:3.5.8.dfsg.1-7 core binaries for the KDE base mod ii kdebase-da 4:3.5.8.dfsg.1-7 shared data files for the KDE base ii kdebase-ki 4:3.5.8.dfsg.1-7 core I/O slaves for KDE ii kdepasswd 4:3.5.8.dfsg.1-7 password changer for KDE ii kdeprint 4:3.5.8.dfsg.1-7 print system for KDE ii kdesktop 4:3.5.8.dfsg.1-7 miscellaneous binaries and files f ii kfind 4:3.5.8.dfsg.1-7 file-find utility for KDE ii khelpcente 4:4.0.0.really.3.5.8.dfsg.1-7 help center for KDE ii kicker 4:3.5.8.dfsg.1-7 desktop panel for KDE ii klipper4:3.5.8.dfsg.1-7 clipboard utility for KDE ii kmenuedit 4:3.5.8.dfsg.1-7 menu editor for KDE ii konqueror 4:3.5.8.dfsg.1-7 KDE's advanced file manager, web b ii konqueror- 4:3.5.8.dfsg.1-7 Netscape plugin support for Konque ii konsole4:3.5.8.dfsg.1-7 X terminal emulator for KDE ii kpager 4:3.5.8.dfsg.1-7 desktop pager for KDE pn kpersonali (no description available) ii ksmserver 4:3.5.8.dfsg.1-7 session manager for KDE ii ksplash4:3.5.8.dfsg.1-7 the KDE splash screen ii ksysguard 4:3.5.8.dfsg.1-7 system guard for KDE pn ktip (no description available) ii kwin 4:3.5.8.dfsg.1-7 the KDE window manager ii libkonq4 4:3.5.8.dfsg.1-7 core libraries for Konqueror ii pmount 0.9.17-1 mount removable devices as normal Versions of packages kdebase recommends: ii kdm 4:3.5.8.dfsg.1-7 X display manager for KDE --- End Message --- --- Begin Message --- Source: xorg-server Source-Version: 2:1.4.1~git20080131-3 We believe that the bug you reported is fixed in the latest version of xorg-server, which is due to be installed in the Debian FTP archive: xnest_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xnest_1.4.1~git20080131-3_i386.deb xorg-server_1.4.1~git20080131-3.diff.gz to pool/main/x/xorg-server/xorg-server_1.4.1~git20080131-3.diff.gz xorg-server_1.4.1~git20080131-3.dsc to pool/main/x/xorg-server/xorg-server_1.4.1~git20080131-3.dsc xserver-xephyr_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xephyr_1.4.1~git20080131-3_i386.deb xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb xserver-xorg-core_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xse
Bug#462243: marked as done (x11-xkb-utils: calling setxkbmap crashes X server)
Your message dated Wed, 02 Apr 2008 12:32:18 + with message-id <[EMAIL PROTECTED]> and subject line Bug#461783: fixed in xorg-server 2:1.4.1~git20080131-3 has caused the Debian Bug report #461783, regarding x11-xkb-utils: calling setxkbmap crashes X server to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 461783: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461783 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems --- Begin Message --- Package: x11-xkb-utils Version: 7.3+1 Severity: grave Justification: renders package unusable Hi, when I call setxkbmap (KDE does this for me) the X server crashes. FYI, I'm using Nvidia's drivers. If I'm not totaly wrong I've this problem since I updated on 19th of Janury. Cheers, André -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.23-1-amd64 (SMP w/2 CPU cores) Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Shell: /bin/sh linked to /bin/bash Versions of packages x11-xkb-utils depends on: ii cpp 4:4.2.2-2The GNU C preprocessor (cpp) ii libc6 2.7-6GNU C Library: Shared libraries ii libice6 2:1.0.4-1X11 Inter-Client Exchange library ii libsm6 2:1.0.3-1+b1 X11 Session Management library ii libx11-62:1.0.3-7X11 client-side library ii libxaw7 2:1.0.4-1X11 Athena Widget library ii libxkbfile1 1:1.0.4-1X11 keyboard file manipulation lib ii libxmu6 2:1.0.4-1X11 miscellaneous utility library ii libxt6 1:1.0.5-3X11 toolkit intrinsics library ii x11-common 1:7.3+10 X Window System (X.Org) infrastruc x11-xkb-utils recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- Source: xorg-server Source-Version: 2:1.4.1~git20080131-3 We believe that the bug you reported is fixed in the latest version of xorg-server, which is due to be installed in the Debian FTP archive: xnest_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xnest_1.4.1~git20080131-3_i386.deb xorg-server_1.4.1~git20080131-3.diff.gz to pool/main/x/xorg-server/xorg-server_1.4.1~git20080131-3.diff.gz xorg-server_1.4.1~git20080131-3.dsc to pool/main/x/xorg-server/xorg-server_1.4.1~git20080131-3.dsc xserver-xephyr_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xephyr_1.4.1~git20080131-3_i386.deb xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb xserver-xorg-core_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xorg-core_1.4.1~git20080131-3_i386.deb xserver-xorg-dev_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xorg-dev_1.4.1~git20080131-3_i386.deb xvfb_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xvfb_1.4.1~git20080131-3_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Julien Cristau <[EMAIL PROTECTED]> (supplier of updated xorg-server package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Wed, 02 Apr 2008 00:20:15 +0200 Source: xorg-server Binary: xserver-xorg-core xserver-xorg-dev xnest xvfb xserver-xephyr xserver-xorg-core-dbg Architecture: source i386 Version: 2:1.4.1~git20080131-3 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Julien Cristau <[EMAIL PROTECTED]> Description: xnest - Nested X server xserver-xephyr - nested X server xserver-xorg-core - Xorg X server - core server xserver-xorg-core-dbg - Xorg - the X.Org X server (debugging symbols) xserver-xorg-dev - Xorg X server - development files xvfb - Virtual Framebuffer 'fake' X server Closes: 451089 461783 471782 473165 Changes: xorg-server (2:1.4.1~git20080131-3) unstable; urgency=low . * XKB: Fix processInputProc wrapping (cherry-picked from upstream). Thanks to Thomas Jaeger. This should fix the bug with some keys getting stuck
Bug#473165: marked as done (xserver-xorg: keys sometimes get stuck down)
Your message dated Wed, 02 Apr 2008 12:32:18 + with message-id <[EMAIL PROTECTED]> and subject line Bug#473165: fixed in xorg-server 2:1.4.1~git20080131-3 has caused the Debian Bug report #473165, regarding xserver-xorg: keys sometimes get stuck down to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 473165: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473165 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems --- Begin Message --- Package: xserver-xorg Version: 1:7.3+10 Severity: normal Tags: patch I'd like to request the patch in [1] be included in Debian's xorg 1.4 packages as it fixes a bug where keys held down can end up repeating until the X server is restarted. It's been proposed for 1.5 upstream [2] but also fixes the problem for 1.4. [1] http://lists.freedesktop.org/archives/xorg/2008-March/034256.html [2] http://lists.freedesktop.org/archives/xorg/2008-March/034256.html -- Package-specific info: Contents of /var/lib/x11/X.roster: xserver-xorg /var/lib/x11/X.md5sum does not exist. X server symlink status: lrwxrwxrwx 1 root root 13 2007-04-30 21:12 /etc/X11/X -> /usr/bin/Xorg -rwxr-xr-x 1 root root 1674780 2008-03-14 23:34 /usr/bin/Xorg Contents of /var/lib/x11/xorg.conf.roster: xserver-xorg VGA-compatible devices on PCI bus: 01:00.0 VGA compatible controller: nVidia Corporation G80 [GeForce 8800 GTS] (rev a2) /etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum. Xorg X server configuration file status: -rw-r--r-- 1 root root 4871 2008-03-06 12:17 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: # /etc/X11/xorg.conf (xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the /etc/X11/xorg.conf manual page. # (Type "man /etc/X11/xorg.conf" at the shell prompt.) # # This file is automatically updated on xserver-xorg package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xorg # package. # # If you have edited this file but would like it to be automatically updated # again, run the following command: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Files" FontPath"/usr/share/fonts/X11/misc" FontPath"/usr/X11R6/lib/X11/fonts/misc" FontPath"/usr/share/fonts/X11/cyrillic" FontPath"/usr/share/fonts/X11/100dpi/:unscaled" FontPath"/usr/share/fonts/X11/75dpi/:unscaled" FontPath"/usr/share/fonts/X11/Type1" FontPath"/usr/X11R6/lib/X11/fonts/Type1" FontPath"/usr/share/fonts/X11/100dpi" FontPath"/usr/share/fonts/X11/75dpi" # path to defoma fonts FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" EndSection Section "Extensions" Option "composite" "disable" EndSection Section "Module" #Load "GLcore" Load"bitmap" Load"dbe" Load"ddc" #Load "dri" Load"extmod" Load"freetype" Load"glx" Load"int10" Load"record" Load"speedo" Load"type1" Load"vbe" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "us" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device""/dev/input/mice" Option "Protocol" "ExplorerPS/2" Option "Buttons" "7" Option "Emulate3Buttons" "false" #Option "ButtonMapping" "1 2 3 4 5 8 9 6 7" #Option "ZAxisMapping" "4 5" EndSection Section "Device" #Identifier "nVidia Corporation NV43 [GeForce 6600 GT]" Identifier "nVidia Corporation G80 [GeForce 8800 GTS]" Driver "nvidia" Option "Coolbits" "1" #BusID "PCI:3:0:0" Option "TwinView" "true" #Option "TwinViewOrientation" "CRT-1 RightOf CRT-0" Option "TwinViewOrientation" "RightOf" Option "SecondMonitorHorizSync" "31-80" Option "SecondMonitorVertRefresh
xserver-xorg-video-intel
Hi, just in case you're interested I wanted to let you know that the current sid/lenny version (2.2.1-1) proved to be very unreliable to me. I didn't report a bug because I wasn't able to reproduce the problem reliable. What happened was that my whole system froze after a few days in which I only suspended my laptop. It got worse last week as I had 4 freezes in one day. I then finally decided to move to the new version in experimental and found this to be very reliable, no more freeze since. Michael -- Michael Meskes Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org) ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED] Go VfL Borussia! Go SF 49ers! Use Debian GNU/Linux! Use PostgreSQL! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xorg-server_1.4.1~git20080131-3_i386.changes ACCEPTED
Accepted: xnest_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xnest_1.4.1~git20080131-3_i386.deb xorg-server_1.4.1~git20080131-3.diff.gz to pool/main/x/xorg-server/xorg-server_1.4.1~git20080131-3.diff.gz xorg-server_1.4.1~git20080131-3.dsc to pool/main/x/xorg-server/xorg-server_1.4.1~git20080131-3.dsc xserver-xephyr_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xephyr_1.4.1~git20080131-3_i386.deb xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb xserver-xorg-core_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xorg-core_1.4.1~git20080131-3_i386.deb xserver-xorg-dev_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xserver-xorg-dev_1.4.1~git20080131-3_i386.deb xvfb_1.4.1~git20080131-3_i386.deb to pool/main/x/xorg-server/xvfb_1.4.1~git20080131-3_i386.deb Override entries for your package: xnest_1.4.1~git20080131-3_i386.deb - optional x11 xorg-server_1.4.1~git20080131-3.dsc - source x11 xserver-xephyr_1.4.1~git20080131-3_i386.deb - optional x11 xserver-xorg-core-dbg_1.4.1~git20080131-3_i386.deb - extra x11 xserver-xorg-core_1.4.1~git20080131-3_i386.deb - optional x11 xserver-xorg-dev_1.4.1~git20080131-3_i386.deb - optional x11 xvfb_1.4.1~git20080131-3_i386.deb - optional x11 Announcing to [EMAIL PROTECTED] Closing bugs: 451089 461783 471782 473165 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#451893: marked as done ([855GM EXA] shows no fonts)
Your message dated Wed, 2 Apr 2008 17:02:38 +0200 with message-id <[EMAIL PROTECTED]> and subject line Re: Bug#451893: xserver-xorg-video-intel: shows no fonts has caused the Debian Bug report #451893, regarding [855GM EXA] shows no fonts to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 451893: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=451893 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems --- Begin Message --- Package: xserver-xorg-video-intel Version: 2:2.2.0-1 Severity: grave Justification: renders package unusable Since I installaed the new driver my xservder doesn't show any fonts. Not in input boxes, not in menus. I can type something (in GDM or in iceweasel) but the letters aren't there. -- Package-specific info: /var/lib/x11/X.roster does not exist. /var/lib/x11/X.md5sum does not exist. X server symlink status: lrwxrwxrwx 1 root root 13 2007-05-10 01:19 /etc/X11/X -> /usr/bin/Xorg -rwxr-xr-x 1 root root 1672860 2007-11-18 02:47 /usr/bin/Xorg Contents of /var/lib/x11/xorg.conf.roster: xserver-xorg VGA-compatible devices on PCI bus: 00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02) /etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum. Xorg X server configuration file status: -rw-r--r-- 1 root root 3051 2007-11-19 08:40 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: # /etc/X11/xorg.conf (xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the /etc/X11/xorg.conf manual page. # (Type "man /etc/X11/xorg.conf" at the shell prompt.) # # This file is automatically updated on xserver-xorg package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xorg # package. # # If you have edited this file but would like it to be automatically updated # again, run the following command: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Files" FontPath"/usr/share/fonts/X11/misc" FontPath"/usr/X11R6/lib/X11/fonts/misc" FontPath"/usr/share/fonts/X11/cyrillic" FontPath"/usr/X11R6/lib/X11/fonts/cyrillic" FontPath"/usr/share/fonts/X11/100dpi/:unscaled" FontPath"/usr/X11R6/lib/X11/fonts/100dpi/:unscaled" FontPath"/usr/share/fonts/X11/75dpi/:unscaled" FontPath"/usr/X11R6/lib/X11/fonts/75dpi/:unscaled" FontPath"/usr/share/fonts/X11/Type1" FontPath"/usr/X11R6/lib/X11/fonts/Type1" FontPath"/usr/share/fonts/X11/100dpi" FontPath"/usr/X11R6/lib/X11/fonts/100dpi" FontPath"/usr/share/fonts/X11/75dpi" FontPath"/usr/X11R6/lib/X11/fonts/75dpi" # path to defoma fonts FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" EndSection Section "Module" Load"bitmap" Load"dbe" Load"ddc" Load"dri" Load"extmod" Load"freetype" Load"glx" Load"int10" Load"vbe" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "de" Option "XkbVariant""nodeadkeys" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device""/dev/input/mice" Option "Protocol" "ImPS/2" Option "Emulate3Buttons" "true" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents""true" Option "Device""/dev/psaux" Option "Protocol" "auto-dev" Option "HorizScrollDelta" "0" Option "SHMConfig" "true" EndSection Section "Device" Identifier "Intel" Driver "intel" EndSection Section "Monitor" Identifier "Standardbildschirm" Option "DPMS" EndSection Section "Screen" Identifier "Default Screen" Device "Intel" Monitor "St
Processed: retitle 464353 to [945GM] frequent lockups with 2.2.x and exa
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.20 > retitle 464353 [945GM] frequent lockups with 2.2.x and exa Bug#464353: xserver-xorg-video-intel: xserver is very unstable using the 2.2.x version of the driver Changed Bug title to `[945GM] frequent lockups with 2.2.x and exa' from `xserver-xorg-video-intel: xserver is very unstable using the 2.2.x version of the driver'. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: retitle 466459 to [945GM] lockups with framebuffer compression
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.20 > retitle 466459 [945GM] lockups with framebuffer compression Bug#466459: xserver-xorg-video-intel: intel driver loose/crash video at random Changed Bug title to `[945GM] lockups with framebuffer compression' from `xserver-xorg-video-intel: intel driver loose/crash video at random'. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: retitle 470028 to [915GM] lockups followed by failure to restart X
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.20 > retitle 470028 [915GM] lockups followed by failure to restart X Bug#470028: xserver-xorg-core: I830WaitLpRing error makes gdm reboot Xorg, which hangs during restart Changed Bug title to `[915GM] lockups followed by failure to restart X' from `xserver-xorg-core: I830WaitLpRing error makes gdm reboot Xorg, which hangs during restart'. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#470249: (no subject)
On Mon, Mar 10, 2008 at 10:12:44 +0100, Reinhard Thies wrote: > The screen flashes/flickers depending on the grafic load all 10 to 30 > sec. 10 to 15 times a day the xserver crashes totaly in that way that > the screen freezes with a dark background color (I am using dark > backgroung) but you are still able to enter blind commands. So you are > able to reboot the system. If you switch to a console Alt+Ctrl+F1 the > screen gets black but nothing happens, also here it is possible to blind > command the machine. > I have a Dell 620 within a docking station. The NEC TFT is connect to > the DVI port. > Thanks for your report. Can you try xserver-xorg-video-intel version 2.2.99.902, available in experimental? If that doesn't help, please send us a log with that version, preferrably with the "ModeDebug" option turned on in xorg.conf. Cheers, Julien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: retitle 470249 to [945GM] frequent flashes, occasional blank screen
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.20 > retitle 470249 [945GM] frequent flashes, occasional blank screen Bug#470249: (no subject) Changed Bug title to `[945GM] frequent flashes, occasional blank screen' from `(no subject)'. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: Re: Bug#469396: totem crashes on play
Processing commands for [EMAIL PROTECTED]: > found 469396 2:2.1.0-2 Bug#469396: [i830M] XvShmPutImage returns BadAlloc when using compiz Bug marked as found in version 2:2.1.0-2. > retitle 469396 [830M XAA] XvShmPutImage returns BadAlloc when using compiz Bug#469396: [i830M] XvShmPutImage returns BadAlloc when using compiz Changed Bug title to `[830M XAA] XvShmPutImage returns BadAlloc when using compiz' from `[i830M] XvShmPutImage returns BadAlloc when using compiz'. > kthxbye Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#469396: totem crashes on play
found 469396 2:2.1.0-2 retitle 469396 [830M XAA] XvShmPutImage returns BadAlloc when using compiz kthxbye On Wed, Mar 5, 2008 at 20:05:04 +0100, Chris Hansen wrote: > > On Wed, Mar 5, 2008 at 01:01:47 +0100, Chris Hansen wrote: > > > > > $ totem-xine --sync > > > The program 'totem-xine' received an X Window System error. > > > This probably reflects a bug in the program. > > > The error was 'BadAlloc (insufficient resources for operation)'. > > > (Details: serial 85 error_code 11 request_code 141 minor_code 19) > > > /var/log/Xorg.0.log: > [...] > (II) LoadModule: "intel" > (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so > (II) Module intel: vendor="X.Org Foundation" > compiled for 1.3.0, module version = 2.1.0 > Module class: X.Org Video Driver > ABI class: X.Org Video Driver, version 1.2 [...] > (==) intel(0): Using XAA for acceleration Hi Chris, this should be fixed when using EXA instead of XAA for acceleration. EXA is the default in recent versions of the intel driver. Can you confirm that totem works with the driver from unstable or experimental? (or maybe with Option "AccelMethod" "EXA" with the version from testing, although I suspect there are other bugs there) Cheers, Julien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#463382: xserver-xorg-video-intel: still flickering with new driver
retitle 463382 [945GM] screen flickering a few times per minute with fb compression kthxbye On Sat, Feb 9, 2008 at 12:19:05 +0100, Luca Bigliardi wrote: > On Fri, Feb 08, 2008 at 08:13 PM, Brice Goglin wrote: > > > You might want to try > > Option "FramebufferCompression" "false" > > Running without fb compression seems a good solution for me, thanks a lot! > Can you try 2.2.99.902 from experimental and enable fb compression again? Cheers, Julien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: Re: Bug#463382: xserver-xorg-video-intel: still flickering with new driver
Processing commands for [EMAIL PROTECTED]: > retitle 463382 [945GM] screen flickering a few times per minute with fb > compression Bug#463382: xserver-xorg-video-intel: flickers a few times per minute Changed Bug title to `[945GM] screen flickering a few times per minute with fb compression' from `xserver-xorg-video-intel: flickers a few times per minute'. > kthxbye Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: retitle 466462 to [945GM] screen flickers with fb compression, found 466462 in 2:2.2.99.901-1
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.20 > retitle 466462 [945GM] screen flickers with fb compression Bug#466462: xserver-xorg-video-intel: screen flickers not fixed with last version of the driver Changed Bug title to `[945GM] screen flickers with fb compression' from `xserver-xorg-video-intel: screen flickers not fixed with last version of the driver'. > found 466462 2:2.2.99.901-1 Bug#466462: [945GM] screen flickers with fb compression Bug#463382: [945GM] screen flickering a few times per minute with fb compression Bug marked as found in version 2:2.2.99.901-1. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#472740: marked as done (xserver-xorg-video-intel: Missing file in the package disables XvMC on i915/945)
Your message dated Wed, 2 Apr 2008 17:58:08 +0200 with message-id <[EMAIL PROTECTED]> and subject line Re: Bug#472740: xserver-xorg-video-intel: Missing file in the package disables XvMC on i915/945 has caused the Debian Bug report #472740, regarding xserver-xorg-video-intel: Missing file in the package disables XvMC on i915/945 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 472740: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=472740 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems --- Begin Message --- Package: xserver-xorg-video-intel Version: 2:2.2.99.901-1 Severity: normal -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package is missing the library /usr/lib/libIntelXvMC.so* that is needed for XvMC on i915/945. After adding it to the package, XvMC works on my Intel 945G/GZ. Thanks - -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (800, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.24.3-schwan20080226 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages xserver-xorg-video-intel depends on: ii libc6 2.7-9 GNU C Library: Shared libraries ii libdrm22.3.0-4 Userspace interface to kernel DRM ii xserver-xorg-core 2:1.4.1~git20080131-2 Xorg X server - core server xserver-xorg-video-intel recommends no packages. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFH6YAN4XrXtQkN2NURAjwaAJ98q73L0OHYG3zSu5fn1Yk5PoM6LgCbBCXK up/HL2CHYxwlsC1ZpEdty3k= =Nwtw -END PGP SIGNATURE- --- End Message --- --- Begin Message --- Version: 2:2.2.99.901-2 On Tue, Mar 25, 2008 at 23:43:25 +0100, Ingo Saitz wrote: > The package is missing the library /usr/lib/libIntelXvMC.so* that is > needed for XvMC on i915/945. After adding it to the package, XvMC works > on my Intel 945G/GZ. > This is fixed now, thanks for your report. Cheers, Julien --- End Message ---
Bug#463061: xserver-xorg-video-intel: temporary display corruption after switching VT or suspending
On Tue, Jan 29, 2008 at 09:40:27 +0100, Marcus Better wrote: > The screen is often corrupted when returning back to X from another VT > (text or X), and on returning from suspend. Instead of a blank screen > (locked KDE session) it shows a mostly white/gray background with > static noise in it. When I press a key, the KDE password dialog comes > up on top of this. If the password is entered, the session is unlocked > and restored correctly. > Can you attach a log, with the ModeDebug option on? > I use vesafb on virtual consoles, however the effect appears also > after switching between X sessions. > Does this happen without any fb driver? Cheers, Julien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: retitle 416438 to xserver-xorg-video-intel: want XvMC support on i855
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.20 > retitle 416438 xserver-xorg-video-intel: want XvMC support on i855 Bug#416438: xserver-xorg-video-intel: want XvMC support for non-i810 chipsets Changed Bug title to `xserver-xorg-video-intel: want XvMC support on i855' from `xserver-xorg-video-intel: want XvMC support for non-i810 chipsets'. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: retitle 453754 to [945GM] textured video tearing
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.18.1 > retitle 453754 [945GM] textured video tearing Bug#453754: xserver-xorg-video-intel - xvideo double buffering unsynchronized Changed Bug title to `[945GM] textured video tearing' from `xserver-xorg-video-intel - xvideo double buffering unsynchronized'. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#469396: totem crashes on play
On Wed, Apr 2, 2008 at 5:34 PM, Julien Cristau <[EMAIL PROTECTED]> wrote: > found 469396 2:2.1.0-2 > retitle 469396 [830M XAA] XvShmPutImage returns BadAlloc when using compiz > kthxbye > > > On Wed, Mar 5, 2008 at 20:05:04 +0100, Chris Hansen wrote: > > > > On Wed, Mar 5, 2008 at 01:01:47 +0100, Chris Hansen wrote: > > > > > > > $ totem-xine --sync > > > > The program 'totem-xine' received an X Window System error. > > > > This probably reflects a bug in the program. > > > > The error was 'BadAlloc (insufficient resources for operation)'. > > > > (Details: serial 85 error_code 11 request_code 141 minor_code 19) > > > > > /var/log/Xorg.0.log: > > > [...] > > > (II) LoadModule: "intel" > > (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so > > (II) Module intel: vendor="X.Org Foundation" > > compiled for 1.3.0, module version = 2.1.0 > > Module class: X.Org Video Driver > > ABI class: X.Org Video Driver, version 1.2 > [...] > > > (==) intel(0): Using XAA for acceleration > > Hi Chris, > > this should be fixed when using EXA instead of XAA for acceleration. > EXA is the default in recent versions of the intel driver. Can you > confirm that totem works with the driver from unstable or experimental? > (or maybe with Option "AccelMethod" "EXA" with the version from testing, > although I suspect there are other bugs there) Hi Julien, Two things: Since I posted the bug, I've switched back to Metacity. However, on a recent upgrade Testing Metacity was automatically configured to run in composite mode. Same problem with Totem, it crashed. I did not try either the unstable or the experimental version of the Intel driver since AccelMethod EXA works like a charm. I added the option and now Totem doesn't crash anymore. Thanks. Cheers, Chris -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#469396: totem crashes on play
On Wed, Apr 2, 2008 at 9:20 PM, Chris Hansen <[EMAIL PROTECTED]> wrote: > > On Wed, Apr 2, 2008 at 5:34 PM, Julien Cristau <[EMAIL PROTECTED]> wrote: > > found 469396 2:2.1.0-2 > > retitle 469396 [830M XAA] XvShmPutImage returns BadAlloc when using compiz > > kthxbye > > > > > > On Wed, Mar 5, 2008 at 20:05:04 +0100, Chris Hansen wrote: > > > > > > On Wed, Mar 5, 2008 at 01:01:47 +0100, Chris Hansen wrote: > > > > > > > > > $ totem-xine --sync > > > > > The program 'totem-xine' received an X Window System error. > > > > > This probably reflects a bug in the program. > > > > > The error was 'BadAlloc (insufficient resources for operation)'. > > > > > (Details: serial 85 error_code 11 request_code 141 minor_code 19) > > > > > > > /var/log/Xorg.0.log: > > > > > [...] > > > > > (II) LoadModule: "intel" > > > (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so > > > (II) Module intel: vendor="X.Org Foundation" > > > compiled for 1.3.0, module version = 2.1.0 > > > Module class: X.Org Video Driver > > > ABI class: X.Org Video Driver, version 1.2 > > [...] > > > > > (==) intel(0): Using XAA for acceleration > > > > Hi Chris, > > > > this should be fixed when using EXA instead of XAA for acceleration. > > EXA is the default in recent versions of the intel driver. Can you > > confirm that totem works with the driver from unstable or experimental? > > (or maybe with Option "AccelMethod" "EXA" with the version from testing, > > although I suspect there are other bugs there) > > Hi Julien, > > Two things: > > Since I posted the bug, I've switched back to Metacity. However, on a > recent upgrade Testing Metacity was automatically configured to run in > composite mode. Same problem with Totem, it crashed. > > I did not try either the unstable or the experimental version of the > Intel driver since AccelMethod EXA works like a charm. I added the > option and now Totem doesn't crash anymore. > > Thanks. > > Cheers, > Chris I would also add that with EXA, my desktop (Gnome) gets *really* slow when I'm using either Compiz or Metacity in compositing mode. It became so slow that I switched back to XAA. Cheers, Chris -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#473551: libgl1-mesa-dri: Crashes the X server when starting Valve's Portal under Wine on i965
On Tue, Apr 01, 2008 at 12:18:29AM +0200, Brice Goglin wrote: > forwarded 473551 https://bugs.freedesktop.org/show_bug.cgi?id=15294 > thank you > > > On Mon, Mar 31, 2008 at 11:56:28PM +0200, Mike Hommey wrote: > > > Here is a stacktrace I was able to get after setting > > > Option "NoTrapSignals" "true" > > > > > > (gdb) bt full > > > #0 0x2ba01ab4b249 in brwProgramStringNotify (ctx=0x10f6590, > > > target=, prog=0x130bf80) at brw_program.c:129 > > > No locals. > > > > brw_program.c:129 reads: > > p->param_state = p->program.Base.Parameters->StateFlags; > > > > where p is > > struct brw_vertex_program *p = (struct brw_vertex_program *)prog; > [...] > > Which means it's a "standard" null pointer dereference > > (program.Base.Parameters is NULL). > > Thanks a lot for debugging this Mike, I have forwarded the bug upstream at > the URL > above. Feel free to add any comments there if you think it could help. FWIW, I confirm the bug is fixed by upstream commit 7f2c4f96f502e5969fd251ad50a113c3a566686d, which is in 7.0.3 rc3. Mike -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]