xorg-server: Changes to 'upstream-unstable'

2009-09-28 Thread Brice Goglin
 Xext/dpms.c|   17 +
 configure.ac   |4 -
 dix/dixfonts.c |   29 -
 dix/getevents.c|4 -
 hw/xfree86/common/xf86Config.c |   16 -
 hw/xfree86/dri2/dri2.c |   12 +++-
 hw/xfree86/fbdevhw/fbdevhw.c   |8 ++
 hw/xfree86/modes/xf86Crtc.c|7 ++
 hw/xfree86/modes/xf86DiDGA.c   |  119 +++--
 hw/xfree86/modes/xf86RandR12.c |4 -
 mi/mieq.c  |4 -
 render/render.c|7 +-
 12 files changed, 87 insertions(+), 144 deletions(-)

New commits:
commit 8cf659f3a5914369a2137ac17b689e5a9fe9ca27
Author: Keith Packard kei...@keithp.com
Date:   Sun Sep 27 19:21:45 2009 -0700

Bump to version 1.6.4

Signed-off-by: Keith Packard kei...@keithp.com

diff --git a/configure.ac b/configure.ac
index 9bb566c..3c19b35 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,12 +26,12 @@ dnl
 dnl Process this file with autoconf to create configure.
 
 AC_PREREQ(2.57)
-AC_INIT([xorg-server], 1.6.3.901, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xorg-server)
+AC_INIT([xorg-server], 1.6.4, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xorg-server)
 AC_CONFIG_SRCDIR([Makefile.am])
 AM_INIT_AUTOMAKE([dist-bzip2 foreign])
 AM_MAINTAINER_MODE
 
-RELEASE_DATE=2009-8-25
+RELEASE_DATE=2009-9-27
 
 dnl this gets generated by autoheader, and thus contains all the defines.  we
 dnl don't ever actually use it, internally.

commit a26fd1a6d61507b3e69a04d6f6c192a6ec363c5c
Author: Peter Hutterer peter.hutte...@who-t.net
Date:   Wed Sep 16 15:46:55 2009 +1000

Don't send events through the master if the device has SendCoreEvents off.

In server 1.6, all devices are attached to the master device (VCP or VCK).
Sending an event through the master device means the device is sending core
events. If a device is configured as SendCoreEvents, just send through the
device, not through the master.

Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

diff --git a/dix/getevents.c b/dix/getevents.c
index 9747b35..eadcbeb 100644
--- a/dix/getevents.c
+++ b/dix/getevents.c
@@ -536,7 +536,7 @@ static EventListPtr
 updateFromMaster(EventListPtr events, DeviceIntPtr dev, int *num_events)
 {
 DeviceIntPtr master = dev-u.master;
-if (master  master-u.lastSlave != dev)
+if (master  master-u.lastSlave != dev  dev-coreEvents)
 {
 updateSlaveDeviceCoords(master, dev);
 master-u.lastSlave = dev;
@@ -674,7 +674,7 @@ positionSprite(DeviceIntPtr dev, int *x, int *y,
  * to the current screen. */
 miPointerSetPosition(dev, dev-last.valuators[0], 
dev-last.valuators[1]);
 
-if (dev-u.master) {
+if (dev-u.master  dev-coreEvents) {
 dev-u.master-last.valuators[0] = dev-last.valuators[0];
 dev-u.master-last.valuators[1] = dev-last.valuators[1];
 }
diff --git a/mi/mieq.c b/mi/mieq.c
index 213ad5b..478e68b 100644
--- a/mi/mieq.c
+++ b/mi/mieq.c
@@ -446,7 +446,7 @@ mieqProcessInputEvents(void)
 NewCurrentScreen (dev, DequeueScreen(dev), x, y);
 }
 else {
-if (master) {
+if (master  dev-coreEvents) {
 /* Force a copy of the key class into the VCK so that the 
layout
is transferred. */
 if (event-u.u.type == DeviceKeyPress ||
@@ -473,7 +473,7 @@ mieqProcessInputEvents(void)
 /* process slave first, then master */
 dev-public.processInputProc(event, dev, nevents);
 
-if (master)
+if (master  dev-coreEvents)
 master-public.processInputProc(masterEvents-event, 
master,
 nevents);
 }

commit 507e57381fea6334f7dc8da6925e53d2c76fddcb
Author: Keith Packard kei...@keithp.com
Date:   Fri Sep 18 21:12:17 2009 -0700

xfree86/modes: Remove all framebuffer support from DGA

This removes all rendering and mapping code from xf86DiDGA, leaving
just mode setting and raw input device access. The mapping code didn't
have the offset within /dev/mem for the frame buffer and the pixmap
support assumed that the framebuffer was never reallocated.
(cherry picked from 0b7c6c728c2e2d8433a188315cc591308a89cd85)

Signed-off-by: Keith Packard kei...@keithp.com
Signed-off-by: Peter Hutterer peter.hutte...@who-t.net

diff --git a/hw/xfree86/modes/xf86Crtc.c b/hw/xfree86/modes/xf86Crtc.c
index e9bde36..899cea5 100644
--- a/hw/xfree86/modes/xf86Crtc.c
+++ b/hw/xfree86/modes/xf86Crtc.c
@@ -769,6 +769,9 @@ xf86CrtcScreenInit (ScreenPtr screen)
 config-CloseScreen = screen-CloseScreen;
 screen-CloseScreen = xf86CrtcCloseScreen;
 
+#ifdef XFreeXDGA
+xf86DiDGAInit(screen, 0);
+#endif
 #ifdef RANDR_13_INTERFACE
 return RANDR_INTERFACE_VERSION;
 #else
@@ -1882,6 +1885,10 @@ xf86SetScrnInfoModes 

xorg-server: Changes to 'debian-unstable'

2009-09-28 Thread Brice Goglin
 ChangeLog|  105 +
 configure.ac |4 
 debian/changelog |6 
 debian/patches/render-return-the-supported-version.patch |   34 
 debian/patches/series|1 
 dix/dixfonts.c   |   29 +++
 dix/getevents.c  |4 
 hw/xfree86/common/xf86Config.c   |   16 --
 hw/xfree86/fbdevhw/fbdevhw.c |8 -
 hw/xfree86/modes/xf86Crtc.c  |7 
 hw/xfree86/modes/xf86DiDGA.c |  119 ++-
 hw/xfree86/modes/xf86RandR12.c   |4 
 mi/mieq.c|4 
 render/render.c  |7 
 14 files changed, 182 insertions(+), 166 deletions(-)

New commits:
commit afcb67a1196d9ea54e5edb467d9294727766e81b
Author: Brice Goglin bgog...@debian.org
Date:   Mon Sep 28 07:24:02 2009 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index ab7d9ef..eda61cc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xorg-server (2:1.6.4-1) UNRELEASED; urgency=low
+xorg-server (2:1.6.4-1) unstable; urgency=low
 
   * New upstream release.
   * Update 20_hurd-i386.diff, thanks Samuel Thibault, closes: #548606.

commit c2a97b90bbc48ba9090ffa92651d6454e1db892c
Author: Brice Goglin bgog...@debian.org
Date:   Mon Sep 28 07:23:42 2009 +0200

Drop render-return-the-supported-version.patch

diff --git a/debian/changelog b/debian/changelog
index 232779e..ab7d9ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,9 @@ xorg-server (2:1.6.4-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * Update 20_hurd-i386.diff, thanks Samuel Thibault, closes: #548606.
+  * Drop render-return-the-supported-version.patch, applied upstream.
 
- -- Brice Goglin bgog...@debian.org  Mon, 28 Sep 2009 07:13:38 +0200
+ -- Brice Goglin bgog...@debian.org  Mon, 28 Sep 2009 07:23:07 +0200
 
 xorg-server (2:1.6.3.901-1) unstable; urgency=low
 
diff --git a/debian/patches/render-return-the-supported-version.patch 
b/debian/patches/render-return-the-supported-version.patch
deleted file mode 100644
index cdd8485..000
--- a/debian/patches/render-return-the-supported-version.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From a4c328fe2f65d1bacd5593233277b0ea4eb9af69 Mon Sep 17 00:00:00 2001
-From: Julien Cristau jcris...@debian.org
-Date: Sun, 13 Sep 2009 11:52:37 +0200
-Subject: [PATCH] render: return the supported version rather than just passing 
the proto's version
-

- render/render.c |7 +--
- 1 files changed, 5 insertions(+), 2 deletions(-)
-
-Index: xorg-server/render/render.c
-===
 xorg-server.orig/render/render.c
-+++ xorg-server/render/render.c
-@@ -54,6 +54,9 @@
- #define UINT32_MAX 0xU
- #endif
- 
-+#define SERVER_RENDER_MAJOR 0
-+#define SERVER_RENDER_MINOR 10
-+
- static int ProcRenderQueryVersion (ClientPtr pClient);
- static int ProcRenderQueryPictFormats (ClientPtr pClient);
- static int ProcRenderQueryPictIndexValues (ClientPtr pClient);
-@@ -271,8 +274,8 @@
- rep.type = X_Reply;
- rep.length = 0;
- rep.sequenceNumber = client-sequence;
--rep.majorVersion = RENDER_MAJOR;
--rep.minorVersion = RENDER_MINOR;
-+rep.majorVersion = SERVER_RENDER_MAJOR;
-+rep.minorVersion = SERVER_RENDER_MINOR;
- if (client-swapped) {
-   swaps(rep.sequenceNumber, n);
-   swapl(rep.length, n);
diff --git a/debian/patches/series b/debian/patches/series
index a6c870c..7cb847a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -8,4 +8,3 @@ Add-libgcrypt-as-an-option-for-sha1.diff
 fedora-bad-fbdev-thats-mine.patch
 fedora-pci-primary.diff
 fedora-vboxvideo.diff
-render-return-the-supported-version.patch

commit 672092edd3f2472d23b4940acf074e69118db3e2
Author: Brice Goglin bgog...@debian.org
Date:   Mon Sep 28 07:13:55 2009 +0200

New upstream release

diff --git a/ChangeLog b/ChangeLog
index 73582f3..6977328 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,108 @@
+commit 8cf659f3a5914369a2137ac17b689e5a9fe9ca27
+Author: Keith Packard kei...@keithp.com
+Date:   Sun Sep 27 19:21:45 2009 -0700
+
+Bump to version 1.6.4
+
+Signed-off-by: Keith Packard kei...@keithp.com
+
+commit a26fd1a6d61507b3e69a04d6f6c192a6ec363c5c
+Author: Peter Hutterer peter.hutte...@who-t.net
+Date:   Wed Sep 16 15:46:55 2009 +1000
+
+Don't send events through the master if the device has SendCoreEvents off.
+
+In server 1.6, all devices are attached to the master device (VCP or VCK).
+Sending an event through the master device means the device is sending core
+events. If a device is 

xorg-server: Changes to 'refs/tags/xorg-server-2_1.6.4-1'

2009-09-28 Thread Brice Goglin
Tag 'xorg-server-2_1.6.4-1' created by Brice Goglin bgog...@debian.org at 
2009-09-28 06:10 +

Tagging upload of xorg-server 2:1.6.4-1 to unstable.

Changes since xorg-server-2_1.6.3.901-1:
Brice Goglin (5):
  Update 20_hurd-i386.diff
  Merge tag 'xorg-server-1.6.4' into debian-unstable
  New upstream release
  Drop render-return-the-supported-version.patch
  Prepare changelog for upload

Daniel Stone (1):
  fbdevhw: Test for graphics:fb%d as well as graphics/fb%d

Keith Packard (3):
  render: return the supported version rather than just passing the proto's 
version
  xfree86/modes: Remove all framebuffer support from DGA
  Bump to version 1.6.4

Michel Dänzer (1):
  dri2: Don't crash if pPriv is NULL.

Peter Hutterer (1):
  Don't send events through the master if the device has SendCoreEvents off.

Richard Hughes (1):
  Don't reset the lastDeviceEventTime when doing DPMS actions

Rémi Cardona (1):
  dix: append built-ins to the font path in SetDefaultFontPath

---
 ChangeLog|  105 +
 configure.ac |4 
 debian/changelog |8 +
 debian/patches/20_hurd-i386.diff |2 
 debian/patches/render-return-the-supported-version.patch |   34 
 debian/patches/series|1 
 dix/dixfonts.c   |   29 +++
 dix/getevents.c  |4 
 hw/xfree86/common/xf86Config.c   |   16 --
 hw/xfree86/fbdevhw/fbdevhw.c |8 -
 hw/xfree86/modes/xf86Crtc.c  |7 
 hw/xfree86/modes/xf86DiDGA.c |  119 ++-
 hw/xfree86/modes/xf86RandR12.c   |4 
 mi/mieq.c|4 
 render/render.c  |7 
 15 files changed, 187 insertions(+), 165 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of xorg-server_1.6.4-1_i386.changes

2009-09-28 Thread Archive Administrator
xorg-server_1.6.4-1_i386.changes uploaded successfully to localhost
along with the files:
  xorg-server_1.6.4-1.dsc
  xorg-server_1.6.4.orig.tar.gz
  xorg-server_1.6.4-1.diff.gz
  xserver-common_1.6.4-1_all.deb
  xserver-xorg-core_1.6.4-1_i386.deb
  xserver-xorg-dev_1.6.4-1_i386.deb
  xdmx_1.6.4-1_i386.deb
  xdmx-tools_1.6.4-1_i386.deb
  xnest_1.6.4-1_i386.deb
  xvfb_1.6.4-1_i386.deb
  xserver-xephyr_1.6.4-1_i386.deb
  xserver-xfbdev_1.6.4-1_i386.deb
  xserver-xorg-core-dbg_1.6.4-1_i386.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xorg-server_1.6.4-1_i386.changes ACCEPTED

2009-09-28 Thread Archive Administrator

Accepted:
xdmx-tools_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xdmx-tools_1.6.4-1_i386.deb
xdmx_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xdmx_1.6.4-1_i386.deb
xnest_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xnest_1.6.4-1_i386.deb
xorg-server_1.6.4-1.diff.gz
  to pool/main/x/xorg-server/xorg-server_1.6.4-1.diff.gz
xorg-server_1.6.4-1.dsc
  to pool/main/x/xorg-server/xorg-server_1.6.4-1.dsc
xorg-server_1.6.4.orig.tar.gz
  to pool/main/x/xorg-server/xorg-server_1.6.4.orig.tar.gz
xserver-common_1.6.4-1_all.deb
  to pool/main/x/xorg-server/xserver-common_1.6.4-1_all.deb
xserver-xephyr_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xephyr_1.6.4-1_i386.deb
xserver-xfbdev_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xfbdev_1.6.4-1_i386.deb
xserver-xorg-core-dbg_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xorg-core-dbg_1.6.4-1_i386.deb
xserver-xorg-core_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xorg-core_1.6.4-1_i386.deb
xserver-xorg-dev_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xorg-dev_1.6.4-1_i386.deb
xvfb_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xvfb_1.6.4-1_i386.deb


Override entries for your package:
xdmx-tools_1.6.4-1_i386.deb - optional x11
xdmx_1.6.4-1_i386.deb - optional x11
xnest_1.6.4-1_i386.deb - optional x11
xorg-server_1.6.4-1.dsc - source x11
xserver-common_1.6.4-1_all.deb - optional x11
xserver-xephyr_1.6.4-1_i386.deb - optional x11
xserver-xfbdev_1.6.4-1_i386.deb - optional x11
xserver-xorg-core-dbg_1.6.4-1_i386.deb - extra debug
xserver-xorg-core_1.6.4-1_i386.deb - optional x11
xserver-xorg-dev_1.6.4-1_i386.deb - optional x11
xvfb_1.6.4-1_i386.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 548606 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548606: marked as done (xorg-server: hurd fixup)

2009-09-28 Thread Debian Bug Tracking System
Your message dated Mon, 28 Sep 2009 06:17:15 +
with message-id e1ms9xv-0003kj...@ries.debian.org
and subject line Bug#548606: fixed in xorg-server 2:1.6.4-1
has caused the Debian Bug report #548606,
regarding xorg-server: hurd fixup
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 ow...@bugs.debian.org
immediately.)


-- 
548606: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=548606
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xorg-server
Version: 1.6.3.901-1
Severity: important

Hello,

I hadn't paid attention that the flags parameters had moved, breaking
everything, here is a fixup for hurd-i386.

Samuel

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
--- debian/patches/20_hurd-i386.diff.orig   2009-09-27 17:03:36.0 
+0100
+++ debian/patches/20_hurd-i386.diff2009-09-27 17:03:54.0 +0100
@@ -65,7 +65,7 @@
 -pointer 
 -xf86MapVidMem(int ScreenNum,int Flags, unsigned long Base, unsigned long Size)
 +static pointer 
-+mapVidMem(int ScreenNum,int Flags, unsigned long Base, unsigned long Size)
++mapVidMem(int ScreenNum, unsigned long Base, unsigned long Size, int Flags)
  {
  mach_port_t device,iopl_dev;
  memory_object_t iopl_mem;
---End Message---
---BeginMessage---
Source: xorg-server
Source-Version: 2:1.6.4-1

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:

xdmx-tools_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xdmx-tools_1.6.4-1_i386.deb
xdmx_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xdmx_1.6.4-1_i386.deb
xnest_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xnest_1.6.4-1_i386.deb
xorg-server_1.6.4-1.diff.gz
  to pool/main/x/xorg-server/xorg-server_1.6.4-1.diff.gz
xorg-server_1.6.4-1.dsc
  to pool/main/x/xorg-server/xorg-server_1.6.4-1.dsc
xorg-server_1.6.4.orig.tar.gz
  to pool/main/x/xorg-server/xorg-server_1.6.4.orig.tar.gz
xserver-common_1.6.4-1_all.deb
  to pool/main/x/xorg-server/xserver-common_1.6.4-1_all.deb
xserver-xephyr_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xephyr_1.6.4-1_i386.deb
xserver-xfbdev_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xfbdev_1.6.4-1_i386.deb
xserver-xorg-core-dbg_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xorg-core-dbg_1.6.4-1_i386.deb
xserver-xorg-core_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xorg-core_1.6.4-1_i386.deb
xserver-xorg-dev_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xserver-xorg-dev_1.6.4-1_i386.deb
xvfb_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xvfb_1.6.4-1_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 548...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Brice Goglin bgog...@debian.org (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 ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 07:23:07 +0200
Source: xorg-server
Binary: xserver-xorg-core xserver-xorg-dev xdmx xdmx-tools xnest xvfb 
xserver-xephyr xserver-xfbdev xserver-xorg-core-dbg xserver-common
Architecture: source all i386
Version: 2:1.6.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Brice Goglin bgog...@debian.org
Description: 
 xdmx   - distributed multihead X server
 xdmx-tools - Distributed Multihead X tools
 xnest  - Nested X server
 xserver-common - common files used by various X servers
 xserver-xephyr - nested X server
 xserver-xfbdev - Linux framebuffer device tiny 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: 548606
Changes: 
 xorg-server (2:1.6.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Update 20_hurd-i386.diff, thanks Samuel Thibault, closes: #548606.
   * Drop render-return-the-supported-version.patch, applied 

xorg-server: Changes to 'ubuntu'

2009-09-28 Thread Loïc Minier
 debian/changelog  |8 +++
 debian/patches/187_lastdeviceeventtime-no-reset.patch |   47 ++
 2 files changed, 55 insertions(+)

New commits:
commit 80a6590ad4f81a7c5a2bb1bd6d8c67c92f651338
Author: Loïc Minier l...@dooz.org
Date:   Mon Sep 28 10:05:11 2009 +0200

Cherrypick to avoid resetting IDLETIME on DPMS

Add 187_lastdeviceeventtime-no-reset.patch: Avoids resetting IDLETIME on
DPMS events.  Cherrypick from upstream. (LP: #397839)

diff --git a/debian/changelog b/debian/changelog
index 312ca01..b2a16b8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+xorg-server (2:1.6.3-1ubuntu7) UNRELEASED; urgency=low
+
+  * Add 187_lastdeviceeventtime-no-reset.patch: Avoids resetting IDLETIME on
+DPMS events.  Cherrypick from upstream.
+(LP: #397839)
+
+ -- Loïc Minier loic.min...@ubuntu.com  Mon, 28 Sep 2009 10:05:00 +0200
+
 xorg-server (2:1.6.3-1ubuntu6) karmic; urgency=low
 
   * Add 186_autoconfig_geode.patch:  Add autoconfiguration support for
diff --git a/debian/patches/187_lastdeviceeventtime-no-reset.patch 
b/debian/patches/187_lastdeviceeventtime-no-reset.patch
new file mode 100644
index 000..d152ad7
--- /dev/null
+++ b/debian/patches/187_lastdeviceeventtime-no-reset.patch
@@ -0,0 +1,47 @@
+From c1d901d723c3bee523736eacc15b44a7dff484fe Mon Sep 17 00:00:00 2001
+From: Richard Hughes rich...@hughsie.com
+Date: Fri, 14 Aug 2009 11:44:35 +0100
+Subject: [PATCH] Don't reset the lastDeviceEventTime when doing DPMS actions
+
+When we change the DPMS mode, don't play games with the last event time as
+this breaks applications using IDLETIME to turn the backlight off after a
+preset time.
+
+This patch fixes gnome-power-manager and xfce-power-manager
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+---
+ Xext/dpms.c |   17 -
+ 1 files changed, 4 insertions(+), 13 deletions(-)
+
+diff --git a/Xext/dpms.c b/Xext/dpms.c
+index 21ba923..df63a8b 100644
+--- a/Xext/dpms.c
 b/Xext/dpms.c
+@@ -177,19 +177,10 @@ ProcDPMSForceLevel(ClientPtr client)
+ if (!DPMSEnabled)
+   return BadMatch;
+ 
+-if (stuff-level == DPMSModeOn) {
+-  lastDeviceEventTime.milliseconds =
+-  GetTimeInMillis();
+-} else if (stuff-level == DPMSModeStandby) {
+-  lastDeviceEventTime.milliseconds =
+-  GetTimeInMillis() -  DPMSStandbyTime;
+-} else if (stuff-level == DPMSModeSuspend) {
+-  lastDeviceEventTime.milliseconds =
+-  GetTimeInMillis() -  DPMSSuspendTime;
+-} else if (stuff-level == DPMSModeOff) {
+-  lastDeviceEventTime.milliseconds =
+-  GetTimeInMillis() -  DPMSOffTime;
+-} else {
++if (stuff-level != DPMSModeOn 
++stuff-level != DPMSModeStandby 
++stuff-level != DPMSModeSuspend 
++stuff-level != DPMSModeOff) {
+   client-errorValue = stuff-level;
+   return BadValue;
+ }
+-- 
+1.6.3.3
+


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xorg-server: Changes to 'ubuntu'

2009-09-28 Thread Loïc Minier
 debian/patches/series |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 701cd2fbc4528182ac145b4bc856573f276df573
Author: Loïc Minier l...@dooz.org
Date:   Mon Sep 28 10:14:27 2009 +0200

Enable 187_lastdeviceeventtime-no-reset.patch

diff --git a/debian/patches/series b/debian/patches/series
index 6b7d3a4..efe96b7 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -41,3 +41,4 @@ fedora-pci-primary.diff
 184_virtual_devices_autodetect.patch
 185_dix_badwindow.patch
 186_autoconfig_geode.patch
+187_lastdeviceeventtime-no-reset.patch


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xorg-server: Changes to 'ubuntu'

2009-09-28 Thread Loïc Minier
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 227880b4c4c7f2f0c6b70c33952b33088311c0aa
Author: Loïc Minier l...@dooz.org
Date:   Mon Sep 28 10:54:19 2009 +0200

Release 2:1.6.3-1ubuntu7

diff --git a/debian/changelog b/debian/changelog
index b2a16b8..bbc903c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-xorg-server (2:1.6.3-1ubuntu7) UNRELEASED; urgency=low
+xorg-server (2:1.6.3-1ubuntu7) karmic; urgency=low
 
   * Add 187_lastdeviceeventtime-no-reset.patch: Avoids resetting IDLETIME on
 DPMS events.  Cherrypick from upstream.
 (LP: #397839)
 
- -- Loïc Minier loic.min...@ubuntu.com  Mon, 28 Sep 2009 10:05:00 +0200
+ -- Loïc Minier loic.min...@ubuntu.com  Mon, 28 Sep 2009 10:54:08 +0200
 
 xorg-server (2:1.6.3-1ubuntu6) karmic; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV

2009-09-28 Thread pancho horrillo
Package: xserver-xorg-core
Version: 2:1.6.4-1
Severity: normal

After upgrading, X server just dies on startup, with SEGV (11).
I tried removing my /etc/X11/xorg.conf out of the way, to no avail.

Box is a Mac Mini intel.

Thx.


-- 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 Oct 26  2008 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1867968 Sep 28 08:30 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1213 Sep 19 19:59 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org 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 xorg.conf manual page.
# (Type man 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
FontPathunix/:7100
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  hhk
Option  XkbLayout us,us
Option  XkbVariantaltgr-intl,dvorak
Option  XkbOptionsgrp:shifts_toggle
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
EndSection

Section Monitor
Identifier  Configured Monitor
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 18869 Sep 28 12:51 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.4
Release Date: 2009-9-27
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.30.8-dsa-amd64 x86_64 Debian
Current Operating System: Linux worf 2.6.30-2-amd64 #1 SMP Fri Sep 25 22:16:56 
UTC 2009 x86_64
Build Date: 28 September 2009  06:29:58AM
xorg-server 2:1.6.4-1 (bui...@brahms.debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Mon Sep 28 12:51:25 2009
(II) Loader magic: 0x3540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(--) using VT number 7

(--) PCI:*(0:0:2:0) 8086:27a2:8086:7270 Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller rev 3, Mem @ 
0x9028/524288, 0x8000/268435456, 0x9030/262144, I/O @ 0x20f0/8
(==) Using default built-in configuration (39 lines)
(==) --- Start of built-in configuration ---
Section Device
Identifier  Builtin Default intel Device 0
Driver  intel
EndSection
Section Screen
Identifier  Builtin Default intel Screen 0
Device  Builtin Default intel Device 0
EndSection
Section Device
Identifier  Builtin Default i810 Device 0
Driver  i810
EndSection
Section Screen
Identifier  Builtin Default i810 Screen 0
Device  Builtin Default i810 Device 0
EndSection
Section Device
Identifier  Builtin Default vesa Device 0
Driver  vesa
EndSection
Section Screen
Identifier  Builtin Default vesa Screen 0
Device  Builtin Default vesa Device 0
EndSection
Section Device
Identifier  Builtin Default fbdev Device 0
Driver  fbdev
EndSection
Section Screen
Identifier  Builtin Default fbdev Screen 0
Device  Builtin Default fbdev Device 0
EndSection
Section ServerLayout
Identifier  Builtin Default Layout
Screen  Builtin Default intel 

xserver-xorg-video-dove: Changes to 'ubuntu'

2009-09-28 Thread Loïc Minier
 0 files changed

New commits:
commit a1b31acb0e4eec352ea98fc7a77530788a885321
Author: Loïc Minier l...@dooz.org
Date:   Mon Sep 28 14:04:18 2009 +0200

Drop -x bits

diff --git a/debian/changelog b/debian/changelog
old mode 100755
new mode 100644
diff --git a/debian/compat b/debian/compat
old mode 100755
new mode 100644
diff --git a/debian/control b/debian/control
old mode 100755
new mode 100644
diff --git a/debian/copyright b/debian/copyright
old mode 100755
new mode 100644
diff --git a/debian/rules b/debian/rules
old mode 100755
new mode 100644
diff --git a/debian/xserver-xorg-video-dove.install 
b/debian/xserver-xorg-video-dove.install
old mode 100755
new mode 100644
diff --git a/debian/xserver-xorg-video-dove.links 
b/debian/xserver-xorg-video-dove.links
old mode 100755
new mode 100644
diff --git a/debian/xsfbs/xsfbs.mk b/debian/xsfbs/xsfbs.mk
old mode 100755
new mode 100644
diff --git a/debian/xsfbs/xsfbs.sh b/debian/xsfbs/xsfbs.sh
old mode 100755
new mode 100644

commit bd2f932de752d6b1a1be19a0a447f5624da2c4dc
Author: Loïc Minier l...@dooz.org
Date:   Mon Sep 28 14:03:39 2009 +0200

Drop -x bits

diff --git a/COPYING b/COPYING
old mode 100755
new mode 100644
diff --git a/ChangeLog b/ChangeLog
old mode 100755
new mode 100644
diff --git a/Makefile.am b/Makefile.am
old mode 100755
new mode 100644
diff --git a/README b/README
old mode 100755
new mode 100644
diff --git a/configure.ac b/configure.ac
old mode 100755
new mode 100644
diff --git a/man/Makefile.am b/man/Makefile.am
old mode 100755
new mode 100644
diff --git a/man/dovefb.man b/man/dovefb.man
old mode 100755
new mode 100644
diff --git a/src/Makefile.am b/src/Makefile.am
old mode 100755
new mode 100644
diff --git a/src/dovefb.c b/src/dovefb.c
old mode 100755
new mode 100644
diff --git a/src/dovefb_xv.c b/src/dovefb_xv.c
old mode 100755
new mode 100644
diff --git a/src/dovefb_xv.c.flip b/src/dovefb_xv.c.flip
old mode 100755
new mode 100644


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-dove: Changes to 'upstream-unstable'

2009-09-28 Thread Loïc Minier
 0 files changed

New commits:
commit bd2f932de752d6b1a1be19a0a447f5624da2c4dc
Author: Loïc Minier l...@dooz.org
Date:   Mon Sep 28 14:03:39 2009 +0200

Drop -x bits

diff --git a/COPYING b/COPYING
old mode 100755
new mode 100644
diff --git a/ChangeLog b/ChangeLog
old mode 100755
new mode 100644
diff --git a/Makefile.am b/Makefile.am
old mode 100755
new mode 100644
diff --git a/README b/README
old mode 100755
new mode 100644
diff --git a/configure.ac b/configure.ac
old mode 100755
new mode 100644
diff --git a/man/Makefile.am b/man/Makefile.am
old mode 100755
new mode 100644
diff --git a/man/dovefb.man b/man/dovefb.man
old mode 100755
new mode 100644
diff --git a/src/Makefile.am b/src/Makefile.am
old mode 100755
new mode 100644
diff --git a/src/dovefb.c b/src/dovefb.c
old mode 100755
new mode 100644
diff --git a/src/dovefb_xv.c b/src/dovefb_xv.c
old mode 100755
new mode 100644
diff --git a/src/dovefb_xv.c.flip b/src/dovefb_xv.c.flip
old mode 100755
new mode 100644


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#547496: xserver-xorg-core: appear again after upgrade from 1.6.3.901-1 to 1.6.4-1

2009-09-28 Thread Julien Cristau
On Mon, Sep 28, 2009 at 14:21:50 +0200, Jean-Luc Coulon (f5ibh) wrote:

 Backtrace:
 0: /usr/bin/X(xorg_backtrace+0x26) [0x4edfe6]
 1: /usr/bin/X(xf86SigHandler+0x39) [0x483699]
 2: /lib/libc.so.6 [0x7f10daf94db0]
 3: /usr/bin/X(DGAAvailable+0x39) [0x4823c9]
 4: /usr/bin/X(xf86DiDGAInit+0x30) [0x4ae200]
 5: /usr/bin/X(xf86CrtcScreenInit+0x10d) [0x4aafad]
 6: /usr/lib/xorg/modules/drivers//radeon_drv.so [0x7f10d95a3a49]
 7: /usr/bin/X(AddScreen+0x1c6) [0x432ac6]
 8: /usr/bin/X(InitOutput+0x241) [0x46d361]
 9: /usr/bin/X(main+0x200) [0x4331d0]
 10: /lib/libc.so.6(__libc_start_main+0xe6) [0x7f10daf815c6]
 11: /usr/bin/X [0x432819]
 
Different bug.  This one is reported at
http://lists.x.org/pipermail/xorg/2009-September/047419.html

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: works with intel driver from experimental

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 fixed 548724 2:2.8.99.902-1
Bug #548724 [xserver-xorg-video-intel] [xserver-xorg-video-intel] Crashes 
xserver
There is no source info for the package 'xserver-xorg-video-intel' at version 
'2:2.8.99.902-1' with architecture ''
Unable to make a source version for version '2:2.8.99.902-1'
Bug Marked as fixed in versions 2:2.8.99.902-1.
 stop
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: xserver-xorg-core: X server crashes upon startup with SEGV

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 548716 grave
Bug #548716 [xserver-xorg-core] xserver-xorg-core: X server crashes upon 
startup with SEGV
Severity set to 'grave' from 'normal'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548724: works with intel driver from experimental

2009-09-28 Thread Bastian Venthur
fixed 548724 2:2.8.99.902-1
stop

Works with -video-intel version 2:2.8.99.902-1 from experimental though!

-- 
Bastian Venthur  http://venthur.de
Debian Developer venthur at debian org




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV

2009-09-28 Thread Vasilis Vasaitis
severity 548716 grave
thanks

 After upgrading, X server just dies on startup, with SEGV (11).

  Same here. Dell PC with an Intel 945G chipset. I had to downgrade to
1.6.3.901-1 to make it work again. The Intel driver is at the latest
version (2.8.1-2), and I'm running DRI2+UXA, but no KMS. The backtrace
I'm getting is identical to the one of the submitter.

Regards,
Vasilis

-- 
Vasilis Vasaitis
A man is well or woe as he thinks himself so.





-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: tagging 548716, affects 548716

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 548716 confirmed upstream
Bug #548716 [xserver-xorg-core] xserver-xorg-core: X server crashes upon 
startup with SEGV
Added tag(s) upstream and confirmed.
 affects 548716 xserver-xorg-video-intel xserver-xorg-video-radeon
Bug #548716 [xserver-xorg-core] xserver-xorg-core: X server crashes upon 
startup with SEGV
Added indication that 548716 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon

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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: bug 548716 is forwarded to http://lists.x.org/pipermail/xorg/2009-September/047419.html

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forwarded 548716 http://lists.x.org/pipermail/xorg/2009-September/047419.html
Bug #548716 [xserver-xorg-core] xserver-xorg-core: X server crashes upon 
startup with SEGV
Set Bug forwarded-to-address to 
'http://lists.x.org/pipermail/xorg/2009-September/047419.html'.

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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: forcibly merging 548716 548725

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 548716 548725
Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV
Bug#548725: xserver-xorg-core: After upgrade to 6.4, radeon driver carsh
Forcibly Merged 548716 548725.


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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: reassign 548724 to xserver-xorg-core, forcibly merging 548716 548724

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 548724 xserver-xorg-core
Bug #548724 [xserver-xorg-video-intel] [xserver-xorg-video-intel] Crashes 
xserver
Bug reassigned from package 'xserver-xorg-video-intel' to 'xserver-xorg-core'.
Bug No longer marked as found in versions xserver-xorg-video-intel/2:2.8.1-2.
Bug No longer marked as fixed in versions 2:2.8.99.902-1.
 forcemerge 548716 548724
Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV
Bug#548724: [xserver-xorg-video-intel] Crashes xserver
Bug#548725: xserver-xorg-core: After upgrade to 6.4, radeon driver carsh
Forcibly Merged 548716 548724 548725.


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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#547892: segfaults suddenly

2009-09-28 Thread Manuel Bilderbeek
Package: compiz
Version: 0.8.2-6
Severity: normal


It happened again, more precisely, when I was clicking on the left side
of a GVIM window to enlarge it in that way.

[25983.951944] compiz.real[3724]: segfault at b7f79eb0 ip b7f79eb0 sp bf82261c 
error 14 in libgmodule-2.0.so.0.2000.5 (deleted)[b7f7d000+3000]

Looks like a different error this time, though.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages compiz depends on:
ii  compiz-core   0.8.2-6OpenGL window and compositing mana
ii  compiz-gnome  0.8.2-6OpenGL window and compositing mana
ii  compiz-gtk0.8.2-6OpenGL window and compositing mana
ii  compiz-plugins0.8.2-6OpenGL window and compositing mana

compiz recommends no packages.

Versions of packages compiz suggests:
ii  compizconfig-settings-manager 0.8.2-2Compizconfig Settings Manager

-- no debconf information

This message and attachment(s) are intended solely for use by the addressee and 
may contain information that is privileged, confidential or otherwise exempt 
from disclosure under applicable law.

If you are not the intended recipient or agent thereof responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.

If you have received this communication in error, please notify the sender 
immediately by telephone and with a 'reply' message.

Thank you for your co-operation.





-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548751: xserver-xorg-core: Upgrade to 2:1.6.4-1 causes segfault at startup with intel driver.

2009-09-28 Thread Thomas E. Vaughan
Package: xserver-xorg-core
Version: 2:1.6.4-1
Severity: grave
Justification: renders package unusable


Recent upgrade to xserver-xorg-core_2:1.6.4-1 on amd64 with
intel driver causes crash at startup of X server.

-- 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 Jul  2 09:53 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1867968 Sep 28 00:30 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ Integrated 
Graphics Controller (rev 02)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 378 Sep  3 17:13 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:

Section Monitor
Identifier Left
EndSection

Section Monitor
Identifier Right
Option RightOf Left
EndSection

Section Device
Identifier 82945G/GZ
Driver intel
Option monitor-TMDS-1 Right
Option monitor-VGA Left
EndSection

# Allow KDE 4.3.0 to run without corrupting the screen.
#Section Extensions
#   Option Composite Disable
#EndSection



Xorg X server log files on system:
-rw-r--r-- 1 root root 31506 Jul  2 09:54 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 22165 Sep 28 09:17 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.4
Release Date: 2009-9-27
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.30.8-dsa-amd64 x86_64 Debian
Current Operating System: Linux hypostasis 2.6.30-2-amd64 #1 SMP Fri Sep 25 
22:16:56 UTC 2009 x86_64
Build Date: 28 September 2009  06:29:58AM
xorg-server 2:1.6.4-1 (bui...@brahms.debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Mon Sep 28 09:17:45 2009
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |--Screen Default Screen Section (0)
(**) |   |--Monitor default monitor
(==) No device specified for screen Default Screen Section.
Using the first device section listed.
(**) |   |--Device 82945G/GZ
(==) No monitor specified for screen Default Screen Section.
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/cyrillic,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable 
AllowEmptyInput.
(II) Loader magic: 0x3540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2772:1028:01ad Intel Corporation 82945G/GZ Integrated 
Graphics Controller rev 2, Mem @ 0xfeb0/524288, 0xe000/268435456, 
0xfeac/262144, I/O @ 0xe898/8
(II) Open ACPI successful (/var/run/acpid.socket)
(II) System resource ranges:
[0] -1  0   0x - 0x (0x1) MX[B]
[1] -1  0   0x000f - 0x000f (0x1) MX[B]
[2] -1  0   0x000c - 0x000e (0x3) MX[B]
[3] -1  0   0x - 0x0009 (0xa) MX[B]
[4] -1  0   0x - 0x (0x1) IX[B]
[5] -1  0   0x - 0x (0x1) IX[B]
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.6.4, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension SELinux
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: dbe
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor=X.Org Foundation
compiled for 1.6.4, 

Processed: forcibly merging 548716 548751

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 548716 548751
Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV
Bug#548751: xserver-xorg-core: Upgrade to 2:1.6.4-1 causes segfault at startup 
with intel driver.
Bug#548724: [xserver-xorg-video-intel] Crashes xserver
Bug#548725: xserver-xorg-core: After upgrade to 6.4, radeon driver carsh
Forcibly Merged 548716 548724 548725 548751.


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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



pixman: Changes to 'refs/tags/pixman-0.16.2-1'

2009-09-28 Thread Julien Cristau
Tag 'pixman-0.16.2-1' created by Julien Cristau jcris...@debian.org at 
2009-09-28 16:13 +

Tagging upload of pixman 0.16.2-1 to unstable.

Changes since pixman-0.15.20-1:
Chris Wilson (4):
  _pixman_run_fast_path: typo
  [sse2] Bit-reversing typo: src != dst
  Enable component alpha on solid masks.
  Remove duplicated declaration

Julien Cristau (3):
  Merge tag 'pixman-0.16.2' into debian-unstable
  Bump changelogs
  Prepare changelog for upload

M Joonas Pihlaja (3):
  Work around differing _mm_prefetch() prototypes on Solaris.
  Work around a Sun Studio 12 code generation bug involving _mm_set_epi32().
  Default to optimised builds when using a Sun Studio compiler.

Makoto Kato (2):
  Remove spurious spaces in pixman-x64-mmx-emulation.h
  Add CPU detection for VC++ x64

Siarhei Siamashka (4):
  ARM: a fix to pass blitters-test for 'neon_composite_over_n_8_0565'
  ARM: workaround for gcc bug in vshll_n_u8 intrinsic
  ARM: Remove fallback to ARMv6 implementation from NEON delegate chain
  Change CFLAGS order for PPC and ARM configure tests

Søren Sandmann Pedersen (13):
  Post-release version bump
  Check if we have posix_memalign() in configure.ac. [23260, 23261]
  Pre-release version bump
  Set version number to 0.16.1
  Remove optimization for 0x and 0xff the add_n___ca fast 
path
  Fix off-by-one error in source_image_needs_out_of_bounds_workaround()
  Revert Enable component alpha on solid masks.
  Return result from pixman_image_set_transform().
  Fix alpha handling for 10 bpc formats.
  Fix bug in blitters-test with BGRA formats.
  Fix fetch-test for big-endian systems.
  Update CRC in blitters-test for the changes in 10bpc alpha handling
  Pre-release version bump

---
 ChangeLog |  234 ++
 configure.ac  |   32 -
 debian/changelog  |7 +
 pixman/pixman-access.c|   30 ++--
 pixman/pixman-arm-neon.c  |   13 +-
 pixman/pixman-bits-image.c|   10 -
 pixman/pixman-cpu.c   |2 
 pixman/pixman-fast-path.c |8 -
 pixman/pixman-image.c |6 
 pixman/pixman-sse2.c  |   12 +
 pixman/pixman-utils.c |   19 +--
 pixman/pixman-x64-mmx-emulation.h |8 -
 pixman/pixman.h   |2 
 test/blitters-test.c  |   23 +++
 test/fetch-test.c |   18 ++
 15 files changed, 364 insertions(+), 60 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



pixman: Changes to 'debian-unstable'

2009-09-28 Thread Julien Cristau
 CODING_STYLE |  
216 
 COPYING  |   
39 
 ChangeLog| 
4659 +
 Makefile.am  |
6 
 README   |
2 
 RELEASING|
9 
 TODO |
2 
 configure.ac |  
203 
 debian/README.source |
3 
 debian/changelog |   
37 
 debian/control   |
6 
 debian/libpixman-1-0.symbols |   
14 
 debian/patches/pixman-arm-don-t-use-env-vars-to-get-hwcap-platform.patch |   
52 
 debian/patches/series|
1 
 debian/rules |   
18 
 pixman/Makefile.am   |  
103 
 pixman/Makefile.win32|   
57 
 pixman/combine.h.inc |  
213 
 pixman/combine.inc   | 
1269 -
 pixman/combine.pl|   
81 
 pixman/make-combine.pl   |   
86 
 pixman/pixman-access.c   | 
3190 ++--
 pixman/pixman-accessor.h |   
40 
 pixman/pixman-arm-detect-win32.asm   |   
21 
 pixman/pixman-arm-neon.c | 
2781 +++
 pixman/pixman-arm-simd.c |  
555 
 pixman/pixman-arm-simd.h |   
94 
 pixman/pixman-bits-image.c   |  
772 
 pixman/pixman-combine.c.template | 
2436 +++
 pixman/pixman-combine.h.template |  
226 
 pixman/pixman-compiler.h |   
71 
 pixman/pixman-compose-accessors.c|
4 
 pixman/pixman-compose.c  |  
596 
 pixman/pixman-compute-region.c   |  
242 
 pixman/pixman-conical-gradient.c |  
180 
 pixman/pixman-cpu.c  |  
585 
 pixman/pixman-edge-imp.h |   
92 
 pixman/pixman-edge.c |  
360 
 pixman/pixman-fast-path.c| 
1440 +
 pixman/pixman-general.c  |  
324 
 pixman/pixman-gradient-walker.c  |  
254 
 pixman/pixman-image.c|  
740 
 pixman/pixman-implementation.c   |  
268 
 pixman/pixman-linear-gradient.c  |  
294 
 pixman/pixman-matrix.c   | 
1010 -
 pixman/pixman-mmx.c  | 
3097 ++-
 pixman/pixman-mmx.h  |  
320 
 pixman/pixman-pict.c | 
2400 ---
 pixman/pixman-private.h  | 
1269 -
 pixman/pixman-radial-gradient.c  |  
368 
 pixman/pixman-region.c   | 
2521 +--
 pixman/pixman-region16.c |   
46 
 pixman/pixman-region32.c |   
30 
 pixman/pixman-solid-fill.c   |   
91 
 pixman/pixman-source.c   |  
709 
 pixman/pixman-sse2.c | 
7819 +-
 pixman/pixman-sse2.h |  
358 
 pixman/pixman-timer.c|   
20 
 pixman/pixman-transformed-accessors.c|
3 
 pixman/pixman-transformed.c

pixman: Changes to 'upstream-unstable'

2009-09-28 Thread Julien Cristau
 CODING_STYLE  |  216 
 COPYING   |   39 
 Makefile.am   |6 
 README|2 
 RELEASING |9 
 TODO  |2 
 configure.ac  |  203 
 pixman/Makefile.am|  103 
 pixman/Makefile.win32 |   57 
 pixman/combine.h.inc  |  213 
 pixman/combine.inc| 1269 -
 pixman/combine.pl |   81 
 pixman/make-combine.pl|   86 
 pixman/pixman-access.c| 3190 -
 pixman/pixman-accessor.h  |   40 
 pixman/pixman-arm-detect-win32.asm|   21 
 pixman/pixman-arm-neon.c  | 2781 
 pixman/pixman-arm-simd.c  |  555 +-
 pixman/pixman-arm-simd.h  |   94 
 pixman/pixman-bits-image.c|  772 +++
 pixman/pixman-combine.c.template  | 2436 ++
 pixman/pixman-combine.h.template  |  226 
 pixman/pixman-compiler.h  |   71 
 pixman/pixman-compose-accessors.c |4 
 pixman/pixman-compose.c   |  596 --
 pixman/pixman-compute-region.c|  242 -
 pixman/pixman-conical-gradient.c  |  180 
 pixman/pixman-cpu.c   |  585 ++
 pixman/pixman-edge-imp.h  |   92 
 pixman/pixman-edge.c  |  360 -
 pixman/pixman-fast-path.c | 1440 ++
 pixman/pixman-general.c   |  324 +
 pixman/pixman-gradient-walker.c   |  254 +
 pixman/pixman-image.c |  740 +--
 pixman/pixman-implementation.c|  268 +
 pixman/pixman-linear-gradient.c   |  294 +
 pixman/pixman-matrix.c| 1010 ++--
 pixman/pixman-mmx.c   | 3097 +++--
 pixman/pixman-mmx.h   |  320 -
 pixman/pixman-pict.c  | 2400 --
 pixman/pixman-private.h   | 1269 ++---
 pixman/pixman-radial-gradient.c   |  368 +
 pixman/pixman-region.c| 2521 ++
 pixman/pixman-region16.c  |   46 
 pixman/pixman-region32.c  |   30 
 pixman/pixman-solid-fill.c|   91 
 pixman/pixman-source.c|  709 ---
 pixman/pixman-sse2.c  | 7819 +++---
 pixman/pixman-sse2.h  |  358 -
 pixman/pixman-timer.c |   20 
 pixman/pixman-transformed-accessors.c |3 
 pixman/pixman-transformed.c   |  615 --
 pixman/pixman-trap.c  |  416 +
 pixman/pixman-utils.c | 1142 +++-
 pixman/pixman-vmx.c   | 1815 +--
 pixman/pixman-vmx.h   |  308 -
 pixman/pixman-x64-mmx-emulation.h |  263 +
 pixman/pixman.c   |  543 ++
 pixman/pixman.h   |  509 +-
 pixman/refactor   |  478 ++
 pixman/solaris-hwcap.mapfile  |   36 
 test/Makefile.am  |   67 
 test/alpha-test.c |  117 
 test/blitters-test-bisect.rb  |   43 
 test/blitters-test.c  |  655 ++
 test/clip-in.c|   50 
 test/clip-test.c  |   70 
 test/composite-test.c |  212 
 test/convolution-test.c   |   47 
 test/fetch-test.c |   20 
 test/gradient-test.c  |  102 
 test/oob-test.c   |  101 
 test/region-test.c|   63 
 test/scaling-test-bisect.rb   |   38 
 test/scaling-test.c   |  474 ++
 test/screen-test.c|   44 
 test/trap-crasher.c   |   27 
 test/trap-test.c  |   49 
 test/utils.c  |  113 
 test/utils.h  |6 
 test/window-test.c|  173 
 81 files changed, 28505 insertions(+), 18003 deletions(-)

New commits:
commit 601e4dc6fd78984701a231e48fabd1e1e3e23d38
Author: Søren Sandmann Pedersen sandm...@redhat.com
Date:   Mon Sep 28 09:20:13 2009 -0400

Pre-release version bump

diff --git a/configure.ac b/configure.ac
index fbc73f6..a1c6949 100644
--- a/configure.ac
+++ b/configure.ac
@@ -54,7 +54,7 @@ AC_PREREQ([2.57])
 
 m4_define([pixman_major], 0)
 m4_define([pixman_minor], 16)
-m4_define([pixman_micro], 1)
+m4_define([pixman_micro], 2)
 
 m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro])
 

commit b765dcb554e4328c8502433474a28af30c0bb7f3
Author: Søren Sandmann Pedersen sandm...@redhat.com
Date:   Mon Sep 28 08:59:11 2009 -0400

Update CRC in blitters-test for the changes in 10bpc alpha handling

diff --git a/test/blitters-test.c b/test/blitters-test.c
index 6e1c5de..ba9900a 100644
--- a/test/blitters-test.c
+++ b/test/blitters-test.c
@@ -640,7 +640,7 @@ main (int argc, char *argv[])
/* Predefined 

x11proto-render: Changes to 'debian-unstable'

2009-09-28 Thread Julien Cristau
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a6733c10cd3c7fe8ba0afb1b482f29e36314689a
Author: Julien Cristau jcris...@debian.org
Date:   Mon Sep 28 18:16:20 2009 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index d116532..8b49c07 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-x11proto-render (2:0.11-1) UNRELEASED; urgency=low
+x11proto-render (2:0.11-1) unstable; urgency=low
 
   * Run autoreconf at build time.
   * Bump debhelper compat to 5.
@@ -10,7 +10,7 @@ x11proto-render (2:0.11-1) UNRELEASED; urgency=low
   * Bump Standards-Version to 3.8.3.
   * New upstream release.
 
- -- Julien Cristau jcris...@debian.org  Sun, 13 Sep 2009 11:17:10 +0200
+ -- Julien Cristau jcris...@debian.org  Mon, 28 Sep 2009 18:16:15 +0200
 
 x11proto-render (2:0.9.3-2) unstable; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11proto-render: Changes to 'refs/tags/x11proto-render-2_0.11-1'

2009-09-28 Thread Julien Cristau
Tag 'x11proto-render-2_0.11-1' created by Julien Cristau jcris...@debian.org 
at 2009-09-28 16:18 +

Tagging upload of x11proto-render 2:0.11-1 to unstable.

Changes since x11proto-render-2_0.9.3-2:
Brice Goglin (1):
  Update xsfbs/quilt patching rules to be compatible with the

David Nusinow (3):
  Remove make-orig-tar-gz target
  Kill the manifest code.
  Add README.source

Fredrik Höglund (2):
  Add support for the PDF blend mode operators.
  Bump version to 0.11.

James Cloos (3):
  Add *~ to .gitignore to skip patch/emacs droppings
  Merge branch 'master' of 
ssh://git.freedesktop.org/git/xorg/proto/renderproto
  Replace static ChangeLog with dist-hook to generate from git log

Julien Cristau (33):
  xsfbs.mk: make 'serverabi' depend on 'install'
  Remove xsfbs-autoreconf.mk
  Remove the .pc directory properly
  xsfbs.sh: add remove_conffile_lookup
  xsfbs.sh: use 'local' now that policy allows it
  xsfbs.mk: fix the prepare target for parallel make
  xsfbs.mk: more parallel make fixing
  xsfbs.mk: update the list of releases, and drop some unused code
  xsfbs.mk: make 'log' a separate target
  xsfbs: add a repack script for uscan
  xsfbs.sh: kill {,de}register_x_lib_dir_with_ld_so
  xsfbs: repack.sh needs to be executable
  xsfbs: don't run dpkg --print-installation-architecture
  Kill custom readlink function
  xsfbs.sh: remove unused check_symlinks_and_{bomb,warn}
  xsfbs.sh: remove unused analyze_path
  xsfbs.sh: remove unused maplink function
  xsfbs.sh: remove unused find_culprits function
  xsfbs.sh: remove unused reject_whitespace function
  xsfbs.mk: no need for shlibs.local
  Run autoreconf at build time.
  Delete generated files
  Bump debhelper compat to 5.
  Merge branch 'debian-unstable' of git.debian.org:/git/pkg-xorg/xsfbs into 
debian-unstable
  Parse space-separated DEB_BUILD_OPTIONS, handle parallel=N.
  Drop Pre-Depends on x11-common and Conflicts/Replaces on render-dev.
  Remove the XS- prefix from Vcs-* control fields.
  Add dependency on x11proto-core-dev.
  Bump Standards-Version to 3.8.3.
  Merge tag 'renderproto-0.11' into debian-unstable
  Bump changelogs
  Bump xutils-dev build-dep for new util-macros
  Prepare changelog for upload

Paulo Cesar Pereira de Andrade (1):
  Janitor: Correct make distcheck and dont distribute autogen.sh

Søren Sandmann Pedersen (4):
  Describe the four repeat options for pictures
  Delete reference to unimplemented ColorTriangles and ColorTrapezoids
  Clarify semantics of clipping
  Clarify behavior of IncludeInferior and GraphicsExposures.

---
 .gitignore   |4 
 ChangeLog|  348 
 Makefile.am  |   12 
 Makefile.in  |  528 --
 aclocal.m4   |  610 ---
 configure| 3209 ---
 configure.ac |6 
 debian/README.source |   73 
 debian/changelog |   14 
 debian/compat|2 
 debian/control   |   16 
 debian/rules |   16 
 debian/xsfbs/repack.sh   |   32 
 debian/xsfbs/xsfbs-autoreconf.mk |  150 -
 debian/xsfbs/xsfbs.mk|  131 -
 debian/xsfbs/xsfbs.sh|  522 +-
 install-sh   |  507 --
 missing  |  367 
 mkinstalldirs|  161 -
 render.h |   23 
 renderproto.txt  |  170 --
 21 files changed, 725 insertions(+), 6176 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of pixman_0.16.2-1_amd64.changes

2009-09-28 Thread Archive Administrator
pixman_0.16.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  pixman_0.16.2-1.dsc
  pixman_0.16.2.orig.tar.gz
  pixman_0.16.2-1.diff.gz
  libpixman-1-0_0.16.2-1_amd64.deb
  libpixman-1-0-udeb_0.16.2-1_amd64.udeb
  libpixman-1-0-dbg_0.16.2-1_amd64.deb
  libpixman-1-dev_0.16.2-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of x11proto-render_0.11-1_amd64.changes

2009-09-28 Thread Archive Administrator
x11proto-render_0.11-1_amd64.changes uploaded successfully to localhost
along with the files:
  x11proto-render_0.11-1.dsc
  x11proto-render_0.11.orig.tar.gz
  x11proto-render_0.11-1.diff.gz
  x11proto-render-dev_0.11-1_all.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libpciaccess: Changes to 'debian-unstable'

2009-09-28 Thread Julien Cristau
 ChangeLog   |   47 +++
 configure.ac|2 +-
 debian/changelog|4 ++--
 src/common_vgaarb.c |9 -
 src/linux_sysfs.c   |4 
 5 files changed, 62 insertions(+), 4 deletions(-)

New commits:
commit d882b2d123adaf4bda407db1e915aacdf79f6d1f
Author: Julien Cristau jcris...@debian.org
Date:   Mon Sep 28 18:29:36 2009 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index fc74cb2..e95b5d9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-libpciaccess (0.10.9-1) UNRELEASED; urgency=low
+libpciaccess (0.10.9-1) unstable; urgency=low
 
   * New upstream release.
   * Refresh pciaccess-hurd-hack.diff.
   * Update shlibs and symbols file.
 
- -- Julien Cristau jcris...@debian.org  Sun, 13 Sep 2009 20:54:37 +0200
+ -- Julien Cristau jcris...@debian.org  Mon, 28 Sep 2009 18:29:27 +0200
 
 libpciaccess (0.10.6-2) unstable; urgency=low
 

commit 7d4b01e0a68b2ef0406066c26bc4c28e2840bd49
Author: Julien Cristau jcris...@debian.org
Date:   Mon Sep 28 18:28:37 2009 +0200

Bump changelogs

diff --git a/ChangeLog b/ChangeLog
index a83fd4d..2458fc3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,50 @@
+commit 97d677746cd70ec9eb1f33483cc829a0063953bc
+Author: Dave Airlie airl...@redhat.com
+Date:   Fri Sep 25 10:25:56 2009 +1000
+
+shutup stupid gcc warning, strtok_r ignores the first parameter
+
+commit 2a10d510d24c7c0aebb03914dd887f9e92cfa754
+Author: Dave Airlie airl...@redhat.com
+Date:   Fri Sep 25 10:19:07 2009 +1000
+
+libpciaccess 0.10.9
+
+commit 1714046ef08ef685bcf1d6c154e64809b12e8d7f
+Author: Tiago Vignatti tiago.vigna...@nokia.com
+Date:   Fri Sep 18 15:21:19 2009 +0300
+
+vgaarb: fix newbie typo
+
+Eh, we don't need to check for the fd anyway. Kudos jcristau for reporting.
+
+Signed-off-by: Tiago Vignatti tiago.vigna...@nokia.com
+
+commit 13c7e6c8f100882718f995f5bf1d478a012cdbdd
+Author: Tiago Vignatti tiago.vigna...@nokia.com
+Date:   Wed Sep 16 12:56:53 2009 +0300
+
+vgaarb: check for fd before close it
+
+Signed-off-by: Tiago Vignatti tiago.vigna...@nokia.com
+
+commit cdbdfaf61c05d0d18eae6815b10666f93162148f
+Author: Keith Packard kei...@keithp.com
+Date:   Thu Sep 17 17:38:56 2009 -0700
+
+Free return value from scandir instead of leaking it.
+
+Scandir is defined to return pointers to malloc'd storage, so make
+sure that memory is nicely freed.
+
+Signed-off-by: Keith Packard kei...@keithp.com
+
+commit 42b879a203c1c16daa9d0c610c6a217ead7a5829
+Author: Dave Airlie airl...@linux.ie
+Date:   Wed Sep 2 19:03:11 2009 +1000
+
+vgaarb: check pci_sys exists before initing vga arb
+
 commit 312cde3c2f3530b031134cfb53a8a54731f02b1b
 Author: Dave Airlie airl...@redhat.com
 Date:   Mon Aug 31 09:14:16 2009 +1000
diff --git a/debian/changelog b/debian/changelog
index f98178d..fc74cb2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-libpciaccess (0.10.8-1) UNRELEASED; urgency=low
+libpciaccess (0.10.9-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * Refresh pciaccess-hurd-hack.diff.

commit 97d677746cd70ec9eb1f33483cc829a0063953bc
Author: Dave Airlie airl...@redhat.com
Date:   Fri Sep 25 10:25:56 2009 +1000

shutup stupid gcc warning, strtok_r ignores the first parameter

diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c
index 6358a66..a96aedf 100644
--- a/src/common_vgaarb.c
+++ b/src/common_vgaarb.c
@@ -42,7 +42,7 @@ static int
 parse_string_to_decodes_rsrc(char *input, int *vga_count, struct 
pci_slot_match *match)
 {
 char *tok;
-char *input_sp, *count_sp, *pci_sp;
+char *input_sp = NULL, *count_sp, *pci_sp;
 char tmp[32];
 
 tok = strtok_r(input,,,input_sp);

commit 2a10d510d24c7c0aebb03914dd887f9e92cfa754
Author: Dave Airlie airl...@redhat.com
Date:   Fri Sep 25 10:19:07 2009 +1000

libpciaccess 0.10.9

diff --git a/configure.ac b/configure.ac
index 05d5b67..f071127 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,7 @@ dnl Process this file with autoconf to create configure.
 
 AC_PREREQ([2.57])
 
-AC_INIT(libpciaccess, 0.10.8, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorgcomponent=libpciaccess],
 libpciaccess)
+AC_INIT(libpciaccess, 0.10.9, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorgcomponent=libpciaccess],
 libpciaccess)
 AM_INIT_AUTOMAKE([dist-bzip2])
 AM_MAINTAINER_MODE
 

commit 1714046ef08ef685bcf1d6c154e64809b12e8d7f
Author: Tiago Vignatti tiago.vigna...@nokia.com
Date:   Fri Sep 18 15:21:19 2009 +0300

vgaarb: fix newbie typo

Eh, we don't need to check for the fd anyway. Kudos jcristau for reporting.

Signed-off-by: Tiago Vignatti tiago.vigna...@nokia.com

diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c
index f1c71e0..6358a66 100644
--- a/src/common_vgaarb.c
+++ b/src/common_vgaarb.c
@@ -153,9 +153,6 @@ pci_device_vgaarb_fini(void)
 if (!pci_sys)
 

libpciaccess: Changes to 'upstream-unstable'

2009-09-28 Thread Julien Cristau
 configure.ac|2 +-
 src/common_vgaarb.c |9 -
 src/linux_sysfs.c   |4 
 3 files changed, 13 insertions(+), 2 deletions(-)

New commits:
commit 97d677746cd70ec9eb1f33483cc829a0063953bc
Author: Dave Airlie airl...@redhat.com
Date:   Fri Sep 25 10:25:56 2009 +1000

shutup stupid gcc warning, strtok_r ignores the first parameter

diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c
index 6358a66..a96aedf 100644
--- a/src/common_vgaarb.c
+++ b/src/common_vgaarb.c
@@ -42,7 +42,7 @@ static int
 parse_string_to_decodes_rsrc(char *input, int *vga_count, struct 
pci_slot_match *match)
 {
 char *tok;
-char *input_sp, *count_sp, *pci_sp;
+char *input_sp = NULL, *count_sp, *pci_sp;
 char tmp[32];
 
 tok = strtok_r(input,,,input_sp);

commit 2a10d510d24c7c0aebb03914dd887f9e92cfa754
Author: Dave Airlie airl...@redhat.com
Date:   Fri Sep 25 10:19:07 2009 +1000

libpciaccess 0.10.9

diff --git a/configure.ac b/configure.ac
index 05d5b67..f071127 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,7 @@ dnl Process this file with autoconf to create configure.
 
 AC_PREREQ([2.57])
 
-AC_INIT(libpciaccess, 0.10.8, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorgcomponent=libpciaccess],
 libpciaccess)
+AC_INIT(libpciaccess, 0.10.9, 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorgcomponent=libpciaccess],
 libpciaccess)
 AM_INIT_AUTOMAKE([dist-bzip2])
 AM_MAINTAINER_MODE
 

commit 1714046ef08ef685bcf1d6c154e64809b12e8d7f
Author: Tiago Vignatti tiago.vigna...@nokia.com
Date:   Fri Sep 18 15:21:19 2009 +0300

vgaarb: fix newbie typo

Eh, we don't need to check for the fd anyway. Kudos jcristau for reporting.

Signed-off-by: Tiago Vignatti tiago.vigna...@nokia.com

diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c
index f1c71e0..6358a66 100644
--- a/src/common_vgaarb.c
+++ b/src/common_vgaarb.c
@@ -153,9 +153,6 @@ pci_device_vgaarb_fini(void)
 if (!pci_sys)
 return;
 
-if (!pci_sys-vgaarb_fd)
-return;
-
 close(pci_sys-vgaarb_fd);
 }
 

commit 13c7e6c8f100882718f995f5bf1d478a012cdbdd
Author: Tiago Vignatti tiago.vigna...@nokia.com
Date:   Wed Sep 16 12:56:53 2009 +0300

vgaarb: check for fd before close it

Signed-off-by: Tiago Vignatti tiago.vigna...@nokia.com

diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c
index ca5c0a7..f1c71e0 100644
--- a/src/common_vgaarb.c
+++ b/src/common_vgaarb.c
@@ -150,6 +150,12 @@ pci_device_vgaarb_init(void)
 void
 pci_device_vgaarb_fini(void)
 {
+if (!pci_sys)
+return;
+
+if (!pci_sys-vgaarb_fd)
+return;
+
 close(pci_sys-vgaarb_fd);
 }
 

commit cdbdfaf61c05d0d18eae6815b10666f93162148f
Author: Keith Packard kei...@keithp.com
Date:   Thu Sep 17 17:38:56 2009 -0700

Free return value from scandir instead of leaking it.

Scandir is defined to return pointers to malloc'd storage, so make
sure that memory is nicely freed.

Signed-off-by: Keith Packard kei...@keithp.com

diff --git a/src/linux_sysfs.c b/src/linux_sysfs.c
index 02fbd13..85095b3 100644
--- a/src/linux_sysfs.c
+++ b/src/linux_sysfs.c
@@ -213,6 +213,10 @@ populate_entries( struct pci_system * p )
}
 }
 
+for (i = 0; i  n; i++)
+   free(devices[i]);
+free(devices);
+
 if (err) {
free(p-devices);
p-devices = NULL;

commit 42b879a203c1c16daa9d0c610c6a217ead7a5829
Author: Dave Airlie airl...@linux.ie
Date:   Wed Sep 2 19:03:11 2009 +1000

vgaarb: check pci_sys exists before initing vga arb

diff --git a/src/common_vgaarb.c b/src/common_vgaarb.c
index a40b064..ca5c0a7 100644
--- a/src/common_vgaarb.c
+++ b/src/common_vgaarb.c
@@ -124,6 +124,10 @@ pci_device_vgaarb_init(void)
 struct pci_slot_match match;
 char buf[BUFSIZE];
 int ret, rsrc;
+
+if (!pci_sys)
+return -1;
+
 if ((pci_sys-vgaarb_fd = open (/dev/vga_arbiter, O_RDWR))  0) {
 return errno;
 }


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libpciaccess: Changes to 'refs/tags/libpciaccess-0.10.9-1'

2009-09-28 Thread Julien Cristau
Tag 'libpciaccess-0.10.9-1' created by Julien Cristau jcris...@debian.org at 
2009-09-28 16:31 +

Tagging upload of libpciaccess 0.10.9-1 to unstable.

Changes since libpciaccess-0.10.6-2:
Aaron Plattner (1):
  Don't try to write boot_vga since that fails with EACCES

Dave Airlie (24):
  pciaccess: provide a method to detect if a device is boot VGA
  vgaarb: fixup api and decode rsrc.
  add support for finding if something has a kernel driver
  vgaarb: fixup api for new count reporting + decodes interface was wrong.
  Merge remote branch 'main/master' into vga-arbiter
  vgaarb: clean up debug output
  vgaarb: add support for targetting default device
  vgaarb: change API to target taking a device + lock/unlock not taking one
  vgaarb: more api changes + cleanup
  vgaarb: add vga count + resource accessor
  pciaccess: make linux rom reading fallback optional
  pciaccess: make linux rom reading fallback optional
  Merge branch 'master' into vga-arbiter
  pciaccess: make linux rom reading fallback optional
  Merge branch 'master' into vga-arbiter
  Merge remote branch 'origin/vga-arbiter'
  Revert vgaarb: delete stub functions
  vgaarb: update stub interface
  Merge branch 'vga'
  libpciaccess: bump to 0.10.7 for vga arb interface addition
  pciaccess: bump to 0.10.8
  vgaarb: check pci_sys exists before initing vga arb
  libpciaccess 0.10.9
  shutup stupid gcc warning, strtok_r ignores the first parameter

Jesse Barnes (1):
  Don't try to use bogus bridge data

Julien Cristau (10):
  configure.ac: fix help text for the linux-rom-fallback option
  Silence compiler warning about pci_id_file_open definition
  Merge tag 'libpciaccess-0.10.8' into debian-unstable
  Bump changelogs
  Refresh pciaccess-hurd-hack.diff.
  Update shlibs and symbols file.
  Fix typo
  Merge tag 'libpciaccess-0.10.9' into debian-unstable
  Bump changelogs
  Prepare changelog for upload

Keith Packard (1):
  Free return value from scandir instead of leaking it.

Thomas Klausner (1):
  pciaccess: fix vga arb stubs

Tiago Vignatti (13):
  Import libvgaaccess (VGA Arbiter) implementation from C3SL repository:
  vgaarb: make it compile.
  vgaarb: a bunch of clean ups to fit in libpciaccess style.
  Delete vga_arb_rec.
  Fix typo in vgaarb stubs.
  Reorganize the code.
  Comment typo.
  vgaarb: delete stub functions
  vgaarb: fix indentation and remove trailing white spaces
  vgaarb: fix pci_device_vgaarb_get_info() return value.
  Revert vgaarb: fix pci_device_vgaarb_get_info() return value.
  vgaarb: check for fd before close it
  vgaarb: fix newbie typo

---
 ChangeLog   |  354 
 configure.ac|   10 
 debian/changelog|8 
 debian/libpciaccess0.shlibs |1 
 debian/libpciaccess0.symbols|   10 
 debian/patches/pciaccess-hurd-hack.diff |   10 
 debian/rules|2 
 include/pciaccess.h |   58 +
 src/Makefile.am |9 
 src/common_bridge.c |4 
 src/common_device_name.c|2 
 src/common_interface.c  |   29 ++
 src/common_vgaarb.c |  331 +
 src/common_vgaarb_stub.c|   79 +++
 src/linux_sysfs.c   |   61 +
 src/pciaccess_private.h |6 
 16 files changed, 964 insertions(+), 10 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of libpciaccess_0.10.9-1_amd64.changes

2009-09-28 Thread Archive Administrator
libpciaccess_0.10.9-1_amd64.changes uploaded successfully to localhost
along with the files:
  libpciaccess_0.10.9-1.dsc
  libpciaccess_0.10.9.orig.tar.gz
  libpciaccess_0.10.9-1.diff.gz
  libpciaccess0_0.10.9-1_amd64.deb
  libpciaccess-dev_0.10.9-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



pixman_0.16.2-1_amd64.changes ACCEPTED

2009-09-28 Thread Archive Administrator

Accepted:
libpixman-1-0-dbg_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-0-dbg_0.16.2-1_amd64.deb
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
  to pool/main/p/pixman/libpixman-1-0-udeb_0.16.2-1_amd64.udeb
libpixman-1-0_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-0_0.16.2-1_amd64.deb
libpixman-1-dev_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-dev_0.16.2-1_amd64.deb
pixman_0.16.2-1.diff.gz
  to pool/main/p/pixman/pixman_0.16.2-1.diff.gz
pixman_0.16.2-1.dsc
  to pool/main/p/pixman/pixman_0.16.2-1.dsc
pixman_0.16.2.orig.tar.gz
  to pool/main/p/pixman/pixman_0.16.2.orig.tar.gz


Override entries for your package:
libpixman-1-0-dbg_0.16.2-1_amd64.deb - extra debug
libpixman-1-0-udeb_0.16.2-1_amd64.udeb - optional debian-installer
libpixman-1-0_0.16.2-1_amd64.deb - optional libs
libpixman-1-dev_0.16.2-1_amd64.deb - optional libdevel
pixman_0.16.2-1.dsc - source devel

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 546849 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: tagging 541254

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # fixed in 1.7 rc3
 tags 541254 fixed-upstream
Bug #541254 [xdmx] Xdmx just segfaults
Added tag(s) fixed-upstream.

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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#546849: marked as done (New upstream version 0.16.0)

2009-09-28 Thread Debian Bug Tracking System
Your message dated Mon, 28 Sep 2009 16:40:36 +
with message-id e1msjha-0004fw...@ries.debian.org
and subject line Bug#546849: fixed in pixman 0.16.2-1
has caused the Debian Bug report #546849,
regarding New upstream version 0.16.0
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 ow...@bugs.debian.org
immediately.)


-- 
546849: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546849
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: pixman
Severity: wishlist

Hi,
it would be nice if you could package pixman 0.16.0 for experimental :)


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
---End Message---
---BeginMessage---
Source: pixman
Source-Version: 0.16.2-1

We believe that the bug you reported is fixed in the latest version of
pixman, which is due to be installed in the Debian FTP archive:

libpixman-1-0-dbg_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-0-dbg_0.16.2-1_amd64.deb
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
  to pool/main/p/pixman/libpixman-1-0-udeb_0.16.2-1_amd64.udeb
libpixman-1-0_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-0_0.16.2-1_amd64.deb
libpixman-1-dev_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-dev_0.16.2-1_amd64.deb
pixman_0.16.2-1.diff.gz
  to pool/main/p/pixman/pixman_0.16.2-1.diff.gz
pixman_0.16.2-1.dsc
  to pool/main/p/pixman/pixman_0.16.2-1.dsc
pixman_0.16.2.orig.tar.gz
  to pool/main/p/pixman/pixman_0.16.2.orig.tar.gz



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 546...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau jcris...@debian.org (supplier of updated pixman 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 ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 18:12:47 +0200
Source: pixman
Binary: libpixman-1-0 libpixman-1-0-udeb libpixman-1-0-dbg libpixman-1-dev
Architecture: source amd64
Version: 0.16.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libpixman-1-0 - pixel-manipulation library for X and cairo
 libpixman-1-0-dbg - pixel-manipulation library for X and cairo (debugging 
symbols)
 libpixman-1-0-udeb - pixel-manipulation library for X and cairo (udeb)
 libpixman-1-dev - pixel-manipulation library for X and cairo (development 
files)
Closes: 546849
Changes: 
 pixman (0.16.2-1) unstable; urgency=low
 .
   * New upstream release (closes: #546849).
   * Upload to unstable.
Checksums-Sha1: 
 ec1ab01b49daaa3e479fe28f50ace4e0cd00eee0 1272 pixman_0.16.2-1.dsc
 137ab09e8556543ca28e3c545a7a753b3b2521a7 482516 pixman_0.16.2.orig.tar.gz
 ecdbf3d5bf170a97c1a8502b4137c788efc9bdfc 97741 pixman_0.16.2-1.diff.gz
 cb5dfbf6f2d5a563cbaf6949023835b3bc15e824 230312 
libpixman-1-0_0.16.2-1_amd64.deb
 11277e9af1ab3509b51d773c6d90f8dfb3df9d71 142836 
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
 3003f892527003087249974d36c7fba95d48f08e 527042 
libpixman-1-0-dbg_0.16.2-1_amd64.deb
 02bb4cf340e020b478a87e7e4662daed1ce4c412 257704 
libpixman-1-dev_0.16.2-1_amd64.deb
Checksums-Sha256: 
 c309c08938f68bc5efd8cf845377a853b236657a9f6268a53efbef73b3d715a7 1272 
pixman_0.16.2-1.dsc
 05f78c2fd3a5f054c0d716e8ba1b67a0c04a7a7e642d6946828ec383b389d185 482516 
pixman_0.16.2.orig.tar.gz
 fdca9c4054856a0266fe8f396f59f68172c9e87a31bb9c53cf9b0017c771933a 97741 
pixman_0.16.2-1.diff.gz
 40af44cf418688db136cd27e14e97ca3dd10453e0d967278df2c8e9049bd2054 230312 
libpixman-1-0_0.16.2-1_amd64.deb
 262eea1f1f8dcbe6d1bb0add23f8a9e143995b5557ae953e3a5cc6e11194ff69 142836 
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
 723aad8a7974fecb63b01757229ba51cfb92ddd7ca2cbfc192c2ee9724da24f6 527042 
libpixman-1-0-dbg_0.16.2-1_amd64.deb
 6048b90a43c0109d378094c0c0e96318ed967365c9a1bebfa5e7776277d6 257704 
libpixman-1-dev_0.16.2-1_amd64.deb
Files: 
 323ed48bd1ee147eed9e26ba9b2b243a 1272 devel optional pixman_0.16.2-1.dsc
 02bd3669f53c404c19980d5efb6f86fb 482516 devel optional 
pixman_0.16.2.orig.tar.gz
 42297d3515298eaa0e148e38ec08144f 97741 devel optional pixman_0.16.2-1.diff.gz
 731617e1fc67e14840082348b2e95b6e 230312 libs optional 
libpixman-1-0_0.16.2-1_amd64.deb
 5ec7b56bc3c0c66b1288865de4de0cbd 142836 debian-installer optional 
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
 

xserver-xorg-video-intel 2:2.8.1-2 MIGRATED to testing

2009-09-28 Thread Debian testing watch
FYI: The status of the xserver-xorg-video-intel source package
in Debian's testing distribution has changed.

  Previous version: 2:2.8.1-1
  Current version:  2:2.8.1-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



x11proto-render_0.11-1_amd64.changes ACCEPTED

2009-09-28 Thread Archive Administrator

Accepted:
x11proto-render-dev_0.11-1_all.deb
  to pool/main/x/x11proto-render/x11proto-render-dev_0.11-1_all.deb
x11proto-render_0.11-1.diff.gz
  to pool/main/x/x11proto-render/x11proto-render_0.11-1.diff.gz
x11proto-render_0.11-1.dsc
  to pool/main/x/x11proto-render/x11proto-render_0.11-1.dsc
x11proto-render_0.11.orig.tar.gz
  to pool/main/x/x11proto-render/x11proto-render_0.11.orig.tar.gz


Override entries for your package:
x11proto-render-dev_0.11-1_all.deb - optional x11
x11proto-render_0.11-1.dsc - source x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



libpciaccess_0.10.9-1_amd64.changes ACCEPTED

2009-09-28 Thread Archive Administrator

Accepted:
libpciaccess-dev_0.10.9-1_amd64.deb
  to pool/main/libp/libpciaccess/libpciaccess-dev_0.10.9-1_amd64.deb
libpciaccess0_0.10.9-1_amd64.deb
  to pool/main/libp/libpciaccess/libpciaccess0_0.10.9-1_amd64.deb
libpciaccess_0.10.9-1.diff.gz
  to pool/main/libp/libpciaccess/libpciaccess_0.10.9-1.diff.gz
libpciaccess_0.10.9-1.dsc
  to pool/main/libp/libpciaccess/libpciaccess_0.10.9-1.dsc
libpciaccess_0.10.9.orig.tar.gz
  to pool/main/libp/libpciaccess/libpciaccess_0.10.9.orig.tar.gz


Override entries for your package:
libpciaccess-dev_0.10.9-1_amd64.deb - optional libdevel
libpciaccess0_0.10.9-1_amd64.deb - optional libs
libpciaccess_0.10.9-1.dsc - source devel

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548770: SIGSEV in DGAAvailable at startup

2009-09-28 Thread Mathieu GELI
Package: xserver-xorg-video-intel
Version: 2:2.8.1-2
Severity: critical
Justification: renders box unusable in a proper graphical mode

Hi,
since the 2:2.8.1-2 upgrade, Xorg cannot start on my Intel Corporation
Mobile 945GM/GMS, 943/940GML based laptop.

following gdb backtrace is :

Program received signal SIGSEGV, Segmentation fault.
0x080c43f5 in DGAAvailable (index=0)
at ../../../../hw/xfree86/common/xf86DGA.c:539
in ../../../../hw/xfree86/common/xf86DGA.c
#0  0x080c43f5 in DGAAvailable (index=0)
at ../../../../hw/xfree86/common/xf86DGA.c:539
#1  0x080f08cf in xf86DiDGAInit (pScreen=0x97a6770, dga_address=0)
at ../../../../hw/xfree86/modes/xf86DiDGA.c:196
#2  0x080ed9e0 in xf86CrtcScreenInit (screen=0x97a6770)
at ../../../../hw/xfree86/modes/xf86Crtc.c:773
#3  0xb7b6bbef in I830ScreenInit (scrnIndex=0, pScreen=0x97a6770, argc=1,
argv=0xbfe56484) at ../../src/i830_driver.c:2788
#4  0x080712cd in AddScreen (pfnInit=0xb7b6ad40 I830ScreenInit, argc=1,
argv=0xbfe56484) at ../../dix/main.c:702
#5  0x080adfa6 in InitOutput (pScreenInfo=0x81ef1c0, argc=1, argv=0xbfe56484)
at ../../../../hw/xfree86/common/xf86Init.c:1245
#6  0x080719bb in main (argc=1, argv=0xbfe56484, envp=0xbfe5648c)
at ../../dix/main.c:315

Cheers

-- 
Mathieu



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: [bts-link] source package xserver-xorg-video-intel

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #
 # bts-link upstream status pull for source package xserver-xorg-video-intel
 # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
 #
 user bts-link-upstr...@lists.alioth.debian.org
Setting user to bts-link-upstr...@lists.alioth.debian.org (was 
bts-link-de...@lists.alioth.debian.org).
 # remote status report for #544864 (http://bugs.debian.org/544864)
 #  * https://bugs.freedesktop.org/show_bug.cgi?id=23686
 #  * remote status changed: NEW - RESOLVED
 #  * remote resolution changed: (?) - FIXED
 #  * closed upstream
 tags 544864 + fixed-upstream
Bug #544864 [xserver-xorg-video-intel] xserver-xorg-video-intel: [945GM] lock 
up and corruption on macbook
Added tag(s) fixed-upstream.
 usertags 544864 - status-NEW
Bug#544864: xserver-xorg-video-intel: [945GM] lock up and corruption on macbook
Usertags were: status-NEW.
Usertags are now: .
 usertags 544864 + status-RESOLVED resolution-FIXED
Bug#544864: xserver-xorg-video-intel: [945GM] lock up and corruption on macbook
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



[bts-link] source package xserver-xorg-video-intel

2009-09-28 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xserver-xorg-video-intel
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #544864 (http://bugs.debian.org/544864)
#  * https://bugs.freedesktop.org/show_bug.cgi?id=23686
#  * remote status changed: NEW - RESOLVED
#  * remote resolution changed: (?) - FIXED
#  * closed upstream
tags 544864 + fixed-upstream
usertags 544864 - status-NEW
usertags 544864 + status-RESOLVED resolution-FIXED

thanks


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



[bts-link] source package xorg-server

2009-09-28 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xorg-server
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #529927 (http://bugs.debian.org/529927)
#  * https://bugs.freedesktop.org/show_bug.cgi?id=19470
#  * remote status changed: NEW - ASSIGNED
usertags 529927 - status-NEW
usertags 529927 + status-ASSIGNED

thanks


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548393: xserver-xorg-video-intel: xserver unusably slow after upgrade

2009-09-28 Thread Brice Goglin
John Franck wrote:
 Or if this is too difficult, could you please post the information
 about the bigmem kernel on the bug report before closing it so that
 others can find the same information?

 Thanks very much!
 John

 John Franck wrote:
 I was using the .30 kernel.  I find, however, that after rebooting
 with a non-bigmem kernel that this does work.  Is it possible to set
 the package to conflict with the bigmem kernel packages?  I only
 found the information about the bigmem kernel after several hours of
 web searching.

 Thanks very much for your prompt response + I apologize that I was
 out of town.

 John

Note for the BTS: John was using a -bigmem kernel (PAE enabled) which is
incompatible with GEM up to 2.6.30. So he had to upgrade to 2.6.31 or
use a non-bigmem to get acceleration back.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548765: confirmation of this bug

2009-09-28 Thread Milan Kocian
hi,

I can confirm this bug with intel graphic card.
I see the same backtrace after today's update :

regards


-- 
Milan Kocian



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#547496: backtrace for another crash...

2009-09-28 Thread Thomas Koenig
On Mon, 2009-09-28 at 16:58 +0200, Julien Cristau wrote:

 hw/xfree86/os-support/linux/../shared/sigio.c:110 seems to be:
 SYSCALL (r = select (xf86SigIOMaxFd, ready, 0, 0, to));
 where SYSCALL() is defined as:
 #define SYSCALL(call) while(((call) == -1)  (errno == EINTR))
 
 No idea how this would segfault...

The way I read the backtrace:

#8  0x080b77b5 in xf86SIGIO (sig=29)
at ../../../../../hw/xfree86/os-support/linux/../shared/sigio.c:110
i = value optimized out
ready = {fds_bits = {3072, -65536, 0, 0, 65535, 0, -65536,
16711935, 16711935, 
8454143, 8388736, -65408, 0, 0, 16777215, 16711935, -65281,
16416, 1075839871, 
0, 0, 0, 0, 0, 8064, 0, -2102793, 0, 65535, 0, -1209998559,
0}}
to = {tv_sec = 0, tv_usec = 0}
save_errno = 0
r = -1
#9 signal handler called 
No symbol table info available.
#10 0xb7bea5fd in memmove () from /lib/i686/cmov/libc.so.6
No symbol table info available.
#11 0x08133682 in FlushClient (who=0x8b18ec8, oc=0x8b18e58,
__extraBuf=0x868fba8, 
extraCount=51876) at ../../os/io.c:959
before = value optimized out
remain = value optimized out
i = value optimized out
len = value optimized out

memmove segfaults due to invalid arguments, the signal handler just gets
called afterwards.





-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: reassign 548765 to xserver-xorg-core, reassign 548770 to xserver-xorg-core ...

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 548765 xserver-xorg-core
Bug #548765 [xserver-xorg] xserver-xorg: fails to bring up graphical login or 
switch vt's after upgrade
Bug reassigned from package 'xserver-xorg' to 'xserver-xorg-core'.
Bug No longer marked as found in versions xorg/1:7.4+4.
 reassign 548770 xserver-xorg-core
Bug #548770 [xserver-xorg-video-intel] SIGSEV in DGAAvailable at startup
Bug reassigned from package 'xserver-xorg-video-intel' to 'xserver-xorg-core'.
Bug No longer marked as found in versions xserver-xorg-video-intel/2:2.8.1-2.
 forcemerge 548716 548765 548770
Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV
Bug#548765: xserver-xorg: fails to bring up graphical login or switch vt's 
after upgrade
Bug#548770: SIGSEV in DGAAvailable at startup
Bug#548724: [xserver-xorg-video-intel] Crashes xserver
Bug#548725: xserver-xorg-core: After upgrade to 6.4, radeon driver carsh
Bug#548751: xserver-xorg-core: Upgrade to 2:1.6.4-1 causes segfault at startup 
with intel driver.
Forcibly Merged 548716 548724 548725 548751 548765 548770.


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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#536586: why divert?

2009-09-28 Thread dann frazier
I wonder why the modules divert the system ones anyway - could this
package instead install the modules under /lib/modules/$KVER/updates?
See depmod.conf(5) - there is precedent for this w/ the alsa module
packages in previous releases.
-- 
dann frazier




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548725: Note that git radeon driver still fails.

2009-09-28 Thread Eric Valette
intel git works
radeon git fails
Wonder if I shall screw up another PV trying with nouveau ;-)


-- eric





-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548716: Patch proposed upstream

2009-09-28 Thread Eric Valette
see http://lists.x.org/pipermail/xorg/2009-September/047428.html
-- eric






-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#541254: just segfaults

2009-09-28 Thread Julien Cristau
On Mon, Sep 28, 2009 at 22:57:51 +0200, Norbert Preining wrote:

 gdm too. Downgrading xserver-xorg-core to 2:1.6.3.901-1 fixes this problem.
 
That bug is 548716, and is absolutely unrelated to this one.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#541254: just segfaults

2009-09-28 Thread Brice Goglin
Norbert Preining wrote:
 Package: xserver-xorg-core
 Version: 2:1.6.4-1
 Severity: normal

 gdm too. Downgrading xserver-xorg-core to 2:1.6.3.901-1 fixes this problem.

 I got the following xorg.0.log fini:
 ...
 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.

 Backtrace:
 0: /usr/bin/X(xorg_backtrace+0x26) [0x4edfe6]
 1: /usr/bin/X(xf86SigHandler+0x39) [0x483699]
 2: /lib/libc.so.6 [0x7ff22bf43db0]
 3: /usr/bin/X(DGAAvailable+0x39) [0x4823c9]
 4: /usr/bin/X(xf86DiDGAInit+0x30) [0x4ae200]
 5: /usr/bin/X(xf86CrtcScreenInit+0x10d) [0x4aafad]
 6: /usr/lib/xorg/modules/drivers//intel_drv.so [0x7ff22a74a64f]
 7: /usr/bin/X(AddScreen+0x1c6) [0x432ac6]
 8: /usr/bin/X(InitOutput+0x241) [0x46d361]
 9: /usr/bin/X(main+0x200) [0x4331d0]
 10: /lib/libc.so.6(__libc_start_main+0xe6) [0x7ff22bf305c6]
   

This has nothing to do with this bug. This is another one that has been
reported a hundred times today already.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548725: Note that git radeon driver still fails.

2009-09-28 Thread Julien Cristau
On Mon, Sep 28, 2009 at 23:19:33 +0200, Eric Valette wrote:

 intel git works
 radeon git fails
 Wonder if I shall screw up another PV trying with nouveau ;-)

intel git removed the call to xf86DiDGAInit.

Cheers,
Julien



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#541254: just segfaults

2009-09-28 Thread Norbert Preining
On Mo, 28 Sep 2009, Brice Goglin wrote:
 This has nothing to do with this bug. This is another one that has been
 reported a hundred times today already.

On Mo, 28 Sep 2009, Julien Cristau wrote:
 That bug is 548716, and is absolutely unrelated to this one.

Thanks, but that was the first and only one shown by reportbug.

Best wishes

Norbert

---
Dr. Norbert Preining prein...@logic.atVienna University of Technology
Debian Developer prein...@debian.org Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
KANTURK (n.)
An extremely intricate knot originally used for belaying the
topgallant foresheets of a gaff-rigged China clipper, and now more
commonly observed when trying to get an old kite out of the cupboard
under the stairs.
--- Douglas Adams, The Meaning of Liff



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548770: SIGSEV in DGAAvailable at startup

2009-09-28 Thread Mathieu GELI
true, it comes from xserver-xorg-core move from 1.6.3.901-1 to 1.6.4-1.
Downgading to 1.6.3.901 mitigate the problem waiting for an upstream fix.

Cheers

-- 
Mathieu



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548822: xserver-xorg: X server crashes on startup

2009-09-28 Thread Robert Norris
Package: xserver-xorg
Version: 1:7.4+4
Severity: important


After an upgrade yesterday X does not start and leaves the system in an
unusable state (machine still running, but screen blank and keyboard
unresponsive).


-- 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 Sep 17 14:49 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1689944 Sep 28 15:32 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Mobility Radeon HD 3650

/etc/X11/xorg.conf does not exist.

Xorg X server log files on system:
-rw-r--r-- 1 root root 36853 Sep 28 22:28 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.4
Release Date: 2009-9-27
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.31 i686 Debian
Current Operating System: Linux junai 2.6.30-2-686-bigmem #1 SMP Sat Sep 26 
02:30:18 UTC 2009 i686
Build Date: 28 September 2009  05:25:32AM
xorg-server 2:1.6.4-1 (bgog...@debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Mon Sep 28 22:28:32 2009
(II) Loader magic: 0x640
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(--) using VT number 2

(--) PCI:*(0:1:0:0) 1002:9591:103c:30e7 ATI Technologies Inc Mobility Radeon HD 
3650 rev 0, Mem @ 0xc000/268435456, 0xd830/65536, I/O @ 0x7000/256, 
BIOS @ 0x/131072
(==) Using default built-in configuration (30 lines)
(==) --- Start of built-in configuration ---
Section Device
Identifier  Builtin Default ati Device 0
Driver  ati
EndSection
Section Screen
Identifier  Builtin Default ati Screen 0
Device  Builtin Default ati Device 0
EndSection
Section Device
Identifier  Builtin Default vesa Device 0
Driver  vesa
EndSection
Section Screen
Identifier  Builtin Default vesa Screen 0
Device  Builtin Default vesa Device 0
EndSection
Section Device
Identifier  Builtin Default fbdev Device 0
Driver  fbdev
EndSection
Section Screen
Identifier  Builtin Default fbdev Screen 0
Device  Builtin Default fbdev Device 0
EndSection
Section ServerLayout
Identifier  Builtin Default Layout
Screen  Builtin Default ati Screen 0
Screen  Builtin Default vesa Screen 0
Screen  Builtin Default fbdev Screen 0
EndSection
(==) --- End of built-in configuration ---
(==) ServerLayout Builtin Default Layout
(**) |--Screen Builtin Default ati Screen 0 (0)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default ati Device 0
(==) No monitor specified for screen Builtin Default ati Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default vesa Screen 0 (1)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default vesa Device 0
(==) No monitor specified for screen Builtin Default vesa Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default fbdev Screen 0 (2)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default fbdev Device 0
(==) No monitor specified for screen Builtin Default fbdev Screen 0.
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable 
AllowEmptyInput.
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) System resource ranges:
[0] -1  0   

Processed: reassign 548822 to xserver-xorg-core, forcibly merging 548716 548822, affects 548716

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 548822 xserver-xorg-core
Bug #548822 [xserver-xorg] xserver-xorg: X server crashes on startup
Bug reassigned from package 'xserver-xorg' to 'xserver-xorg-core'.
Bug No longer marked as found in versions xorg/1:7.4+4.
 forcemerge 548716 548822
Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV
Bug#548822: xserver-xorg: X server crashes on startup
Bug#548724: [xserver-xorg-video-intel] Crashes xserver
Bug#548725: xserver-xorg-core: After upgrade to 6.4, radeon driver carsh
Bug#548751: xserver-xorg-core: Upgrade to 2:1.6.4-1 causes segfault at startup 
with intel driver.
Bug#548765: xserver-xorg: fails to bring up graphical login or switch vt's 
after upgrade
Bug#548770: SIGSEV in DGAAvailable at startup
Forcibly Merged 548716 548724 548725 548751 548765 548770 548822.

 affects 548716 xserver-xorg
Bug #548716 [xserver-xorg-core] xserver-xorg-core: X server crashes upon 
startup with SEGV
Bug #548724 [xserver-xorg-core] [xserver-xorg-video-intel] Crashes xserver
Bug #548725 [xserver-xorg-core] xserver-xorg-core: After upgrade to 6.4, radeon 
driver carsh
Bug #548751 [xserver-xorg-core] xserver-xorg-core: Upgrade to 2:1.6.4-1 causes 
segfault at startup with intel driver.
Bug #548765 [xserver-xorg-core] xserver-xorg: fails to bring up graphical login 
or switch vt's after upgrade
Bug #548770 [xserver-xorg-core] SIGSEV in DGAAvailable at startup
Bug #548822 [xserver-xorg-core] xserver-xorg: X server crashes on startup
Removed indication that 548716 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon
Added indication that 548716 affects xserver-xorg
Removed indication that 548724 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon
Added indication that 548724 affects xserver-xorg
Removed indication that 548725 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon
Added indication that 548725 affects xserver-xorg
Removed indication that 548751 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon
Added indication that 548751 affects xserver-xorg
Removed indication that 548765 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon
Added indication that 548765 affects xserver-xorg
Removed indication that 548770 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon
Added indication that 548770 affects xserver-xorg
Removed indication that 548822 affects xserver-xorg-video-intel and 
xserver-xorg-video-radeon
Added indication that 548822 affects xserver-xorg

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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548822: xserver-xorg: 'Caught signal 11. Server aborting'

2009-09-28 Thread TheGZeus
Package: xserver-xorg
Version: 1:7.4+4
Severity: normal

I have tried booting with an xorg.conf that does no more than to specify the 
intel driver, and with no xorg.conf
Same error either way.

-- 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 Sep 25 14:53 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1689944 Sep 28 00:32 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 4 Series Chipset 
Integrated Graphics Controller (rev 03)

/etc/X11/xorg.conf does not exist.

Xorg X server log files on system:
-rw-r--r-- 1 root root 21540 Sep 28 18:31 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.4
Release Date: 2009-9-27
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.31 i686 Debian
Current Operating System: Linux cadets 2.6.31-1.slh.1-sidux-686 #1 SMP PREEMPT 
Thu Sep 24 21:04:02 UTC 2009 i686
Build Date: 28 September 2009  05:25:32AM
xorg-server 2:1.6.4-1 (bgog...@debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Mon Sep 28 18:31:32 2009
(II) Loader magic: 0x640
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(--) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2e22:1028:0283 Intel Corporation 4 Series Chipset 
Integrated Graphics Controller rev 3, Mem @ 0xfe40/4194304, 
0xd000/268435456, I/O @ 0xdc00/8
(==) Using default built-in configuration (39 lines)
(==) --- Start of built-in configuration ---
Section Device
Identifier  Builtin Default intel Device 0
Driver  intel
EndSection
Section Screen
Identifier  Builtin Default intel Screen 0
Device  Builtin Default intel Device 0
EndSection
Section Device
Identifier  Builtin Default i810 Device 0
Driver  i810
EndSection
Section Screen
Identifier  Builtin Default i810 Screen 0
Device  Builtin Default i810 Device 0
EndSection
Section Device
Identifier  Builtin Default vesa Device 0
Driver  vesa
EndSection
Section Screen
Identifier  Builtin Default vesa Screen 0
Device  Builtin Default vesa Device 0
EndSection
Section Device
Identifier  Builtin Default fbdev Device 0
Driver  fbdev
EndSection
Section Screen
Identifier  Builtin Default fbdev Screen 0
Device  Builtin Default fbdev Device 0
EndSection
Section ServerLayout
Identifier  Builtin Default Layout
Screen  Builtin Default intel Screen 0
Screen  Builtin Default i810 Screen 0
Screen  Builtin Default vesa Screen 0
Screen  Builtin Default fbdev Screen 0
EndSection
(==) --- End of built-in configuration ---
(==) ServerLayout Builtin Default Layout
(**) |--Screen Builtin Default intel Screen 0 (0)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default intel Device 0
(==) No monitor specified for screen Builtin Default intel Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default i810 Screen 0 (1)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default i810 Device 0
(==) No monitor specified for screen Builtin Default i810 Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default vesa Screen 0 (2)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default vesa Device 0
(==) No monitor specified for screen Builtin Default vesa Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default fbdev Screen 0 (3)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default fbdev Device 0
(==) No monitor specified for screen Builtin Default fbdev Screen 0.
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,

Processed: affects 548716

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 affects 548716 xserver-xorg xserver-xorg-video-intel xserver-xorg-video-radeon
Bug #548716 [xserver-xorg-core] xserver-xorg-core: X server crashes upon 
startup with SEGV
Bug #548724 [xserver-xorg-core] [xserver-xorg-video-intel] Crashes xserver
Bug #548725 [xserver-xorg-core] xserver-xorg-core: After upgrade to 6.4, radeon 
driver carsh
Bug #548751 [xserver-xorg-core] xserver-xorg-core: Upgrade to 2:1.6.4-1 causes 
segfault at startup with intel driver.
Bug #548765 [xserver-xorg-core] xserver-xorg: fails to bring up graphical login 
or switch vt's after upgrade
Bug #548770 [xserver-xorg-core] SIGSEV in DGAAvailable at startup
Bug #548822 [xserver-xorg-core] xserver-xorg: X server crashes on startup
Added indication that 548716 affects xserver-xorg-video-intel, 
xserver-xorg-video-radeon, and xserver-xorg
Added indication that 548724 affects xserver-xorg-video-intel, 
xserver-xorg-video-radeon, and xserver-xorg
Added indication that 548725 affects xserver-xorg-video-intel, 
xserver-xorg-video-radeon, and xserver-xorg
Added indication that 548751 affects xserver-xorg-video-intel, 
xserver-xorg-video-radeon, and xserver-xorg
Added indication that 548765 affects xserver-xorg-video-intel, 
xserver-xorg-video-radeon, and xserver-xorg
Added indication that 548770 affects xserver-xorg-video-intel, 
xserver-xorg-video-radeon, and xserver-xorg
Added indication that 548822 affects xserver-xorg-video-intel, 
xserver-xorg-video-radeon, and xserver-xorg

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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548321: #548321 [xterm] abort() a bit after catting binary file

2009-09-28 Thread Thomas Dickey
Is this running in koi8rxterm (which sets locale to ru_RU.KOI8-R and
turns on the -k8 option), or just in xterm by itself?

Just cat'ing the file and resizing, I've not (yet) broken it.

-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#548822: same error after reboot

2009-09-28 Thread gzeus
identical, or nearly identical log after reboot, including

...
(WW) intel(0): Register 0x61110 (PORT_HOTPLUG_EN) changed from 0x to 
0x0120
(WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x to 
0x0206
(WW) intel(0): PIPEASTAT before: status:
(WW) intel(0): PIPEASTAT after: status: VSYNC_INT_STATUS SVBLANK_INT_STATUS 
VBLANK_INT_STATUS

...
(WW) intel(0): ESR is 0x0010, page table error
(WW) intel(0): PGTBL_ER is 0x0010, CS instruction GTT PTE
(WW) intel(0): Existing errors found in hardware state.

somewhat worrisome that the hardware state errors persist across a reboot.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548836: xserver-xorg-core: R423, crash on startup after upgrade 1.6.3-1.6.4

2009-09-28 Thread deepfire
Package: xserver-xorg-core
Version: 2:1.6.4-1
Severity: important



-- 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 Feb  4  2009 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1925072 Sep 28 10:30 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
05:00.0 VGA compatible controller: ATI Technologies Inc R423 UK [Radeon X800SE 
(PCIE)]

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1230 Aug 16 20:31 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org 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 xorg.conf manual page.
# (Type man 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 InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us,ru
Option  XkbOptionsgrp:caps_toggle
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
EndSection

Section Device
Identifier  Configured Video Device
Option  AccelMethod EXA
EndSection

Section Monitor
Identifier  Configured Monitor
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
EndSection

Section ServerFlags
Option  DontZap   yes
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 41278 Sep 29 05:58 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.6.4
Release Date: 2009-9-27
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.30.8-dsa-amd64 x86_64 Debian
Current Operating System: Linux betelheise 2.6.30-1-amd64 #1 SMP Sat Aug 15 
18:09:19 UTC 2009 x86_64
Build Date: 28 September 2009  06:29:58AM
xorg-server 2:1.6.4-1 (bui...@brahms.debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Tue Sep 29 05:58:27 2009
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Configured Video Device
(**) Option DontZap yes
(==) Automatically adding devices
(==) Automatically enabling devices
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/cyrillic,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable 
AllowEmptyInput.
(II) Loader magic: 0x3540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0:5:0:0) 1002:554b:174b:0302 ATI Technologies Inc R423 UK [Radeon 
X800SE (PCIE)] rev 0, Mem @ 0xe000/268435456, 0xf100/65536, I/O @ 
0xc000/256, BIOS @ 0x/131072
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) System resource ranges:
[0] -1  0   0x - 0x (0x1) MX[B]
[1] -1  0   0x000f - 0x000f (0x1) MX[B]
[2] -1  0   0x000c - 0x000e (0x3) MX[B]
[3] -1  0   0x - 0x0009 (0xa) MX[B]
[4] -1  0   0x - 0x (0x1) MX[B]
[5] -1  0   0x000f - 0x000f (0x1) MX[B]
[6] -1  0   0x000c 

Bug#548836: R423, crash on startup after upgrade 1.6.3-1.6.4

2009-09-28 Thread Samium Gromoff

It's specifically 1.6.3.901-1 - 1.6.4-1



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-intel: Changes to 'upstream-unstable'

2009-09-28 Thread Brice Goglin
Rebased ref, commits from common ancestor:
commit 2841a4cd8c6c64fdf4b2203ab73b57b38a50f651
Author: Carl Worth cwo...@cworth.org
Date:   Mon Sep 28 20:03:11 2009 -0700

Increment version to 2.9.0

And add a reminder to RELEASING that the incremented version number
needs to be committed, (since I forgot to do this with 2.8.99.902).

diff --git a/RELEASING b/RELEASING
index e32ecf6..afc9f43 100644
--- a/RELEASING
+++ b/RELEASING
@@ -19,7 +19,8 @@ The process for releasing a new tarball is as follows:
 3. Update your module version (usually found in configure.ac)
 
$ vi configure.ac # bump version
-$ git push origin # make sure you're on the release branch
+   $ git commit
+   $ git push origin # make sure you're on the release branch
 
 4. Verify your module builds
 
diff --git a/configure.ac b/configure.ac
index becd260..7d80c35 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-intel],
-2.8.99.902,
+2.9.0,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-video-intel)
 

commit a790aff4fef7d0c86b7b9c0da4afdc9c0aba6636
Author: Carl Worth cwo...@cworth.org
Date:   Mon Sep 28 20:02:28 2009 -0700

NEWS: Add notes for the 2.9.0 release.

Just renamed notes as from 2.8.99.902.

diff --git a/NEWS b/NEWS
index 6b1f3b2..e0033e2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,16 +1,16 @@
-Snapshot 2.8.99.902 (2009-09-22)
-
-This is expected to be the final release candidate for the upcoming
-2.9.0 release. If there are no serious problems discovered in this
-release candidate then the same code will become 2.9.0 soon. So please
-let us know if you test this release candidate and find any problems.
+Release 2.9.0 (2009-09-28)
+==
+We are pleased to announce the 2.9.0 release of the xf86-video-intel
+driver. (If you have been following along at home, this release is
+identical to the 2.8.99.902 release candidate other than the version
+number).
 
-New features in 2.8.99.902 compared to 2.8
---
+New features in 2.9 compared to 2.8
+---
 * Support for the B43 chipset.
 
-Major fixes in 2.8.99.902 compared to 2.8.0

+Major fixes in 2.9.0 compared to 2.8.0
+--
 * Multiple fixes to make the driver stable for 8xx chipsets, (855GM,
   865G, etc.). The 2.8 driver series was extremely unstable with many
   of these chipsets.

commit a92bbcc94904684e7709b3ddaad82bc04607af26
Author: Carl Worth cwo...@cworth.org
Date:   Tue Sep 22 17:08:23 2009 -0700

Increment version to 2.8.99.902

diff --git a/configure.ac b/configure.ac
index e9d89af..becd260 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-intel],
-2.8.99.901,
+2.8.99.902,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-video-intel)
 

commit ae00a0923717caec6d0dad94527da26397bd12ce
Author: Carl Worth cwo...@cworth.org
Date:   Tue Sep 22 15:14:38 2009 -0700

NEWS: Add notes for 2.8.99.902

diff --git a/NEWS b/NEWS
index 9bd553a..6b1f3b2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,44 @@
+Snapshot 2.8.99.902 (2009-09-22)
+
+This is expected to be the final release candidate for the upcoming
+2.9.0 release. If there are no serious problems discovered in this
+release candidate then the same code will become 2.9.0 soon. So please
+let us know if you test this release candidate and find any problems.
+
+New features in 2.8.99.902 compared to 2.8
+--
+* Support for the B43 chipset.
+
+Major fixes in 2.8.99.902 compared to 2.8.0
+---
+* Multiple fixes to make the driver stable for 8xx chipsets, (855GM,
+  865G, etc.). The 2.8 driver series was extremely unstable with many
+  of these chipsets.
+
+  https://bugs.freedesktop.org/show_bug.cgi?id=22904 (and many duplicates)
+  https://bugs.freedesktop.org/show_bug.cgi?id=22947
+
+* Add support for BACKLIGHT property when using kernel modesetting
+  (KMS). This allows backlight adjustment with programs such as
+  xbacklight -set percentage or xrandr --set BACKLIGHT value.
+
+  https://bugs.freedesktop.org/show_bug.cgi?id=20963
+
+* Fix so that xrandr --scale works when using KMS.
+
+  https://bugs.freedesktop.org/show_bug.cgi?id=22893
+
+* Fix segfaults of X server when logging out.
+
+  https://bugs.freedesktop.org/show_bug.cgi?id=20516
+
+* Avoid falling back to software for 1-bit alpha-only masks.
+
+  https://bugs.freedesktop.org/show_bug.cgi?id=23184
+
+* Fix pixel sampling position for 8xx chipsets, (fixes some cairo-test
+  suite failures).
+
 Snapshot 2.8.99.901 (2009-09-09)
 
 This is the first release candidate in preparation for the 

xserver-xorg-video-intel: Changes to 'refs/tags/xserver-xorg-video-intel-2_2.9.0-1'

2009-09-28 Thread Brice Goglin
Tag 'xserver-xorg-video-intel-2_2.9.0-1' created by Brice Goglin 
bgog...@debian.org at 2009-09-29 05:22 +

Tagging upload of xserver-xorg-video-intel 2:2.9.0-1 to unstable.

Changes since xserver-xorg-video-intel-2_2.8.99.902-1:
Brice Goglin (3):
  Merge tag '2.9.0' into debian-unstable
  New upstream release
  Prepare changelog for upload

Carl Worth (3):
  Increment version to 2.8.99.902
  NEWS: Add notes for the 2.9.0 release.
  Increment version to 2.9.0

---
 ChangeLog|   23 +++
 NEWS |   20 ++--
 RELEASING|3 ++-
 configure.ac |2 +-
 debian/changelog |6 ++
 5 files changed, 42 insertions(+), 12 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-intel: Changes to 'debian-unstable'

2009-09-28 Thread Brice Goglin
 ChangeLog  |  802 +++-
 NEWS   |   72 
 RELEASING  |3 
 configure.ac   |   27 
 debian/changelog   |   13 
 src/bios_reader/bios_reader.c  |   36 
 src/ch7017/ch7017.c|6 
 src/ch7xxx/ch7xxx.c|6 
 src/common.h   |7 
 src/drmmode_display.c  |  301 ++-
 src/i810_driver.c  |  117 -
 src/i810_hwmc.c|1 
 src/i810_reg.h |   41 
 src/i810_video.c   |1 
 src/i830.h |   14 
 src/i830_bios.h|   38 
 src/i830_cursor.c  |1 
 src/i830_debug.c   |   43 
 src/i830_display.c |   38 
 src/i830_driver.c  |  142 -
 src/i830_hwmc.c|4 
 src/i830_i2c.c |2 
 src/i830_lvds.c|1 
 src/i830_memory.c  |   77 
 src/i830_quirks.c  |2 
 src/i830_reg.h |2 
 src/i830_render.c  |  318 +--
 src/i830_sdvo.c|3 
 src/i830_tv.c  |2 
 src/i830_uxa.c |5 
 src/i830_video.c   |5 
 src/i915_hwmc.c|   21 
 src/i915_render.c  |  250 ++
 src/i915_video.c   |4 
 src/i965_hwmc.c|1 
 src/i965_hwmc.h|1 
 src/i965_render.c  |   46 
 src/ivch/ivch.c|6 
 src/reg_dumper/Makefile.am |9 
 src/reg_dumper/audio.c |  454 
 src/sil164/sil164.c|6 
 src/tfp410/tfp410.c|6 
 src/xvmc/i965_xvmc.c   |2 
 src/xvmc/shader/mc/Makefile.am |   25 
 src/xvmc/shader/mc/dual_prime.g4b.gen5 | 2486 +
 src/xvmc/shader/mc/dual_prime_igd.g4b.gen5 | 1234 
 src/xvmc/shader/mc/field_backward.g4b.gen5 | 1341 +
 src/xvmc/shader/mc/field_backward_igd.g4b.gen5 |   62 
 src/xvmc/shader/mc/field_f_b.g4b.gen5  | 2486 +
 src/xvmc/shader/mc/field_f_b_igd.g4b.gen5  |  121 +
 src/xvmc/shader/mc/field_forward.g4b.gen5  | 1340 +
 src/xvmc/shader/mc/field_forward_igd.g4b.gen5  |   62 
 src/xvmc/shader/mc/frame_backward.g4b.gen5 |  716 +++
 src/xvmc/shader/mc/frame_backward_igd.g4b.gen5 |   15 
 src/xvmc/shader/mc/frame_f_b.g4b.gen5  | 1257 
 src/xvmc/shader/mc/frame_f_b_igd.g4b.gen5  |   51 
 src/xvmc/shader/mc/frame_forward.g4b.gen5  |  715 +++
 src/xvmc/shader/mc/frame_forward_igd.g4b.gen5  |   15 
 src/xvmc/shader/mc/ipicture.g4b.gen5   |  125 +
 src/xvmc/shader/mc/ipicture_igd.g4b.gen5   |   75 
 src/xvmc/shader/mc/lib_igd.g4b.gen5|  558 +
 src/xvmc/shader/mc/null.g4b.gen5   |   17 
 src/xvmc/shader/vld/Makefile.am|   15 
 src/xvmc/shader/vld/field_backward.g4b.gen5|  553 +
 src/xvmc/shader/vld/field_f_b.g4b.gen5 | 1007 ++
 src/xvmc/shader/vld/field_forward.g4b.gen5 |  555 +
 src/xvmc/shader/vld/frame_backward.g4b.gen5|  369 +++
 src/xvmc/shader/vld/frame_f_b.g4b.gen5 |  675 ++
 src/xvmc/shader/vld/frame_forward.g4b.gen5 |  369 +++
 src/xvmc/shader/vld/ipicture.g4b.gen5  |  313 +++
 src/xvmc/shader/vld/lib.g4b.gen5   |  307 +++
 src/xvmc/xvmc_vld.c|  137 +
 uxa/uxa-accel.c|   13 
 uxa/uxa-priv.h |   14 
 uxa/uxa-render.c   |  382 ++-
 uxa/uxa.c  |7 
 uxa/uxa.h  |   10 
 77 files changed, 19719 insertions(+), 644 deletions(-)

New commits:
commit de10664844faf0d83c52f4a987873d8fae75e9f3
Author: Brice Goglin bgog...@debian.org
Date:   Tue Sep 29 07:17:29 2009 +0200

Prepare changelog for upload

diff --git a/debian/changelog b/debian/changelog
index 7afb94e..9b1eaf2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-xserver-xorg-video-intel (2:2.9.0-1) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.9.0-1) unstable; urgency=low
 
   

Processing of xserver-xorg-video-intel_2.9.0-1_i386.changes

2009-09-28 Thread Archive Administrator
xserver-xorg-video-intel_2.9.0-1_i386.changes uploaded successfully to localhost
along with the files:
  xserver-xorg-video-intel_2.9.0-1.dsc
  xserver-xorg-video-intel_2.9.0.orig.tar.gz
  xserver-xorg-video-intel_2.9.0-1.diff.gz
  xserver-xorg-video-intel_2.9.0-1_i386.deb
  xserver-xorg-video-intel-dbg_2.9.0-1_i386.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548846: Crashes at startup after upgrade from 1.6.3.901 to 1.6.4

2009-09-28 Thread Sebastian Dröge
Package: xserver-xorg-core
Version: 1.6.4

Hi,
after upgrade of xserver-xorg-core to 1.6.4 from 1.6.3.901 I get crashes
on startup. Log file with stacktrace is attached.

An upgrade of the intel driver from 2:2.8.1-2 to 2:2.8.99.902-1 (the
experimental version) fixed it.

X.Org X Server 1.6.4
Release Date: 2009-9-27
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.30.8-dsa-amd64 x86_64 Debian
Current Operating System: Linux odin 2.6.30-1-amd64 #1 SMP Sat Aug 15 18:09:19 
UTC 2009 x86_64
Build Date: 28 September 2009  06:29:58AM
xorg-server 2:1.6.4-1 (bui...@brahms.debian.org) 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Tue Sep 29 07:15:00 2009
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Configured Video Device
(**) |--Input Device Generic Keyboard
(**) |--Input Device Configured Mouse
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) `fonts.dir' not found (or not valid) in /usr/share/fonts/X11/misc.
Entry deleted from font path.
(Run 'mkfontdir' on /usr/share/fonts/X11/misc).
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/Type1,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable 
AllowEmptyInput.
(WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' 
will be disabled.
(WW) Disabling Generic Keyboard
(II) Loader magic: 0x3540
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2a02:1028:0209 Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller rev 12, Mem @ 0xfea0/1048576, 
0xe000/268435456, I/O @ 0xeff8/8
(II) Open ACPI successful (/var/run/acpid.socket)
(II) System resource ranges:
[0] -1  0   0x - 0x (0x1) MX[B]
[1] -1  0   0x000f - 0x000f (0x1) MX[B]
[2] -1  0   0x000c - 0x000e (0x3) MX[B]
[3] -1  0   0x - 0x0009 (0xa) MX[B]
[4] -1  0   0x - 0x (0x1) IX[B]
[5] -1  0   0x - 0x (0x1) IX[B]
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.6.4, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension SELinux
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: dbe
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor=X.Org Foundation
compiled for 1.6.4, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: glx
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor=X.Org Foundation
compiled for 1.6.4, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: record
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor=X.Org Foundation
compiled for 1.6.4, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) 

Processed: severity of 548836 is grave, forcibly merging 548716 548836

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 548836 grave
Bug #548836 [xserver-xorg-core] xserver-xorg-core: R423, crash on startup after 
upgrade 1.6.3-1.6.4
Severity set to 'grave' from 'important'

 forcemerge 548716 548836
Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV
Bug#548836: xserver-xorg-core: R423, crash on startup after upgrade 1.6.3-1.6.4
Bug#548724: [xserver-xorg-video-intel] Crashes xserver
Bug#548725: xserver-xorg-core: After upgrade to 6.4, radeon driver carsh
Bug#548751: xserver-xorg-core: Upgrade to 2:1.6.4-1 causes segfault at startup 
with intel driver.
Bug#548765: xserver-xorg: fails to bring up graphical login or switch vt's 
after upgrade
Bug#548770: SIGSEV in DGAAvailable at startup
Bug#548822: xserver-xorg: X server crashes on startup
Forcibly Merged 548716 548724 548725 548751 548765 548770 548822 548836.


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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: severity of 548846 is grave, forcibly merging 548716 548846

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 548846 grave
Bug #548846 [xserver-xorg-core] Crashes at startup after upgrade from 1.6.3.901 
to 1.6.4
Severity set to 'grave' from 'normal'

 forcemerge 548716 548846
Bug#548716: xserver-xorg-core: X server crashes upon startup with SEGV
Bug#548846: Crashes at startup after upgrade from 1.6.3.901 to 1.6.4
Bug#548724: [xserver-xorg-video-intel] Crashes xserver
Bug#548725: xserver-xorg-core: After upgrade to 6.4, radeon driver carsh
Bug#548751: xserver-xorg-core: Upgrade to 2:1.6.4-1 causes segfault at startup 
with intel driver.
Bug#548765: xserver-xorg: fails to bring up graphical login or switch vt's 
after upgrade
Bug#548770: SIGSEV in DGAAvailable at startup
Bug#548822: xserver-xorg: X server crashes on startup
Bug#548836: xserver-xorg-core: R423, crash on startup after upgrade 1.6.3-1.6.4
Forcibly Merged 548716 548724 548725 548751 548765 548770 548822 548836 548846.


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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



xserver-xorg-video-intel_2.9.0-1_i386.changes ACCEPTED

2009-09-28 Thread Archive Administrator

Accepted:
xserver-xorg-video-intel-dbg_2.9.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel-dbg_2.9.0-1_i386.deb
xserver-xorg-video-intel_2.9.0-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.9.0-1.diff.gz
xserver-xorg-video-intel_2.9.0-1.dsc
  to pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.9.0-1.dsc
xserver-xorg-video-intel_2.9.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.9.0-1_i386.deb
xserver-xorg-video-intel_2.9.0.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.9.0.orig.tar.gz


Override entries for your package:
xserver-xorg-video-intel-dbg_2.9.0-1_i386.deb - extra debug
xserver-xorg-video-intel_2.9.0-1.dsc - source x11
xserver-xorg-video-intel_2.9.0-1_i386.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: your mail

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 548846 grave
Bug #548846 [xserver-xorg-core] Crashes at startup after upgrade from 1.6.3.901 
to 1.6.4
Bug #548716 [xserver-xorg-core] xserver-xorg-core: X server crashes upon 
startup with SEGV
Bug #548724 [xserver-xorg-core] [xserver-xorg-video-intel] Crashes xserver
Bug #548725 [xserver-xorg-core] xserver-xorg-core: After upgrade to 6.4, radeon 
driver carsh
Bug #548751 [xserver-xorg-core] xserver-xorg-core: Upgrade to 2:1.6.4-1 causes 
segfault at startup with intel driver.
Bug #548765 [xserver-xorg-core] xserver-xorg: fails to bring up graphical login 
or switch vt's after upgrade
Bug #548770 [xserver-xorg-core] SIGSEV in DGAAvailable at startup
Bug #548822 [xserver-xorg-core] xserver-xorg: X server crashes on startup
Bug #548836 [xserver-xorg-core] xserver-xorg-core: R423, crash on startup after 
upgrade 1.6.3-1.6.4
Ignoring request to change severity of Bug 548846 to the same value.
Ignoring request to change severity of Bug 548716 to the same value.
Ignoring request to change severity of Bug 548724 to the same value.
Ignoring request to change severity of Bug 548725 to the same value.
Ignoring request to change severity of Bug 548751 to the same value.
Ignoring request to change severity of Bug 548765 to the same value.
Ignoring request to change severity of Bug 548770 to the same value.
Ignoring request to change severity of Bug 548822 to the same value.
Ignoring request to change severity of Bug 548836 to the same value.

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 debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org