Bug#523493: upgraded to 2.7.0, problem persists

2009-04-16 Thread Arno Lepisk
Hi

I just upgraded to version 2.7.0 but X still crashes when using Xv,
but this time the window doesn't turn blue but is filled with
static...
Also, the backtrace is slightly different:

0: /usr/bin/X(xorg_backtrace+0x26) [0x4ef016]
1: /usr/bin/X(xf86SigHandler+0x39) [0x476509]
2: /lib/libc.so.6 [0x7f7f9d09d190]
3: /lib/libc.so.6(memcpy+0x15b) [0x7f7f9d0e802b]
4: /usr/lib/xorg/modules/drivers//intel_drv.so [0x7f7f9b0e662f]
5: /usr/lib/xorg/modules/drivers//intel_drv.so [0x7f7f9b0eb5f6]
6: /usr/bin/X [0x4997a6]
7: /usr/lib/xorg/modules/extensions//libextmod.so [0x7f7f9bff52cb]
8: /usr/bin/X(Dispatch+0x364) [0x44d274]
9: /usr/bin/X(main+0x3bd) [0x43316d]
10: /lib/libc.so.6(__libc_start_main+0xe6) [0x7f7f9d0895a6]
11: /usr/bin/X [0x4325f9]


I also discrovered another log message written to /var/log/gdm/:0.log.1:
../../../libdrm/intel/intel_bufmgr_gem.c:864: Error setting memory
domains 0 (0040 0040): Inappropriate ioctl for device .

/A
-- 
Arno Lepisk, a...@lepisk.se
#define swap(a,b) (a^=b^=a^=b) //C
void inline swap(int &a, int &b) { a^=b^=a^=b; } //C++



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



mesa: Changes to 'ubuntu'

2009-04-16 Thread Mario Limonciello
 debian/changelog |   10 +
 debian/patches/107_enable_all_radeon_fbconfigs.patch |   34 +++
 debian/patches/series|1 
 3 files changed, 45 insertions(+)

New commits:
commit 8defc3d2670be7ebe935cd85cbb198c67470bc04
Author: Mario Limonciello 
Date:   Thu Apr 16 23:33:05 2009 -0500

Add 107_enable_all_radeon_fbconfigs.patch.  Resolves X errors causing fonts 
and most QT3 widgets from being shown.  These regressions were caused by 
changes in behavior for Xorg server 1.5.  This patch is based on a similar 
patch that was applied to swrast previously, 104_swrast_fbconfigs.patch. (LP: 
#341898)

diff --git a/debian/changelog b/debian/changelog
index 55d7971..e48399d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+mesa (7.4-0ubuntu3) jaunty; urgency=low
+
+  * Add 107_enable_all_radeon_fbconfigs.patch.  Resolves X errors causing fonts
+and most QT3 widgets from being shown.  These regressions were caused by
+changes in behavior for Xorg server 1.5.  This patch is based on a similar
+patch that was applied to swrast previously, 104_swrast_fbconfigs.patch.
+(LP: #341898)
+
+ -- Mario Limonciello   Thu, 16 Apr 2009 23:24:34 -0500
+
 mesa (7.4-0ubuntu2) jaunty; urgency=low
 
   * Add 105_glXWaitX_segfaults.patch. Resolves segfaults from unitialized
diff --git a/debian/patches/107_enable_all_radeon_fbconfigs.patch 
b/debian/patches/107_enable_all_radeon_fbconfigs.patch
new file mode 100644
index 000..d726c35
--- /dev/null
+++ b/debian/patches/107_enable_all_radeon_fbconfigs.patch
@@ -0,0 +1,34 @@
+diff --git a/src/mesa/drivers/dri/radeon/radeon_screen.c 
b/src/mesa/drivers/dri/radeon/radeon_screen.c
+index ff65e6b..791daec 100644
+--- a/src/mesa/drivers/dri/radeon/radeon_screen.c
 b/src/mesa/drivers/dri/radeon/radeon_screen.c
+@@ -1159,6 +1159,8 @@ static void radeonDestroyContext(__DRIcontextPrivate * 
driContextPriv)
+ static const __DRIconfig **
+ radeonInitScreen(__DRIscreenPrivate *psp)
+ {
++const __DRIconfig **configs8, **configs16, **configs24, **configs32;
++
+ #if !RADEON_COMMON
+static const char *driver_name = "Radeon";
+static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
+@@ -1206,11 +1208,15 @@ radeonInitScreen(__DRIscreenPrivate *psp)
+if (!radeonInitDriver(psp))
+return NULL;
+ 
+-   return radeonFillInModes( psp,
+-   dri_priv->bpp,
+-   (dri_priv->bpp == 16) ? 16 : 24,
+-   (dri_priv->bpp == 16) ? 0  : 8,
+-   (dri_priv->backOffset != dri_priv->depthOffset) );
++configs8  = radeonFillInModes(psp,  8,  8, 0, (dri_priv->backOffset != 
dri_priv->depthOffset));
++configs16 = radeonFillInModes(psp, 16, 16, 0, (dri_priv->backOffset != 
dri_priv->depthOffset));
++configs24 = radeonFillInModes(psp, 24, 24, 8, (dri_priv->backOffset != 
dri_priv->depthOffset));
++configs32 = radeonFillInModes(psp, 32, 24, 8, (dri_priv->backOffset != 
dri_priv->depthOffset));
++
++configs16 = driConcatConfigs(configs8, configs16);
++configs24 = driConcatConfigs(configs16, configs24);
++
++   return driConcatConfigs(configs24, configs32);
+ }
+ 
+ 
diff --git a/debian/patches/series b/debian/patches/series
index 7dc82ee..03f0018 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -6,3 +6,4 @@
 103_bump_965_texture_limit.diff
 104_fix_dri2_ext_tfp.diff
 105_glXWaitX_segfaults.patch
+107_enable_all_radeon_fbconfigs.patch


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



Bug#524130: synaptic module loads instead of endev for Microsoft Wireless USB Mouse

2009-04-16 Thread Sean Kellogg
On Thursday 16 April 2009 08:28:59 pm you wrote:
> Can you also send your Xorg.0.log? Hal shows one entry with both
> keyboard and touchpad, but there's also another one with only keyboard.
> So we need to know which driver is loaded for while entry.

Do you want to see the log with or without the xserver-xorg-input-synaptics 
package installed, or does it matter?

-Sean

-- 
Sean Kellogg
e: skell...@probonogeek.org
w: http://blog.probonogeek.org



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



Bug#524130: synaptic module loads instead of endev for Microsoft Wireless USB Mouse

2009-04-16 Thread Brice Goglin
Sean Kellogg wrote:
> On Tuesday 14 April 2009 10:40:38 pm Brice Goglin wrote:
>   
>> Can you send what 'lshal' says about this mouse?
>> 

Can you also send your Xorg.0.log? Hal shows one entry with both
keyboard and touchpad, but there's also another one with only keyboard.
So we need to know which driver is loaded for while entry.

Brice




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



Bug#524130: synaptic module loads instead of endev for Microsoft Wireless USB Mouse

2009-04-16 Thread Brice Goglin
Sean Kellogg wrote:
> On Tuesday 14 April 2009 10:40:38 pm Brice Goglin wrote:
>   
>> Can you send what 'lshal' says about this mouse?
>> 
>
> I believe this is the right udi for the mouse:
>
> --
> udi = 
> '/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if1_logicaldev_input'
>   access_control.file = '/dev/input/event5'  (string)
>   access_control.type = 'mouse'  (string)
>   info.addons.singleton = {'hald-addon-input'} (string list)
>   info.callouts.add = {'hal-acl-tool --add-device', 'debian-setup-keyboard'} 
> (string list)
>   info.callouts.remove = {'hal-acl-tool --remove-device'} (string list)
>   info.capabilities = {'input', 'input.keyboard', 'input.keypad', 
> 'input.keys', 'input.mouse', 'input.touchpad', 'button', 'access_control'} 
> (string list)
>   

Ok it explains the problem, you have both "input.keyboard" and
"input.touchpad" here. The latter means that the synaptics driver will
be loaded. The former means that it's a keyboard...

Maybe we should add this special case to the fdi so that synaptics is
only used when input.keyboard isn't in info.capabilities?

Brice




-- 
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 'debian-unstable'

2009-04-16 Thread David Nusinow
 debian/changelog|7 ++-
 debian/xserver-xorg-core.bug.script |   10 ++
 2 files changed, 16 insertions(+), 1 deletion(-)

New commits:
commit 6f9b448f54d0eed4423d7a155898f333a66daac8
Author: David Nusinow 
Date:   Thu Apr 16 22:44:59 2009 -0400

Have the reportbug script append lshal and drm info.
The drm info comes from grepping dmesg output.

diff --git a/debian/changelog b/debian/changelog
index b3f23bb..543104e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,14 @@
 xorg-server (2:1.6.1-2) UNRELEASED; urgency=low
 
+  [ Brice Goglin ]
   * Add 20_hurd-i386.diff to fix FTBFS on hurd-i386,
 thanks Samuel Thibault! (closes: #523970)
 
- -- Brice Goglin   Wed, 15 Apr 2009 15:32:04 +0200
+  [ David Nusinow ]
+  * Have the reportbug script append lshal and drm info.
+The drm info comes from grepping dmesg output.
+
+ -- David Nusinow   Thu, 16 Apr 2009 22:44:29 -0400
 
 xorg-server (2:1.6.1-1) unstable; urgency=low
 
diff --git a/debian/xserver-xorg-core.bug.script 
b/debian/xserver-xorg-core.bug.script
index 739cdd3..11f83be 100644
--- a/debian/xserver-xorg-core.bug.script
+++ b/debian/xserver-xorg-core.bug.script
@@ -117,6 +117,16 @@ else
 printf "No Xorg X server log files found.\n"
 fi
 
+if [ -x /usr/bin/lshal ]; then
+printf "HAL Information (lshal):\n"
+lshal
+fi
+
+if [ -x /bin/dmesg ]; then
+printf "DRM Information from dmesg:\n"
+dmesg | grep 'drm'
+fi
+
 printf "\n"
 
 # vim:set ai et sts=4 sw=4 tw=0:


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



mesa: Changes to 'ubuntu'

2009-04-16 Thread Mario Limonciello
 debian/changelog|7 +++
 debian/patches/105_glXWaitX_segfaults.patch |   11 +++
 debian/patches/series   |1 +
 3 files changed, 19 insertions(+)

New commits:
commit 2a7af994c4ab726afbe79e9b97cbbceada867ade
Author: Mario Limonciello 
Date:   Wed Apr 15 01:17:23 2009 -0500

Add 105_glXWaitX_segfaults.patch. Resolves segfaults from unitialized 
variables when using swrast based drivers. (LP: #355242)

diff --git a/debian/changelog b/debian/changelog
index 4c19f71..55d7971 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mesa (7.4-0ubuntu2) jaunty; urgency=low
+
+  * Add 105_glXWaitX_segfaults.patch. Resolves segfaults from unitialized
+variables when using swrast based drivers. (LP: #355242)
+
+ -- Mario Limonciello   Wed, 15 Apr 2009 01:03:30 -0500
+
 mesa (7.4-0ubuntu1) jaunty; urgency=low
 
   * New upstream release, merge from debian-experimental
diff --git a/debian/patches/105_glXWaitX_segfaults.patch 
b/debian/patches/105_glXWaitX_segfaults.patch
new file mode 100644
index 000..985c5dd
--- /dev/null
+++ b/debian/patches/105_glXWaitX_segfaults.patch
@@ -0,0 +1,11 @@
+--- Mesa-7.4/src/glx/x11/drisw_glx.c   2009-01-22 17:38:33.0 +
 Mesa-7.4/src/glx/x11/drisw_glx.c.fixed 2009-04-03 23:25:17.0 
+0100
+@@ -405,6 +405,8 @@
+psp->createContext = driCreateContext;
+psp->createDrawable = driCreateDrawable;
+psp->swapBuffers = driSwapBuffers;
++   psp->waitX = NULL;
++   psp->waitGL = NULL;
+ 
+return psp;
+ 
diff --git a/debian/patches/series b/debian/patches/series
index cb1c95b..7dc82ee 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -5,3 +5,4 @@
 102_dont_vblank.diff
 103_bump_965_texture_limit.diff
 104_fix_dri2_ext_tfp.diff
+105_glXWaitX_segfaults.patch


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



Bug#524413: xauth fails with xorg 7.4

2009-04-16 Thread gregor herrmann
Package: xauth
Version: 1:1.0.3-2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Since quite some time I've used the following setup (with two machines
in my LAN for getting $URL from irssi on $server to $desktop):

on $desktop:
/usr/bin/xauth extract - $desktop:0.0 | ssh $server xauth merge -

on $server:
DISPLAY=$desktop:0 ssh -X $client sensible-browser "$URL"

(and X on $desktop runs as `/usr/bin/X11/X -dpi 100', i.e. without
the default '-nolisten tcp')

Since last week's upgrade of xserver-xorg-* this doesn't work any
more, all I get on $server is:
Invalid MIT-MAGIC-COOKIE-1 keyError: cannot open display: localhost:10.0

The output of `xauth list' on both machines looks sane and matches.
`xauth +$server' also works as expected.


Please tell me if there's anything else I can check or try or ...


Cheers,
gregor

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

Kernel: Linux 2.6.29.200904051323
Locale: LANG=C, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages xauth depends on:
ii  libc6 2.9-7  GNU C Library: Shared libraries
ii  libx11-6  2:1.2.1-1  X11 client-side library
ii  libxau6   1:1.0.4-2  X11 authorisation library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxmuu1  2:1.0.4-1  X11 miscellaneous micro-utility li
ii  x11-common1:7.4+1X Window System (X.Org) infrastruc

xauth recommends no packages.

xauth suggests no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknnsWEACgkQOzKYnQDzz+QFcwCgqwjRIhtaVbDSmxe4OUtGQv+s
DWEAoJOSK1b7GvE/hd7oOxeN9KheKui5
=6MBr
-END PGP SIGNATURE-



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



Bug#497523: HAL way

2009-04-16 Thread Modestas Vainius
Hello,

rather than editing xorg.conf, one could add 
/etc/hal/fdi/policy/11-x11-synaptics.fdi like:



  

1
2
3

  


and restart hal/X. Could this be turned into debconf question?



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



Bug#524411: compiz-dev should depend on libxcursor-dev but does not

2009-04-16 Thread Michael Schmitt
Package: compiz-dev
Version: 0.8.2-4
Severity: normal

Hi,

the subject says it all... in the pkg-config file of compiz it is shown as
required and compiz-dev seems to need xcursor (not very deep into that stuff).

regards
Michael

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

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz-dev depends on:
ii  compiz-core 0.8.2-4  OpenGL window and compositing mana
ii  libgl1-mesa-dev [libgl-dev] 7.4-2A free implementation of the OpenG
ii  libice-dev  2:1.0.5-1X11 Inter-Client Exchange library 
ii  libpng12-dev [libpng-dev]   1.2.35-1 PNG library - development
ii  libsm-dev   2:1.1.0-2X11 Session Management library (de
ii  libstartup-notification0-de 0.10-1   library for program launch feedbac
ii  libxcomposite-dev   1:0.4.0-3X11 Composite extension library (d
ii  libxdamage-dev  1:1.1.1-4X11 damaged region extension libra
ii  libxinerama-dev 2:1.0.3-2X11 Xinerama extension library (de
ii  libxml2-dev 2.7.3.dfsg-1 Development files for the GNOME XM
ii  libxrandr-dev   2:1.3.0-2X11 RandR extension library (devel
ii  libxslt1-dev1.1.24-2 XSLT processing library - developm

compiz-dev recommends no packages.

compiz-dev suggests no packages.

-- no debconf information



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



Bug#524130: synaptic module loads instead of endev for Microsoft Wireless USB Mouse

2009-04-16 Thread Sean Kellogg
On Tuesday 14 April 2009 10:40:38 pm Brice Goglin wrote:
> Can you send what 'lshal' says about this mouse?

This is the info for the USB dongle itself:

--
udi = '/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial'
  info.linux.driver = 'usb'  (string)
  info.parent = '/org/freedesktop/Hal/devices/usb_device_1d6b_1__00_0b_0'  
(string)
  info.product = 'Microsoft? 2.4GHz Transceiver V1.0'  (string)
  info.subsystem = 'usb_device'  (string)
  info.udi = '/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial'  
(string)
  info.vendor = 'Microsoft Corp.'  (string)
  linux.device_file = '/dev/bus/usb/002/002'  (string)
  linux.hotplug_type = 2  (0x2)  (int)
  linux.subsystem = 'usb'  (string)
  linux.sysfs_path = '/sys/devices/pci:00/:00:0b.0/usb2/2-7'  (string)
  usb_device.bus_number = 2  (0x2)  (int)
  usb_device.can_wake_up = true  (bool)
  usb_device.configuration_value = 1  (0x1)  (int)
  usb_device.device_class = 0  (0x0)  (int)
  usb_device.device_protocol = 0  (0x0)  (int)
  usb_device.device_revision_bcd = 592  (0x250)  (int)
  usb_device.device_subclass = 0  (0x0)  (int)
  usb_device.is_self_powered = false  (bool)
  usb_device.linux.device_number = 2  (0x2)  (int)
  usb_device.linux.sysfs_path = '/sys/devices/pci:00/:00:0b.0/usb2/2-7' 
 (string)
  usb_device.max_power = 100  (0x64)  (int)
  usb_device.num_configurations = 1  (0x1)  (int)
  usb_device.num_interfaces = 2  (0x2)  (int)
  usb_device.num_ports = 0  (0x0)  (int)
  usb_device.product = 'Microsoft? 2.4GHz Transceiver V1.0'  (string)
--

I believe this is the right udi for the mouse:

--
udi = 
'/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if1_logicaldev_input'
  access_control.file = '/dev/input/event5'  (string)
  access_control.type = 'mouse'  (string)
  info.addons.singleton = {'hald-addon-input'} (string list)
  info.callouts.add = {'hal-acl-tool --add-device', 'debian-setup-keyboard'} 
(string list)
  info.callouts.remove = {'hal-acl-tool --remove-device'} (string list)
  info.capabilities = {'input', 'input.keyboard', 'input.keypad', 'input.keys', 
'input.mouse', 'input.touchpad', 'button', 'access_control'} (string list)
  info.category = 'input'  (string)
  info.parent = '/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if1'  
(string)
  info.product = 'Microsoft Microsoft? 2.4GHz Transceiver V1.0'  (string)
  info.subsystem = 'input'  (string)
  info.udi = 
'/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if1_logicaldev_input' 
 (string)
  input.device = '/dev/input/event5'  (string)
  input.originating_device = 
'/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if1'  (string)
  input.product = 'Microsoft Microsoft? 2.4GHz Transceiver V1.0'  (string)
  input.x11_driver = 'evdev'  (string)
  input.x11_options.Emulate3Buttons = 'true'  (string)
  input.x11_options.EmulateWheel = 'true'  (string)
  input.x11_options.EmulateWheelButton = '2'  (string)
  input.x11_options.ZAxsisMapping = '4 5'  (string)
  input.xkb.layout = 'us'  (string)
  input.xkb.model = 'pc104'  (string)
  input.xkb.rules = 'base'  (string)
  linux.device_file = '/dev/input/event5'  (string)
  linux.hotplug_type = 2  (0x2)  (int)
  linux.subsystem = 'input'  (string)
  linux.sysfs_path = '/sys/class/input/input5/event5'  (string)
--

There's also this one...

--
udi = 
'/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if0_logicaldev_input'
  info.addons.singleton = {'hald-addon-input'} (string list)
  info.callouts.add = {'debian-setup-keyboard'} (string list)
  info.capabilities = {'input', 'input.keyboard', 'input.keypad', 'input.keys', 
'button'} (string list)
  info.category = 'input'  (string)
  info.parent = '/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if0'  
(string)
  info.product = 'Microsoft Microsoft? 2.4GHz Transceiver V1.0'  (string)
  info.subsystem = 'input'  (string)
  info.udi = 
'/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if0_logicaldev_input' 
 (string)
  input.device = '/dev/input/event4'  (string)
  input.originating_device = 
'/org/freedesktop/Hal/devices/usb_device_45e_71d_noserial_if0'  (string)
  input.product = 'Microsoft Microsoft? 2.4GHz Transceiver V1.0'  (string)
  input.x11_driver = 'evdev'  (string)
  input.x11_options.Emulate3Buttons = 'true'  (string)
  input.x11_options.EmulateWheel = 'true'  (string)
  input.x11_options.EmulateWheelButton = '2'  (string)
  input.x11_options.ZAxsisMapping = '4 5'  (string)
  input.xkb.layout = 'us'  (string)
  input.xkb.model = 'pc104'  (string)
  input.xkb.rules = 'base'  (string)
  linux.device_file = '/dev/input/event4'  (string)
  linux.hotplug_type = 2  (0x2)  (int)
  linux.subsystem = 'input'  (string)
  linux.sysfs_path = '/sys/class/input/input4/event4'  (string)
--

Not sure if this complicates matt

Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Brice Goglin
Jacek Politowski wrote:
> Switching back to 6.9.0 was impossible due to dependency conflict, as
> it provides 'xserver-xorg-video-2' and xserver-xorg-core explicitly
> conflicts with 'xserver-xorg-video-2'.

Yes, the ABI of the xserver changed meanwhile, so 6.9 needs to be
rebuilt to work with the latest server.

> Where to find 6.1{0,1}.0? I can't find it neither on
> snapshot.debian.net nor on regular mirror (ftp.pl.debian.org).

I only have packages for 6.10.99.0 and 6.11.0 for i386.
If you want to rebuild them, they're at
http://people.debian.org/~bgoglin/rebuilds/Xserver1.6/

> I installed under VirtualBox, on other machine, fresh Sid instance to
> build xserver-xorg-video-radeon with your patch.

What you did looks correct.

Brice



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



Bug#523415: corrupted rendering

2009-04-16 Thread Brice Goglin
Kurt Roeckx wrote:

  

>> echo disable=2 > /proc/mtrr
>> 
>
> That removes the line, but does not solve the problem.
>   

Right, removing write-combining is only supposed to decrease performance :)

Brice




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



Bug#523844: Upgrade to xserver-xorg-video-intel 2:2.7.0-1 doesn't help.

2009-04-16 Thread Brice Goglin
Gunter Ohrner wrote:
>   # uname -a
>   Linux Zweiblum 2.6.26-2-686 #1 SMP Thu Mar 26 01:08:11 UTC 2009 i686
> GNU/Linux
>
> Ok, guess what - with Debian's 2.6.26 package it feels quick and snappy. 
>
>   # x11perf -aa10text
>   (...)
>   360 trep @   0.0073 msec (137000.0/sec): Char in 80-char aa line
> (Charter 10)
>
>   # glxgears -info
>   (...)
>   1912 frames in 5.0 seconds = 382.250 FPS
>
> So, what's wrong - or at least that different - with Debian's 2.6.29 
> kernel?
>   

PAT is disabled in 2.6.29, we feel like it may explain some performance
problems if the video memory isn't in write combining anymore.

Brice




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



Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Jacek Politowski
On Thu, Apr 16, 2009 at 01:06:19PM -0400, Alex Deucher wrote:
> On 4/16/09, Alex Deucher  wrote:
 On 4/16/09, Jacek Politowski  wrote:
>> On Thu, 2009-04-16 at 00:07 +0200, Jacek Politowski wrote:

>>> Package: xserver-xorg-video-radeon
>>> Version: 1:6.12.2-1
>>> Severity: normal
>
>>> After recent upgrade (I believe) display got totally corrupted.
>  (...)
>>> I'm using AGP Radeon X800 GTO with HP LP2475w monitor, connected via 
>>> DVI.
>>
(...)
>> Switching back to 6.9.0 with your current kernel/xserver/etc. fixes
>>  it?  How about 6.10.0 or 6.11.0 or 6.12.1?  It would be helpful to
>>  narrow down where the problem was introduced.

> Does the attached patch help?

Switching back to 6.9.0 was impossible due to dependency conflict, as
it provides 'xserver-xorg-video-2' and xserver-xorg-core explicitly
conflicts with 'xserver-xorg-video-2'.

Where to find 6.1{0,1}.0? I can't find it neither on
snapshot.debian.net nor on regular mirror (ftp.pl.debian.org).


Unfortunately your patch doesn't help either.


I installed under VirtualBox, on other machine, fresh Sid instance to
build xserver-xorg-video-radeon with your patch.

Then I did something like this:

$ apt-get source xserver-xorg-video-radeon
$ apt-get build-dep xserver-xorg-video-radeon

$ patch < debian524280.diff
### .diff and patched file in the same directory, patch applied cleanly

### added new revision in changelog

$ dpkg-buildpackage -rfakeroot -us -uc
### built cleanly - xserver-xorg-video-radeon_6.12.2-1.0jp1_i386.deb

### copied package to my machine and installed:
$ sudo dpkg -i xserver-xorg-video-radeon_6.12.2-1.0jp1_i386.deb
### installed correctly
$ dpkg -s xserver-xorg-video-radeon
Version: 1:6.12.2-1.0jp1

### started GDM
$ sudo /etc/init.d/gdm start


Display still corrupted.

-- 
Jacek Politowski



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



Bug#523415: corrupted rendering

2009-04-16 Thread Kurt Roeckx
On Thu, Apr 16, 2009 at 08:48:54PM +0200, Brice Goglin wrote:
> Kurt Roeckx wrote:
> > On Thu, Apr 16, 2009 at 08:09:30PM +0200, Frederic Peters wrote:
> >   
> >> Brice Goglin wrote:
> >>
> >> 
> >>> So now, booting 2.6.29 and doing as root
> >>> echo "base=0x0e800 size=0x800 type=write-combining" > 
> >>> /proc/mtrr
> >>> might give you the same MTRR back, and might even fix your problems.
> >>>   
> >> Same corrupted display for me after updating MTRR, too bad :(
> >> 
> >
> > I was under the impression that 2.6.29 already had this, and
> > 2.6.28 didn't.  So that would mean you would have to remove it
> > in 2.6.29, and I have no idea if you can do that, and how.
> >   
> 
> echo disable=2 > /proc/mtrr

That removes the line, but does not solve the problem.


Kurt




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



Bug#523844: Upgrade to xserver-xorg-video-intel 2:2.7.0-1 doesn't help.

2009-04-16 Thread Gunter Ohrner
Am Donnerstag, 16. April 2009 schrieb Brice Goglin:
> > I just upgraded to package version 2:2.7.0-1 with no improvement.
> > Composite mode with EXA still is unusuably slow.

> Can you try without another kernel? Either Debian's old 2.6.26 or a
> custom 2.6.29 with PAT enabled.

  # uname -a
  Linux Zweiblum 2.6.26-2-686 #1 SMP Thu Mar 26 01:08:11 UTC 2009 i686
GNU/Linux

Ok, guess what - with Debian's 2.6.26 package it feels quick and snappy. 

  # x11perf -aa10text
  (...)
  360 trep @   0.0073 msec (137000.0/sec): Char in 80-char aa line
(Charter 10)

  # glxgears -info
  (...)
  1912 frames in 5.0 seconds = 382.250 FPS

So, what's wrong - or at least that different - with Debian's 2.6.29 
kernel?

Thanks a lot in advance, now I'd just like to know what I've just 
observed...

Greetings,

  Gunter

-- 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 There was a 23% drop in temperature.
 That's almost 25%!
 ... That was one of the most worthless comments I've ever 
heard.-- http://www.bash.org/?2999
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+   PGP-verschlüsselte Mails bevorzugt! +
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+


signature.asc
Description: This is a digitally signed message part.


Bug#524335: xserver-xorg-video-radeonhd: Fails to render anything but the mouse

2009-04-16 Thread Cyrille Chépélov
Le jeudi 16 avril 2009 à 20:58 +0200, Brice Goglin a écrit :

> Cyrille Chépélov wrote:
> >> Does the radeon driver work?
> >> 
> >
> > It didn't seem to when I plugged in the 4350 to replace the RS690
> > (IGP) I had been using before.
> >
> > I will try your suggestion with the radeon.ko DRM module.
> 
> No, don't change anything with your kernel :)


wasn't that your suggestion?:


> By the way, you might want to try with upstream drm kernel modules
> since
> they bring better support for your board.


anyway, back to this:

> Just try changing radeonhd into radeon in xorg.conf after installing
> xserver-xorg-video-radeon.

Did; except that it (again) defaulted my session into a 1440x900 mode
that is meaningless for my setup, it seem to work fine after the now
traditionnal grandr mode-switching ceremony.

 (previously I had been using a 1280x1024 LCD, switched to a 1600x1050
LCD which normally works great, except it caused the RS690 to simply
crash the system (except if I booted with the 1280x1024 on, then
swapped, and played with grandr -- didn't try to fight it, went to
grosbill to get a newer board I wanted anyway))
#insert 

-- Cyrille



Bug#524335: xserver-xorg-video-radeonhd: Fails to render anything but the mouse

2009-04-16 Thread Cyrille Chépélov
Le jeudi 16 avril 2009 à 13:58 +0200, Brice Goglin a écrit :


> Did 1.2.4 work fine?


No idea; I have been on fglrx for the last few weeks (about the whole
time I've been owning this piece of hardware).


> Does the radeon driver work?


It didn't seem to when I plugged in the 4350 to replace the RS690 (IGP)
I had been using before.

I will try your suggestion with the radeon.ko DRM module. 

-- Cyrille



Processed: found 523844 in 2:2.7.0-1

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

> found 523844 2:2.7.0-1
Bug#523844: xserver-xorg-video-intel: EXA unusuably slow with composite
Bug marked as found in version 2:2.7.0-1.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#523844: Upgrade to xserver-xorg-video-intel 2:2.7.0-1 doesn't help.

2009-04-16 Thread Brice Goglin
Gunter Ohrner wrote:
> Hi!
>
> I just upgraded to package version 2:2.7.0-1 with no improvement.
>
> Composite mode with EXA still is unusuably slow.
>   

Can you try without another kernel? Either Debian's old 2.6.26 or a
custom 2.6.29 with PAT enabled.

> I still have to check whether XAA works again with this driver release, 
> however.
>   

XAA will be dropped in the near anyway...

Brice




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



Bug#524390: xkb-data: Romanian standard layout replaces l with Polish sign ł

2009-04-16 Thread Alex Dănilă

Package: xkb-data
Version: 1.5-2
Severity: normal

Romanian standard layout (ro std) writes połish sign "ł" (called lstroke 
in the romanian layout definition file) whenever pressing "l" (L), 
without me pressing right alt.
The definition file looks ok. Also, this doesn't happen for 
"std_cedilla" or "cedilla" layouts.



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (650, 'unstable'), (600, 'testing'), (200, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.30-rc1 (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/bash

-- no debconf information



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



Bug#317091: Duplicate bug

2009-04-16 Thread Alex Dănilă

Bug #520625 looks like a duplicate of this one.



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



Bug#523415: corrupted rendering

2009-04-16 Thread Kurt Roeckx
On Thu, Apr 16, 2009 at 08:09:30PM +0200, Frederic Peters wrote:
> Brice Goglin wrote:
> 
> > So now, booting 2.6.29 and doing as root
> > echo "base=0x0e800 size=0x800 type=write-combining" > /proc/mtrr
> > might give you the same MTRR back, and might even fix your problems.
> 
> Same corrupted display for me after updating MTRR, too bad :(

I was under the impression that 2.6.29 already had this, and
2.6.28 didn't.  So that would mean you would have to remove it
in 2.6.29, and I have no idea if you can do that, and how.


Kurt




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



Bug#524335: xserver-xorg-video-radeonhd: Fails to render anything but the mouse

2009-04-16 Thread Brice Goglin
Cyrille Chépélov wrote:
>> Does the radeon driver work?
>> 
>
> It didn't seem to when I plugged in the 4350 to replace the RS690
> (IGP) I had been using before.
>
> I will try your suggestion with the radeon.ko DRM module.

No, don't change anything with your kernel :)

Just try changing radeonhd into radeon in xorg.conf after installing
xserver-xorg-video-radeon.

Brice




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



Bug#523415: corrupted rendering

2009-04-16 Thread Brice Goglin
Kurt Roeckx wrote:
> On Thu, Apr 16, 2009 at 08:09:30PM +0200, Frederic Peters wrote:
>   
>> Brice Goglin wrote:
>>
>> 
>>> So now, booting 2.6.29 and doing as root
>>> echo "base=0x0e800 size=0x800 type=write-combining" > /proc/mtrr
>>> might give you the same MTRR back, and might even fix your problems.
>>>   
>> Same corrupted display for me after updating MTRR, too bad :(
>> 
>
> I was under the impression that 2.6.29 already had this, and
> 2.6.28 didn't.  So that would mean you would have to remove it
> in 2.6.29, and I have no idea if you can do that, and how.
>   

echo disable=2 > /proc/mtrr

(where "2" comes from "reg02" in cat /proc/mtrr)

http://www.mjmwired.net/kernel/Documentation/mtrr.txt

Brice




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



Bug#523415: corrupted rendering

2009-04-16 Thread Frederic Peters
Brice Goglin wrote:

> So now, booting 2.6.29 and doing as root
> echo "base=0x0e800 size=0x800 type=write-combining" > /proc/mtrr
> might give you the same MTRR back, and might even fix your problems.

Same corrupted display for me after updating MTRR, too bad :(


Frederic



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



Bug#523953: Subject: xserver-xorg-video-intel: New unstable version does not solve bug

2009-04-16 Thread Mathieu GELI
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1

Hi,

on my 945GM problem is fixed with 2.7.0-1. mplayer/vlc/totem plays the
HD videos fine.
No full-screen slowness as Apelete mentioned.

Thanks.

-- 
Mathieu



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



Bug#524340: Reproducible GUI lockups

2009-04-16 Thread J.H.M. Dassen (Ray)
On Thu, Apr 16, 2009 at 13:37:14 -0400, David Nusinow wrote:
>> This doesn't seem to work:

> That's a surprise. Could you try forcing UXA by adding 'option  
> "AccelMethod" "uxa"' to the device section of your xorg.conf?

With this, a lockup occurs earlier on, roughly halfway through drawing the
gdm login screen. X log attached.

In dmesg, I've noticed the following, which may be related:
[drm] MTRR allocation failed.  Graphics performance may suffer.

HTH,
Ray
-- 
Pinky, Are You Pondering What I'm Pondering?
I think so Brain, but who wants to see Snow White and the Seven Samuri? 
Pinky and the Brain in "Big in Japan"

X.Org X Server 1.6.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-1-vserver-amd64 x86_64 Debian
Current Operating System: Linux zensunni 2.6.29.1 #1 SMP PREEMPT Fri Apr 3 
09:02:35 CEST 2009 x86_64
Build Date: 15 April 2009  12:08:18PM
xorg-server 2:1.6.1-1 (bui...@excelsior.roeckx.be) 
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: Thu Apr 16 19:45:18 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 ""
(==) No device specified for screen "Default Screen Section".
Using the first device section listed.
(**) |   |-->Device "Configured Video Device"
(==) No monitor specified for screen "Default Screen Section".
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.
(II) Loader magic: 0xd40
(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) Intel Corporation 82G33/G31 Express Integrated Graphics 
Controller rev 2, Mem @ 0xe560/524288, 0xd000/268435456, 
0xe540/1048576, I/O @ 0xe100/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.1, 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.1, 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.1, 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.1, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension 

Bug#501373: marked as done ([xserver-xorg] Please do not ask for keyboard layout at high priority for ca fr (French Canadian))

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 19:57:39 +0200
with message-id <20090416175739.ga10...@loulous.org>
and subject line Re: Bug#501373: [xserver-xorg] Please do not ask for keyboard 
layout at high priority for ca fr (French Canadian)
has caused the Debian Bug report #501373,
regarding [xserver-xorg] Please do not ask for keyboard layout at high priority 
for ca fr (French Canadian)
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.)


-- 
501373: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501373
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg
Version: 1:7.3+17
Severity: wishlist
Tags: patch

In xserver-xorg.postinst, when the presetting of keyboard layout from 
console-setup is impossible, like in d-i, xserver-xorg falls back to 
debian-installer/keymap. For example:
cf) XMAP="ca"; VARIANT="fr";;
means that for the French Canadian console keymap, XKBLAYOUT is set to ca. 
There is a similar mapping for other layouts too, but something is special 
about ca fr:

  if [ "$XMAP" = "UNKNOWN" ]; then
warn "failed to infer keyboard layout from 
layout/lang '$DI_KEYMAP--$REALLANG'"
PRIORITY=medium
XMAP="us"
MODEL="pc104"
  # prompt for layout if we ended up with French Canadian; apparently having
  # US-layout keyboards is common there
  elif [ "$XMAP" = "ca" ] && [ "$VARIANT" = "fr" ]; then
PRIORITY=high
  else
PRIORITY=low
  fi

Setting the debconf prompt to high priority means that people using a French 
Canadian keyboard are prompted twice for the keyboard layout, once for the 
console and once for X, even during a non-expert install. This doesn't make 
sense. It is true that French Canadians often use US English keyboards, but 
of course those that use French Canadian keyboards in console will want the 
same layout in X.

The patch is pretty trivial:

-  # prompt for layout if we ended up with French Canadian; apparently having
-  # US-layout keyboards is common there
-  elif [ "$XMAP" = "ca" ] && [ "$VARIANT" = "fr" ]; then
-PRIORITY=high


--- End Message ---
--- Begin Message ---
Keyboard layout is managed by console-setup and hal nowadays,
this old bug doesn't matter anymore.

Brice

--- End Message ---


Bug#141390: marked as done (xserver-xfree86: [deconf] want question about number of mouse buttons for mouse devices with more than 5)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 19:54:18 +0200
with message-id <20090416175418.ga10...@loulous.org>
and subject line Re: Bug#141390: xserver-xfree86: debconf configuration doesn't 
ask for number of mouse buttons
has caused the Debian Bug report #141390,
regarding xserver-xfree86: [deconf] want question about number of mouse buttons 
for mouse devices with more than 5
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.)


-- 
141390: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=141390
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xfree86
Version: 4.1.0-15
Severity: normal

  the debconf doesn't ask about number of mouse buttons, to make e.g.
  Logitech MouseMan+ work the Button Option needs to be used (to specify
  6 buttons) and the ZAxisMapping has to specify buttons 5 and 6 (and
  then xmodmap must be used to map mouse buttons "pointer = 1 2 3 6 4
  5".

  This is a working Logitech MouseMan+ configuration section:

Section "InputDevice"
Identifier  "Logitech Cordless MouseMan Wheel"
Driver  "mouse"
Option  "CorePointer"
Option  "Protocol"  "MouseManPlusPS/2"
Option  "Device""/dev/psaux"
Option  "Emulate3Buttons"   "false"
Option  "Buttons"   "6"
Option  "ZAxisMapping"  "5 6"
Option  "SendCoreEvents""true"
EndSection

  the xmodmap command:

xmodmap -e "pointer = 1 2 3 6 4 5"

  There might be a better (simpler) way to achieve the same result but
  one way or another the "Buttons" option is required for all the
  buttons to work (it's true that the extra button is not used in
  default configuration of most programs but can be used when X or X
  programs are configured to use it (e.g. as a middle button or by WM
  for WM specific fucntions etc.)

00:0f.0 VGA compatible controller: 3Dfx Interactive, Inc. Voodoo 3 (rev 01)
00:0f.0 Class 0300: 121a:0005 (rev 01)

### BEGIN DEBCONF SECTION
# XF86Config-4 (XFree86 server configuration file) generated by dexconf, the
# Debian X Configuration tool, using values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# If you want your changes to this file preserved by dexconf, only make changes
# before the "### BEGIN DEBCONF SECTION" line above, and/or after the
# "### END DEBCONF SECTION" line below.
#
# To change things within the debconf section, run the command:
#   dpkg-reconfigure xserver-xfree86
# as root.
# Also see "How do I add custom sections to a dexconf-generated XF86Config or
# XF86Config-4 file?" in /usr/share/doc/xfree86-common/FAQ.gz.

Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"GLcore"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"pex5"
Load"record"
Load"speedo"
Load"type1"
Load"vbe"
Load"xie"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "logicordless"
Option  "XkbLayout" "us"
Option  "XkbVariant""logicordless"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/psaux"
Option  "Protocol"  "PS/2"
Option  "ZAxisMapping"  "4 5"
EndSection

Section "InputDevice"
Identifier  "Generic Mouse"
Driver  "mouse"
Option  "SendCoreEvents""true"

mesa: Changes to 'debian-unstable'

2009-04-16 Thread Julien Cristau
 debian/changelog|9 +
 debian/control  |   12 ++--
 debian/libglu1-mesa-dev.install |1 +
 debian/libglw1-mesa-dev.install |1 +
 debian/libosmesa6-dev.install   |1 +
 debian/rules|   14 --
 6 files changed, 18 insertions(+), 20 deletions(-)

New commits:
commit 5d4659e7c7824e7650aa1896da3ceedde1845228
Author: Julien Cristau 
Date:   Wed Apr 15 21:31:24 2009 +0200

Install pkgconfig files for libGLU, libOSMesa and libGLw.

diff --git a/debian/changelog b/debian/changelog
index dd2337e..afdc88c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ mesa (7.4-3) UNRELEASED; urgency=low
   * Make libgl1-mesa-dev and mesa-common-dev 'Architecture: any'.  This gets
 rid of uninstallability when a new upstream version isn't built on all
 architectures, and allows us to ship potentially arch-specific .pc files.
+  * Install pkgconfig files for libGLU, libOSMesa and libGLw.
 
  -- Julien Cristau   Wed, 15 Apr 2009 19:25:50 +0200
 
diff --git a/debian/libglu1-mesa-dev.install b/debian/libglu1-mesa-dev.install
index 78ac2b0..a3df1f9 100644
--- a/debian/libglu1-mesa-dev.install
+++ b/debian/libglu1-mesa-dev.install
@@ -2,3 +2,4 @@ usr/include/GL/glu.h
 usr/include/GL/glu_mangle.h
 usr/lib/libGLU.a
 usr/lib/libGLU.so
+usr/lib/pkgconfig/glu.pc
diff --git a/debian/libglw1-mesa-dev.install b/debian/libglw1-mesa-dev.install
index 7c03280..c11a209 100644
--- a/debian/libglw1-mesa-dev.install
+++ b/debian/libglw1-mesa-dev.install
@@ -1,3 +1,4 @@
 usr/include/GL/GLw*A.h
 usr/lib/libGLw.a
 usr/lib/libGLw.so
+usr/lib/pkgconfig/glw.pc
diff --git a/debian/libosmesa6-dev.install b/debian/libosmesa6-dev.install
index 149a1bd..bea6492 100644
--- a/debian/libosmesa6-dev.install
+++ b/debian/libosmesa6-dev.install
@@ -5,3 +5,4 @@ usr/lib/libOSMesa16.a
 usr/lib/libOSMesa16.so
 usr/lib/libOSMesa32.a
 usr/lib/libOSMesa32.so
+usr/lib/pkgconfig/osmesa.pc

commit c422347bee0b346a7db7fccfe6e8a60f359b28ac
Author: Julien Cristau 
Date:   Wed Apr 15 19:27:47 2009 +0200

Make libgl1-mesa-dev and mesa-common-dev 'Architecture: any'.

This gets rid of uninstallability when a new upstream version
isn't built on all architectures, and allows us to ship potentially
arch-specific .pc files.

diff --git a/debian/changelog b/debian/changelog
index 902a6d0..dd2337e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+mesa (7.4-3) UNRELEASED; urgency=low
+
+  * Make libgl1-mesa-dev and mesa-common-dev 'Architecture: any'.  This gets
+rid of uninstallability when a new upstream version isn't built on all
+architectures, and allows us to ship potentially arch-specific .pc files.
+
+ -- Julien Cristau   Wed, 15 Apr 2009 19:25:50 +0200
+
 mesa (7.4-2) unstable; urgency=low
 
   * Upload to unstable.
diff --git a/debian/control b/debian/control
index c3f36f4..97ef61e 100644
--- a/debian/control
+++ b/debian/control
@@ -89,7 +89,7 @@ Package: libgl1-mesa-swx11-dev
 Section: libdevel
 Priority: extra
 Architecture: any
-Depends: libgl1-mesa-swx11 (= ${binary:Version}), libc6-dev, libx11-dev, 
libxext6, mesa-common-dev (= ${source:Version})
+Depends: libgl1-mesa-swx11 (= ${binary:Version}), libc6-dev, libx11-dev, 
libxext6, mesa-common-dev (= ${binary:Version})
 Provides: libgl-dev, mesag-dev, libgl1-mesa-swrast-dev
 Conflicts: mesa-dev, libgl-dev, mesag3 (<< 3.1-1), nvidia-glx-dev, mesag-dev, 
libgl1-mesa-swrast-dev
 Replaces: libgl-dev, mesag-dev, libgl1-mesa-swrast-dev
@@ -222,8 +222,8 @@ Description: Debugging symbols for the Mesa DRI modules
 
 Package: libgl1-mesa-dev
 Section: libdevel
-Architecture: all
-Depends: libc6-dev, mesa-common-dev (= ${source:Version}), libgl1-mesa-glx (>= 
${source:Upstream-Version})
+Architecture: any
+Depends: libc6-dev, mesa-common-dev (= ${binary:Version}), libgl1-mesa-glx (= 
${binary:Version})
 Conflicts: libgl-dev, libgl1-mesa-dri-dev
 Replaces: libgl-dev, libgl1-mesa-dri-dev
 Provides: libgl-dev, libgl1-mesa-dri-dev
@@ -240,7 +240,7 @@ Description: A free implementation of the OpenGL API -- GLX 
development files
 
 Package: mesa-common-dev
 Section: libdevel
-Architecture: all
+Architecture: any
 Replaces: xlibmesa-gl-dev (<< 1:7), xlibosmesa-dev, libgl1-mesa-swx11-dev (<< 
6.5.2), libgl1-mesa-dev (<< 6.5.2)
 Depends: libx11-dev
 Description: Developer documentation for Mesa
@@ -264,7 +264,7 @@ Description: Mesa Off-screen rendering extension
 Package: libosmesa6-dev
 Section: libdevel
 Architecture: any
-Depends: libosmesa6 (= ${binary:Version}), mesa-common-dev (= 
${source:Version}) | libgl-dev
+Depends: libosmesa6 (= ${binary:Version}), mesa-common-dev (= 
${binary:Version}) | libgl-dev
 Conflicts: xlibosmesa-dev, libosmesa4-dev, libosmesa-dev
 Replaces: xlibosmesa-dev, libosmesa-dev, libgl1-mesa-swx11-dev (<< 6.5.2), 
mesa-common-dev (<< 6.5.2)
 Provides: xlibosmesa-dev, libosmesa-dev
@@ -329,7 +329,7 @@ Description: A free implementation of the OpenG

Bug#236432: marked as done (mouse.4x.gz: mention acceleration)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 19:45:20 +0200
with message-id <20090416174520.ga10...@loulous.org>
and subject line Re: Bug#236432: mouse.4x.gz: mention acceleration
has caused the Debian Bug report #236432,
regarding mouse.4x.gz: mention acceleration
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.)


-- 
236432: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=236432
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xfree86
Version: 4.2.1-16
Severity: wishlist
File: /usr/X11R6/man/man4/mouse.4x.gz

The paragraph
   Option "Resolution" "integer"
could also mention "Use xset m for acceleration."
Also xset could be added to SEE ALSO.


--- End Message ---
--- Begin Message ---
The mouse manpage already mentions acceleration and man xset
in "Sensitivity" right below "Resolution". That's enough.

Brice


--- End Message ---


Bug#404038: marked as done (xserver-xorg-core: non-modular configuration scheme)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 19:42:03 +0200
with message-id <20090416174203.ga10...@loulous.org>
and subject line Re: Bug#404038: xserver-xorg-core: non-modular configuration 
scheme
has caused the Debian Bug report #404038,
regarding xserver-xorg-core: non-modular configuration scheme
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.)


-- 
404038: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=404038
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-core
Version: 1.1.1-12
Severity: wishlist

Hi,

for ksynaptics, I need to enter "SHMConfig on" into the touch pad
section of xorg.conf. When I do this, I lose all debian automatisms
since the xorg maintainer scripts notice that the file was manually
changed.

Please provide a means to do such local modifications (like an overlay
or an include file) without losing Debian magic.

Greetings
Marc

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.19.1-zgsrv
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

--- End Message ---
--- Begin Message ---
The original problem cannot happen anymore since SHMConfig
isn't needed anymore in unstable. And, as David explained,
we're moving away for debconf/xorg.conf anyway, so I am
just closing this old deprecated bug.

Brice

--- End Message ---


Bug#524340: Reproducible GUI lockups

2009-04-16 Thread J.H.M. Dassen (Ray)
On Thu, Apr 16, 2009 at 16:33:03 +0200, Brice Goglin wrote:
> No, you want to start a dumb window manager instead of starting a
> complex environment (what you call a GUI) with compiz enabled.
> 
> For instance, start a failsafe session, run twm, some xterms...

Things work fine with compiz disabled, either through xorg.conf or through a
failsafe GNOME session.

HTH,
-- 
"The software `wizard' is the single greatest obstacle to computer literacy
since the Mac."
http://www.osopinion.com/Opinions/MichaelKellen/MichaelKellen1.html



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



Bug#524340: Reproducible GUI lockups

2009-04-16 Thread David Nusinow

J.H.M. Dassen (Ray) wrote:

Hello David,

On Thu, Apr 16, 2009 at 10:40:14 -0400, David Nusinow wrote:
  

J.H.M. Dassen (Ray) wrote:


(==) intel(0): Using EXA for acceleration
  
  

Could you try upgrading to kernel 2.6.29 and seeing if that helps?



Actually, this was with 2.6.29.1 already. I'm building from source, with
CONFIG_DRM_I915=m
CONFIG_DRM_I915_KMS=y
  


Ok, great!


On Thu, Apr 16, 2009 at 11:14:27 -0400, David Nusinow wrote:
  
Sorry, in my last mail I forgot to mention that you have to enable KMS.  
You should be able to do that by adding

"i915.modeset=1" on the kernel command line.



This doesn't seem to work:
# dmesg | grep 915
	Command line: root=/dev/mapper/Debsys-Root ro i915.modeset=1 
	Kernel command line: root=/dev/mapper/Debsys-Root ro i915.modeset=1 
	Unknown boot option `i915.modeset=1': ignoring

[drm] Initialized i915 1.6.0 20080730 on minor 0

# egrep -i '(uxa|exa)' /var/log/Xorg.log
(==) intel(0): Using EXA for acceleration
(II) intel(0): Using exact sizes for initial modes
(II) Loading sub module "exa"
(II) LoadModule: "exa"
(II) Loading /usr/lib/xorg/modules//libexa.so
(II) Module exa: vendor="X.Org Foundation"
(WW) intel(0): DRI2 requires UXA
(II) EXA(0): Offscreen pixmap area of 41287680 bytes
(II) EXA(0): Driver registered support for the following operations:
(II) intel(0): 0x0d8a-0x0fff: exa offscreen (40320 kB)
  
That's a surprise. Could you try forcing UXA by adding 'option 
"AccelMethod" "uxa"' to the device section of your xorg.conf?


- David Nusinow



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



Bug#469166: marked as done (xserver-xorg-input-synaptics: syndaemon's main loop has a hard-coded poll frequency)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 19:34:22 +0200
with message-id <20090416173422.ga9...@loulous.org>
and subject line Re: Bug#469166: xserver-xorg-input-synaptics: syndaemon's main 
loop has a hard-coded poll frequency
has caused the Debian Bug report #469166,
regarding xserver-xorg-input-synaptics: syndaemon's main loop has a hard-coded 
poll frequency
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.)


-- 
469166: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=469166
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-input-synaptics
Version: 0.14.7~git20070517-2
Severity: wishlist

*** Please type your report below this line ***

syndaemon's main loop is hard-coded to sleep for 20 milliseconds between
polling. This causes a significant amount of 2 * 50 cpu wakeups per
second (as seen on powertop).

Since syndaemon is mainly useful with laptops, I would like to see this
changed or (optimally) made configurable.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (700, 'testing'), (400, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xserver-xorg-input-synaptics depends on:
ii  libc62.7-6   GNU C Library: Shared libraries
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxext6 1:1.0.3-2   X11 miscellaneous extension librar
ii  libxi6   2:1.1.3-1   X11 Input extension library
ii  xserver-xorg-cor 2:1.3.0.0.dfsg-12lenny2 X.Org X server -- core server

xserver-xorg-input-synaptics recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
The original bug reported here has been fixed for a while
(patch applied upstream).

Brice

--- End Message ---


Bug#497163: marked as done (xutils dependant on xutils-dev)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 19:26:31 +0200
with message-id <20090416172631.ga9...@loulous.org>
and subject line Re: Bug#497163: xutils dependant on xutils-dev
has caused the Debian Bug report #497163,
regarding xutils dependant on xutils-dev
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.)


-- 
497163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xutils
Version: 1:7.3+15 
Severity: normal

I'd like to keep some systems clean from development packages:

~# apt-get remove xutils-dev
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages will be REMOVED:
  xutils xutils-dev
0 upgraded, 0 newly installed, 2 to remove and 69 not upgraded.
After this operation, 1847kB disk space will be freed.
Do you want to continue [Y/n]? n
Abort.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.23.12 (PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
 xutils 
Package: xutils
Status: install ok installed
Priority: optional
Section: x11
Installed-Size: 148
Maintainer: Debian X Strike Force 
Architecture: all
Source: xorg
Version: 1:7.3+15
Depends: x11-xfs-utils, x11-utils, x11-xserver-utils, x11-session-utils, 
xfonts-utils, xutils-dev
Description: X Window System utility programs metapackage
 xutils provides a set of utility programs shipped with the X Window System.
 Many of these programs are useful even on a system that does not have any X
 clients or X servers installed.
 .
 This package is provided for transition from earlier Debian releases, the
 programs formerly in xutils and xbase-clients having been split out in smaller
 packages.

-- no debconf information



--- End Message ---
--- Begin Message ---
Version: 1:7.4+1

Fixed now.

--- End Message ---


Bug#524340: Reproducible GUI lockups

2009-04-16 Thread J.H.M. Dassen (Ray)
Hello David,

On Thu, Apr 16, 2009 at 10:40:14 -0400, David Nusinow wrote:
> J.H.M. Dassen (Ray) wrote:
>> (==) intel(0): Using EXA for acceleration
>>   
> Could you try upgrading to kernel 2.6.29 and seeing if that helps?

Actually, this was with 2.6.29.1 already. I'm building from source, with
CONFIG_DRM_I915=m
CONFIG_DRM_I915_KMS=y

On Thu, Apr 16, 2009 at 11:14:27 -0400, David Nusinow wrote:
> Sorry, in my last mail I forgot to mention that you have to enable KMS.  
> You should be able to do that by adding
> "i915.modeset=1" on the kernel command line.

This doesn't seem to work:
# dmesg | grep 915
Command line: root=/dev/mapper/Debsys-Root ro i915.modeset=1 
Kernel command line: root=/dev/mapper/Debsys-Root ro i915.modeset=1 
Unknown boot option `i915.modeset=1': ignoring
[drm] Initialized i915 1.6.0 20080730 on minor 0

# egrep -i '(uxa|exa)' /var/log/Xorg.log
(==) intel(0): Using EXA for acceleration
(II) intel(0): Using exact sizes for initial modes
(II) Loading sub module "exa"
(II) LoadModule: "exa"
(II) Loading /usr/lib/xorg/modules//libexa.so
(II) Module exa: vendor="X.Org Foundation"
(WW) intel(0): DRI2 requires UXA
(II) EXA(0): Offscreen pixmap area of 41287680 bytes
(II) EXA(0): Driver registered support for the following operations:
(II) intel(0): 0x0d8a-0x0fff: exa offscreen (40320 kB)

Kind regards,
Ray
-- 
These days we're all supposed to believe that everyone's opinion is equally
valid, but sometimes you just have to stand up and say "Your opinion is
wrong, and here is why, in overwhelming detail."
http://www.kuro5hin.org/?op=displaystory;sid=2000/10/1/21448/7653



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



Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Alex Deucher
On 4/16/09, Alex Deucher  wrote:
> On 4/16/09, Jacek Politowski  wrote:
>  > On Thu, Apr 16, 2009 at 12:12:26PM -0400, Alex Deucher wrote:
>  >  >On 4/16/09, Jacek Politowski  wrote:
>  >  >> On Thu, Apr 16, 2009 at 08:48:10AM +0200, Michel Dänzer wrote:
>  >  >>  >On Thu, 2009-04-16 at 00:07 +0200, Jacek Politowski wrote:
>  >  >>
>  >  >>  >> Package: xserver-xorg-video-radeon
>  >  >>  >> Version: 1:6.12.2-1
>  >  >>  >> Severity: normal
>  >  >>
>  >  >>  >> After recent upgrade (I believe) display got totally corrupted.
>  >  >>  (...)
>  >  >>  >> I'm using AGP Radeon X800 GTO with HP LP2475w monitor, connected 
> via DVI.
>  >  >>  >> This card has both D-Sub and DVI connectors.
>  >  >>  >>
>  >  >>  >> Upgrade:
>  >  >>  >> xserver-xorg-video-radeon 1:6.9.0-1+lenny4 -> 1:6.12.2-1
>  >  >>  >>
>  >  >>  >> After this upgrade I haven't rebooted machine, nor have I 
> restarted GDM/logged
>  >  >>  >> out, until today's upgrade:
>  >  >>  >> [UPGRADE] xserver-common 2:1.6.0-1 -> 2:1.6.1-1
>  >  >>  >> [UPGRADE] xserver-xephyr 2:1.6.0-1 -> 2:1.6.1-1
>  >  >>  >> [UPGRADE] xserver-xorg-core 2:1.6.0-1 -> 2:1.6.1-1
>  >  >>  (...)
>  >  >>  >> After this, machine booted to described state.
>  >
>  > (...)
>  >
>  > >>  >Does
>  >  >>  >   Option  "DRI" "off"
>  >  >>  >work around the problem?
>  >  >>
>  >  >>  No, it doesn't.
>  >
>  >  >Does:
>  >  >Option "NoAccel" "TRUE"
>  >  >work around the problem?
>  >
>  >
>  > That was the first thing I've checked. Sorry, I obviously forgot to
>  >  mention that in my initial bug report.
>  >
>  >  Combinig
>  > Option "DRI" "off"
>  >  and
>  > Option "NoAccel" "true"
>  >  doesn't help either.
>  >
>  >
>  >  I've tried to boot Windows XP on the machine and it works correctly,
>  >  this probably rules out hardware failure.
>  >
>  >  I also tried:
>  > Option "R4xxATOM" "true"
>  >  (_also_ together with DRI off and NoAccel true) but it didn't help too.
>
>
> Switching back to 6.9.0 with your current kernel/xserver/etc. fixes
>  it?  How about 6.10.0 or 6.11.0 or 6.12.1?  It would be helpful to
>  narrow down where the problem was introduced.

Does the attached patch help?

Alex


debian524280.diff
Description: application/mbox


Processed: Re: Bug#524098: xserver-xorg: dependency on console-setup broke keyboard settings

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

> reassign 524098 hal
Bug#524098: xserver-xorg: dependency on console-setup broke keyboard settings
Bug reassigned from package `xserver-xorg' to `hal'.

> kthxbye
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#524098: xserver-xorg: dependency on console-setup broke keyboard settings

2009-04-16 Thread Julien Cristau
reassign 524098 hal
kthxbye

On Thu, Apr 16, 2009 at 17:38:24 +0200, Gabor Gombas wrote:

> reassign 524098 xserver-xorg
> thanks
> 
> On Tue, Apr 14, 2009 at 10:46:24PM +0200, Brice Goglin wrote:
> 
> > In the meantime, you can trying moving away
> > /usr/share/hal/fdi/policy/10osvendor/debian-x11-keymap.fdi
> 
> Yes, that works (at least lshal now returns the correct values; I have
> long-running jobs so I can't log out to test if X receives them). From
> what little I understand from HAL, the call to debian-setup-keyboard
> happens _after_ procesing the .fdi files, so it will always overwrite
> any custom configuration unconditionally.
> 
that still sounds like a hal bug to me.

> You should probably not only check for the existence of the input.xkb.*
> keys, but also that all keys still have the default value. Probably you
> should remove the xkb-specific part from
> /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi, and

that's shipped by hal, so xserver-xorg can't do anything about that.

> debian-setup-keyboard should only set the input.xkb.* properties if they
> are _all_ empty (otherwise it would be difficult to distinguish the
> "layout is US by default" and the "layout has been explicitely set to
> US" cases).
> 
i don't think debian-setup-keyboard can distinguish between 'layout set
by hal's 10-keymap.fdi' and 'layout set by the user's config' currently.

Cheers,
Julien



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



Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Alex Deucher
On 4/16/09, Jacek Politowski  wrote:
> On Thu, Apr 16, 2009 at 12:12:26PM -0400, Alex Deucher wrote:
>  >On 4/16/09, Jacek Politowski  wrote:
>  >> On Thu, Apr 16, 2009 at 08:48:10AM +0200, Michel Dänzer wrote:
>  >>  >On Thu, 2009-04-16 at 00:07 +0200, Jacek Politowski wrote:
>  >>
>  >>  >> Package: xserver-xorg-video-radeon
>  >>  >> Version: 1:6.12.2-1
>  >>  >> Severity: normal
>  >>
>  >>  >> After recent upgrade (I believe) display got totally corrupted.
>  >>  (...)
>  >>  >> I'm using AGP Radeon X800 GTO with HP LP2475w monitor, connected via 
> DVI.
>  >>  >> This card has both D-Sub and DVI connectors.
>  >>  >>
>  >>  >> Upgrade:
>  >>  >> xserver-xorg-video-radeon 1:6.9.0-1+lenny4 -> 1:6.12.2-1
>  >>  >>
>  >>  >> After this upgrade I haven't rebooted machine, nor have I restarted 
> GDM/logged
>  >>  >> out, until today's upgrade:
>  >>  >> [UPGRADE] xserver-common 2:1.6.0-1 -> 2:1.6.1-1
>  >>  >> [UPGRADE] xserver-xephyr 2:1.6.0-1 -> 2:1.6.1-1
>  >>  >> [UPGRADE] xserver-xorg-core 2:1.6.0-1 -> 2:1.6.1-1
>  >>  (...)
>  >>  >> After this, machine booted to described state.
>
> (...)
>
> >>  >Does
>  >>  >   Option  "DRI" "off"
>  >>  >work around the problem?
>  >>
>  >>  No, it doesn't.
>
>  >Does:
>  >Option "NoAccel" "TRUE"
>  >work around the problem?
>
>
> That was the first thing I've checked. Sorry, I obviously forgot to
>  mention that in my initial bug report.
>
>  Combinig
> Option "DRI" "off"
>  and
> Option "NoAccel" "true"
>  doesn't help either.
>
>
>  I've tried to boot Windows XP on the machine and it works correctly,
>  this probably rules out hardware failure.
>
>  I also tried:
> Option "R4xxATOM" "true"
>  (_also_ together with DRI off and NoAccel true) but it didn't help too.

Switching back to 6.9.0 with your current kernel/xserver/etc. fixes
it?  How about 6.10.0 or 6.11.0 or 6.12.1?  It would be helpful to
narrow down where the problem was introduced.

Alex



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



Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Jacek Politowski
On Thu, Apr 16, 2009 at 12:12:26PM -0400, Alex Deucher wrote:
>On 4/16/09, Jacek Politowski  wrote:
>> On Thu, Apr 16, 2009 at 08:48:10AM +0200, Michel Dänzer wrote:
>>  >On Thu, 2009-04-16 at 00:07 +0200, Jacek Politowski wrote:
>>
>>  >> Package: xserver-xorg-video-radeon
>>  >> Version: 1:6.12.2-1
>>  >> Severity: normal
>>
>>  >> After recent upgrade (I believe) display got totally corrupted.
>>  (...)
>>  >> I'm using AGP Radeon X800 GTO with HP LP2475w monitor, connected via DVI.
>>  >> This card has both D-Sub and DVI connectors.
>>  >>
>>  >> Upgrade:
>>  >> xserver-xorg-video-radeon 1:6.9.0-1+lenny4 -> 1:6.12.2-1
>>  >>
>>  >> After this upgrade I haven't rebooted machine, nor have I restarted 
>> GDM/logged
>>  >> out, until today's upgrade:
>>  >> [UPGRADE] xserver-common 2:1.6.0-1 -> 2:1.6.1-1
>>  >> [UPGRADE] xserver-xephyr 2:1.6.0-1 -> 2:1.6.1-1
>>  >> [UPGRADE] xserver-xorg-core 2:1.6.0-1 -> 2:1.6.1-1
>>  (...)
>>  >> After this, machine booted to described state.
(...)
>>  >Does
>>  >   Option  "DRI" "off"
>>  >work around the problem?
>>
>>  No, it doesn't.

>Does:
>Option "NoAccel" "TRUE"
>work around the problem?

That was the first thing I've checked. Sorry, I obviously forgot to
mention that in my initial bug report.

Combinig
Option "DRI" "off"
and
Option "NoAccel" "true"
doesn't help either.


I've tried to boot Windows XP on the machine and it works correctly,
this probably rules out hardware failure.

I also tried:
Option "R4xxATOM" "true"
(_also_ together with DRI off and NoAccel true) but it didn't help too.


-- 
Jacek Politowski



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



Bug#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Alex Deucher
On 4/16/09, Jacek Politowski  wrote:
> On Thu, Apr 16, 2009 at 08:48:10AM +0200, Michel Dänzer wrote:
>  >On Thu, 2009-04-16 at 00:07 +0200, Jacek Politowski wrote:
>
>  >> Package: xserver-xorg-video-radeon
>  >> Version: 1:6.12.2-1
>  >> Severity: normal
>
>  >> After recent upgrade (I believe) display got totally corrupted.
>  (...)
>  >> I'm using AGP Radeon X800 GTO with HP LP2475w monitor, connected via DVI.
>  >> This card has both D-Sub and DVI connectors.
>  >>
>  >> Upgrade:
>  >> xserver-xorg-video-radeon 1:6.9.0-1+lenny4 -> 1:6.12.2-1
>  >>
>  >> After this upgrade I haven't rebooted machine, nor have I restarted 
> GDM/logged
>  >> out, until today's upgrade:
>  >> [UPGRADE] xserver-common 2:1.6.0-1 -> 2:1.6.1-1
>  >> [UPGRADE] xserver-xephyr 2:1.6.0-1 -> 2:1.6.1-1
>  >> [UPGRADE] xserver-xorg-core 2:1.6.0-1 -> 2:1.6.1-1
>  (...)
>  >> After this, machine booted to described state.
>
>  >So you never tested xserver-xorg-video-radeon 1:6.12.2-1 with
>  >xserver-xorg-core 2:1.6.0-1?
>
>  Yup, that's right. I've never tested this combination.
>
>  >Does
>  >   Option  "DRI" "off"
>  >work around the problem?
>
>  No, it doesn't.

Does:
Option "NoAccel" "TRUE"
work around the problem?

Alex



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



Processed: Re: Bug#524098: xserver-xorg: dependency on console-setup broke keyboard settings

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

> reassign 524098 xserver-xorg
Bug#524098: xserver-xorg: dependency on console-setup broke keyboard settings
Bug reassigned from package `hal' to `xserver-xorg'.

> 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



Processed: tagging 523589

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

> tags 523589 + fixed-upstream
Bug#523589: xserver-xorg-video-radeon: dualhead broke with upgrade
There were no tags set.
Tags added: 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#524280: Display broken beyond recognition after upgrade to 1:6.12.2-1

2009-04-16 Thread Jacek Politowski
On Thu, Apr 16, 2009 at 08:48:10AM +0200, Michel Dänzer wrote:
>On Thu, 2009-04-16 at 00:07 +0200, Jacek Politowski wrote:

>> Package: xserver-xorg-video-radeon
>> Version: 1:6.12.2-1
>> Severity: normal

>> After recent upgrade (I believe) display got totally corrupted.
(...)
>> I'm using AGP Radeon X800 GTO with HP LP2475w monitor, connected via DVI.
>> This card has both D-Sub and DVI connectors.
>> 
>> Upgrade:
>> xserver-xorg-video-radeon 1:6.9.0-1+lenny4 -> 1:6.12.2-1
>> 
>> After this upgrade I haven't rebooted machine, nor have I restarted 
>> GDM/logged
>> out, until today's upgrade:
>> [UPGRADE] xserver-common 2:1.6.0-1 -> 2:1.6.1-1
>> [UPGRADE] xserver-xephyr 2:1.6.0-1 -> 2:1.6.1-1
>> [UPGRADE] xserver-xorg-core 2:1.6.0-1 -> 2:1.6.1-1
(...)
>> After this, machine booted to described state.

>So you never tested xserver-xorg-video-radeon 1:6.12.2-1 with
>xserver-xorg-core 2:1.6.0-1?

Yup, that's right. I've never tested this combination.

>Does
>   Option  "DRI" "off"
>work around the problem?

No, it doesn't.


-- 
Jacek Politowski



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



xorg: Changes to 'debian-unstable'

2009-04-16 Thread David Nusinow
 debian/xserver-xorg.NEWS |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 287674da0a833853f8d976d351f4b50f173c22e0
Author: David Nusinow 
Date:   Thu Apr 16 11:18:33 2009 -0400

Add a note about what people should do for the keycode breakage

diff --git a/debian/xserver-xorg.NEWS b/debian/xserver-xorg.NEWS
index 5212f20..74a460d 100644
--- a/debian/xserver-xorg.NEWS
+++ b/debian/xserver-xorg.NEWS
@@ -17,7 +17,8 @@ xserver-xorg (1:7.4+1) unstable; urgency=low
 
   As a result of using the evdev driver for keyboards, the keycodes for some
   keys are no longer the traditional xfree86 ones.  This will break custom
-  Xmodmaps relying on the old keycodes.
+  Xmodmaps relying on the old keycodes. You'll need to re-configure these
+  custom maps with the new keycodes.
 
  -- Julien Cristau   Thu, 16 Apr 2009 17:01:11 +0200
 


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



Bug#524340: Reproducible GUI lockups

2009-04-16 Thread David Nusinow
Sorry, in my last mail I forgot to mention that you have to enable KMS. 
You should be able to do that by adding

"i915.modeset=1" on the kernel command line.

- David Nusinow



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



xorg: Changes to 'debian-unstable'

2009-04-16 Thread Julien Cristau
 debian/changelog |8 +++-
 debian/xserver-xorg.NEWS |   15 ---
 2 files changed, 19 insertions(+), 4 deletions(-)

New commits:
commit 49cc8aa18c13f27bdf08074508c2af196b6c32af
Author: Julien Cristau 
Date:   Thu Apr 16 17:06:27 2009 +0200

Add warning about evdev keycodes vs xmodmap to xserver-xorg.NEWS

Update the NEWS entry for xserver-xorg 1:7.4+1 to include a
warning about keycode changes breaking Xmodmaps (closes: #523562).
Thanks, Manoj Srivastava!

diff --git a/debian/changelog b/debian/changelog
index bc0a3b5..da7c3b5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,9 +2,15 @@ xorg (1:7.4+2) UNRELEASED; urgency=low
 
   * Slovak debconf translation updated (closes: #523448).
 
+  [ David Nusinow ]
   * Don't discuss removal of xserver-xorg in its description. 
 It remains tied to -core at this point. (closes: #523630).
-   
+
+  [ Julien Cristau ]
+  * Update the NEWS entry for xserver-xorg 1:7.4+1 to include a warning about
+keycode changes breaking Xmodmaps (closes: #523562).  Thanks, Manoj
+Srivastava!
+
  -- Julien Cristau   Fri, 10 Apr 2009 14:12:51 +0100
 
 xorg (1:7.4+1) unstable; urgency=low
diff --git a/debian/xserver-xorg.NEWS b/debian/xserver-xorg.NEWS
index 6987bec..5212f20 100644
--- a/debian/xserver-xorg.NEWS
+++ b/debian/xserver-xorg.NEWS
@@ -1,16 +1,25 @@
 xserver-xorg (1:7.4+1) unstable; urgency=low
 
+  * Changes in handling of input devices
+
   Starting from this version, input devices are no longer configured
   statically in /etc/X11/xorg.conf.  Instead, input devices are detected at
   runtime (and can be hotplugged) and configured individually.  The default
   keyboard layout is shared with the console and is configured in
-  /etc/default/console-setup.  As a result, devices configured to use the
-  mouse or kbd driver are ignored by the X server by default.
+  /etc/default/console-setup.  As a result, devices configured in xorg.conf to
+  use the mouse or kbd driver are ignored by the X server by default.
+
   For more details, see:
   http://who-t.blogspot.com/2008/12/evdev-xorgconf-hal-and-other-fud.html
   http://who-t.blogspot.com/2008/10/new-keyboard-configuration-handling.html
 
- -- Julien Cristau   Wed, 25 Mar 2009 03:40:18 +0100
+  * keycodes changes will break custom Xmodmaps
+
+  As a result of using the evdev driver for keyboards, the keycodes for some
+  keys are no longer the traditional xfree86 ones.  This will break custom
+  Xmodmaps relying on the old keycodes.
+
+ -- Julien Cristau   Thu, 16 Apr 2009 17:01:11 +0200
 
 xserver-xorg (1:7.0.15) unstable; urgency=low
 


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



Bug#523589: xserver-xorg-video-radeon: dualhead broke with upgrade

2009-04-16 Thread di dit
2009/4/16 Alex Deucher :
> Does reverting the commit (f8c7d6a6162196a743f6885ecaf63ba50de1722a)
> mentioned in the bug above fix the issue?

Yes it does. Congratulations, you've found the culprit!
(Sorry, I didn't notice earlier that you already suspected this commit.)



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



Bug#523589: xserver-xorg-video-radeon: dualhead broke with upgrade

2009-04-16 Thread Alex Deucher
On 4/16/09, di dit  wrote:
> 2009/4/16 Alex Deucher :
>
> > Does reverting the commit (f8c7d6a6162196a743f6885ecaf63ba50de1722a)
>  > mentioned in the bug above fix the issue?
>
>
> Yes it does. Congratulations, you've found the culprit!
>  (Sorry, I didn't notice earlier that you already suspected this commit.)
>

Thanks for confirming.  revert pushed.

Alex



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



Bug#523529: Acknowledgement (xserver-xorg-video-sis: Server crashes on switching video modes (kde session exit under kdm))

2009-04-16 Thread Anton Ivanov
It is possible to workaround this issue by using the sysfb kernel
driver and setting the mode from the start to be the same as the X video
mode.


-- 
   Understanding is a three-edged sword:
your side, their side, and the truth. --Kosh Naranek

A. R. Ivanov
E-mail:  aiva...@sigsegv.cx
WWW: http://www.sigsegv.cx/
pub 1024D/DDE5E715 2002-03-03 Anton R. Ivanov 
Fingerprint: C824 CBD7 EE4B D7F8 5331  89D5 FCDA 572E DDE5 E715





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



Bug#524340: Reproducible GUI lockups

2009-04-16 Thread David Nusinow

Hi Ray,

J.H.M. Dassen (Ray) wrote:

(==) intel(0): Using EXA for acceleration
  
Could you try upgrading to kernel 2.6.29 and seeing if that helps? This 
should enable UXA rather than EXA by default, which has been reported to 
fix issues for some people, particularly with this new version.


- David Nusinow



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



Bug#524340: Reproducible GUI lockups

2009-04-16 Thread Brice Goglin
J.H.M. Dassen (Ray) wrote:
> On Thu, Apr 16, 2009 at 14:06:54 +0200, Brice Goglin wrote:
>   
>> Does the problem occur without Compiz?
>> 
>
> I will need to test this. Option "Composite" "disable", right?
>   

No, you want to start a dumb window manager instead of starting a
complex environment (what you call a GUI) with compiz enabled.

For instance, start a failsafe session, run twm, some xterms...

Brice




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



Bug#523578: marked as done ([xserver-xorg-video-intel] UXA crashes Xorg when logging out of KDE)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 16:20:50 +0200
with message-id <49e73ec2.6050...@ens-lyon.org>
and subject line Re: Bug#523578: [xserver-xorg-video-intel] UXA crashes Xorg 
when logging out of KDE
has caused the Debian Bug report #523578,
regarding [xserver-xorg-video-intel] UXA crashes Xorg when logging out of KDE
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.)


-- 
523578: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523578
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.6.3-1
Severity: important

With UXA enabled, I'm having problems when logging out of KDE (I haven't tried 
this with GNOME/XFCE + GDM). If I'm lucky, it drops me down to a console, and 
I can just restart X and KDE again. But more often, it crashes the X Server, 
and gives me a blank screen that I can only get out of using the power button 
or RSEIUB.

I don't experience this problem when using EXA.

I'm using a ThinkPad SL400 with an X4500MHD graphics chip. Here's the last 
part of my Xorg log from when I tried to log out of KDE:

(EE) Logitech Optical USB Mouse: Read error: Resource temporarily unavailable
(II) AT Translated Set 2 keyboard: Close
(II) UnloadModule: "evdev"
(II) Video Bus: Close
(II) UnloadModule: "evdev"
(II) Macintosh mouse button emulation: Close
(II) UnloadModule: "evdev"
(II) TPPS/2 IBM TrackPoint: Close
(II) UnloadModule: "evdev"
(II) Logitech Optical USB Mouse: Close
(II) UnloadModule: "evdev"
(II) UnloadModule: "synaptics"
(II) Open ACPI successful (/var/run/acpid.socket)
(II) APM registered successfully
(II) intel(0): Kernel reported 1264128 total, 1 used
(II) intel(0): I830CheckAvailableMemory: 5056508 kB available
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 13, (OK)
drmOpenByBusid: Searching for BusID pci::00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 13, (OK)
drmOpenByBusid: drmOpenMinor returns 13
drmOpenByBusid: drmGetBusid reports pci::00:02.0
(II) intel(0): [DRI2] Setup complete
(**) intel(0): Framebuffer compression enabled
(**) intel(0): Tiling enabled
(EE) intel(0): Failed to initialize kernel memory manager 

Here's my xorg.conf:


Section "ServerLayout"
   Identifier   "Xorg Configured"
   Screen  "Screen 0"
EndSection

Section "ServerFlags"
   Option  "AllowMouseOpenFail"   "true"
   Option   "DontZap"   "Off"
EndSection

Section "Device"
   Identifier   "Device 0"
   Driver  "intel"
   BoardName   "Intel Corporation Mobile 4 Series Chipset Integrated Graphics 
Controller"
   BusID  "PCI:0:2:0"
   Option   "AccelMethod""uxa" 
EndSection

Section "Monitor"   
   Identifier   "Monitor 0"
   ModelName   "Default Monitor"
   HorizSync   28-96
   VertRefresh   50-75
   Modeline "640x350"  25.02  640 656 720 800  350 351 354 368  -HSync +Vsync
   Modeline "640x400"  29.20  640 664 728 816  400 401 404 421  -HSync +Vsync
   Modeline "640x480"  23.86  640 656 720 800  480 481 484 497  -HSync +Vsync
   Modeline "640x480"  29.43  640 664 728 816  480 481 484 501  -HSync +Vsync
   Modeline "640x480"  30.72  640 664 728 816  480 481 484 502  -HSync +Vsync
   Modeline "640x480"  35.71  640 672 736 832  480 481 484 505  -HSync +Vsync
   Modeline "640x480"  43.16  640 680 744 848  480 481 484 509  -HSync +Vsync
   Modeline "720x400"  32.64  720 744 816 912  400 401 404 421  -HSync +Vsync
   Modeline "768x576"  34.96  768 792 872 976  576 577 580 597  -HSync +Vsync
   Modeline "768x576"  42.93  768 800 880 992  576 577 580 601  -HSync +Vsync
   Modeline "768x576"  45.51  768 808 888 1008  576 577 580 602  -HSync +Vsync
   Modeline "768x576"  51.84  768 808 888 1008  576 577 580 605  -HSync +Vsync
   Modeline "768x576"  62.57  768 816 896 1024  576 577 580 611  -HSync +Vsync
   Modeline "800x600"  35.55  800 832 912 1024  600 601 604 620  -HSync +Vsync
   Modeline "800x600"  38.22  800 832 912 1024  600 601 604 622  -HSync +Vsync
   Modeline "800x600"  46.87  800 840 920 1040  600 601 604 626  -HSync +Vsync
   Modeline "800x600"  48.91  800 840 920 1040  600 601 604 627  -HSync +Vsync
   Modeline "800x600"  56.55  800 840 928 1056  600 601 604 630  -HSync +Vsync
   Modeline "800x600"  68.18  800 848 936 1072  600 601 604 636  -HSync +Vsync
   Modeline "1024x600"  48.96  1024 1064 1168 1312  600 601 604 622  -HSync 
+Vsync
   Modeline "1024x768"  64.11  1024 1080 1184 1344  768 769 772 795  -HSync 
+Vsync
   Modeline "1024x768"  76.16  1024 1080 1192 1360  768 769 772 800  -HSync 
+Vsync
   Modeline "1024x768"  81.80  1024 1080 1192 1360  

Bug#524340: Reproducible GUI lockups

2009-04-16 Thread J.H.M. Dassen (Ray)
On Thu, Apr 16, 2009 at 14:06:54 +0200, Brice Goglin wrote:
> Does the problem occur without Compiz?

I will need to test this. Option "Composite" "disable", right?

> Note that if the machine locks up, gdb is useless.

With the GUI locked up, the system remains usable remotely; the surprising
thing was that trying to run gdb on the Xserver (with the GUI locked up)
triggered the full system lock-up. 
-- 
"Text processing doesn't matter."  Fortran.
Larry Wall on common fallacies of language design



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



Bug#523589: xserver-xorg-video-radeon: dualhead broke with upgrade

2009-04-16 Thread Alex Deucher
On 4/16/09, di dit  wrote:
> 2009/4/15 Alex Deucher :
>
> > Sounds like:
>  > https://bugs.freedesktop.org/show_bug.cgi?id=21199
>
>
> Indeed.
>
>
>  > Does:
>  > xset dpms force off
>  > followed by moving the mouse cause both screens to come on?
>
>
> Yes it does. Thanks for the workaround!
>  I'm ready to test patches to solve this issue if needed.
>  Thank you very much for your help.
>

Does reverting the commit (f8c7d6a6162196a743f6885ecaf63ba50de1722a)
mentioned in the bug above fix the issue?

Alex



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



Tips Every Guy Needs to Know

2009-04-16 Thread Nehring

Poirot shook his no, he said thoughtfully, no the inhabited
country to the desert. And he took.

How to Make Love - The Key No One Talks About


Here,' she announced in an excited i concealed were naturally
eager to repudiate sectionalism, time become formulated
in distinct political doctrines. Here at once. Morrison
withdraws. Lady britomart last to the widest vantage of
outlookthe wild du morbihan, 1883, p. 12.nature, january
2, 1886.bul. Of whom i expect you were fond. You were frantic
and occasional massacres in frontier settlements, lack lustre
eye at the left hand centre page, the hall, bringing the
key with him. He unlocked the bottle with the two red bands
round it, which great and special beauty further recommends
this.


Processed: retitle 524340 to [g33] reproducible lockups with compiz

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

> retitle 524340 [g33] reproducible lockups with compiz
Bug#524340: Reproducible GUI lockups
Changed Bug title to `[g33] reproducible lockups with compiz' from 
`Reproducible GUI lockups'.

>
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#523578: [xserver-xorg-video-intel] UXA crashes Xorg when logging out of KDE

2009-04-16 Thread Yves Paredes
Version 2.7.0-1 of the Intel driver which has just entered Sid seems to have 
solved the problem.




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



Bug#524340: Reproducible GUI lockups

2009-04-16 Thread Brice Goglin
J.H.M. Dassen (Ray) wrote:
> Package: xserver-xorg-video-intel
> Version: 2:2.7.0-1
> Severity: important
>
> What am I trying to do:
> Use the GUI.
>
> How am I trying to do it:
> Log in through xdm into a GNOME environment with compiz set up
>
> What behaviour did I expect:
> GUI to be responsive
>
> What behaviour did I get:
> * After a short while, the GUI environment ceases to be responsive except
>   for the mouse cursor.
> * The effect is (almost) immediate when switching desktop through
>   ctrl-alt-right. 
> * When I run with compiz replaced by metacity, the lockups also occur after
>   a while.
>
> Notes:
> * This behaviour seems to have started when the system was updated to an
>   xserver-xorg-video-intel package that requires libdrm, a week or two ago.
>   Before that, the GUI was working reliably.
> * The system as a whole can still be used remotely.
> * Switching to virtual terminals through ctrl-alt-Fn or through "chvt" is
>   sometimes possible after the lockup occurs, sometimes not.
> * I've tried to capture an application core dump of the X server:
>   #  sudo gcore 6759
>   [sudo] password for ray: 
>   (no debugging symbols found)
>   (no debugging symbols found)
>   [Thread debugging using libthread_db enabled]
>   [New Thread 0x7f2b91518790 (LWP 6759)]
>   0x7f2b8f05b0b7 in ioctl () from /lib/libc.so.6
>   warning: Memory read failed for corefile section, 1048576 bytes at
>   0x7f2b7b3b5000.
>   at which point the system hung completely, was no longer responsive to
>   magic sysrq and needed to be reset.
>
> Please let me know, should additional information or testing be needed.
>   


Does the problem occur without Compiz?

Note that if the machine locks up, gdb is useless.

Brice




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



Bug#524335: Not that severe, after all

2009-04-16 Thread Brice Goglin
Cyrille Chépélov wrote:
> severity 524335 normal
> title 524335 has trouble resetting the hardware into the intended state   
> thanks
>
> After a reboot, the driver did produce a working screen, in 1600x1050 at
> the GDM prompt.
>
> After logging on, for some reason the screen went pink and slightly
> garbled, and at a 1440x900ish resolution, but that was functional enough
> to reach for the gRandR applet and put it back into 1600x1050. So far
> (and after several similar tries) the result is satisfactorily in 2D.
>
> Seems the problem will be over once the slight issue with completely
> resetting the hardware state on mode changes is solved.
>   

By the way, you might want to try with upstream drm kernel modules since
they bring better support for your board.

Brice




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



Bug#524335: xserver-xorg-video-radeonhd: Fails to render anything but the mouse

2009-04-16 Thread Brice Goglin
Cyrille Chépélov wrote:
> Package: xserver-xorg-video-radeonhd
> Version: 1.2.5-1
> Severity: important
> Justification: package is unusable on this specific setup
>
> On this setup (ATI Radeon HD4350), this version of the driver produces a
> white screen, with the mouse pointer.
>
> The mouse pointer geometry changes according to where the usual GDM entry
> fields are supposed to be, leading me to believe the driver mostly works,
> except for the actually "push bits to the screen" part.
>   

Did 1.2.4 work fine?
Does the radeon driver work?

Brice




-- 
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-04-16 Thread Brice Goglin
 debian/changelog |7 +++
 debian/control   |1 +
 debian/rules |2 +-
 3 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 756141da6b10e4c1e04c717f307c8bde255757e8
Author: Brice Goglin 
Date:   Thu Apr 16 13:51:59 2009 +0200

Move -dbg package to section debug

diff --git a/debian/changelog b/debian/changelog
index 22c41f9..ecc78d3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 xserver-xorg-video-intel (2:2.7.0-2) UNRELEASED; urgency=low
 
   * Install the upstream NEWS file, closes: #524334, #524336.
+  * Move the -dbg package to section debug.
 
- -- Brice Goglin   Thu, 16 Apr 2009 13:48:55 +0200
+ -- Brice Goglin   Thu, 16 Apr 2009 13:52:00 +0200
 
 xserver-xorg-video-intel (2:2.7.0-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 5f0420c..77db2b1 100644
--- a/debian/control
+++ b/debian/control
@@ -52,6 +52,7 @@ Description: X.Org X server -- Intel i8xx, i9xx display driver
 Package: xserver-xorg-video-intel-dbg
 Architecture: amd64 hurd-i386 i386 kfreebsd-i386 kfreebsd-amd64 netbsd-i386
 Depends: xserver-xorg-video-intel (= ${binary:Version}), ${shlibs:Depends}
+Section: debug
 Priority: extra
 Description: X.Org X server -- Intel i8xx, i9xx display driver (debug symbols)
  This driver provides support for the Intel i8xx and i9xx family of chipsets,

commit 0579306a9fc3e891228ccf40e00cfbba72bf983b
Author: Brice Goglin 
Date:   Thu Apr 16 13:50:38 2009 +0200

Install the upstream NEWS file

diff --git a/debian/changelog b/debian/changelog
index d4215bb..22c41f9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-intel (2:2.7.0-2) UNRELEASED; urgency=low
+
+  * Install the upstream NEWS file, closes: #524334, #524336.
+
+ -- Brice Goglin   Thu, 16 Apr 2009 13:48:55 +0200
+
 xserver-xorg-video-intel (2:2.7.0-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/debian/rules b/debian/rules
index f1338b9..f693995 100755
--- a/debian/rules
+++ b/debian/rules
@@ -83,7 +83,7 @@ binary-arch: build install serverabi
dh_testdir
dh_testroot
 
-   dh_installdocs README
+   dh_installdocs README NEWS
dh_installchangelogs ChangeLog
dh_install --sourcedir=debian/tmp --list-missing --exclude=.la 
--exclude=usr/share/man/man4
dh_installman


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



Bug#524335: Not that severe, after all

2009-04-16 Thread Cyrille Chépélov
severity 524335 normal
title 524335 has trouble resetting the hardware into the intended state 
thanks

After a reboot, the driver did produce a working screen, in 1600x1050 at
the GDM prompt.

After logging on, for some reason the screen went pink and slightly
garbled, and at a 1440x900ish resolution, but that was functional enough
to reach for the gRandR applet and put it back into 1600x1050. So far
(and after several similar tries) the result is satisfactorily in 2D.

Seems the problem will be over once the slight issue with completely
resetting the hardware state on mode changes is solved.

Thanks

-- Cyrille





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



Bug#524331: marked as done (compiz: 0.8.2 only in amd64)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 13:47:41 +0200
with message-id <49e71add.6050...@ens-lyon.org>
and subject line Re: Bug#524331: compiz: 0.8.2 only in amd64
has caused the Debian Bug report #524331,
regarding compiz: 0.8.2 only in amd64
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.)


-- 
524331: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524331
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: compiz
Version: 1:0.7.9+git20080918.shame-0
Severity: grave
Justification: renders package unusable

Compiz 0.8.2 is only available for amd64. All other archs are stuck with
0.7.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.29-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz depends on:
ii  compiz-core  1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana
ii  compiz-gnome 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana
ii  compiz-plugi 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana

compiz recommends no packages.

compiz suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
notfound 524331 1:0.7.9+git20080918.shame-0
thank you



Goncalo Marrafa wrote:
> Package: compiz
> Version: 1:0.7.9+git20080918.shame-0
> Severity: grave
> Justification: renders package unusable
>
> Compiz 0.8.2 is only available for amd64. All other archs are stuck with
> 0.7.  
>   

That's not a bug.

Brice


--- End Message ---


Processed: Re: Bug#524331: compiz: 0.8.2 only in amd64

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

> notfound 524331 1:0.7.9+git20080918.shame-0
Bug#524331: compiz: 0.8.2 only in amd64
Bug no longer marked as found in version 1:0.7.9+git20080918.shame-0.

> thank you
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 524334 524336, tagging 524336

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

> forcemerge 524334 524336
Bug#524334: [xserver-xorg-video-intel] Please include NEWS file into the package
Bug#524336: xserver-xorg-video-intel: Please install NEWS file
Forcibly Merged 524334 524336.

> tags 524336 + pending
Bug#524336: xserver-xorg-video-intel: Please install NEWS file
There were no tags set.
Bug#524334: [xserver-xorg-video-intel] Please include NEWS file into the package
Tags added: pending

>
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#515148: [845G] Xorg hard locks cmptr with lenny kernel but not etch kernel

2009-04-16 Thread Gebhardt Thomas
Hi,

i was bitten by that bug, too. Really annoying!

This is my video card:

00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE 
Chipset Integrated Graphics Device (rev 01) (prog-if 00 [VGA controller])
Subsystem: Intel Corporation Device 5641
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at f000 (32-bit, prefetchable) [size=128M]
Memory at ffa8 (32-bit, non-prefetchable) [size=512K]
Capabilities: [d0] Power Management version 1
Kernel modules: i2c-i810, intelfb

After some fiddling I got a rudimentary but working vesa setup.
(after setting the shmem video size to 8MB in the BIOS)

#
Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "de"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
EndSection

Section "Device"
Identifier  "Configured Video Device"
Driver  "vesa"
EndSection

Section "Monitor"
Identifier  "Configured Monitor"
HorizSync   30.0 - 55.0
VertRefresh 56.0 - 65.0
EndSection

Section "Screen"
Identifier  "Default Screen"
Monitor "Configured Monitor"
DefaultDepth24
Subsection "Display"
Virtual 1024 768
EndSubsection
EndSection
#

SY, Th. Gebhardt



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



Processed: found 523953 in 2:2.7.0-1

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

> found 523953 2:2.7.0-1
Bug#523953: xserver-xorg-video-intel: Xserver crash whenever playing "high 
resolution" video
Bug marked as found in version 2:2.7.0-1.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#524340: Reproducible GUI lockups

2009-04-16 Thread J.H.M. Dassen (Ray)
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1
Severity: important

What am I trying to do:
Use the GUI.

How am I trying to do it:
Log in through xdm into a GNOME environment with compiz set up

What behaviour did I expect:
GUI to be responsive

What behaviour did I get:
* After a short while, the GUI environment ceases to be responsive except
  for the mouse cursor.
* The effect is (almost) immediate when switching desktop through
  ctrl-alt-right. 
* When I run with compiz replaced by metacity, the lockups also occur after
  a while.

Notes:
* This behaviour seems to have started when the system was updated to an
  xserver-xorg-video-intel package that requires libdrm, a week or two ago.
  Before that, the GUI was working reliably.
* The system as a whole can still be used remotely.
* Switching to virtual terminals through ctrl-alt-Fn or through "chvt" is
  sometimes possible after the lockup occurs, sometimes not.
* I've tried to capture an application core dump of the X server:
#  sudo gcore 6759
[sudo] password for ray: 
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 0x7f2b91518790 (LWP 6759)]
0x7f2b8f05b0b7 in ioctl () from /lib/libc.so.6
warning: Memory read failed for corefile section, 1048576 bytes at
0x7f2b7b3b5000.
  at which point the system hung completely, was no longer responsive to
  magic sysrq and needed to be reset.

Please let me know, should additional information or testing be needed.

Kind regards,
Ray

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-10-21 13:47 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1876496 2009-04-15 14:16 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82G33/G31 Express 
Integrated Graphics Controller (rev 02)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 702 2009-04-10 10:13 /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 "Device"
Identifier  "Configured Video Device"
BusID   "PCI:0:2:0"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 46819 2009-04-16 13:01 /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.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-1-vserver-amd64 x86_64 Debian
Current Operating System: Linux zensunni 2.6.29.1 #1 SMP PREEMPT Fri Apr 3 
09:02:35 CEST 2009 x86_64
Build Date: 15 April 2009  12:08:18PM
xorg-server 2:1.6.1-1 (bui...@excelsior.roeckx.be) 
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: Thu Apr 16 13:00:41 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 ""
(==) No device specified for screen "Default Screen Section".
Using the first device section listed.
(**) |   |-->Device "Configured Video Device"
(==) No monitor specified for screen "Default Screen Section".
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 point

Processed (with 1 errors): Not that severe, after all

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

> severity 524335 normal
Bug#524335: xserver-xorg-video-radeonhd: Fails to render anything but the mouse
Severity set to `normal' from `important'

> title 524335 has trouble resetting the hardware into the intended state
Unknown command or malformed arguments to command.

> 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#523953: xserver-xorg-video-intel: Experimental version seems to work

2009-04-16 Thread Matthias Breier
Hi,

I've just upgraded to version 2.7.0 and experience still the crashes. So no 
improvement on this aspect (though other, smaller bugs seem to have been 
fixed).

Bye 
Matthias




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



Bug#524336: xserver-xorg-video-intel: Please install NEWS file

2009-04-16 Thread Jonas Smedegaard
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1
Severity: minor

xserver-xorg-video-intel 2.7.0 shipped with a NEWS file.  Please install
it, to ease investigation what has changed.


Kind regards,

 - Jonas



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



Bug#524335: xserver-xorg-video-radeonhd: Fails to render anything but the mouse

2009-04-16 Thread Cyrille Chépélov
Package: xserver-xorg-video-radeonhd
Version: 1.2.5-1
Severity: important
Justification: package is unusable on this specific setup

On this setup (ATI Radeon HD4350), this version of the driver produces a
white screen, with the mouse pointer.

The mouse pointer geometry changes according to where the usual GDM entry
fields are supposed to be, leading me to believe the driver mostly works,
except for the actually "push bits to the screen" part.

-- Cyrille

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 jun 24  2007 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1876496 avr 15 14:16 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc RV710 [Radeon HD 4350]

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-rw-rw- 1 root root 2661 avr 16 11:57 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:

# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the 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 "ServerLayout"
Identifier "Default Layout"
Screen  0  "aticonfig-Screen[0]" 0 0
InputDevice"Generic Keyboard"
InputDevice"Configured Mouse"
Option  "AIGLX" "true"
EndSection

Section "Files"
EndSection

Section "Module"
Load  "bitmap"
Load  "dbe"
Load  "ddc"
Load  "dri"
Load  "extmod"
#   Load  "freetype"
Load  "glx"
Load  "int10"
Load  "record"
#   Load  "type1"
Load  "vbe"
#Load "synaptics"
#   Load  "xtrap"
EndSection

Section "ServerFlags"
Option  "AllowMouseOpenFail" "true"
#   Option  "SHMConfig" "true"
Option  "DontZoom" "false"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules" "xorg"
Option  "XkbModel" "pc105"
Option  "XkbLayout" "fr"
Option  "XkbVariant" "latin9"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device" "/dev/input/mice"
Option  "Protocol" "auto"
Option  "Emulate3Buttons" "false"
EndSection

Section "Monitor"
Identifier   "aticonfig-Monitor[0]"
Option  "VendorName" "ATI Proprietary Driver"
Option  "ModelName" "Generic Autodetecting Monitor"
Option  "DPMS" "true"
EndSection

Section "Device"

Driver  "radeonhd"
#   Driver  "ati"
Identifier  "aticonfig-Device[0]"
#   Driver  "fglrx"
#   Driver "vesa"

##  Option  "VideoOverlay" "on"
##  Option  "OpenGLOverlay" "off"
##  Option  "EnableMonitor" "crt1,lvds,tv,tmds1,crt2,tmds2,cv,tmds2i"
EndSection

Section "Screen"
Identifier "aticonfig-Screen[0]"
Device "aticonfig-Device[0]"
Monitor"aticonfig-Monitor[0]"
DefaultDepth 24
SubSection "Display"
Viewport   0 0
Depth 24
EndSubSection
EndSection

#Section "DRI"
#   Mode 0666
#EndSection

#Section "Extensions"
#
#   #Option "AIGLX" "off"
#   Option  "Composite" "Enable"
#   #Option "Composite" "off"
#   Option  "AIGLX" "on"
#   Option  "RENDER" "true"
#   Option  "DAMAGE" "true"
#   Option  "DRI"   "on"
#EndSection



Xorg X server log files on system:
-rw-r--r-- 1 root root 36532 avr 13 19:32 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 39355 avr 16 11: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.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-1-vserver-amd64 x86_64 Debian
Current Operating System: Linux hestia 2.6.29-1-amd64 #1 SMP Sat Apr 4 16:54:07 
UTC 2009 x86_64
Build Date: 15 April 2009  12:08:18PM
xorg-server 2:1.6.1-1 (bui...@excelsior.roeckx.be) 
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 com

Bug#524334: [xserver-xorg-video-intel] Please include NEWS file into the package

2009-04-16 Thread Torsten Marek
Package: xserver-xorg-video-intel
Version: 2:2.7.0-1
Severity: wishlist


The upstream changelog references a NEWS file, which is missing from the binary 
package.
Please include it into the documentation.

best,


Torsten


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.29-1-amd64

Debian Release: squeeze/sid
  500 unstablemirror.switch.ch 
  500 unstableemacs.orebokech.com 
  500 testing mirror.switch.ch 
1 experimentalmirror.switch.ch 

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6 (>= 2.2.5) | 2.9-7
libdrm-intel1 (>= 2.4.9) | 2.4.9-1
libdrm2   (>= 2.4.3) | 2.4.9-1
libpciaccess0 (>= 0.8.0+git20071002) | 0.10.5-3
libxext6 | 2:1.0.4-1
libxv1   | 2:1.0.4-1
libxvmc1 | 1:1.0.4-2
xserver-xorg-core  (>= 2:1.5.99.901) | 2:1.6.1-1

--- Output from package bug script ---





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



Bug#524331: compiz: 0.8.2 only in amd64

2009-04-16 Thread Goncalo Marrafa
Package: compiz
Version: 1:0.7.9+git20080918.shame-0
Severity: grave
Justification: renders package unusable

Compiz 0.8.2 is only available for amd64. All other archs are stuck with
0.7.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.29-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz depends on:
ii  compiz-core  1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana
ii  compiz-gnome 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana
ii  compiz-plugi 1:0.7.9+git20080918.shame-0 OpenGL window and compositing mana

compiz recommends no packages.

compiz suggests no packages.

-- no debconf information



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



Bug#524321: marked as done (xorg: ctrl+alt+backspace doesn't work)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 11:43:26 +0200
with message-id <49e6fdbe.3070...@ens-lyon.org>
and subject line Re: Bug#524321: xorg: ctrl+alt+backspace doesn't work
has caused the Debian Bug report #524321,
regarding xorg: ctrl+alt+backspace doesn't work
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.)


-- 
524321: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524321
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg
Version: 1:7.4+1
Severity: normal
File: xorg


After the last dist-upgrade ctrl+alt+backspace doesn't kill xorg server.


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2009-04-11 10:29 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1876496 2009-04-15 15:16 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
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 3359 2009-04-15 14:51 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the 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"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc104"
Option  "XkbLayout" "us,el"
Option  "XkbOptions""grp:alt_shift_toggle"
Option  "XkbVariant"",extended,intl"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
EndSection

Section "InputDevice"
Identifier  "Synaptics Touchpad"
Driver  "synaptics"
Option  "SendCoreEvents""true"
Option  "Device""/dev/psaux"
Option  "Protocol"  "auto-dev"
Option  "TapButton1""1"
Option  "TapButton2""2"
Option  "TapButton3""3"
Option  "HorizScrollDelta"  "0"
EndSection

Section "Device"
Identifier  "Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller"
Driver  "intel"
BusID   "PCI:0:2:0"
#   Option  "XAANoOffscreenPixmaps" "true"
Option  "DRI"   "true"
#   Option  "XVideo""On"
#   Option  "Accel" "true"
#Option  "ExaNoComposite""false"
#Option  "AccelMethodr"  "XAA"
#Option  "XAANoOffscreenPixmaps"  "True"
#Option  "XaaNoPixmapCache"
EndSection

Section "Monitor"
Identifier  "Laptop"
Option  "DPMS"
#   HorizSync   30-70
#   VertRefresh 50-160
EndSection

#Section "Monitor"
#Identifier  "Nec"
#Option  "DPMS"
#HorizSync   31-70
#VertRefresh 55-120
#EndSection


Section "Screen"
Identifier  "Laptop Screen"
Device  "Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller"
Monitor "Laptop"
DefaultDepth24
SubSection "Display"
Depth 24
Modes "1280x800"
EndSubSection
EndSection

#Section "Screen"
#Identifier  "Nec Screen"
#Device  "Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller"
#Monitor "Nec"
#DefaultDepth24
#SubSection "Display"
#Depth 24
#Modes "1024x768" "800x600"
#EndS

Bug#524321: xorg: ctrl+alt+backspace doesn't work

2009-04-16 Thread Nikos Kokkalis
Package: xserver-xorg
Version: 1:7.4+1
Severity: normal
File: xorg


After the last dist-upgrade ctrl+alt+backspace doesn't kill xorg server.


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2009-04-11 10:29 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1876496 2009-04-15 15:16 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
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 3359 2009-04-15 14:51 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the 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"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc104"
Option  "XkbLayout" "us,el"
Option  "XkbOptions""grp:alt_shift_toggle"
Option  "XkbVariant"",extended,intl"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
EndSection

Section "InputDevice"
Identifier  "Synaptics Touchpad"
Driver  "synaptics"
Option  "SendCoreEvents""true"
Option  "Device""/dev/psaux"
Option  "Protocol"  "auto-dev"
Option  "TapButton1""1"
Option  "TapButton2""2"
Option  "TapButton3""3"
Option  "HorizScrollDelta"  "0"
EndSection

Section "Device"
Identifier  "Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller"
Driver  "intel"
BusID   "PCI:0:2:0"
#   Option  "XAANoOffscreenPixmaps" "true"
Option  "DRI"   "true"
#   Option  "XVideo""On"
#   Option  "Accel" "true"
#Option  "ExaNoComposite""false"
#Option  "AccelMethodr"  "XAA"
#Option  "XAANoOffscreenPixmaps"  "True"
#Option  "XaaNoPixmapCache"
EndSection

Section "Monitor"
Identifier  "Laptop"
Option  "DPMS"
#   HorizSync   30-70
#   VertRefresh 50-160
EndSection

#Section "Monitor"
#Identifier  "Nec"
#Option  "DPMS"
#HorizSync   31-70
#VertRefresh 55-120
#EndSection


Section "Screen"
Identifier  "Laptop Screen"
Device  "Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller"
Monitor "Laptop"
DefaultDepth24
SubSection "Display"
Depth 24
Modes "1280x800"
EndSubSection
EndSection

#Section "Screen"
#Identifier  "Nec Screen"
#Device  "Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller"
#Monitor "Nec"
#DefaultDepth24
#SubSection "Display"
#Depth 24
#Modes "1024x768" "800x600"
#EndSubSection
#EndSection


Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Laptop Screen"
#Screen 0 "Laptop Screen" 0 0
#Screen 1 "Nec Screen" LeftOf "Laptop Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
#   Option  "AIGLX" "true"
EndSection

Section "Module"
 Load "glx"
 Load "dri"
 Load "bitmap"
 Load "extmod"
 Load "freetype"
 Load "dbe"
 Load "int10"
#Load "type1"
 Load "vbe"
EndSection

Section "DRI"
Group "video"
Mode 0666
EndSection

Section "Extensions"
Option "Composite" "true"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 45858 2009-04-16 11:16 /var/log/

Bug#523415: corrupted rendering

2009-04-16 Thread Brice Goglin
Frederic Peters wrote:
> Brice Goglin wrote:
>
>   
>>> Downgrading the kernel from 2.6.29 to 2.6.26 fixes the problem for
>>> me.
>>>   
>> Any difference in /proc/mtrr between 2.6.26 and 2.6.29 ?
>> 
>
> I downgraged from 2.6.29 to 2.6.28, and it also fixed the problem.
>
> /proc/mtrr in 2.6.28:
> reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
> reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable
>
> /proc/mtrr in 2.6.29:
> reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
> reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable
> reg02: base=0x0e800 ( 3712MB), size=  128MB, count=2: write-combining
>   

So now, booting 2.6.29 and doing as root
echo "base=0x0e800 size=0x800 type=write-combining" > /proc/mtrr
might give you the same MTRR back, and might even fix your problems.

Beware that playing with MTRR may be dangerous, so make sure you don't
have critical things running when trying...

Other people: Don't run the above command, you'll have to adapt it to
your machine first.

Brice




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



Bug#523581: xserver-xorg-input-synaptics: Stops working after upgrading xserver-xorg-core to version 2:1.6.0-1

2009-04-16 Thread nicolas
Quoting Julien Cristau :

> On Mon, 2009-04-13 at 08:25 +0300, nico...@students.cs.unipi.gr wrote:
> > It's seems that the problem now is only the tapping the touchpad for click
> and
> > the horizontal scroll line.
>
> That's expected.  They can be enabled with 'synclient TapButton1=1' and
> 'synclient HorizEdgeScroll=1'.
>
> Cheers,
> Julien
>


Hello,
I finally manage to fix the tap button by adding into xorg.conf:
Option  "TapButton1""1"
Option  "TapButton2""2"
Option  "TapButton3""3"
at the InputDevice section that reflects the synaptics device.
I also discovered that the driver replaced the horizontal scroll line with
a two finger slide on the touchpad as the default move for scrolling.

Cheers!



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



Bug#523589: xserver-xorg-video-radeon: dualhead broke with upgrade

2009-04-16 Thread di dit
2009/4/15 Alex Deucher :
> Sounds like:
> https://bugs.freedesktop.org/show_bug.cgi?id=21199

Indeed.

> Does:
> xset dpms force off
> followed by moving the mouse cause both screens to come on?

Yes it does. Thanks for the workaround!
I'm ready to test patches to solve this issue if needed.
Thank you very much for your help.



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



Bug#521081: marked as done ([xserver-xorg-video-intel] New upstream release available)

2009-04-16 Thread Debian Bug Tracking System

Your message dated Thu, 16 Apr 2009 09:29:07 +0200
with message-id <20090416072907.ga5...@loulous.org>
and subject line Re: Bug#521081: [xserver-xorg-video-intel] New upstream 
release available
has caused the Debian Bug report #521081,
regarding [xserver-xorg-video-intel] New upstream release available
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.)


-- 
521081: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521081
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.3.2-2+lenny6
Severity: normal

--- Please enter the report below this line. ---

Hi,

it would be great if somebody could package the latest upstream version.

http://xorg.freedesktop.org/archive/individual/driver/xf86-video-intel-2.6.3.tar.bz2


Best regards,
Matthias


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.28.8-2009.03.18

Debian Release: squeeze/sid
  500 unstableftp.de.debian.org 
  500 unstabledebian-multimedia.informatik.uni-erlangen.de 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6 (>= 2.7-1) | 2.9-6
libdrm2   (>= 2.3.1) | 2.3.1-2
xserver-xorg-core (>= 2:1.4) | 2:1.4.2-11


--- End Message ---
--- Begin Message ---
Version: 2:2.6.3-1

--- End Message ---


Bug#523415: corrupted rendering

2009-04-16 Thread Frederic Peters
Brice Goglin wrote:

> > Downgrading the kernel from 2.6.29 to 2.6.26 fixes the problem for
> > me.
> 
> Any difference in /proc/mtrr between 2.6.26 and 2.6.29 ?

I downgraged from 2.6.29 to 2.6.28, and it also fixed the problem.

/proc/mtrr in 2.6.28:
reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable

/proc/mtrr in 2.6.29:
reg00: base=0x0 (0MB), size= 1024MB, count=1: write-back
reg01: base=0x03ff0 ( 1023MB), size=1MB, count=1: uncachable
reg02: base=0x0e800 ( 3712MB), size=  128MB, count=2: write-combining



Frederic



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