Bug#572311: No display output from Radeon RV610 on Alpha

2010-03-07 Thread Michael Cree

On 07/03/10 03:34, Alex Deucher wrote:

On Fri, Mar 5, 2010 at 8:10 PM, Michael Creemc...@orcon.net.nz  wrote:

If I compile the ati/radeon video driver from fdo git master (commit
4975658f05) with default CFLAGS (i.e. no byte-word extension), except for
the module src/AtomBios/CD_Operations.c which I compile with the -mbwx
compiler option, then I get a working video driver.

Looks like the problem is in src/AtomBios/CD_Operations.c.


You probably need something like this drm patch ported to the ddx:
http://marc.info/?l=dri-develm=126611019424637w=2


Thanks, that hint was helpful.  I have drummed up a patch (attached) 
that replaces some use of the UINT16LE_TO_CPU(), etc., macros with 
generic interfaces from the Xserver's compiler.h header file.  Now works 
correctly on RV610 video card on an Alpha XP1000.  Have also verified 
that the driver still works on an RV710 card on AMD64 architecture.


The patch applies cleanly against the 6.12.5 branch and also upstream 
git master.


Alex: may I presume that you will handle getting it upstream for review 
and hopefully acceptance into the fdo git master.


Cheers
Michael.
From f04f7de63fe3aae3dc2d4392c35c97e46183aaed Mon Sep 17 00:00:00 2001
From: Michael Cree mc...@orcon.net.nz
Date: Sun, 7 Mar 2010 21:14:29 +1300
Subject: [PATCH] Fix some word accesses in AtomBios to work on all architectures.

The UINT16LE_TO_CPU(), etc., macros fix up endian issues but do not cater
for alignment issues or for architectures that cannot perform hardware
byte or word access.  This patch replaces some accesses into the AtomBios
with the more generic ldw_u(), etc., interface of the Xserver.

This resolves Debian bug 572311, namely that the driver when compiled
for generic Alpha architecture (i.e. doesn't use the byte-word extension)
resulted in no display output on certain Radeon cards.

Signed-off-by: Michael Cree mc...@orcon.net.nz
---
 src/AtomBios/CD_Operations.c |   21 +++--
 1 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/src/AtomBios/CD_Operations.c b/src/AtomBios/CD_Operations.c
index c1279b8..5256637 100644
--- a/src/AtomBios/CD_Operations.c
+++ b/src/AtomBios/CD_Operations.c
@@ -42,6 +42,7 @@ Revision History:
 
 #include X11/Xos.h
 #include xorg-server.h
+#include compiler.h
 
 #include Decoder.h
 
@@ -230,7 +231,7 @@ UINT32 IndirectInputOutput(PARSER_TEMP_DATA STACK_BASED * pParserTempData)
 		IndirectIOParserCommands[*pParserTempData-IndirectIOTablePointer].func(pParserTempData);
 		pParserTempData-IndirectIOTablePointer+=IndirectIOParserCommands[*pParserTempData-IndirectIOTablePointer].csize;
 	}
-	pParserTempData-IndirectIOTablePointer-=UINT16LE_TO_CPU(*(UINT16*)(pParserTempData-IndirectIOTablePointer+1));
+	pParserTempData-IndirectIOTablePointer-= ldw_u((uint16_t *)(pParserTempData-IndirectIOTablePointer+1));
 	pParserTempData-IndirectIOTablePointer++;
 	return pParserTempData-IndirectData;
 	} else pParserTempData-IndirectIOTablePointer+=IndirectIOParserCommands[*pParserTempData-IndirectIOTablePointer].csize;
@@ -267,8 +268,8 @@ VOID PutDataRegister(PARSER_TEMP_DATA STACK_BASED * pParserTempData)
 
 VOID PutDataPS(PARSER_TEMP_DATA STACK_BASED * pParserTempData)
 {
-*(pParserTempData-pDeviceData-pParameterSpace+pParserTempData-pCmd-Parameters.ByteXX.PA_Destination)=
-	CPU_TO_UINT32LE(pParserTempData-DestData32);
+stl_u(pParserTempData-DestData32,
+	  pParserTempData-pDeviceData-pParameterSpace+pParserTempData-pCmd-Parameters.ByteXX.PA_Destination);
 }
 
 VOID PutDataWS(PARSER_TEMP_DATA STACK_BASED * pParserTempData)
@@ -341,7 +342,7 @@ VOID SkipParameters16(PARSER_TEMP_DATA STACK_BASED *	pParserTempData)
 
 UINT32 GetParametersRegister(PARSER_TEMP_DATA STACK_BASED *	pParserTempData)
 {
-pParserTempData-Index=UINT16LE_TO_CPU(*(UINT16*)pParserTempData-pWorkingTableData-IP);
+pParserTempData-Index= ldw_u((uint16_t *)pParserTempData-pWorkingTableData-IP);
 pParserTempData-pWorkingTableData-IP+=sizeof(UINT16);
 pParserTempData-Index+=pParserTempData-CurrentRegBlock;
 switch(pParserTempData-Multipurpose.CurrentPort)
@@ -425,9 +426,9 @@ UINT32 GetParametersMC(PARSER_TEMP_DATA STACK_BASED *	pParserTempData)
 
 UINT32 GetParametersIndirect(PARSER_TEMP_DATA STACK_BASED *	pParserTempData)
 {
-	  UINT32 ret;
+UINT32 ret;
 
-pParserTempData-Index=UINT16LE_TO_CPU(*(UINT16*)pParserTempData-pWorkingTableData-IP);
+pParserTempData-Index= ldw_u((uint16_t *)pParserTempData-pWorkingTableData-IP);
 pParserTempData-pWorkingTableData-IP+=sizeof(UINT16);
 ret = UINT32LE_TO_CPU(*(UINT32*)(RELATIVE_TO_BIOS_IMAGE(pParserTempData-Index)+pParserTempData-CurrentDataBlock));
 return ret;
@@ -444,7 +445,7 @@ UINT32 GetParametersDirect8(PARSER_TEMP_DATA STACK_BASED *	pParserTempData)
 UINT32 GetParametersDirect16(PARSER_TEMP_DATA STACK_BASED *	pParserTempData)
 {
 pParserTempData-CD_Mask.SrcAlignment=alignmentLowerWord;
-

Bug#528684: marked as done (xserver-xorg-video-radeon: glxgears window writes through another window placed in front of it)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 07 Mar 2010 10:14:17 +0100
with message-id 4b936e69.5010...@ens-lyon.org
and subject line Re: Bug#528684: (no subject)
has caused the Debian Bug report #528684,
regarding xserver-xorg-video-radeon: glxgears window writes through another 
window placed in front of it
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.)


-- 
528684: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528684
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-video-radeon
Version: 1:6.12.2-2
Severity: normal


Hi, I tried the new xserver-xorg-video-radeon and it appears that when 
glxgears is run, the gears and black background write through a window
place in front of the glxgears window.

-- 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-05-04 01:19 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1701104 2009-04-15 21:17 /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 RV280 [Radeon 9200 SE] 
(rev 01)

/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 2694 2008-11-24 14:19 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
#FontPath   /usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/cyrillic
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/100dpi
FontPath/usr/share/fonts/X11/75dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadv4l
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us
EndSection

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

Section Device
Identifier  Radeon 9200SE
Driver  radeon
BusID   PCI:1:0:0
EndSection

Section Monitor
Identifier  Philips 107S
Option  DPMS
HorizSync   30-70
VertRefresh 50-160
EndSection

Section Screen
Identifier  Default Screen
Device  Cirrus Logic GD 5465 [Laguna]
Monitor Philips 107S
DefaultDepth24
SubSection Display
Depth   1
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display

Bug#480566: marked as done ([i965] corrupted compiz drop shadow with EXA Composite enabled)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 07 Mar 2010 10:19:33 +0100
with message-id 4b936fa5.7050...@ens-lyon.org
and subject line Re: Bug#480566: improper drop shadows with compiz
has caused the Debian Bug report #480566,
regarding [i965] corrupted compiz drop shadow with EXA Composite enabled
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.)


-- 
480566: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480566
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: compiz
Version: 0.6.3~git20080115.0ea58487-1
Severity: important

After upgrading xorg to 1:7.3+10, black vertical bars cover parts of the
window borders for all windows. A screenshot is available here [1].
Additionally, shadows become more prominent, and all of compiz slows
down significantly. It is still usuable, but operations which were fast
before (even after removing the shadows) are noticeably jerky. This is
with the intel video drivers on an Intel 965GM. Downgrading to 1:7.2-5
fixes the problem.

-Yury
[1] http://www.ocf.berkeley.edu/~yury/Screenshot.png


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

Kernel: Linux 2.6.25-yury (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

Versions of packages compiz depends on:
ii  compiz-core 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-gnom 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-gtk  0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  compiz-plug 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana

compiz recommends no packages.

-- no debconf information


---End Message---
---BeginMessage---
Yury Arkady Sobolev wrote:
 Thank you for the inquiry, but I am not using Debian on my current hard
 drive. I will test shadows with compiz at some point in the near future
 and reopen the bug it is still a problem.
   

Ok closing for now.

Brice


---End Message---


Bug#530412: marked as done (xserver-xorg-core: blender interface atrifacts on intel x3100)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 07 Mar 2010 10:20:51 +0100
with message-id 4b936ff3.1060...@ens-lyon.org
and subject line Re: Bug#530412: xserver-xorg-core: blender interface atrifacts 
on  intel x3100
has caused the Debian Bug report #530412,
regarding xserver-xorg-core: blender interface atrifacts on intel x3100
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.)


-- 
530412: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=530412
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-core
Version: 2:1.4.2-10.lenny1
Severity: normal



-- 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 Мар 17 21:11 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1718516 Мар 15 18:30 /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)

/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  Май 24 18:27 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section Files

FontPath /usr/share/fonts/misc:unscaled
FontPath /usr/share/fonts/Type1
FontPath /usr/share/fonts/TTF
FontPath /usr/share/fonts/corefonts
FontPath /usr/share/fonts/freefonts
FontPath /usr/share/fonts/sharefonts
FontPath /usr/share/fonts/terminus
FontPath /usr/share/fonts/ttf-bitstream-vera
FontPath /usr/share/fonts/unifont
FontPath /usr/share/fonts/75dpi:unscaled
FontPath /usr/share/fonts/100dpi:unscaled
FontPath /usr/share/fonts/artwiz

EndSection

Section ServerLayout
Identifier conf server
InputDeviceUSB Mouse CorePointer
InputDeviceSynapticsTouchpad  SendCoreEvents
Screen Default Screen
EndSection

Section Module
Load synaptics
EndSection


Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout us,ru
Option  XkbOptionsgrp:ctrl_shift_toggle
EndSection

Section InputDevice
Identifier  USB Mouse
Driver mouse
EndSection
Section Device
Identifier  Configured Video Device

Driver intel
Option XvMC true
#VideoRam 131072
Option  monitor-LVDS Configured Monitor

Option SWcursor False
Option CacheLines 2048
Option DRI True
Option XvMCSurfaces 7
Option PageFlip True
Option Legacy3D False
Option XVideo True
Option DevicePresence True
Option XAANoOffscreenPixmaps True
Option AccelMethod EXA
#Option AccelMethod xaa
Option MigrationHeuristic greedy
Option MTRR on
Option UseFBDev false
Option LinearAlloc 6144
#BusID PCI:0:2:0
option crt2hsync 30-80
option crt2vertrefresh 59-75
option metamodes 1280x800 800x600
option Monitor-TV TV

EndSection

Section InputDevice
Identifier  SynapticsTouchpad
Driver  synaptics
Option  AlwaysCoretrue  # send events to CorePointer
Option  Device/dev/input/mouse0
Option  Protocol  auto-dev
Option  SHMConfig false # configurable at runtime? security risk
Option  LeftEdge  1700  # x coord left
Option  RightEdge 5300  # x coord right
Option  TopEdge   1700  # y coord top
Option  BottomEdge4200  # y coord bottom
Option  FingerLow 25# pressure below this level triggers 
release
Option  FingerHigh30# pressure above this level triggers 
touch
Option  MaxTapTime180   # max time in ms for detecting tap
Option  VertEdgeScrolltrue  # enable vertical scroll zone
Option  HorizEdgeScroll   true  # enable horizontal scroll zone
Option  CornerCoastingtrue  # enable continuous scroll with finger 
in corner
Option  CoastingSpeed 0.30  # corner coasting speed
Option  VertScrollDelta   100   # edge-to-edge scroll distance of the 
vertical scroll
Option  HorizScrollDelta  100   # edge-to-edge scroll distance of the 
horizontal scroll
Option  MinSpeed  0.10  # speed factor for low pointer movement
Option  MaxSpeed  0.60  # maximum speed factor for fast pointer 
movement
Option  AccelFactor   0.0020# acceleration factor for normal 
pointer movements
Option  VertTwoFingerScroll   true  # vertical scroll anywhere with 
two fingers
Option  HorizTwoFingerScroll  true  # horizontal scroll anywhere 
with two fingers
EndSection


 
Section Monitor
Identifier  Configured 

Processed: Block some more bugs

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 572863 by 230422
Bug #572863 [slim] slim: Please provide a Xreset hook using a common framework
Was not blocked by any bugs.
Added blocking bug(s) of 572863: 230422
 block 572864 by 230422
Bug #572864 [nodm] nodm: Please provide a Xreset hook using a common framework
Was not blocked by any bugs.
Added blocking bug(s) of 572864: 230422
 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
Archive: 
http://lists.debian.org/handler.s.c.12679548043641.transcr...@bugs.debian.org



Bug#467040: xserver-xorg-input-kbd: Lag problem on my keyboard - keys repetition

2010-03-07 Thread Brice Goglin
On Fri, Feb 22, 2008 at 05:56:48PM +0100, Eric Veiras Galisson wrote:
 Package: xserver-xorg-input-kbd
 Version: 1:1.2.0-1+1.2.1
 Severity: important
 
 With my ASUStek M2N motherboard, I have a very strange problem when I'm
 on X.
 When typing, frecuently there is a 'lag' (a little delay before keys
 marked on the screen) and then a key/character is repeated between 5 or 10 
 times.

Does this still occur/matter today?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307095923.ga31...@loulous.org



Bug#462582: xserver-xorg-video-ati: regression, size configuration incredibly broken, on bog-standard display size

2010-03-07 Thread Brice Goglin
On Fri, Jan 25, 2008 at 09:33:48PM +0100, Andreas Mohr wrote:
 Package: xserver-xorg-video-ati
 Version: 1:6.7.197-1
 Severity: important
 
 Hi,
 
 my 14(!) VGA-connected 1024x768 _desktop_ LCD was working just fine with my
 config file on 1:6.6.193, however both 1:6.7.197-1 and
 6.7.198~git20080117.6bd510a2 manage to mess up size detection in a
 spectacularly awful way, it seems (either with or without xorg.conf).
 
 - there are 12 references to 1024x768 resolution in the log (DDC detection
   etc.), however it chooses to pick 1280x800 which has never been announced
   _anywhere_!
 - the DPI calculations are not WAY off as in another Debian bug report,
   they're rather very extremely off (147, 145 instead of 89, 92 previously)
 
 The display size detection of 290x210mm seems _correct_ since it matches
 physical dimensions.

Do you still have these problems with latest packages in unstable?

Brice



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307100349.ga31...@loulous.org



Bug#462127: xserver-xorg: X freezes after some time with mieqEnequeue: out-of-order valuatorevent; dropping

2010-03-07 Thread Brice Goglin
On Tue, Jan 22, 2008 at 06:53:22PM +0100, Emmanuel Hainry wrote:
 Package: xserver-xorg
 Version: 1:7.3+10
 Severity: important
 
 
 Regularly, X freezes without reason. The Xorg log contains lots of
 
 tossed event which came in late
 mieqEnequeue: out-of-order valuator event; dropping.
 
 If it was in save energy mode, the computer won't wake up if it was up,
 there appear artifacts, the mouse pointer still moves but does not
 click. Ctrl-Alt-FX don't work. I did not find a special way to trigger
 it, it may happen after only minutes of using or after hours.
 
 It seems similar to bug 452167, but I have a NVidia Gforce FX 5200 card
 (with nv driver) and am using openbox (contrary to the reporter of the
 former bug).

Do you still have this problem?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307100511.ga31...@loulous.org



Bug#461756: xserver-xorg: when wine is executed, X shutdown

2010-03-07 Thread Brice Goglin
Do you still reproduce the bug with X shutting down when starting wine?

Brice



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307100631.ga31...@loulous.org



Bug#418932: 2:1.0.3-7 breaks gv with large (dimensions) postscript files

2010-03-07 Thread Brice Goglin
On Thu, Apr 12, 2007 at 04:07:08PM -0400, Anthony DeRobertis wrote:
 Package: libx11-6
 Version: 2:1.0.3-6
 Severity: important
 
 This might be related to 418016/418016 and 418021. Not sure. I have
 confirmed this is indeed caused by the libx11-6 upgrade by downgrading;
 the problem goes away after downgrading to -6.
 
 Turning off antialiasing (-noantialias on the gv command line) makes it
 work with -7 (but look bad).
 
 dot -Tps test.dot  test.ps  gv test.ps ... works fine with -6
   ... breaks with -7:
 ERROR: /unknownerror in --%op_show_continue--ESP Ghostscript 815.03: 
 Unrecoverable error, exit code 1
 
 Operand stack:
--nostringval--
 Execution stack:
%interp_exit   .runexec2   --nostringval--   --nostringval--   
 --nostringval--   2   %stopped_push   --nostringval--   --nostringval--   
 --nostringval--   false   1   %stopped_push   1   3   %oparray_pop   1   3   
 %oparray_pop   1   3   %oparray_pop   1   3   %oparray_pop   .runexec2   
 --nostringval--   --nostringval--   --nostringval--   2   %stopped_push   
 --nostringval--
 Dictionary stack:
--dict:1125/1686(ro)(G)--   --dict:0/20(G)--   --dict:104/200(L)--   
 --dict:36/200(L)--   --dict:4/10(L)--   --dict:0/10(L)--
 Current allocation mode is local
 
 
 The files (both test.dot and test.ps) are attached.

Does this bug still occur (without the workaround you found later
by modifying the file) ?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307101958.ga32...@loulous.org



Bug#418854: xserver-xorg-core: Dual head randomly lockups machine hard

2010-03-07 Thread Brice Goglin
On Wed, Apr 18, 2007 at 03:45:16PM +0200, Roland Lezuo wrote:
 
  What about xserver-xorg-video-nv? You said you were able to reproduce
  the lockup with this driver in unstable? If you can't anymore with
 
 I do not have the nvidia card any more, so i can't test.
 
  But, note that we won't be able to actually help you with fglrx or
  nvidia since those are closed source and we have no way to debug in
  them. Such problems should be reported to ATI or nVidia. We can only
  help you about xserver-xorg-core and vesa and nv drivers...
 
 I know. I'll send update information as soon as flgrx is available for
 xorg 7.2...

3-year old ping?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307101823.ga32...@loulous.org



Bug#452121: marked as done (xserver-xorg: keyboard stops working )

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 11:15:03 +0100
with message-id 20100307101503.ga32...@loulous.org
and subject line Re: Bug#415147: xserver-xorg: Keyboard input stops being 
accepted
has caused the Debian Bug report #415147,
regarding xserver-xorg: keyboard stops working 
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.)


-- 
415147: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=415147
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg
Version: 1:7.3+6
Severity: important

The keyboard sometimes stops working in the middle of an X session. It
happened twice today already on my LG i386 laptop. I think I have
observed this on my other laptop as well (which runs amd64).

The X session simply stops responding to any keyboard events -
pressing keys, trying to switch sessions with Alt-Ctrl-F1,
Alt-Ctrl-Backspace etc. However the mouse still works. To unblock it I
have to log out, at which point the keyboard starts working again in
the KDM login dialog.

Merely switching to another X session (using the mouse) does not help
- the keyboard works in the other session but is still stuck after
switching back to the original session.

I have KDE 3.5.8 and kernel 2.6.24-rc2. Any ideas how to debug this,
or where the bug report belongs?

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

Kernel: Linux 2.6.24-rc2-lg (PREEMPT)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xserver-xorg depends on:
ii  debconf [debconf-2 1.5.16Debian configuration management sy
ii  x11-common 1:7.3+6   X Window System (X.Org) infrastruc
ii  x11-xkb-utils  7.3+1 X11 XKB utilities
ii  xkb-data   1.0~cvs.20070916-1X Keyboard Extension (XKB) configu
ii  xserver-xorg-core  2:1.4.1~git20071119-1 Xorg X server - core server
ii  xserver-xorg-input 1:1.2.0~git20070819-4 X.Org X server -- evdev input driv
ii  xserver-xorg-input 1:1.2.2-3 X.Org X server -- keyboard input d
ii  xserver-xorg-input 1:1.2.3-1 X.Org X server -- mouse input driv
ii  xserver-xorg-input 0.14.7~git20070706-1  Synaptics TouchPad driver for X.Or
ii  xserver-xorg-video 1:6.7.196-1   X.Org X server -- ATI display driv

Versions of packages xserver-xorg recommends:
ii  discover1  1.7.21hardware identification system
ii  dmidecode  2.9-1 Dump Desktop Management Interface 
ii  laptop-detect  0.12.1-0.1attempt to detect a laptop
ii  libgl1-mesa-dri7.0.1-2   A free implementation of the OpenG
ii  udev   0.114-2   /dev/ and hotplug management daemo
ii  xresprobe  0.4.23debian1-0.1 X Resolution Probe

-- debconf information:
  shared/fontpath/fontserver:
  xserver-xorg/multiple_possible_x-drivers:
  xserver-xorg/config/monitor/use_sync_ranges:
  xserver-xorg/config/doublequote_in_string_error:
  xserver-xorg/config/monitor/screen-size: 17 inches (430 mm)
  xserver-xorg/config/device/default-identifier:
  xserver-xorg/autodetect_monitor: true
  shared/no_known_x-server:
  xserver-xorg/config/display/default_depth: 24
  xserver-xorg/config/display/modes: 1024x768
  xserver-xorg/config/device/bus_id_error:
  xserver-xorg/config/monitor/vert-refresh: 43-60
  xserver-xorg/config/inputdevice/keyboard/options:
* xserver-xorg/autodetect_keyboard: false
  xserver-xorg/config/device/use_fbdev: false
  xserver-xorg/config/inputdevice/keyboard/variant:
  xserver-xorg/config/nonnumeric_string_error:
  xserver-xorg/config/inputdevice/keyboard/layout: se
  xserver-xorg/config/inputdevice/mouse/emulate3buttons: true
  xserver-xorg/config/monitor/horiz-sync: 28-51
  xserver-xorg/config/monitor/range_input_error:
* xserver-xorg/config/inputdevice/keyboard/model: pc105
  xserver-xorg/config/device/driver: ati
  xserver-xorg/config/device/identifier: ATI Technologies Inc RS400 [Radeon 
Xpress 200M]
  xserver-xorg/config/monitor/selection-method: Advanced
  xserver-xorg/config/null_string_error:
  shared/multiple_possible_x-servers:
  xserver-xorg/config/device/bus_id: PCI:1:5:0
  xserver-xorg/autodetect_video_card: true
  xserver-xorg/config/monitor/mode-list: 1024x768 @ 60Hz
* xserver-xorg/config/inputdevice/keyboard/rules: xorg


---End Message---
---BeginMessage---
Input has changed a lot in X since this report 3 years ago,
so there's no way to debug this nowadays.
So I 

Bug#404367: xserver-xorg: keypresses are occasionally multiplied dozens, hundreds or thousands of times

2010-03-07 Thread Brice Goglin
On Sat, Dec 23, 2006 at 11:18:04PM -0500, celejar wrote:
 Package: xserver-xorg
 Version: 1:7.1.0-9
 Severity: important
 
 Every now and then, without any pattern or triggering event that I can 
 determine, CPU usage spikes to 100% and a keypress is multiplied dozens, 
 hundreds or even thousands of times. This happens across all different 
 contexts within X, such as typing text in an application or an xterm, using 
 an application's hotkeys, and even using the WM's (Xfce) control keys. I have 
 never seen the problem at the console (not even when X is running and I shift 
 back to the console with alt-ctrl-F1), and I have never seen it under kernels 
 in the 2.4.x series (currently kernel-image-2.4.27-2-386 2.4.27-11), only 
 under 2.6.x series kernels.

Input has changed a lot in X since this report 4 years ago,
so there's no way to debug this nowadays.
So I am just closing this obsolete report. Please open a
new one if you still have some problems.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307101237.ga32...@loulous.org



Bug#457390: marked as done ([radeon] Screen is pixelated to the point of text being unreadable when Compiz is running [M6])

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 11:40:26 +0100
with message-id 20100307104026.ga32...@loulous.org
and subject line Re: Bug#457390: Screen is pixelated to the point of text being 
unreadable when Compiz is running
has caused the Debian Bug report #457390,
regarding [radeon] Screen is pixelated to the point of text being unreadable 
when Compiz is running [M6]
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.)


-- 
457390: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457390
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-video-ati
Version: 1:6.7.197-1
Severity: important

--- Please enter the report below this line. ---
With the latest driver, the screen becomes pixelated whenever Compiz is 
running. Switching back to KWin solves the problem. This is on a Radeon M6.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.23.9-slh-smp-20

Debian Release: lenny/sid
  500 unstablewww.nanolx.org 
  500 unstablesidux.com 
  500 unstablemirror.home-dn.net 
  500 unstableftp.us.debian.org 
  500 unstableedevelop.org 
  500 experimentalmirror.home-dn.net 

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6 (= 2.7-1) | 2.7-5
xserver-xorg-core (= 2:1.4) | 2:1.4.1~git20071212-1



---End Message---
---BeginMessage---
On Sat, Dec 22, 2007 at 06:42:33PM +0100, Michel Dänzer wrote:
 
 On Fri, 2007-12-21 at 23:24 -0500, Mike Vaughn wrote:
  Package: xserver-xorg-video-ati
  Version: 1:6.7.197-1
  Severity: important
  
  --- Please enter the report below this line. ---
  With the latest driver, the screen becomes pixelated whenever Compiz is 
  running.
 
 Can you elaborate on what you mean by 'pixelated'? Can you provide a
 screenshot of the problem?
 
 Are you sure this problem is due to this package, and not due to another
 one like xserver-xorg-core or libgl1-mesa-dri?

No reply in 2 years, closing.

Brice


---End Message---


Bug#446304: xserver-xorg-video-ati: output corruption with gl apps on R300

2010-03-07 Thread Brice Goglin
On Fri, Oct 12, 2007 at 04:57:45PM +0200, Alexej Davidov wrote:
 On Fri, 12 Oct 2007 15:56:35 +0200
 Brice Goglin brice.gog...@ens-lyon.org wrote:
 
  No need to do a open another bug, I am reassigning this one to Mesa.
  
  You should try mesa 6.5.2, 6.5.3 and 7.0.1-1. The corresponding
  packages are available in:
 
 Bug appears in 6.5.3-1. 6.5.2-7 is OK.
 
 I've also found the source of the bug now: for some reason I don't
 remember, I had TCL mode set to Use software TCL pipeline in .drirc.
 The bug appears with this setting. For any other setting, the output is
 OK, even with the newest version of mesa.

Does this bug still occur/matter if it only occurred with the above setting?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307104531.ga32...@loulous.org



Bug#516325: marked as done (compiz: Compiz crashes when Rotate Cube plugin shortcut is used in Expo plugin)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 07 Mar 2010 11:46:49 +0100
with message-id 4b938419.4040...@ens-lyon.org
and subject line Re: Bug#516325: compiz: Compiz crashes when Rotate Cube plugin 
shortcut is used in Expo plugin
has caused the Debian Bug report #516325,
regarding compiz: Compiz crashes when Rotate Cube plugin shortcut is used in 
Expo plugin
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.)


-- 
516325: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516325
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: compiz
Version: 0.7.6-7
Severity: normal


When in the Expo plugin view, Compiz will crash if one uses a shortcut for
the Rotate Cube plugin to select a cube face (or workspace). To replicate
this bug:

1. Activate the Rotate Cube and Expo plugins in CompizConfig Settings
Mananger.

2. Set up a key binding for Rotate to Face 1 in the Rotate Cube plugin
using CompizConfig Settings Mananger. I used Alt+F1. No key is defined by
default.

3. Activate the Expo plugin (e.g., by moving the mouse to the top left or
whatever is set in the Expo edge setting).

4. You should see a wall of work spaces.

5. Now, instead of selecting a work space with the mouse, press the
Rotate-Cube shortcut key for Rotate to Face 1.

6. Compiz immediately quits and, for me, reverts to Metacity.

I suggest that the Expo plugin should revert to the original workspace and
then allow Rotate Cube to switch to a new workspace (cube face).
Alternatively, the Expo plugin could switch directly to the workspace
selected leaving Rotate Cube with nothing to do.

It's a small bug, but it's easy to do this by mistake when switching between
workspaces. But, what an excellent project overall. Since I started using
Compiz, my MacOS friends don't taunt me any more.

-- System Information:
Debian Release: 5.0
  APT prefers oldstable
  APT policy: (500, 'oldstable'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to 
POSIX)
Shell: /bin/sh linked to /bin/bash

Versions of packages compiz depends on:
ii  compiz-core   0.7.6-7OpenGL window and compositing mana
ii  compiz-gnome  0.7.6-7OpenGL window and compositing mana
ii  compiz-gtk0.7.6-7OpenGL window and compositing mana
ii  compiz-plugins0.7.6-7OpenGL window and compositing mana

compiz recommends no packages.

Versions of packages compiz suggests:
ii  compizconfig-settings-manager 0.7.6-3Compizconfig Settings Manager

-- no debconf information


---End Message---
---BeginMessage---
Neil Stewart wrote:
 Further information: When I start compiz from the command line, I get a
 segmentation fault with some information about where in the compiz
 script
 the problem is occuring. Here is the output:

 compiz --replace 
 [2] 9075
 n...@macbook:~$ Checking for Xgl: not present.
 Detected PCI ID for VGA: 02:00.0 0300: 10de:0647 (rev a1) (prog-if
 00 [VGA
 contr
 Checking for texture_from_pixmap: present.
 Checking for non power of two support: present.
 Checking for Composite extension: present.
 Comparing resolution (1440x900) to maximum 3D texture size (8192):
 Passed.
 Checking for nVidia: present.
 Checking for FBConfig: present.
 Checking for Xgl: not present.
 Starting gtk-window-decorator
 n...@macbook:~$ Backend : gconf
 Integration : true
 Profile : default
 Adding plugin imgjpeg (imgjpeg)
 Adding plugin text (text)
 Adding plugin move (move)
 Adding plugin dbus (dbus)
 Adding plugin screenshot (screenshot)
 Adding plugin inotify (inotify)
 Adding plugin workarounds (workarounds)
 Adding plugin ring (ring)
 Adding plugin regex (regex)
 Adding plugin svg (svg)
 Adding plugin colorfilter (colorfilter)
 Adding plugin water (water)
 Adding plugin put (put)
 Adding plugin ezoom (ezoom)
 Adding plugin scaleaddon (scaleaddon)
 Adding plugin wobbly (wobbly)
 Adding plugin rotate (rotate)
 Adding plugin neg (neg)
 Adding plugin mag (mag)
 Adding plugin bs (bs)
 Adding plugin zoom (zoom)
 Adding plugin png (png)
 Adding plugin fs (fs)
 Adding plugin staticswitcher (staticswitcher)
 Adding plugin winrules (winrules)
 Adding plugin glib (glib)
 Adding plugin cube (cube)
 Adding plugin wall (wall)
 Adding plugin thumbnail (thumbnail)
 Adding plugin switcher (switcher)
 Adding plugin resize (resize)
 Adding plugin opacify (opacify)
 Adding plugin place (place)
 Adding plugin vpswitch (vpswitch)
 Adding core settings (General Options)
 Adding plugin snap (snap)
 Adding plugin session 

Bug#439424: xscreensaver-gl: voronoi hack crashes X11 session

2010-03-07 Thread Brice Goglin
On Fri, Aug 24, 2007 at 05:36:42PM -0700, Karsten M. Self wrote:
 Package: xscreensaver-gl
 Version: 5.03-2
 Severity: important
 
 Running the 'voronoi' hack in root mode crashes my X11 session.  I've
 confirmed this running the hack manually.  I've also noted the system
 spontaneously restarting after invoking screensaver at other times.
 Problems appear to have started today, though the hack was updated July
 13 per package changelog, and was upgraded on my system Aug 3... or Aug
 16 per /var/log/aptitude.
 
 This may be related to video card / drivers.
 
 Steps to reproduce:
 
   1. Launch xscreensaver-demo
   2. Select voronoi hack.
   3. Select Preview
   4. X11 crashes.

Does this crash still happens with latest X packages from unstable?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307105130.ga32...@loulous.org



Bug#507743: marked as done (Up arrow key invokes gnome-screenshot in most contexts)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 11:56:48 +0100
with message-id 20100307105648.ga32...@loulous.org
and subject line Re: Bug#442316: xserver-xorg-input-evdev: evdev from 
experimental messes up my keyboard layout
has caused the Debian Bug report #442316,
regarding Up arrow key invokes gnome-screenshot in most contexts
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.)


-- 
442316: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=442316
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gnome
Version: 1:2.22.2~5
Severity: normal

Except in Gnome menus, when I press the up-arrow key, gnome-screenshot is
activated as though I had typed print-screen.

This is the same bug described here:
http://bugs.archlinux.org/task/12248

The machine is a Lenovo Thinkpad X200 laptop, using xserver-xorg 7.4 from
Experimental for the latest Intel video drivers.

The up-arrow key functions properly within Gnome menus, but outside of the
menus (i.e., in Gnome dialogues and applications), it calls gnome-screenshot.


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

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

Versions of packages gnome depends on:
ii  arj3.10.22-6 archiver for .arj files
ii  avahi-daemon   0.6.23-2  Avahi mDNS/DNS-SD daemon
ii  bluez-gnome0.27-1Bluetooth utilities for GNOME
ii  epiphany-extensions2.24.1-1  Extensions for Epiphany web browse
ii  evolution-exchange 2.22.3.dfsg-1 Exchange plugin for the Evolution 
ii  evolution-plugins  2.22.3.1-1standard plugins for Evolution
ii  evolution-webcal   2.21.92-1 webcal: URL handler for GNOME and 
ii  gdm-themes 0.6.1 Themes for the GNOME Display Manag
ii  gnome-app-install  0.5.5.1-2 GNOME Application Installer
ii  gnome-desktop-environment  1:2.22.2~5The GNOME Desktop Environment
ii  gnome-games1:2.24.2-1games for the GNOME desktop
ii  gnome-spell1.0.7-1   GNOME/Bonobo component for spell c
ii  gnome-themes-extras0.9.0.deb0.4  various themes for the GNOME 2 des
ii  gnome-vfs-obexftp  0.4-1 GNOME VFS module for OBEX FTP
ii  gstreamer0.10-ffmpeg   0.10.6-1  FFmpeg plugin for GStreamer
ii  gstreamer0.10-plugins-ugly 0.10.10-1 GStreamer plugins from the ugly 
ii  libpam-gnome-keyring   2.22.3-2  PAM module to unlock the GNOME key
ii  p7zip  4.58~dfsg.1-1 7zr file archiver with high compre
ii  rhythmbox  0.11.6-1  music player and organizer for GNO
ii  serpentine 0.9-6 An application for creating audio 
ii  swfdec-mozilla 0.8.2-1   Mozilla plugin for SWF files (Macr
ii  synaptic   0.62.3Graphical package manager
ii  system-config-printer  1.0.0-4   graphical interface to configure t
ii  totem-mozilla  2.22.2-5  Totem Mozilla plugin
ii  transmission-gtk   1.34-1free, lightweight BitTorrent clien

Versions of packages gnome recommends:
ii  empathy2.24.1-1  High-level library and user-interf
ii  gdebi  0.3.11debian1+nmu1Simple tool to install deb files
ii  gnome-games-extra- 2.22.0-1  games for the GNOME desktop (extra
ii  gnome-office   1:2.22.2~5The GNOME Office suite
ii  gparted0.3.9-3   GNOME partition editor
ii  gthumb 3:2.11.0~svn2319-1+b1 an image viewer and browser
ii  hal-cups-utils 0.6.16-3  Utilities to detect and configure 
ii  hardinfo   0.4.2.3-5 Displays system information
ii  liferea1.4.18-1+b1   feed aggregator for GNOME
ii  menu-xdg   0.3   freedesktop.org menu compliant win
ii  network-manager-gn 0.7.0~svn953-1network management framework (GNOM
ii  tomboy 0.12.1-1  desktop note taking program using 
ii  tsclient   0.150-1   front-end for viewing of remote de
ii  update-notifier0.70.7.debian-5   Daemon which notifies about packag

Versions of packages gnome suggests:
pn  gnome-dbg none (no description available)
pn  openoffice.org-evolution  none (no description available)
pn  

Bug#447731: marked as done (Scroll keys do not work any more)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 11:56:48 +0100
with message-id 20100307105648.ga32...@loulous.org
and subject line Re: Bug#442316: xserver-xorg-input-evdev: evdev from 
experimental messes up my keyboard layout
has caused the Debian Bug report #442316,
regarding Scroll keys do not work any more
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.)


-- 
442316: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=442316
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kde-i18n-engb
Version: 4:3.5.8-1
Severity: grave

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

I encountered two problems today with the keyboard: one solvable and another
not solvable AFAIK. None of them appear when Ctrl+Alt+F1

Although my KDE is in British English, my keyboard layout was another one.
Today, the layout in KDE (not when Ctrl+Alt+F1) switched to UK layout. I
solved it by defining two layouts in the KDE Control Centre, but this is
still a bug that should be fixed.

On the other hand, for both layouts (including the UK layout), *the scroll
keys do not work*. Right, left and down do nothing. Up launches
Ksnapshot. THIS IS THE GRAVE BUG. It does not appear when Ctrl+Alt+F1.

--- System information. ---
Architecture: i386
Kernel: Linux 2.6.22-2-686

Debian Release: lenny/sid
990 unstable www.debian-multimedia.org
990 unstable ftp.uk.debian.org
500 stable dl.google.com
500 experimental www.debian-multimedia.org
1 experimental ftp.uk.debian.org

--- Package information. ---
Depends (Version) | Installed
==-+-===
kdelibs4c2a (= 4:3.5.8-1) | 4:3.5.8.dfsg.1-2
---End Message---
---BeginMessage---
On Sat, Sep 15, 2007 at 02:15:52AM +0200, Michael Biebl wrote:
 Package: xserver-xorg-input-evdev
 Version: 1:1.2.0~git20070819-2
 Severity: important
 
 As you can see from the xorg.conf, I set up a German keyboard layout.
 After installing evdev from experimental I lost my German
 keyboard layout (I guess its english, y is z e.g.). 
 Also, my special keys like alt+f1 dont work anymore.
 
 I can restore my keyboard layout partly when I run
 setxkbmap -model pc104 -layout de
 Stuff like up/down keys, or my volume up/down keys are still broken
 though (e.g. the up key sends the PRINT keycode)

I am closing this old bug report since most of input-hotplug stuff
have been implemented properly since then, and then we switched
from hal to udev, making part of this discussion irrelevant.
Then many people commented with not-so related issues.
So this bug an obsolete mess now.
Please open a new bug report if still having issues in unstable.

Brice

---End Message---


xterm: Changes to 'upstream-unstable'

2010-03-07 Thread Julien Cristau
 KOI8RXTerm.ad  |6 ++--
 Makefile.in|   85 +
 UXTerm.ad  |6 ++--
 minstall.sh|   18 ++--
 misc.c |4 +-
 sinstall.sh|6 ++--
 uxterm.desktop |4 +-
 version.h  |4 +-
 xterm.desktop  |4 +-
 xterm.log.html |   34 ++
 xterm.man  |4 --
 11 files changed, 122 insertions(+), 53 deletions(-)

New commits:
commit a471970d5942b416c57ae26b79bf14875872a874
Author: Julien Cristau jcris...@debian.org
Date:   Sun Mar 7 11:34:16 2010 +0100

Import xterm 256

diff --git a/KOI8RXTerm.ad b/KOI8RXTerm.ad
index 296bf51..acc82d2 100644
--- a/KOI8RXTerm.ad
+++ b/KOI8RXTerm.ad
@@ -1,8 +1,8 @@
-! $XTermId: KOI8RXTerm.ad,v 1.3 2007/12/30 15:49:14 tom Exp $
+! $XTermId: KOI8RXTerm.ad,v 1.4 2010/03/04 01:17:49 tom Exp $
 ! -
 ! this file is part of xterm
 !
-! Copyright 2007 by Thomas E. Dickey
+! Copyright 2007,2010 by Thomas E. Dickey
 ! 
 ! All Rights Reserved
 ! 
@@ -36,7 +36,7 @@
 !  xterm -class KOI8RXTerm
 ! to set resources for KOI8-R mode with corresponding fonts.
 
-#include XTerm-color
+#include XTerm
 
 *fontMenu.Label:  KOI8-R Fonts
 *VT100*allowC1Printable:   true
diff --git a/Makefile.in b/Makefile.in
index 46c3f54..07b1f74 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,11 +1,11 @@
-## $XTermId: Makefile.in,v 1.165 2010/01/04 21:40:47 tom Exp $
+## $XTermId: Makefile.in,v 1.170 2010/03/04 02:03:33 tom Exp $
 # -
 # this file is part of xterm
 #
 # Copyright 1997-2009,2010 by Thomas E. Dickey
-# 
+#
 # All Rights Reserved
-# 
+#
 # Permission is hereby granted, free of charge, to any person obtaining a
 # copy of this software and associated documentation files (the
 # Software), to deal in the Software without restriction, including
@@ -13,10 +13,10 @@
 # distribute, sublicense, and/or sell copies of the Software, and to
 # permit persons to whom the Software is furnished to do so, subject to
 # the following conditions:
-# 
+#
 # The above copyright notice and this permission notice shall be included
 # in all copies or substantial portions of the Software.
-# 
+#
 # THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
@@ -24,7 +24,7 @@
 # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-# 
+#
 # Except as contained in this notice, the name(s) of the above copyright
 # holders shall not be used in advertising or otherwise to promote the
 # sale, use or other dealings in this Software without prior written
@@ -226,21 +226,22 @@ install-full :: $(MANDIR)
@-$(SHELL) -c if test @XTERM_SYMLINK@ != NONE ; then cd $(MANDIR)  
$(LN_S) $(actual_xterm).$(manext) @xterm_syml...@.$(manext) ; fi
@-$(SHELL) -c if test @XTERM_SYMLINK@ != NONE ; then cd $(MANDIR)  
echo '... created symbolic link:'  ls -l $(actual_xterm).$(manext) 
@xterm_syml...@.$(manext) ; fi
 
+APP_NAMES = XTerm UXTerm KOI8RXTerm
+
 @no_apps...@install \
 @no_apps...@install-app \
 @no_apps...@install-full :: $(APPSDIR)
-...@no_appsdir@@echo installing $(APPSDIR)/$(CLASS)
-...@no_appsdir@@sed -e s/XTerm/$(CLASS)/ $(srcdir)/XTerm.ad XTerm.tmp
-...@no_appsdir@@$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/$(CLASS)
-...@no_appsdir@@echo installing $(APPSDIR)/$(CLASS)-color
-...@no_appsdir@@sed -e s/XTerm/$(CLASS)/ $(srcdir)/XTerm-col.ad 
XTerm.tmp
-...@no_appsdir@@$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/$(CLASS)-color
-...@no_appsdir@@echo installing $(APPSDIR)/UXTerm
-...@no_appsdir@@sed -e s/XTerm/$(CLASS)/ $(srcdir)/UXTerm.ad XTerm.tmp
-...@no_appsdir@@$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/UXTerm
-...@no_appsdir@@echo installing $(APPSDIR)/KOI8RXTerm
-...@no_appsdir@@sed -e s/XTerm/$(CLASS)/ $(srcdir)/KOI8RXTerm.ad 
XTerm.tmp
-...@no_appsdir@@$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/KOI8RXTerm
+...@no_appsdir@@-$(SHELL) -c 'for s in $(APP_NAMES); \
+...@no_appsdir@do \
+...@no_appsdir@echo ** $$s; \
+...@no_appsdir@d=`echo $$s | sed -e s/XTerm/$(CLASS)/`; \
+...@no_appsdir@echo installing $(APPSDIR)/$$d; \
+...@no_appsdir@sed -e s/XTerm/$(CLASS)/ $(srcdir)/$$s.ad 
XTerm.tmp; \
+...@no_appsdir@$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/$$d; \
+...@no_appsdir@echo installing $(APPSDIR)/$$d-color; \
+...@no_appsdir@sed -e s/XTerm/$$d/ $(srcdir)/XTerm-col.ad 
XTerm.tmp; \
+...@no_appsdir@

xterm: Changes to 'debian-unstable'

2010-03-07 Thread Julien Cristau
 KOI8RXTerm.ad |6 +-
 Makefile.in   |   85 --
 UXTerm.ad |6 +-
 debian/changelog  |   12 
 debian/control|9 +++
 debian/patches/901_xterm_manpage.diff |   22 
 debian/patches/902_windowops.diff |2 
 debian/patches/904_fontops.diff   |2 
 debian/patches/series |1 
 minstall.sh   |   18 +++
 misc.c|4 -
 sinstall.sh   |6 +-
 uxterm.desktop|4 -
 version.h |4 -
 xterm.desktop |4 -
 xterm.log.html|   34 +
 xterm.man |4 -
 17 files changed, 144 insertions(+), 79 deletions(-)

New commits:
commit d274f7738e75c25f2726a66fcedf1021e2b8b3fb
Author: Julien Cristau jcris...@debian.org
Date:   Sun Mar 7 11:59:28 2010 +0100

Add build dependency on xorg-docs-core to fix the reference to X(7) in 
xterm(1).

While there, document the libxkbfile-dev and libutempter-dev build-deps.

diff --git a/debian/changelog b/debian/changelog
index 9e943ca..a0553df 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,9 @@ xterm (256-1) UNRELEASED; urgency=low
   * Delete patch 901_xterm_manpage.diff, the utmp/wtmp paths are now set in
 the manpage at build/install time thanks to upstream changes.
   * Refresh patches 902 and 904.
+  * Add build dependency on xorg-docs-core to fix the reference to X(7) in
+xterm(1).
+  * Also document the libxkbfile-dev and libutempter-dev build-deps.
 
  -- Julien Cristau jcris...@debian.org  Sun, 07 Mar 2010 11:35:23 +0100
 
diff --git a/debian/control b/debian/control
index 99db14d..42841aa 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,8 @@ Build-Depends:
  libutempter-dev,
  debhelper (= 5),
  quilt,
- lynx
+ lynx,
+ xorg-docs-core,
 
 # Reasons for Build-Depends:
 #
@@ -90,6 +91,12 @@ Build-Depends:
 #   Tekproc.c:#include X11/Xaw/Form.h
 #   Tekproc.c:#include X11/Xaw3d/Form.h
 #   Tekproc.c:#include X11/XawPlus/Form.h
+#   libxkbfile-dev
+#   data.h:#include X11/extensions/XKBbells.h
+#   libutempter-dev
+#   main.c:#include utempter.h
+#   xorg-docs-core  provides X(7) which minstall.sh tries to
+#   detect
 #   debhelper (= 5)debian/compat = 5
 #   dpkg-dev (= 1.10.14)   (1.10.11) comment support in 
debian/control;
 #   (1.10.14) architecture-specific binary

commit 1abd48c4b2b62a1e2703e1f1eb9ccb9ab0b98655
Author: Julien Cristau jcris...@debian.org
Date:   Sun Mar 7 11:41:23 2010 +0100

Refresh patches 902 and 904.

diff --git a/debian/changelog b/debian/changelog
index 224adb6..9e943ca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ xterm (256-1) UNRELEASED; urgency=low
   * New upstream release.
   * Delete patch 901_xterm_manpage.diff, the utmp/wtmp paths are now set in
 the manpage at build/install time thanks to upstream changes.
+  * Refresh patches 902 and 904.
 
  -- Julien Cristau jcris...@debian.org  Sun, 07 Mar 2010 11:35:23 +0100
 
diff --git a/debian/patches/902_windowops.diff 
b/debian/patches/902_windowops.diff
index e76b8bf..cf4d207 100644
--- a/debian/patches/902_windowops.diff
+++ b/debian/patches/902_windowops.diff
@@ -2,7 +2,7 @@ Index: xterm/xterm.man
 ===
 --- xterm.orig/xterm.man
 +++ xterm/xterm.man
-@@ -2070,8 +2070,9 @@
+@@ -2068,8 +2068,9 @@
  from \fIdtterm\fP the operation number).
  The default value is
  .RS
diff --git a/debian/patches/904_fontops.diff b/debian/patches/904_fontops.diff
index 73f4566..ab7b3b6 100644
--- a/debian/patches/904_fontops.diff
+++ b/debian/patches/904_fontops.diff
@@ -2,7 +2,7 @@ Index: xterm/xterm.man
 ===
 --- xterm.orig/xterm.man
 +++ xterm/xterm.man
-@@ -1499,7 +1499,7 @@
+@@ -1497,7 +1497,7 @@
  .TP
  .B allowFontOps (\fPclass\fB AllowFontOps)
  Specifies whether control sequences that set/query the font should be allowed.

commit 60b0fa29a05c2575250cb1a4401c1d45310428ea
Author: Julien Cristau jcris...@debian.org
Date:   Sun Mar 7 11:37:01 2010 +0100

Delete patch 901_xterm_manpage.diff

the utmp/wtmp paths are now set in the manpage at build/install time
thanks to upstream changes.

diff --git a/debian/changelog b/debian/changelog
index 36c7a62..224adb6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 xterm (256-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * Delete patch 901_xterm_manpage.diff, the utmp/wtmp paths are now set in
+the manpage at build/install time thanks to upstream changes.
 
  -- Julien 

Bug#442316: xserver-xorg-input-evdev: evdev from experimental messes up my keyboard layout

2010-03-07 Thread Brice Goglin
On Sat, Sep 15, 2007 at 02:15:52AM +0200, Michael Biebl wrote:
 Package: xserver-xorg-input-evdev
 Version: 1:1.2.0~git20070819-2
 Severity: important
 
 As you can see from the xorg.conf, I set up a German keyboard layout.
 After installing evdev from experimental I lost my German
 keyboard layout (I guess its english, y is z e.g.). 
 Also, my special keys like alt+f1 dont work anymore.
 
 I can restore my keyboard layout partly when I run
 setxkbmap -model pc104 -layout de
 Stuff like up/down keys, or my volume up/down keys are still broken
 though (e.g. the up key sends the PRINT keycode)

I am closing this old bug report since most of input-hotplug stuff
have been implemented properly since then, and then we switched
from hal to udev, making part of this discussion irrelevant.
Then many people commented with not-so related issues.
So this bug an obsolete mess now.
Please open a new bug report if still having issues in unstable.

Brice



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307105648.ga32...@loulous.org



Bug#418854: xserver-xorg-core: Dual head randomly lockups machine hard

2010-03-07 Thread Roland Lezuo
Consider it closed. 
I eventually got a new system. Different hardware (intel graphics).

best regards
roland

On Sun, 2010-03-07 at 11:18 +0100, Brice Goglin wrote:
 On Wed, Apr 18, 2007 at 03:45:16PM +0200, Roland Lezuo wrote:
  
   What about xserver-xorg-video-nv? You said you were able to reproduce
   the lockup with this driver in unstable? If you can't anymore with
  
  I do not have the nvidia card any more, so i can't test.
  
   But, note that we won't be able to actually help you with fglrx or
   nvidia since those are closed source and we have no way to debug in
   them. Such problems should be reported to ATI or nVidia. We can only
   help you about xserver-xorg-core and vesa and nv drivers...
  
  I know. I'll send update information as soon as flgrx is available for
  xorg 7.2...
 
 3-year old ping?
 
 Brice
 



smime.p7s
Description: S/MIME cryptographic signature


Bug#516325: compiz: Compiz crashes when Rotate Cube plugin shortcut is used in Expo plugin

2010-03-07 Thread Neil Stewart

Further information: When I start compiz from the command line, I get a
segmentation fault with some information about where in the compiz script
the problem is occuring. Here is the output:

compiz --replace 
[2] 9075
n...@macbook:~$ Checking for Xgl: not present.
Detected PCI ID for VGA: 02:00.0 0300: 10de:0647 (rev a1) (prog-if 00 [VGA
contr
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Comparing resolution (1440x900) to maximum 3D texture size (8192): Passed.
Checking for nVidia: present.
Checking for FBConfig: present.
Checking for Xgl: not present.
Starting gtk-window-decorator
n...@macbook:~$ Backend : gconf
Integration : true
Profile : default
Adding plugin imgjpeg (imgjpeg)
Adding plugin text (text)
Adding plugin move (move)
Adding plugin dbus (dbus)
Adding plugin screenshot (screenshot)
Adding plugin inotify (inotify)
Adding plugin workarounds (workarounds)
Adding plugin ring (ring)
Adding plugin regex (regex)
Adding plugin svg (svg)
Adding plugin colorfilter (colorfilter)
Adding plugin water (water)
Adding plugin put (put)
Adding plugin ezoom (ezoom)
Adding plugin scaleaddon (scaleaddon)
Adding plugin wobbly (wobbly)
Adding plugin rotate (rotate)
Adding plugin neg (neg)
Adding plugin mag (mag)
Adding plugin bs (bs)
Adding plugin zoom (zoom)
Adding plugin png (png)
Adding plugin fs (fs)
Adding plugin staticswitcher (staticswitcher)
Adding plugin winrules (winrules)
Adding plugin glib (glib)
Adding plugin cube (cube)
Adding plugin wall (wall)
Adding plugin thumbnail (thumbnail)
Adding plugin switcher (switcher)
Adding plugin resize (resize)
Adding plugin opacify (opacify)
Adding plugin place (place)
Adding plugin vpswitch (vpswitch)
Adding core settings (General Options)
Adding plugin snap (snap)
Adding plugin session (session)
Adding plugin clone (clone)
Adding plugin shift (shift)
Adding plugin resizeinfo (resizeinfo)
Adding plugin mousepoll (mousepoll)
Adding plugin minimize (minimize)
Adding plugin video (video)
Adding plugin annotate (annotate)
Adding plugin fade (fade)
Adding plugin decoration (decoration)
Adding plugin blur (blur)
Adding plugin animation (animation)
Adding plugin scale (scale)
Adding plugin expo (expo)
Initializing core options...done
Initializing imgjpeg options...done
Initializing move options...done
Initializing resize options...done
Initializing place options...done
Initializing decoration options...done
Initializing snap options...done
Initializing fade options...done
n...@macbook:~$ Initializing cube options...done
Initializing switcher options...done
Initializing scale options...done
Initializing expo options...done
Initializing rotate options...done
n...@macbook:~$ Setting Update initiate_key
Setting Update initiate_key
Setting Update mode
Setting Update snap_type
Setting Update edges_categories
Setting Update fullscreen_visual_bell
Setting Update images
Setting Update transparent_manual_only
Setting Update prev_key
Setting Update zoom
Setting Update icon
Setting Update initiate_key
Setting Update rotate_left_key
Setting Update rotate_right_key
Setting Update rotate_left_window_key
Setting Update rotate_right_window_key
Setting Update rotate_to_1_key
Setting Update rotate_to_2_key
Setting Update rotate_to_3_key
Setting Update rotate_to_4_key
Setting Update rotate_to_1_window_key
Setting Update rotate_to_2_window_key
Setting Update rotate_to_3_window_key
Setting Update rotate_to_4_window_key
/usr/bin/compiz: line 394:  9139 Segmentation fault ${COMPIZ_BIN_PATH}${COMPIZ_NAME} 
$COMPIZ_OPTIONS $@ $COMPIZ_PLUGIN


Does this still happen with latest X packages in unstable?

Brice


Brice,

I'm afraid I can't upgrade to unstable X as I must use the laptop for work.
Also, I stopped using compiz a year ago! So sorry, I can't tell you. Thank
you so much for looking into the bug though.

Best,
Neil.



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/alpine.deb.1.10.1003071026450.5...@stewart.warwick.ac.uk



Bug#476282: marked as done (upgrade from old compiz versions may lead to missing decorations)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 12:17:14 +0100
with message-id 20100307111714.ga5...@loulous.org
and subject line Re: Bug#476282: no decoration (in any window)
has caused the Debian Bug report #476282,
regarding upgrade from old compiz versions may lead to missing decorations
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.)


-- 
476282: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476282
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: compiz-gtk
Version: 0.6.3~git20080115.0ea58487-1
Severity: important

Maybe related to #457649.

When I launch compiz:

r...@bombadil:~$ compiz --replace 
[1] 5490
r...@bombadil:~$ Checking for Xgl: not present.
xset q doesn't reveal the location of the log file. Using fallback 
/var/log/Xorg.0.log
Detected PCI ID for VGA: 00:02.0 0300: 8086:27a2 (rev 03) (prog-if 00 [VGA 
controller])
Checking for texture_from_pixmap: not present.
Trying again with indirect rendering:
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Comparing resolution (1280x800) to maximum 3D texture size (2048): Passed.
Checking for nVidia: not present.
Checking for FBConfig: present.
Checking for Xgl: not present.
Starting gtk-window-decorator

window decorations (in any window) are not visible.

Used to work fine on the same hardware back when it was running etch
(with compiz 0.5.2-2~bpo40+1 from backports.org).

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

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

Versions of packages compiz-gtk depends on:
ii  compiz-core 0.6.3~git20080115.0ea58487-1 OpenGL window and compositing mana
ii  gconf2  2.22.0-1 GNOME configuration database syste
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-10   GNU C Library: Shared libraries
ii  libcairo2   1.4.14-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.20-1 simple interprocess messaging syst
ii  libdbus-gli 0.74-1   simple interprocess messaging syst
ii  libdecorati 0.6.3~git20080115.0ea58487-1 Compiz window decoration library
ii  libgconf2-4 2.22.0-1 GNOME configuration database syste
ii  libglib2.0- 2.16.1-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.9-2 The GTK+ graphical user interface 
ii  libmetacity 1:2.22.0-1   library of lightweight GTK2 based 
ii  liborbit2   1:2.14.12-0.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0 1.20.0-1 Layout and rendering of internatio
ii  libstartup- 0.9-1library for program launch feedbac
ii  libwnck22   2.22.0-1 Window Navigator Construction Kit 
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra

compiz-gtk recommends no packages.

-- no debconf information


---End Message---
---BeginMessage---
Upgrade from old versions don't matter anymore today, and compiz
from current unstable (0.8.4) successfully enables the basic plugins
so that you get decorations, so let's close this.

Brice

---End Message---


Bug#511079: marked as done (compiz: Does not properly start from Gnome session)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 12:22:09 +0100
with message-id 20100307112209.ga5...@loulous.org
and subject line Re: Bug#511079: compiz: Does not properly start from Gnome 
session
has caused the Debian Bug report #511079,
regarding compiz: Does not properly start from Gnome session
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.)


-- 
511079: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511079
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: compiz
Version: 0.7.6-7
Severity: important

I begin using Compiz by running compiz --replace and that works well.  To
continue using it, I save my current session via the Gnome session applet.
However, the session file stores references to compiz.real instead of compiz
along with all of the command line arguments.

Normally this would be okay, since the session file properly includes the
--indirect-rendering argument.  Unfortunately, without the compiz script
setting the LIBGL_ALWAYS_INDIRECT environment variable, compiz will not
start when Gnome does.  It tries and fails several times until I am left
without a window manager.  I can then re-run compiz --replace in a terminal
window (which was also saved with the session) and get back to a usable
desktop.

I'm not sure what the solution is since gnome-session has no way of knowing
that it should save calls to compiz instead of compiz.real.



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

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

Versions of packages compiz depends on:
ii  compiz-core   0.7.6-7OpenGL window and compositing mana
ii  compiz-gnome  0.7.6-7OpenGL window and compositing mana
ii  compiz-gtk0.7.6-7OpenGL window and compositing mana
ii  compiz-plugins0.7.6-7OpenGL window and compositing mana

compiz recommends no packages.

Versions of packages compiz suggests:
ii  compizconfig-settings-manager 0.7.6-3Compizconfig Settings Manager

-- no debconf information

-- 
--John GruenenfelderSystems Manager, MKS Imaging Technology, LLC.
Try Weasel Reader for PalmOS  --  http://weaselreader.org
This is the most fun I've had without being drenched in the blood
of my enemies!
--Sam of Sam  Max


---End Message---
---BeginMessage---
Version: 0.8.4-2

On Wed, Jan 07, 2009 at 04:02:38AM -0700, John Gruenenfelder wrote:
 Package: compiz
 Version: 0.7.6-7
 Severity: important
 
 I begin using Compiz by running compiz --replace and that works well.  To
 continue using it, I save my current session via the Gnome session applet.
 However, the session file stores references to compiz.real instead of compiz
 along with all of the command line arguments.

compiz.real is gone, so the bug might be gone now.

Brice

---End Message---


Bug#536842: marked as done (compiz-gtk: No window decorations using gtk-window-decorator)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 12:23:56 +0100
with message-id 20100307112356.ga5...@loulous.org
and subject line Re: Bug#536841: compiz-gtk: No window decorations using 
gtk-window-decorator
has caused the Debian Bug report #536841,
regarding compiz-gtk: No window decorations using gtk-window-decorator
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.)


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

Subject: compiz-gtk: No window decorations using gtk-window-decorator
Package: compiz-gtk
Version: 0.8.2-6
Severity: important

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

I try to use compiz with Gnome and a ATI Radeon 9800 Pro card using the Xorg 
radeon driver (*not* fglrx!).

OpenGL, direct rendering and all this stuff works (glxinfo reports Direct 
rendering: yes, 3D games are playable at high frame rates).

I can start compiz, but I have no window decorations at all while it is 
running. The desktop effects are working, though.

When starting compiz I get:

--snip--

$ compiz --replace
Checking for Xgl: not present.
Detected PCI ID for VGA: 02:00.0 0300: 1002:4e48 (prog-if 00 [VGA controller])
Checking for texture_from_pixmap: not present.
Trying again with indirect rendering:
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Checking screen 1Comparing resolution (1152x864) to maximum 3D texture size 
(2048): Passed.
Checking for Software Rasterizer: Not present.
Checking for nVidia: not present.
Checking for FBConfig: present.
Checking for Xgl: not present.
inotify_add_watch: No such file or directory
/usr/bin/compiz.real (video) - Warn: No 8 bit GLX pixmap format, disabling YV12 
image format
/usr/bin/compiz.real (cube) - Warn: Failed to load slide: 
/usr/share/gdm/themes/Human/ubuntu.png

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(even more copies of those message(s))

/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32

---snip---

For me it looks like gtk-window-decorator is the source of the 

Processed: forcibly merging 536841 536842

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 536841 536842
Bug#536841: compiz-gtk: No window decorations using gtk-window-decorator
Bug#536842: compiz-gtk: No window decorations using gtk-window-decorator
Forcibly Merged 536841 536842.

 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
Archive: 
http://lists.debian.org/handler.s.c.126796112027272.transcr...@bugs.debian.org



Bug#536841: marked as done (compiz-gtk: No window decorations using gtk-window-decorator)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 12:23:56 +0100
with message-id 20100307112356.ga5...@loulous.org
and subject line Re: Bug#536841: compiz-gtk: No window decorations using 
gtk-window-decorator
has caused the Debian Bug report #536841,
regarding compiz-gtk: No window decorations using gtk-window-decorator
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.)


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

Subject: compiz-gtk: No window decorations using gtk-window-decorator
Package: compiz-gtk
Version: 0.8.2-6
Severity: important

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

I try to use compiz with Gnome and a ATI Radeon 9800 Pro card using the Xorg 
radeon driver (*not* fglrx!).

OpenGL, direct rendering and all this stuff works (glxinfo reports Direct 
rendering: yes, 3D games are playable at high frame rates).

I can start compiz, but I have no window decorations at all while it is 
running. The desktop effects are working, though.

When starting compiz I get:

--snip--

$ compiz --replace
Checking for Xgl: not present.
Detected PCI ID for VGA: 02:00.0 0300: 1002:4e48 (prog-if 00 [VGA controller])
Checking for texture_from_pixmap: not present.
Trying again with indirect rendering:
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Checking screen 1Comparing resolution (1152x864) to maximum 3D texture size 
(2048): Passed.
Checking for Software Rasterizer: Not present.
Checking for nVidia: not present.
Checking for FBConfig: present.
Checking for Xgl: not present.
inotify_add_watch: No such file or directory
/usr/bin/compiz.real (video) - Warn: No 8 bit GLX pixmap format, disabling YV12 
image format
/usr/bin/compiz.real (cube) - Warn: Failed to load slide: 
/usr/share/gdm/themes/Human/ubuntu.png

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): metacity-CRITICAL **: 
meta_frame_style_draw_with_style: assertion `style_gtk-colormap == 
gdk_drawable_get_colormap (drawable)' failed

(gtk-window-decorator:17172): Gdk-WARNING **: Using Cairo rendering requires 
the drawable argument to
have a specified colormap. All windows have a colormap,
however, pixmaps only have colormap by default if they
were created with a non-NULL window argument. Otherwise
a colormap must be set on them with gdk_drawable_set_colormap

(even more copies of those message(s))

/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32
/usr/bin/compiz.real (core) - Warn: No GLXFBConfig for depth 32

---snip---

For me it looks like gtk-window-decorator is the source of the 

Bug#545557: marked as done (compiz: no reasonable default plugin settings)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 12:26:59 +0100
with message-id 20100307112659.ga5...@loulous.org
and subject line Re: Bug#545557: compiz: no reasonable default plugin settings
has caused the Debian Bug report #545557,
regarding compiz: no reasonable default plugin settings
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.)


-- 
545557: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=545557
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: compiz
Version: 0.8.2-6
Severity: important

I made a clean install of Debian sid and installee compiz.
When starting with
compiz --replace

no plugin were loaded (apart from gnomecompat), not even window decorations, so
it really looked like compiz was not working.

Compiz should have at least some reasonable plugins nabled by default when run
for the first time.

Thanks,
Ludovico


Output:
$ compiz --replace
Checking for Xgl: not present. 
xset q doesn't reveal the location of the log file. Using fallback
/var/log/Xorg.0.log 
Detected PCI ID for VGA: 00:02.0 0300: 8086:2a02 (rev 0c) (prog-if 00
[VGA controller])
Checking for texture_from_pixmap: present. 
Checking for non power of two support: present. 
Checking for Composite extension: present. 
Checking screen 1Comparing resolution (1280x800) to maximum 3D texture
size (4096): Passed.
Checking for Software Rasterizer: Not present. 
Checking for nVidia: not present. 
Checking for FBConfig: present. 
Checking for Xgl: not present. 
Backend : gconf
Integration : true
Profile : default
Adding plugins
Initializing core options...done
Initializing gnomecompat options...done

Compiz packages:
$ dpkg -l | grep compiz
ii  compiz   0.8.2-6OpenGL 
window and compositing manager
ii  compiz-core  0.8.2-6OpenGL 
window and compositing manager
ii  compiz-fusion-plugins-extra  0.8.2-3Compiz 
Fusion plugins - extra collection
ii  compiz-fusion-plugins-main   0.8.2-3Compiz 
Fusion plugins - main collection
ii  compiz-gnome 0.8.2-6OpenGL 
window and compositing manager - GNOM
ii  compiz-gtk   0.8.2-6OpenGL 
window and compositing manager - Gtk 
ii  compiz-plugins   0.8.2-6OpenGL 
window and compositing manager - plug
ii  compizconfig-backend-gconf   0.8.2-1Compiz 
Fusion configuration system - gconf b
ii  compizconfig-settings-manager0.8.2-2
Compizconfig Settings Manager
ii  libcompizconfig0 0.8.2-2+b1 
Configuration settings library for compiz-fu
ii  python-compizconfig  0.8.2-1
Compizconfig bindings for python


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

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

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

compiz recommends no packages.

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

-- no debconf information


---End Message---
---BeginMessage---
Version: 0.8.4-2

On Mon, Sep 07, 2009 at 11:11:38PM -0700, Ludovico Cavedon wrote:
 Package: compiz
 Version: 0.8.2-6
 Severity: important
 
 I made a clean install of Debian sid and installee compiz.
 When starting with
 compiz --replace
 
 no plugin were loaded (apart from gnomecompat), not even window decorations, 
 so
 it really looked like compiz was not working.
 
 Compiz should have at least some reasonable plugins nabled by default when run
 for the first time.

0.8.4 fixes this, it enables decoration and move for instance.
But it won't fix your old setup that earlier versions created.

Brice


---End Message---


compiz: Changes to 'debian-unstable'

2010-03-07 Thread Brice Goglin
 debian/changelog |6 ++
 debian/control   |2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 19af52e0fb6f70a2af4f5c02f85f743e3ceba210
Author: Brice Goglin bgog...@debian.org
Date:   Sun Mar 7 12:37:40 2010 +0100

Remove Thierry Reding from Uploaders

diff --git a/debian/changelog b/debian/changelog
index b7a498f..c751119 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+compiz (0.8.4-3) UNRELEASED; urgency=low
+
+  * Remove Thierry Reding from Uploaders, closes: #572540.
+
+ -- Brice Goglin bgog...@debian.org  Sun, 07 Mar 2010 12:37:03 +0100
+
 compiz (0.8.4-2) unstable; urgency=low
 
   * Bump the dh_makeshlibs call to (= 0.8.4)
diff --git a/debian/control b/debian/control
index 7e9bb80..5fa12b7 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: compiz
 Section: x11
 Priority: optional
 Maintainer: Debian X Strike Force debian-x@lists.debian.org
-Uploaders: Thierry Reding thie...@gilfi.de, David Nusinow 
dnusi...@debian.org, Sean Finney sean...@debian.org
+Uploaders: David Nusinow dnusi...@debian.org, Sean Finney 
sean...@debian.org
 Build-Depends: autoconf, automake1.9, autotools-dev,
  debhelper (= 5), intltool, 
  kdebase-workspace-dev,


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1noeo1-0006rv...@alioth.debian.org



Bug#457649: compiz-gtk: no decoration on unfocused windows

2010-03-07 Thread Brice Goglin
On Sun, Dec 16, 2007 at 03:34:13PM +, A Mennucc wrote:
 Package: compiz-gtk
 Version: 0.6.3~git20071104.c9009efd-1
 Severity: normal
 
 hi
 
 compiz does not draw decorations on unfocused windows;
 when I switch focus, the unfocused window loses its border,
 and the focused window gains it

Does this still happen?

Brice



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307113515.ga5...@loulous.org



Bug#551654: marked as done (Compiz won't start/won't load properly)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 12:30:25 +0100
with message-id 20100307113025.ga5...@loulous.org
and subject line Re: Bug#551654: Compiz won't start/won't load properly
has caused the Debian Bug report #551654,
regarding Compiz won't start/won't load properly
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.)


-- 
551654: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551654
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: compiz
Version: 0.8.2-6
Justification: renders package unusable
Severity: grave

After last upgrade, compiz just stopped working.

First problem was that compiz wouldn't start at all, output is in
http://foolcontrol.org/img/bug/mesa%20bug.txt, which I fixed.

Second problem came that compiz would start automatically (I didn't
invoke it) and that once it starts, windows can't be minimized or moved
or anything and are surrounded by these black thick borders/edges.

http://foolcontrol.org/img/bug/compiz_edges_problem.png

It came to my attention that the same bug is present in latest Ubuntu,
9.10:

https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/178953
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/363517
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/363821=20

compiz-check would warn me on Checking for hardware/setup problems...
but after I disabled /apps/metacity/general/compositing_manager
(gconf-editor) compiz-check does not issue any problems (see
http://foolcontrol.org/img/bug/compiz-check%20report.txt)

There are no problems with metacity (metacity --replace), which I'm
currently using without any problems, however when I issue compiz
--replace compiz starts and is displayed as you can see on screenshot
above (also see: http://foolcontrol.org/img/bug/compiz%20--replace.txt)


Adnan


Graphics: Intel Corporation Mobile GM965/GL960 Integrated Graphics
Controller (rev 0c)

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

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=3Den_US.UTF-8, LC_CTYPE=3Den_US.UTF-8 (charmap=3DUTF-8)
Shell: /bin/sh linked to /bin/dash

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

compiz recommends no packages.

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

-- no debconf information



signature.asc
Description: This is a digitally signed message part
---End Message---
---BeginMessage---
Version: 0.8.4-2

On Mon, Oct 19, 2009 at 09:07:45PM +0200, Adnan Hodzic wrote:
 Package: compiz
 Version: 0.8.2-6
 Justification: renders package unusable
 Severity: grave
 
 After last upgrade, compiz just stopped working.
 
 First problem was that compiz wouldn't start at all, output is in
 http://foolcontrol.org/img/bug/mesa%20bug.txt, which I fixed.
 
 Second problem came that compiz would start automatically (I didn't
 invoke it) and that once it starts, windows can't be minimized or moved
 or anything and are surrounded by these black thick borders/edges.

This is caused by the first run of compiz no enabling enough plugins.
Fixed in 0.8.4. You may have to enable decoration, move, ... in cssm.

Looks like you fixed other problems, so I am closing this bug.

Brice


---End Message---


xorg: Changes to 'debian-unstable'

2010-03-07 Thread Brice Goglin
 debian/local/Xreset.d/README |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit f8de4719d7755ad049021adafcda400a5740824d
Author: Brice Goglin bgog...@debian.org
Date:   Sun Mar 7 12:50:38 2010 +0100

Document username in Xreset.d README

diff --git a/debian/local/Xreset.d/README b/debian/local/Xreset.d/README
index b695e6f..3c03f42 100644
--- a/debian/local/Xreset.d/README
+++ b/debian/local/Xreset.d/README
@@ -1,2 +1,4 @@
 # Scripts in this directory are executed as root when a user log out from
 # a display manager using /etc/X11/Xreset.
+# The username of the user logging out is provided in the $USER environment
+# variable.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nof7m-p9...@alioth.debian.org



xdm: Changes to 'debian-unstable'

2010-03-07 Thread Julien Cristau
 debian/changelog   |1 
 debian/local/Xreset|2 
 debian/local/Xsetup|2 
 debian/local/Xstartup  |2 
 debian/local/xdm.options   |2 
 debian/local/xdm.options.5 |2 
 debian/po/ca.po|1 
 debian/po/cs.po|1 
 debian/po/da.po|1 
 debian/po/de.po|1 
 debian/po/el.po|1 
 debian/po/eu.po|1 
 debian/po/fr.po|1 
 debian/po/gl.po|1 
 debian/po/it.po|1 
 debian/po/ja.po|1 
 debian/po/nl.po|1 
 debian/po/pl.po|1 
 debian/po/pothead.in   |1 
 debian/po/pt.po|1 
 debian/po/pt_BR.po |1 
 debian/po/ro.po|1 
 debian/po/ru.po|1 
 debian/po/sk.po|1 
 debian/po/sv.po|1 
 debian/po/tr.po|1 
 debian/po/vi.po|1 
 debian/xdm.README.Debian   |2 
 debian/xdm.config.in   |2 
 debian/xdm.init|2 
 debian/xdm.logrotate   |2 
 debian/xdm.pam |2 
 debian/xdm.postinst.in |2 
 debian/xdm.postrm.in   |2 
 debian/xdm.preinst.in  |2 
 debian/xdm.prerm.in|2 
 debian/xsfbs/xsfbs.mk  |   21 
 debian/xsfbs/xsfbs.sh  |  233 -
 38 files changed, 4 insertions(+), 300 deletions(-)

New commits:
commit 7c8cefa5ac2edfa5b06e7b46a6988ddd5476522a
Author: Julien Cristau jcris...@debian.org
Date:   Sun Mar 7 13:09:06 2010 +0100

Get rid of obsolete svn $Id$ keywords in the packaging.

diff --git a/debian/changelog b/debian/changelog
index 6a89876..386f5fb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,7 @@ xdm (1:1.1.9-1) UNRELEASED; urgency=low
   * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
 good reason.  Thanks, Colin Watson!
   * Remove myself from Uploaders
+  * Get rid of obsolete svn $Id$ keywords in the packaging.
 
   [ Brice Goglin ]
   * New upstream release.
diff --git a/debian/local/Xreset b/debian/local/Xreset
index eccc019..aafe4ba 100644
--- a/debian/local/Xreset
+++ b/debian/local/Xreset
@@ -1,7 +1,5 @@
 #!/bin/sh
 #
-# $Id: Xreset 189 2005-06-11 00:04:27Z branden $
-#
 # This script is run as root after the user's X session ends.
 
 # Use common Xreset framework if it exist
diff --git a/debian/local/Xsetup b/debian/local/Xsetup
index 81f71a1..5d11100 100644
--- a/debian/local/Xsetup
+++ b/debian/local/Xsetup
@@ -1,7 +1,5 @@
 #!/bin/sh
 #
-# $Id$
-#
 # This script is run as root before showing login widget.
 
 #xsetroot -solid rgb:8/8/8
diff --git a/debian/local/Xstartup b/debian/local/Xstartup
index 8c0c5cb..cd51e52 100644
--- a/debian/local/Xstartup
+++ b/debian/local/Xstartup
@@ -1,7 +1,5 @@
 #!/bin/sh
 #
-# $Id: Xstartup 189 2005-06-11 00:04:27Z branden $
-#
 # This script is run as root after the user logs in.  If this script exits with
 # a return code other than 0, the user's session will not be started.
 
diff --git a/debian/local/xdm.options b/debian/local/xdm.options
index 908c62f..0ebb7b2 100644
--- a/debian/local/xdm.options
+++ b/debian/local/xdm.options
@@ -1,5 +1,3 @@
-# $Id: xdm.options 189 2005-06-11 00:04:27Z branden $
-#
 # configuration options for xdm
 # See xdm.options(5) for an explanation of the available options.
 
diff --git a/debian/local/xdm.options.5 b/debian/local/xdm.options.5
index c82e5e0..621e8b3 100644
--- a/debian/local/xdm.options.5
+++ b/debian/local/xdm.options.5
@@ -1,5 +1,3 @@
-.\ $Id: xdm.options.5 642 2005-09-30 01:04:37Z dnusinow $
-.\
 .\ Copyright 1998, 2002-2004 Branden Robinson bran...@debian.org.
 .\
 .\ This is free software; you may redistribute it and/or modify
diff --git a/debian/po/ca.po b/debian/po/ca.po
index 7e177fd..1817f7c 100644
--- a/debian/po/ca.po
+++ b/debian/po/ca.po
@@ -1,7 +1,6 @@
 # debconf templates for xorg-x11 package
 # Catalan translation
 #
-# $Id: ca.po 1273 2006-02-21 10:58:12Z ender $
 #
 # Copyrights:
 # Branden Robinson, 2000-2004
diff --git a/debian/po/cs.po b/debian/po/cs.po
index de30ed2..51874a6 100644
--- a/debian/po/cs.po
+++ b/debian/po/cs.po
@@ -1,7 +1,6 @@
 # debconf templates for xdm package
 # Czech translation
 #
-# $Id: cs.po 1042 2006-01-09 07:55:08Z ender $
 #
 # Copyrights:
 # Branden Robinson, 2000-2004
diff --git a/debian/po/da.po b/debian/po/da.po
index e60ecce..19b230f 100644
--- a/debian/po/da.po
+++ b/debian/po/da.po
@@ -1,7 +1,6 @@
 # debconf templates for xorg-x11 package
 # Danish translation
 #
-# $Id: da.po 1042 2006-01-09 07:55:08Z ender $
 #
 # Copyrights:
 # Branden Robinson, 2000-2004
diff --git a/debian/po/de.po b/debian/po/de.po
index ac744b3..a6e902a 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -2,7 +2,6 @@
 # debconf templates for xorg-x11 package
 # German translation
 #
-# $Id: de.po 1042 2006-01-09 07:55:08Z ender $
 #
 # Copyrights:
 #
diff --git 

Bug#572880: video-radeon: frequent lockups on suspend to disk/resume with KMS

2010-03-07 Thread Hramrach
Package: xserver-xorg-video-radeon
Version: 1:6.12.191-1
Severity: normal
File: video-radeon


I have upgraded the system to get KMS working and now the system would
lockup about once in three tries when doing suspend to disk/resume.

I suspect this is related to KMS but I had to upgrade quite a bit of
stuff to get it working so I cannot be sure.

I will try with KMS disabled for now.


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

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

X server symlink status:
lrwxrwxrwx 1 root root 13 Oct  4 18:23 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1712808 Feb 16 09:39 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon IGP 
330M/340M/350M

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

Xorg X server log files on system:
-rw-r--r-- 1 root root 44489 Mar  7 11:42 /var/log/Xorg.0.log

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

X.Org X Server 1.7.5
Release Date: 2010-02-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-trunk-686 i686 Debian
Current Operating System: Linux nc4010 2.6.33-2-686 #1 SMP Mon Mar 1 03:56:47 
UTC 2010 i686
Kernel command line: root=/dev/mapper/nc4010-root ro splash 
video=radeonfb:mode=800x600
Build Date: 16 February 2010  08:37:23AM
xorg-server 2:1.7.5-1 (bgog...@debian.org) 
Current version of pixman: 0.16.4
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: Sun Mar  7 11:42:06 2010
(II) Loader magic: 0x81e7020
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:1:5:0) 1002:4337:0e11:005a ATI Technologies Inc Radeon IGP 
330M/340M/350M rev 0, Mem @ 0x9800/134217728, 0x9000/65536, I/O @ 
0x2000/256, BIOS @ 0x/131072
(==) Using default built-in configuration (30 lines)
(==) --- Start of built-in configuration ---
Section Device
Identifier  Builtin Default ati Device 0
Driver  ati
EndSection
Section Screen
Identifier  Builtin Default ati Screen 0
Device  Builtin Default ati Device 0
EndSection
Section Device
Identifier  Builtin Default vesa Device 0
Driver  vesa
EndSection
Section Screen
Identifier  Builtin Default vesa Screen 0
Device  Builtin Default vesa Device 0
EndSection
Section Device
Identifier  Builtin Default fbdev Device 0
Driver  fbdev
EndSection
Section Screen
Identifier  Builtin Default fbdev Screen 0
Device  Builtin Default fbdev Device 0
EndSection
Section ServerLayout
Identifier  Builtin Default Layout
Screen  Builtin Default ati Screen 0
Screen  Builtin Default vesa Screen 0
Screen  Builtin Default fbdev Screen 0
EndSection
(==) --- End of built-in configuration ---
(==) ServerLayout Builtin Default Layout
(**) |--Screen Builtin Default ati Screen 0 (0)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default ati Device 0
(==) No monitor specified for screen Builtin Default ati Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default vesa Screen 0 (1)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default vesa Device 0
(==) No monitor specified for screen Builtin Default vesa Screen 0.
Using a default monitor configuration.
(**) |--Screen Builtin Default fbdev Screen 0 (2)
(**) |   |--Monitor default monitor
(**) |   |--Device Builtin Default fbdev Device 0
(==) No monitor specified for screen Builtin Default fbdev Screen 0.
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi/ does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/100dpi does not exist.
Entry deleted from font path.
(WW) The directory /usr/share/fonts/X11/75dpi does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/Type1,

Bug#525515: marked as done (xorg: uninstallable on GNU/kFreeBSD and hurd due to depends on hal, console-setup)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 13:13:31 +0100
with message-id 20100307121331.ga7...@loulous.org
and subject line Re: Bug#525515: xorg: uninstallable on GNU/kFreeBSD, hurd
has caused the Debian Bug report #525515,
regarding xorg: uninstallable on GNU/kFreeBSD and hurd due to depends on hal, 
console-setup
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.)


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

Package: xorg
Severity: important
Version: 1:7.4+1
User: glibc-bsd-de...@lists.alioth.debian.org
Usertags: kfreebsd

Hi,

the current version of xserver-xorg is uninstallable on GNU/kFreeBSD.

The problematic parts are Depends:
 hal (= 0.5.12~git20090406),
 console-setup (= 1.29),

The hal is lacking behind on GNU/kFreeBSD, it does not even exist on hurd,
the console-setup depends on Linux specific package.

Would be possible to restore previous behaviour and use configuration 
of input devices from /etc/X11/xorg.conf on non-linux architectures

and restrict these depends only for Linux arhitectures ?

Thanks in advance

Petr


---End Message---
---BeginMessage---
On Sat, Apr 25, 2009 at 09:19:16AM +0200, Petr Salinger wrote:
 Package: xorg
 Severity: important
 Version: 1:7.4+1
 User: glibc-bsd-de...@lists.alioth.debian.org
 Usertags: kfreebsd
 
 Hi,
 
 the current version of xserver-xorg is uninstallable on GNU/kFreeBSD.
 
 The problematic parts are Depends:
  hal (= 0.5.12~git20090406),
  console-setup (= 1.29),

Closing this wontfix bug that's irrelevant now.

Brice


---End Message---


Bug#457980: marked as done (x11-common should conflict with xserver-s3v)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 13:16:05 +0100
with message-id 20100307121605.ga7...@loulous.org
and subject line Re: Bug#457980: packaging problem in xserver-s3v, x11-common 
(multiple packages want same directory /usr/X11R6/bin)
has caused the Debian Bug report #457980,
regarding x11-common should conflict with xserver-s3v
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.)


-- 
457980: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457980
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-s3v
Version: 3.3.6-44
Severity: normal

I tried doing an apt-get update and apt-get install -f as some of the
packages were complaining while upgrading ... dcraw I guess.

-- Part of output of apt-get install -f

Preconfiguring packages ...
(Reading database ... 266494 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.3+8_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/x11-common_1%3a7.3+8_i386.deb 
(--unpack):
 trying to overwrite `/usr/X11R6/bin', which is also in package xserver-s3v
Errors were encountered while processing:
 /var/cache/apt/archives/x11-common_1%3a7.3+8_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)



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

Kernel: Linux 2.6.17-2-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages xserver-s3v depends on:
ii  debconf 1.5.3Debian configuration management sy
ii  libc6   2.7-4GNU C Library: Shared libraries
ii  xserver-common-v3   3.3.6-44 files and utilities common to XFre
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

xserver-s3v recommends no packages.

-- debconf information excluded


---End Message---
---BeginMessage---
Closing this old wontfix bug.

Brice


---End Message---


Processed: bug 540521 is not forwarded

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notforwarded 540521
Bug #540521 [xserver-xorg-core] xserver-xorg-core: Virtual screen size being 
ignored since upgrade
Unset Bug forwarded-to-address
 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
Archive: 
http://lists.debian.org/handler.s.c.126796488211172.transcr...@bugs.debian.org



Processed: reassign 540521 to xserver-xorg-video-intel

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 540521 xserver-xorg-video-intel
Bug #540521 [xserver-xorg-core] xserver-xorg-core: Virtual screen size being 
ignored since upgrade
Bug reassigned from package 'xserver-xorg-core' to 'xserver-xorg-video-intel'.
Bug No longer marked as found in versions xorg-server/2:1.6.3-1.
 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
Archive: 
http://lists.debian.org/handler.s.c.126796493812165.transcr...@bugs.debian.org



Bug#437321: Xpress improvements in upstream ati git

2010-03-07 Thread Brice Goglin
On Mon, Feb 09, 2009 at 11:18:13PM +0100, Brice Goglin wrote:
 On Sun, Jun 15, 2008 at 03:45:35PM -0400, Zack Weinberg wrote:
  On Sun, Jun 15, 2008 at 6:53 AM, Brice Goglin brice.gog...@ens-lyon.org 
  wrote:
   Hello Zack,
   Now that 6.8.191 is in unstable, how's your Xpress working?
  
  I'm moving; that computer is currently on a truck somewhere.  I'll try
  to remember, but if you don't hear from me in a couple weeks, please
  ping again.
 
 It's been a bit more than a couple weeks but better late than never :)
 
 The upstream bug[1] has been closed because DRI is supposed to work 
 fine. I just uploaded radeon 6.10.99.0 to experimental, and we have
 mesa 7.3 there as well. It would be nice if you test all this.

Still no luck with latest X packages?

Brice



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307124025.ga7...@loulous.org



Bug#528538: marked as done ([xserver-xorg-input-synaptics] VertScrolling stops working after update to version 1.1.0)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 13:37:08 +0100
with message-id 20100307123708.ga7...@loulous.org
and subject line Re: Bug#528538: [xserver-xorg-input-synaptics] VertScrolling 
stops working after update to version 1.1.0
has caused the Debian Bug report #528538,
regarding [xserver-xorg-input-synaptics] VertScrolling stops working after 
update to version 1.1.0
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
528538: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528538
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-input-synaptics
Version: 1.1.0-1
Severity: normal

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

after updating to the newest version vertscrolling on my dell mini9 stopps 
working. HorizontScrolling and Tapping (after enabling per synclient) works 
without trouble.

The relevant parameter from synclient -l are:
   RightEdge   = 5312
VertScrollDelta = 100 
VertEdgeScroll  = 1   

The relevant part from Xorg.0.log are:
(II) Module synaptics: vendor=X.Org Foundation
compiled for 1.6.0, module version = 1.1.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 4.0
(II) Synaptics touchpad driver version 1.1.0
(**) Option Device /dev/input/event8
(II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
(II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
(II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
(II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
(II) SynPS/2 Synaptics TouchPad: buttons: left right middle
(--) SynPS/2 Synaptics TouchPad touchpad found
(**) SynPS/2 Synaptics TouchPad: always reports core events
(II) XINPUT: Adding extended input device SynPS/2 Synaptics TouchPad (type: 
TOUCHPAD)
(**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
(**) SynPS/2 Synaptics TouchPad: (accel) filter chain progression: 2.00
(**) SynPS/2 Synaptics TouchPad: (accel) filter stage 0: 20.00 ms
(**) SynPS/2 Synaptics TouchPad: (accel) set acceleration profile 0
(--) SynPS/2 Synaptics TouchPad touchpad found


In the xorg.conf are no section belonging to synaptics-Touchpad. The myserios 
is, in my last session Vertscrolling working for a short time (less than a 
minute) after setting RightEdge to another value like 5300. But I cant 
reproduce this at the moment...

Any hints?

Thanks,
Mirko

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.29-1-686

Debian Release: squeeze/sid
  990 unstablewww.debian-multimedia.org 
  990 unstableftp.de.debian.org 
  990 unstabledeb.opera.com 
  101 experimentalftp.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-==
libc6  (= 2.2) | 2.9-6
libx11-6| 2:1.2.1-1
libxi6 (= 2:1.2.0) | 2:1.2.1-2
xserver-xorg-core (= 2:1.5.99.901) | 2:1.6.0-1





---End Message---
---BeginMessage---
Version: 1.2.0-1

On Tue, Oct 27, 2009 at 12:04:17AM +0100, Stefan Lippers-Hollmann wrote:
 Hi
 
 I can confirm that the new upstream version 1.1.3 of xf86-input-synaptics 
 (aka xserver-xorg-input-synaptics) indeed fixes the vertical scrolling 
 reliably on my Acer Aspire One 110L, alternatively the upstream backport of
 http://bugs.freedesktop.org/attachment.cgi?id=28026 (referred to from 
 http://bugs.freedesktop.org/show_bug.cgi?id=21001) works just as well.
 
 Regards
   Stefan Lippers-Hollmann



---End Message---


Bug#425969: marked as done (XRecordEnableContextAsync work in lenny but not in sid.)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 13:41:24 +0100
with message-id 20100307124124.ga7...@loulous.org
and subject line Re: Bug#425969: XRecordEnableContextAsync work in lenny but 
not in sid.
has caused the Debian Bug report #425969,
regarding XRecordEnableContextAsync work in lenny but not in sid.
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.)


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

Package: xorg
Version: 1:7.2-3

XRecordEnableContextAsync works well with lenny up to date (xorg
1:7.1.0-18) but not with sid up to date (xorg 1:7.2-3
) on the same computer.
XRecordEnableContext works on twice.

I attach a little piece of code that work on lenny but not sid.

If you replace XRecordEnableContextAsync with XRecordEnableContext and remove
XRecordProcessReplies it work on sid too, but the record is
synchronous now and cannot be integrated in an interactive gui app.
I'm not sure which of XRecordEnableContextAsync and
XRecordProcessReplies doesn't do it's job correctly.

To reproduce the bug, build the code with gcc main.c -lX11 -lXtst, run
it and move the mouse. if it work, it should catch the mouse motion
and print it on stdout.

#include X11/Xproto.h
#include X11/Xlib.h
#include X11/extensions/record.h

#include stdio.h
#include stdlib.h

typedef union { 
  unsigned chartype ;
  xEvent   event ;
  xResourceReq req   ;
  xGenericReplyreply ;
  xError   error ;
  xConnSetupPrefix setup;
} XRecordDatum ;


int click = 0;
int press = 0;
int release = 0;
int other = 0;
int event = 0;
int button1down = 0;
int button2down = 0;
int button3down = 0;
int distance = -1;
int oldX = 0;
int oldY = 0;

void dispatch(XPointer pointer, XRecordInterceptData *data)
{
if ((data==NULL) || (!data-data))
{
XRecordFreeData(data);
return;
}

++event;
XRecordDatum *xrec_data  = (XRecordDatum *) data-data;
if (data-category == XRecordFromServer)
{
switch (xrec_data-type)
{
case MotionNotify:
if (distance = 0)
{
int x = xrec_data-event.u.keyButtonPointer.rootX - oldX;
int y = xrec_data-event.u.keyButtonPointer.rootY - oldY;
distance += x*x + y*y;
}
else
{
distance = 0;
}

oldX = xrec_data-event.u.keyButtonPointer.rootX;
oldY = xrec_data-event.u.keyButtonPointer.rootY;
break;

case ButtonPress:
if (xrec_data-event.u.u.detail == Button1)
{
button1down = 1;
}
else if (xrec_data-event.u.u.detail == Button2)
{
button2down = 1;
}
else if (xrec_data-event.u.u.detail == Button3)
{
button3down = 1;
}
break;

case ButtonRelease:
if (xrec_data-event.u.u.detail == Button1)
{
if (button1down)
{
click++;
}
button1down = 0;
}
else if (xrec_data-event.u.u.detail == Button2)
{
if (button2down)
{
click++;
}
button2down = 0;
}
else if (xrec_data-event.u.u.detail == Button3)
{
if (button3down)
{
click++;
}
button3down = 0;
}
break;

}
}
else
{
++other;
}


XRecordFreeData(data);

printf(Events n°%i ** clicks : %i ** distance : %i ** other : %i\n, event, click, distance, other);
}


int main(int argc, char **argv)
{

char *display_name = getenv (DISPLAY);
Display *dpy = XOpenDisplay(display_name);
if (!dpy)
{
// unable to open display
printf(fail to open display\n);
return -1;
}

XRecordClientSpec xrcs[1];
xrcs[0] = XRecordAllClients;

XRecordRange *xr_range = XRecordAllocRange();
XRecordRange *xr_array[1];
xr_array[0] = xr_range;

if (!xr_range)
{
printf(fail to create range\n);
XCloseDisplay(dpy);
return -1;
}

xr_range-delivered_events.first = ButtonPress;
xr_range-delivered_events.last = MotionNotify;

XRecordContext xrc = XRecordCreateContext(
dpy,
 

Bug#413009: xorg-server: [ia64] PCI domain mismatch - DRI unusable

2010-03-07 Thread Brice Goglin
On Wed, Apr 15, 2009 at 02:24:05PM +0200, Thibaut VARENE wrote:
 Hi,
 
 I should be able to try it in a couple weeks (my ia64 box with gfx is
 currently unavailable).
 I'll keep you posted.

Ping?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307124314.ga7...@loulous.org



Processed: bug 395558 is not forwarded

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notforwarded 395558
Bug #395558 [xserver-xorg-core] xserver-xorg-core: tulip crashes X with sigsegv 
on file-new
Unset Bug forwarded-to-address
 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
Archive: 
http://lists.debian.org/handler.s.c.126796575127521.transcr...@bugs.debian.org



Processed: bug 79228 is not forwarded

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notforwarded 79228
Bug #79228 [libxxf86dga1] xlibs-static-dev: [libxf86dga] atexit functions don't 
work after XF86DGAGetVideo()
Unset Bug forwarded-to-address
 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
Archive: 
http://lists.debian.org/handler.s.c.126796593528608.transcr...@bugs.debian.org



Bug#358751: tilt buttons are inverted with MX 1000 mouse

2010-03-07 Thread Brice Goglin
On Mon, May 07, 2007 at 12:51:28PM -0600, Jeremy Nickurak wrote:
 Brice Goglin wrote:
 tags 358751 -fixed-upstream
 thank you
 
 
 
 Hi,
 
 This one year old bug report about tilt buttons being inverted on MX1000
 mouse has been closed upstream because it didn't have any activity for a
 long time. Could you report back whether the bug is still there with the
 latest evdev driver (1:1.1.5-2 is in unstable) so that I either close
 this bug or reopen the upstream one?
 
 Thanks,
 Brice
 
 Not fixed for me here either. Reopened upstream.

Upstream bug reclosed as invalid because you didn't reply.
Could you reopen it or close this one depending on your testing?

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307124452.ga7...@loulous.org



Bug#534945: Bug#531771: xkb-data: level 3 switch not working anymore

2010-03-07 Thread Brice Goglin
Hello,

Could you guys look at the upstream bug ?
  https://bugs.freedesktop.org/show_bug.cgi?id=19500
Then, either close this bug or complain there as requested.

Brice



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307125232.ga7...@loulous.org



Bug#422505: marked as done (xserver-xorg-core: crashes when using OpenGL app with fbdev driver)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 7 Mar 2010 13:55:23 +0100
with message-id 20100307125523.ga7...@loulous.org
and subject line Re: Bug#422505: xserver-xorg-core: crashes when using OpenGL 
app with fbdev driver
has caused the Debian Bug report #422505,
regarding xserver-xorg-core: crashes when using OpenGL app with fbdev driver
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.)


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

Package: xserver-xorg-core
Version: 2:1.3.0.0.dfsg-3
Severity: minor

Hello,

I tried to run an OpenGL application with the fbdev driver (it was a game  
and I wanted to
test it, not really play because it wouldn't really work), and when I  
tried to return
from the game to the menu, Xorg crashed. I've attached the server log,  
which includes the

backtrace.

Regards
Jiri Palecek

-- System Information:
Debian Release: lenny/sid
Architecture: i386 (i686)

Kernel: Linux 2.6.20.3-rt8 (PREEMPT)
Locale: LANG=cs_CZ, LC_CTYPE=cs_CZ (charmap=ISO-8859-2) (ignored: LC_ALL  
set to cs_CZ)

Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg-core depends on:
ii  libc6 2.5-5  GNU C Library: Shared  
libraries
ii  libdrm2   2.3.0-4Userspace interface to kernel  
DRM

ii  libfontenc1   1:1.0.4-2  X11 font encoding library
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libxau6   1:1.0.1-2  X11 authorisation library
ii  libxdmcp6 1:1.0.2-2  X11 Display Manager Control  
Protoc

ii  libxfont1 1:1.2.8-1  X11 font rasterisation library
ii  x11-common1:7.1.0-18 X Window System (X.Org)  
infrastruc

ii  xserver-xorg  1:7.1.0-18 the X.Org X server

Versions of packages xserver-xorg-core recommends:
ii  xfonts-base   1:1.0.0-4  standard fonts for X
ii  xkb-data  0.9-4  X Keyboard Extension (XKB)  
configu


-- no debconf information

xserver-xorg-core.bug.gz
Description: GNU Zip compressed data
---End Message---
---BeginMessage---
On Mon, May 28, 2007 at 07:26:01PM +0200, Brice Goglin wrote:
 forwarded 422505 https://bugs.freedesktop.org/show_bug.cgi?id=9212
 thank you
 
 
 The backtrace looks similar to the one in comment #3 above
 (unfortunately, this upstream bugs contains is kind of messy, with
 multiple different backtraces...) even if the circumstances are
 different. Marking the bug as forwarded anyway, we'll see what happens
 upstream.

Fixed a while ago according to upstream, closing this.

Brice


---End Message---


Bug#572880: video-radeon: frequent lockups on suspend to disk/resume with KMS

2010-03-07 Thread Brice Goglin
Hramrach wrote:
 Package: xserver-xorg-video-radeon
 Version: 1:6.12.191-1
 Severity: normal
 File: video-radeon


 I have upgraded the system to get KMS working and now the system would
 lockup about once in three tries when doing suspend to disk/resume.

 I suspect this is related to KMS but I had to upgrade quite a bit of
 stuff to get it working so I cannot be sure.

 I will try with KMS disabled for now.
   

Is the log below from before or after you think you disabled KMS ?
I am asking because of this:

 Kernel command line: root=/dev/mapper/nc4010-root ro splash 
 video=radeonfb:mode=800x600
 [...]
 (II) [KMS] drm report modesetting isn't supported

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93a2c2.4080...@ens-lyon.org



Bug#572887: xserver-xorg-video-radeon: textures are broken [RV730 PRO - Radeon HD 4650]

2010-03-07 Thread Brice Goglin
Davide Prina wrote:
 Package: xserver-xorg-video-radeon
 Version: 1:6.12.4-2
 Severity: normal

 All textures are broken: you see only random colored pixel
 Normally I don't use 3D, so I don't have a lot of problems. 2D work fine.

Your board is very recent, you should probably upgrade to
xserver-xorg-video-radeon 6.12.191 in unstable, enable KMS (see
http://bgoglin.livejournal.com/19346.html), and maybe even use the
2.6.33 kernel in experimental (or wait for the next 2.6.32 in unstable
since it will include drm from 2.6.33).

In the end, if it's a 3D bug, it should be reassigned to mesa, but
upgrading the above may help first.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93a385.9040...@ens-lyon.org



Bug#528684: (no subject)

2010-03-07 Thread Alexey Feldgendler
On Sun, 07 Mar 2010 10:14:17 +0100, Brice Goglin  
brice.gog...@ens-lyon.org wrote:



You probably should enable KMS in your kernel.


Tried this now by passing radeon.modeset=1 to the kernel. This resulted in  
the following failure in the X.org log:


(EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version  
mismatch.

[dri] This chipset requires a kernel module version of 1.17.0,
[dri] but the kernel reports a version of 2.0.0.[dri] If using legacy  
modesetting, upgrade your kernel.

[dri] If using kernel modesetting, make sure your module is
[dri] loaded prior to starting X, and that this driver was built
[dri] with support for KMS.
[dri] Disabling DRI.

...and subsequently a black screen (that wouldn't go away even when  
switching consoles).


Relevant part of the kernel log:


Mar  7 13:31:22 sandwich kernel: [   23.013466] [drm] Initialized drm  
1.1.0 20060810
Mar  7 13:31:22 sandwich kernel: [   23.066580] [drm] radeon kernel  
modesetting enabled.
Mar  7 13:31:22 sandwich kernel: [   23.066748] radeon :02:00.0:  
setting latency timer to 64
Mar  7 13:31:22 sandwich kernel: [   23.073756] [drm] radeon: Initializing  
kernel modesetting.
Mar  7 13:31:22 sandwich kernel: [   23.073822] [drm] register mmio base:  
0xCFEF
Mar  7 13:31:22 sandwich kernel: [   23.073830] [drm] register mmio size:  
65536
Mar  7 13:31:22 sandwich kernel: [   23.074097] ATOM BIOS:  
Acer_JV50_PU_M92M2_XT_DDR2

Mar  7 13:31:22 sandwich kernel: [   23.074113] [drm] Clocks initialized !
Mar  7 13:31:22 sandwich kernel: [   23.074793] [drm] Detected VRAM  
RAM=256M, BAR=256M

Mar  7 13:31:22 sandwich kernel: [   23.074809] [drm] RAM width 64bits DDR
Mar  7 13:31:22 sandwich kernel: [   23.077253] [TTM] Zone  kernel:  
Available graphics memory: 436872 kiB.
Mar  7 13:31:22 sandwich kernel: [   23.077269] [TTM] Zone highmem:  
Available graphics memory: 1622028 kiB.
Mar  7 13:31:22 sandwich kernel: [   23.077321] [drm] radeon: 256M of VRAM  
memory ready
Mar  7 13:31:22 sandwich kernel: [   23.077329] [drm] radeon: 512M of GTT  
memory ready.
Mar  7 13:31:22 sandwich kernel: [   23.077493] [drm] Loading RV710 CP  
Microcode
Mar  7 13:31:22 sandwich kernel: [   23.077505] platform radeon_cp.0:  
firmware: requesting radeon/RV710_pfp.bin
Mar  7 13:31:22 sandwich kernel: [   23.121711] platform radeon_cp.0:  
firmware: requesting radeon/RV710_me.bin
Mar  7 13:31:22 sandwich kernel: [   23.137889] [drm] GART: num cpu pages  
131072, num gpu pages 131072
Mar  7 13:31:22 sandwich kernel: [   23.172085] [drm] ring test succeeded  
in 1 usecs
Mar  7 13:31:22 sandwich kernel: [   23.172692] [drm] radeon: ib pool  
ready.
Mar  7 13:31:22 sandwich kernel: [   23.172921] [drm] ib test succeeded in  
0 usecs
Mar  7 13:31:22 sandwich kernel: [   23.177821] [drm] Radeon Display  
Connectors

Mar  7 13:31:22 sandwich kernel: [   23.177834] [drm] Connector 0:
Mar  7 13:31:22 sandwich kernel: [   23.177841] [drm]   LVDS
Mar  7 13:31:22 sandwich kernel: [   23.177853] [drm]   DDC: 0x7f68 0x7f68  
0x7f6c 0x7f6c 0x7f70 0x7f70 0x7f74 0x7f74

Mar  7 13:31:22 sandwich kernel: [   23.177861] [drm]   Encoders:
Mar  7 13:31:22 sandwich kernel: [   23.177867] [drm] LCD1:  
INTERNAL_UNIPHY2

Mar  7 13:31:22 sandwich kernel: [   23.177874] [drm] Connector 1:
Mar  7 13:31:22 sandwich kernel: [   23.177880] [drm]   VGA
Mar  7 13:31:22 sandwich kernel: [   23.177890] [drm]   DDC: 0x7e40 0x7e40  
0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c

Mar  7 13:31:22 sandwich kernel: [   23.177897] [drm]   Encoders:
Mar  7 13:31:22 sandwich kernel: [   23.177903] [drm] CRT1:  
INTERNAL_KLDSCP_DAC1

Mar  7 13:31:22 sandwich kernel: [   23.177910] [drm] Connector 2:
Mar  7 13:31:22 sandwich kernel: [   23.177916] [drm]   HDMI-A
Mar  7 13:31:22 sandwich kernel: [   23.177926] [drm]   DDC: 0x7e50 0x7e50  
0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c

Mar  7 13:31:22 sandwich kernel: [   23.177933] [drm]   Encoders:
Mar  7 13:31:22 sandwich kernel: [   23.177940] [drm] DFP1:  
INTERNAL_UNIPHY
Mar  7 13:31:23 sandwich kernel: [   24.54] wifi: no IPv6 routers  
present
Mar  7 13:31:23 sandwich kernel: [   24.247673] [drm] fb mappable at  
0xD0141000
Mar  7 13:31:23 sandwich kernel: [   24.247677] [drm] vram apper at  
0xD000

Mar  7 13:31:23 sandwich kernel: [   24.247680] [drm] size 4325376
Mar  7 13:31:23 sandwich kernel: [   24.247682] [drm] fb depth is 24
Mar  7 13:31:23 sandwich kernel: [   24.247684] [drm]pitch is 5632
Mar  7 13:31:23 sandwich kernel: [   24.248973] Console: switching to  
colour frame buffer device 170x48
Mar  7 13:31:23 sandwich kernel: [   24.248993] fb0: radeondrmfb frame  
buffer device

Mar  7 13:31:23 sandwich kernel: [   24.248996] registered panic notifier
Mar  7 13:31:23 sandwich kernel: [   24.249007] [drm] Initialized radeon  
2.0.0 20080528 for :02:00.0 on minor 0



Complete X.org log:


X.Org X Server 1.7.5
Release Date: 2010-02-16
X Protocol Version 11, Revision 0
Build Operating System: 

Bug#413009: xorg-server: [ia64] PCI domain mismatch - DRI unusable

2010-03-07 Thread Thibaut VARENE
On Sun, Mar 7, 2010 at 1:43 PM, Brice Goglin brice.gog...@ens-lyon.org wrote:
 On Wed, Apr 15, 2009 at 02:24:05PM +0200, Thibaut VARENE wrote:
 Hi,

 I should be able to try it in a couple weeks (my ia64 box with gfx is
 currently unavailable).
 I'll keep you posted.

 Ping?

Still haven't had a chance to try it and don't think I will anytime soon.

Do what you like with the bug, if need be I can always reopen it later.

T-Bone

-- 
Thibaut VARENE
http://www.parisc-linux.org/~varenet/



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/7d01f9f01003070529k1ff0b873rbd8990dfad253...@mail.gmail.com



xkb-data: Changes to 'debian-unstable'

2010-03-07 Thread Julien Cristau
 COPYING|   40 
 ChangeLog  |   62 
 NEWS   |1 
 README |3 
 configure.in   |5 
 debian/changelog   |6 
 docs/HOWTO.transition  |2 
 geometry/Makefile.am   |2 
 geometry/hp|  246 +++
 geometry/nokia |   53 
 geometry/sun   |   40 
 keycodes/sun   |   40 
 keymap/README  |2 
 keymap/xfree86 |   94 -
 po/bg.po   |  865 +--
 po/ca.po   |  880 +--
 po/cs.po   |  863 +--
 po/de.po   |  866 +--
 po/fi.po   |  866 +--
 po/fr.po   |  881 +--
 po/id.po   |  866 +--
 po/ky.po   | 1447 +--
 po/lt.po   |6 
 po/pl.po   | 2796 +
 po/ru.po   |  864 +--
 po/sv.po   |  868 +--
 po/zh_CN.po|2 
 rules/base.lists.part  |7 
 rules/base.m_g.part|3 
 rules/base.m_k.part|1 
 rules/base.m_s.part|2 
 rules/base.m_t.part|1 
 rules/base.ml1_s.part  |2 
 rules/base.ml_s.part   |4 
 rules/base.mlv_s.part  |1 
 rules/base.o_s.part|3 
 rules/base.xml.in  |   57 
 symbols/Makefile.am|2 
 symbols/altwin |5 
 symbols/ch |   10 
 symbols/compose|5 
 symbols/group  |   29 
 symbols/inet   |3 
 symbols/lt |   30 
 symbols/macintosh_vndr/Makefile.am |2 
 symbols/macintosh_vndr/es  |6 
 symbols/nokia_vndr/Makefile.am |6 
 symbols/nokia_vndr/rx-44   |  303 
 symbols/nokia_vndr/rx-51   |  491 ++
 symbols/nokia_vndr/su-8w   |  484 ++
 symbols/pc |3 
 symbols/pl |   75 
 symbols/ru |   21 
 symbols/se |2 
 symbols/sun_vndr/cs|   40 
 symbols/sun_vndr/cz|   40 
 symbols/sun_vndr/de|   40 
 symbols/sun_vndr/dk|   40 
 symbols/sun_vndr/es|   40 
 symbols/sun_vndr/fi|   40 
 symbols/sun_vndr/fr|   40 
 symbols/sun_vndr/gb|   40 
 symbols/sun_vndr/gr|   40 
 symbols/sun_vndr/hu|   40 
 symbols/sun_vndr/it|   40 
 symbols/sun_vndr/jp|   40 
 symbols/sun_vndr/ko|   40 
 symbols/sun_vndr/lt|   40 
 symbols/sun_vndr/lv|   40 
 symbols/sun_vndr/nl|   40 
 symbols/sun_vndr/no|   40 
 symbols/sun_vndr/pl|   40 
 symbols/sun_vndr/pt|   40 
 symbols/sun_vndr/ru|   40 
 symbols/sun_vndr/se|   40 
 symbols/sun_vndr/solaris   |   36 
 symbols/sun_vndr/sw|   40 
 symbols/sun_vndr/tr|   40 
 symbols/sun_vndr/tuv   |   40 
 symbols/sun_vndr/tw|   40 
 symbols/sun_vndr/us|   42 
 symbols/tm |2 
 types/Makefile.am  |2 
 types/nokia|   14 
 84 files changed, 9950 insertions(+), 5370 deletions(-)

New commits:
commit 2e872ff0734f64bcc7c17721bbf4d67a1b0d396f
Author: Julien Cristau jcris...@debian.org
Date:   Sun Mar 7 14:52:23 2010 +0100

Bump changelog

diff --git a/debian/changelog b/debian/changelog
index 66a093d..47dd79b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
-xkeyboard-config (1.7-3) UNRELEASED; urgency=low
+xkeyboard-config (1.8-1) UNRELEASED; urgency=low
 
   * Remove myself from Uploaders
+  * New upstream release
++ Fix Win key as third level chooser (closes: #531771)
 
- -- Julien Cristau jcris...@debian.org  Sat, 23 Jan 2010 01:43:20 +0100
+ -- Julien Cristau jcris...@debian.org  Sun, 07 Mar 2010 14:50:26 +0100
 
 xkeyboard-config (1.7-2) unstable; urgency=low
 

commit 8f70af72843b3392e4585566d2498d9407122710
Author: Sergey V. Udaltsov s...@gnome.org
Date:   Tue Jan 26 23:25:07 2010 +

preparing release 1.8

diff --git a/NEWS b/NEWS
index f01db56..3655f90 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+1.8Bugfixes (10). Updated/new translations. Some new layouts and models. 
 1.7

xkb-data: Changes to 'upstream-unstable'

2010-03-07 Thread Julien Cristau
 COPYING|   40 
 ChangeLog  |   62 
 NEWS   |1 
 README |3 
 configure.in   |5 
 docs/HOWTO.transition  |2 
 geometry/Makefile.am   |2 
 geometry/hp|  246 +++
 geometry/nokia |   53 
 geometry/sun   |   40 
 keycodes/sun   |   40 
 keymap/README  |2 
 keymap/xfree86 |   94 -
 po/bg.po   |  865 +--
 po/ca.po   |  880 +--
 po/cs.po   |  863 +--
 po/de.po   |  866 +--
 po/fi.po   |  866 +--
 po/fr.po   |  881 +--
 po/id.po   |  866 +--
 po/ky.po   | 1447 +--
 po/lt.po   |6 
 po/pl.po   | 2796 +
 po/ru.po   |  864 +--
 po/sv.po   |  868 +--
 po/xkeyboard-config.pot| 1196 ---
 po/zh_CN.po|2 
 rules/base.lists.part  |7 
 rules/base.m_g.part|3 
 rules/base.m_k.part|1 
 rules/base.m_s.part|2 
 rules/base.m_t.part|1 
 rules/base.ml1_s.part  |2 
 rules/base.ml_s.part   |4 
 rules/base.mlv_s.part  |1 
 rules/base.o_s.part|3 
 rules/base.xml.in  |   57 
 symbols/Makefile.am|2 
 symbols/altwin |5 
 symbols/ch |   10 
 symbols/compose|5 
 symbols/group  |   29 
 symbols/inet   |3 
 symbols/lt |   30 
 symbols/macintosh_vndr/Makefile.am |2 
 symbols/macintosh_vndr/es  |6 
 symbols/nokia_vndr/Makefile.am |6 
 symbols/nokia_vndr/rx-44   |  303 
 symbols/nokia_vndr/rx-51   |  491 ++
 symbols/nokia_vndr/su-8w   |  484 ++
 symbols/pc |3 
 symbols/pl |   75 
 symbols/ru |   21 
 symbols/se |2 
 symbols/sun_vndr/cs|   40 
 symbols/sun_vndr/cz|   40 
 symbols/sun_vndr/de|   40 
 symbols/sun_vndr/dk|   40 
 symbols/sun_vndr/es|   40 
 symbols/sun_vndr/fi|   40 
 symbols/sun_vndr/fr|   40 
 symbols/sun_vndr/gb|   40 
 symbols/sun_vndr/gr|   40 
 symbols/sun_vndr/hu|   40 
 symbols/sun_vndr/it|   40 
 symbols/sun_vndr/jp|   40 
 symbols/sun_vndr/ko|   40 
 symbols/sun_vndr/lt|   40 
 symbols/sun_vndr/lv|   40 
 symbols/sun_vndr/nl|   40 
 symbols/sun_vndr/no|   40 
 symbols/sun_vndr/pl|   40 
 symbols/sun_vndr/pt|   40 
 symbols/sun_vndr/ru|   40 
 symbols/sun_vndr/se|   40 
 symbols/sun_vndr/solaris   |   36 
 symbols/sun_vndr/sw|   40 
 symbols/sun_vndr/tr|   40 
 symbols/sun_vndr/tuv   |   40 
 symbols/sun_vndr/tw|   40 
 symbols/sun_vndr/us|   42 
 symbols/tm |2 
 types/Makefile.am  |2 
 types/nokia|   14 
 84 files changed, 10570 insertions(+), 5940 deletions(-)

New commits:
commit 8f70af72843b3392e4585566d2498d9407122710
Author: Sergey V. Udaltsov s...@gnome.org
Date:   Tue Jan 26 23:25:07 2010 +

preparing release 1.8

diff --git a/NEWS b/NEWS
index f01db56..3655f90 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+1.8Bugfixes (10). Updated/new translations. Some new layouts and models. 
 1.7Bugfixes (30). Updated/new translations. Some new layouts and models. 
 1.6Bugfixes (36). Updated/new translations. Some new layouts and models. 
Added terminate:* group
diff --git a/configure.in b/configure.in
index 898a81f..fef868b 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-AC_INIT(xkeyboard-config, 1.7)
+AC_INIT(xkeyboard-config, 1.8)
 AC_CONFIG_SRCDIR(rules/base.xml.in)
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AM_MAINTAINER_MODE
diff --git a/po/xkeyboard-config.pot b/po/xkeyboard-config.pot
index 68802cb..a3537a9 100644
--- a/po/xkeyboard-config.pot
+++ b/po/xkeyboard-config.pot
@@ -8,7 +8,7 @@ msgid 
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
 

Processed: limit source to xkeyboard-config, tagging 531771

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #xkeyboard-config (1.8-1) UNRELEASED; urgency=low
 #
 #  * New upstream release
 #+ Fix Win key as third level chooser (closes: #531771)
 #
 limit source xkeyboard-config
Limiting to bugs with field 'source' containing at least one of 
'xkeyboard-config'
Limit currently set to 'source':'xkeyboard-config'

 tags 531771 + pending
Bug #531771 [xkb-data] xkb-data: level 3 switch not working anymore
Bug #532717 [xkb-data] gtk+2.0: AltGr stop fully to function since reecent 
update
Bug #534945 [xkb-data] xserver-xorg-input-kbd: XkbOptions have no effect in 
some applications
Added tag(s) pending.
Added tag(s) pending.
Added tag(s) pending.
 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
Archive: 
http://lists.debian.org/handler.s.c.12679700896234.transcr...@bugs.debian.org



Bug#462127: marked as done (xserver-xorg: X freezes after some time with mieqEnequeue: out-of-order valuatorevent; dropping)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 07 Mar 2010 14:44:10 +0100
with message-id 4b93adaa.9060...@ens-lyon.org
and subject line Re: Bug#462127: xserver-xorg: X freezes after some time with 
mieqEnequeue: out-of-order valuatorevent; dropping
has caused the Debian Bug report #462127,
regarding xserver-xorg: X freezes after some time with mieqEnequeue: 
out-of-order valuatorevent; dropping
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.)


-- 
462127: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462127
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg
Version: 1:7.3+10
Severity: important


Regularly, X freezes without reason. The Xorg log contains lots of

tossed event which came in late
mieqEnequeue: out-of-order valuator event; dropping.

If it was in save energy mode, the computer won't wake up if it was up,
there appear artifacts, the mouse pointer still moves but does not
click. Ctrl-Alt-FX don't work. I did not find a special way to trigger
it, it may happen after only minutes of using or after hours.

It seems similar to bug 452167, but I have a NVidia Gforce FX 5200 card
(with nv driver) and am using openbox (contrary to the reporter of the
former bug).

-- 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-07-07 13:33 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1673916 2008-01-18 22:59 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5200] 
(rev a1)

/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 2152 2007-11-20 08:19 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/100dpi
FontPath/usr/share/fonts/X11/75dpi
# path to defoma fonts
#FontPath   /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Loadbitmap
Loadddc
Loadextmod
Loadfreetype
EndSection

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

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

Section Screen
Identifier  Siemens
Device  NVidia
Monitor Fujitsu
DefaultDepth24
SubSection Display
Depth   24
Modes   1440x900 1280x768 1024x768 #800x600 
640x480
EndSubSection
EndSection

Section Monitor
Identifier  Fujitsu
Option  DPMS
HorizSync   55-72
VertRefresh 60-75
ModeLine 1440x900  136.49  1440 1536 1688 1936  900 901 904 940  
-HSync +Vsync
EndSection

Section Device
Identifier  NVidia
Driver  nv
BusID   PCI:1:0:0
EndSection

Section ServerLayout
Identifier  Default Layout
Screen  Siemens
InputDevice Generic Keyboard
InputDevice Configured Mouse
EndSection

Section DRI
Mode0666
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root 

Bug#413009: marked as done (xorg-server: [ia64] PCI domain mismatch - DRI unusable)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 07 Mar 2010 14:32:23 +0100
with message-id 4b93aae7.2030...@ens-lyon.org
and subject line Re: Bug#413009: xorg-server: [ia64] PCI domain mismatch - DRI  
unusable
has caused the Debian Bug report #413009,
regarding xorg-server: [ia64] PCI domain mismatch - DRI unusable
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.)


-- 
413009: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=413009
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xorg-server
Version: 2:1.1.1-19
Severity: normal
Tags: patch

Hi,

ISTR this bug was filed already but since I can't find it anymore in the
BTS, yet the bug is still there, I'm sending this bugreport.

The attached hack comes from this bugreport:
https://bugs.freedesktop.org/show_bug.cgi?id=7770
which explains at length what's going on.

Basically, there's a PCI domain mismatch between X server and the
kernel, leaving clients unable to use direct rendering, which this
one-liner fixes.

This bug has been there for quite a long time (at least since the 1.0.X
releases) and is a real PITA. And yes, I'm using a desktop ia64 system
:)

HTH

T-Bone

Other relevant data:
vare...@nekkid:~$ glxinfo
name of display: :0.0
libGL error: open DRM failed (Operation not permitted)
libGL error: reverting to (slow) indirect rendering
display: :0  screen: 0
direct rendering: No

vare...@nekkid:~$ ls -l /dev/dri/card0
crw-rw-rw- 1 root root 226, 0 2007-03-01 18:44 /dev/dri/card0

in /var/log/Xorg.0.log:
[...]
(II) Initializing built-in extension XEVIE
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: Searching for BusID pci:0001:00:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: drmOpenMinor returns 11
drmOpenByBusid: drmGetBusid reports pci::00:00.0
drmOpenDevice: node name is /dev/dri/card1
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card2
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card3
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card4
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card5
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card6
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card7
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card8
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card9
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card10
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card11
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card12
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card13
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: 

Bug#462127: xserver-xorg: X freezes after some time with mieqEnequeue: out-of-order valuatorevent; dropping

2010-03-07 Thread Emmanuel Hainry
 
 Do you still have this problem?
 

No: the machine is now dead.

Emmanuel



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307133158.ga6...@weetamoe.loria.fr



libdrm: Changes to 'debian-unstable'

2010-03-07 Thread Julien Cristau
 debian/changelog |6 ++
 debian/libdrm-intel1.install |2 +-
 debian/libdrm2.install   |2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

New commits:
commit fe55151b813ad6ced60ea2fa543ca9cf4f4fe575
Author: Julien Cristau jcris...@debian.org
Date:   Sun Mar 7 15:32:24 2010 +0100

Include full SONAME in libdrm*.install to prevent accidental breakage.

diff --git a/debian/changelog b/debian/changelog
index 2b058ff..6f8766d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdrm (2.4.18-3) UNRELEASED; urgency=low
+
+  * Include full SONAME in libdrm*.install to prevent accidental breakage.
+
+ -- Julien Cristau jcris...@debian.org  Sun, 07 Mar 2010 15:31:51 +0100
+
 libdrm (2.4.18-2) unstable; urgency=low
 
   * Fix FTBFS on non-Linux architectures (Closes: #570851): Replace
diff --git a/debian/libdrm-intel1.install b/debian/libdrm-intel1.install
index 49a26fc..149ef10 100644
--- a/debian/libdrm-intel1.install
+++ b/debian/libdrm-intel1.install
@@ -1 +1 @@
-usr/lib/libdrm_intel.so.*
+usr/lib/libdrm_intel.so.1*
diff --git a/debian/libdrm2.install b/debian/libdrm2.install
index 9a2ba56..c2f2241 100644
--- a/debian/libdrm2.install
+++ b/debian/libdrm2.install
@@ -1 +1 @@
-usr/lib/libdrm.so.*
+usr/lib/libdrm.so.2*


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nohxe-0007sp...@alioth.debian.org



Bug#404367: xserver-xorg: keypresses are occasionally multiplied dozens, hundreds or thousands of times

2010-03-07 Thread Celejar
On Sun, 7 Mar 2010 11:12:37 +0100
Brice Goglin brice.gog...@ens-lyon.org wrote:

 On Sat, Dec 23, 2006 at 11:18:04PM -0500, celejar wrote:
  Package: xserver-xorg
  Version: 1:7.1.0-9
  Severity: important
  
  Every now and then, without any pattern or triggering event that I can 
  determine, CPU usage spikes to 100% and a keypress is multiplied dozens, 
  hundreds or even thousands of times. This happens across all different 
  contexts within X, such as typing text in an application or an xterm, using 
  an application's hotkeys, and even using the WM's (Xfce) control keys. I 
  have never seen the problem at the console (not even when X is running and 
  I shift back to the console with alt-ctrl-F1), and I have never seen it 
  under kernels in the 2.4.x series (currently kernel-image-2.4.27-2-386 
  2.4.27-11), only under 2.6.x series kernels.
 
 Input has changed a lot in X since this report 4 years ago,
 so there's no way to debug this nowadays.
 So I am just closing this obsolete report. Please open a
 new one if you still have some problems.

No problem; I haven't had the problem for quite a while.

Celejar
-- 
foffl.sourceforge.net - Feeds OFFLine, an offline RSS/Atom aggregator
mailmin.sourceforge.net - remote access via secure (OpenPGP) email
ssuds.sourceforge.net - A Simple Sudoku Solver and Generator




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307091728.4610ed95.cele...@gmail.com



Bug#528684: (no subject)

2010-03-07 Thread Michel Dänzer
On Sun, 2010-03-07 at 13:46 +0100, Alexey Feldgendler wrote: 
 On Sun, 07 Mar 2010 10:14:17 +0100, Brice Goglin  
 brice.gog...@ens-lyon.org wrote:
 
  You probably should enable KMS in your kernel.
 
 Tried this now by passing radeon.modeset=1 to the kernel. This resulted in  
 the following failure in the X.org log:
 
 (EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version  
 mismatch.
 [dri] This chipset requires a kernel module version of 1.17.0,
 [dri] but the kernel reports a version of 2.0.0.[dri] If using legacy  
 modesetting, upgrade your kernel.
 [dri] If using kernel modesetting, make sure your module is
 [dri] loaded prior to starting X, and that this driver was built
 [dri] with support for KMS.
 [dri] Disabling DRI.

Looks like the driver wasn't built with KMS support. Maybe the build
dependencies are too lax.


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1267973424.8327.3085.ca...@thor.local



Bug#572896: RM: xserver-xorg-video-intel [hurd-i386] -- ROM; uninstallable obsolete version

2010-03-07 Thread Julien Cristau
Package: ftp.debian.org
Severity: normal

hurd-i386 keeps an obsolete version of xserver-xorg-video-intel in
unstable, please kill it.

Thanks,
Julien


signature.asc
Description: Digital signature


Bug#528684: (no subject)

2010-03-07 Thread Alexey Feldgendler
On Sun, 07 Mar 2010 15:50:24 +0100, Michel Dänzer daen...@debian.org  
wrote:



Looks like the driver wasn't built with KMS support. Maybe the build
dependencies are too lax.


Any hint as to what I should rebuild and with what settings?


--
Alexey Feldgendler ale...@feldgendler.ru
[ICQ: 115226275] http://feldgendler.livejournal.com



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/op.u87c1xa31h6...@sandwich.feldgendler.ru



Bug#528684: (no subject)

2010-03-07 Thread Brice Goglin
Michel Dänzer wrote:
 On Sun, 2010-03-07 at 13:46 +0100, Alexey Feldgendler wrote: 
   
 On Sun, 07 Mar 2010 10:14:17 +0100, Brice Goglin  
 brice.gog...@ens-lyon.org wrote:

 
 You probably should enable KMS in your kernel.
   
 Tried this now by passing radeon.modeset=1 to the kernel. This resulted in  
 the following failure in the X.org log:

 (EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version  
 mismatch.
 [dri] This chipset requires a kernel module version of 1.17.0,
 [dri] but the kernel reports a version of 2.0.0.[dri] If using legacy  
 modesetting, upgrade your kernel.
 [dri] If using kernel modesetting, make sure your module is
 [dri] loaded prior to starting X, and that this driver was built
 [dri] with support for KMS.
 [dri] Disabling DRI.
 

 Looks like the driver wasn't built with KMS support. Maybe the build
 dependencies are too lax.
   

He's using i386, that's what I uploaded. I see Kernel modesetting: 
yes at the end of my build log, and I get KMS on my r300 machines.
Strange...

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93c29c.4090...@ens-lyon.org



Bug#572775: xserver-xorg-video-radeon: xeyes causes X server to crash

2010-03-07 Thread Michel Dänzer
On Sat, 2010-03-06 at 13:40 +, Matthew Woodcraft wrote: 
 Package: xserver-xorg-video-radeon
 Version: 1:6.12.4-2
 Severity: normal
 
 If I run xeyes, the server reproducibly crashes with signal 11.
 
 xorg.log shows the following traceback:
 Backtrace:
 0: /usr/bin/X (xorg_backtrace+0x3b) [0x80e696b]
 1: /usr/bin/X (0x8048000+0x60b75) [0x80a8b75]
 2: (vdso) (__kernel_rt_sigreturn+0x0) [0xf77a1410]
 3: /usr/lib/xorg/modules/drivers/radeon_drv.so (0xf72b7000+0x6c0d2) 
 [0xf73230d2]
 4: /usr/lib/xorg/modules/libexa.so (0xf70e1000+0xc62c) [0xf70ed62c]
 5: /usr/lib/xorg/modules/libexa.so (0xf70e1000+0xd530) [0xf70ee530]
 6: /usr/bin/X (0x8048000+0xd44ab) [0x811c4ab]
 7: /usr/bin/X (CompositePicture+0x298) [0x810f7b8]
 8: /usr/lib/xorg/modules/libexa.so (0xf70e1000+0xc2d4) [0xf70ed2d4]
 9: /usr/bin/X (CompositeTrapezoids+0x9e) [0x810f48e]
 10: /usr/bin/X (0x8048000+0xd0a63) [0x8118a63]
 11: /usr/bin/X (0x8048000+0xca553) [0x8112553]
 12: /usr/bin/X (0x8048000+0x2b017) [0x8073017]
 13: /usr/bin/X (0x8048000+0x1e95a) [0x806695a]
 14: /lib/i686/cmov/libc.so.6 (__libc_start_main+0xe5) [0xf74adb55]
 15: /usr/bin/X (0x8048000+0x1e541) [0x8066541]
 Segmentation fault at address (nil)
 
 Fatal server error:
 Caught signal 11 (Segmentation fault). Server aborting

Does this still happen with a newer xserver-xorg-video-radeon, e.g.
1:6.12.5-1 from sid? If so, please try to get a backtrace with gdb,
preferably with xserver-xorg-core-dbg and xserver-xorg-video-radeon-dbg
installed.


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1267975090.8327.3143.ca...@thor.local



Bug#528684: (no subject)

2010-03-07 Thread Michel Dänzer
On Sun, 2010-03-07 at 16:13 +0100, Brice Goglin wrote: 
 Michel Dänzer wrote:
  On Sun, 2010-03-07 at 13:46 +0100, Alexey Feldgendler wrote: 

  On Sun, 07 Mar 2010 10:14:17 +0100, Brice Goglin  
  brice.gog...@ens-lyon.org wrote:
 
  
  You probably should enable KMS in your kernel.

  Tried this now by passing radeon.modeset=1 to the kernel. This resulted in 
   
  the following failure in the X.org log:
 
  (EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version  
  mismatch.
  [dri] This chipset requires a kernel module version of 1.17.0,
  [dri] but the kernel reports a version of 2.0.0.[dri] If using legacy  
  modesetting, upgrade your kernel.
  [dri] If using kernel modesetting, make sure your module is
  [dri] loaded prior to starting X, and that this driver was built
  [dri] with support for KMS.
  [dri] Disabling DRI.
  
 
  Looks like the driver wasn't built with KMS support. Maybe the build
  dependencies are too lax.

 
 He's using i386, that's what I uploaded. I see Kernel modesetting: 
 yes at the end of my build log, and I get KMS on my r300 machines.
 Strange...

Hmm, the line

(II) [KMS] drm report modesetting isn't supported.

in the X log file indicates that drmCheckModesettingSupported() fails,
i.e. can't find some files in /sys . Alexey, what does

find /sys/bus/pci/devices/*/ -name \*controlD\*

say for you? Note that the asterisk and slash at the end of the second
term are critical, otherwise there will be no results.


-- 
Earthling Michel Dänzer   |http://www.vmware.com
Libre software enthusiast |  Debian, X and DRI developer



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1267976033.8327.3193.ca...@thor.local



Bug#528684: (no subject)

2010-03-07 Thread Alexey Feldgendler
On Sun, 07 Mar 2010 16:13:32 +0100, Brice Goglin  
brice.gog...@ens-lyon.org wrote:



Looks like the driver wasn't built with KMS support. Maybe the build
dependencies are too lax.



He's using i386, that's what I uploaded. I see Kernel modesetting:
yes at the end of my build log, and I get KMS on my r300 machines.
Strange...


I could try to build it myself to help investigate the issue. What package  
are we talking about building? Should I get the sources right from the  
version control?


FWIW, it's an R700 (Mobility Radeon HD 4500 Series) built into an Acer  
Aspire 5536G laptop.



--
Alexey Feldgendler ale...@feldgendler.ru
[ICQ: 115226275] http://feldgendler.livejournal.com



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/op.u87efhc01h6...@sandwich.feldgendler.ru



Bug#546586: xorg: X server lockup in int10 when booting a secondary card

2010-03-07 Thread Mader, Alexander
Cyril Brulebois schrieb:
 Julien Cristau jcris...@debian.org (14/09/2009):
 This will hopefully be fixed using kernel 2.6.32 and xorg-server
 1.7.
 any news about that?
Hello Cyril,

right after reading your email yesterday evening I upgraded all the
packages on hold:

[HALTEN, ABHÄNGIGKEITEN] gnome-settings-daemon
[HALTEN, ABHÄNGIGKEITEN] libgl1-mesa-dri
[HALTEN, ABHÄNGIGKEITEN] libgl1-mesa-glx
[HALTEN, ABHÄNGIGKEITEN] libgnome-window-settings1
[HALTEN, ABHÄNGIGKEITEN] x11-apps
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-core
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-video-fbdev
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-video-mach64
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-video-nv
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-video-r128
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-video-radeon
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-video-radeonhd
[HALTEN, ABHÄNGIGKEITEN] xserver-xorg-video-vesa

[HALTEN] capplets-data
[HALTEN] gnome-control-center
[HALTEN] gnome-screensaver
[HALTEN] gnome-session
[HALTEN] libgdl-1-common
[HALTEN] nautilus
[HALTEN] nautilus-data
[HALTEN] x11-common
[HALTEN] xorg
[HALTEN] xserver-xephyr
[HALTEN] xserver-xorg-input-evdev
[HALTEN] xserver-xorg-input-kbd
[HALTEN] xserver-xorg-input-mouse
[HALTEN] xserver-xorg-video-ati
[HALTEN] xserver-xorg-video-dummy

just to learn that I have to reconfigure my whole system at best :-(

Right now I am happy to have one screen up and running w/o peculiar
effects. I will post further progress or hitback reports. If there is
anybody out there having a fully functioning multiseat setup with debian
testing any help is really very much apreciated!!! I will try to answer
any well meant questions ;-)

So I cannot say anything to the second seat and its server behaviour
yet, unfortunately.

Best regards and thanks for asking,
-- 
Alexander Mader



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93c425.8000...@gmx.net



Bug#466039: xserver-xorg-core: DPMS wakes up on spontaneous 1 pixel mouse moves

2010-03-07 Thread Tim Connors
On Sat, 6 Mar 2010, Brice Goglin wrote:

 On Sat, Feb 16, 2008 at 04:58:23PM +1100, Tim Connors wrote:
  Alas, when I have an external USB mouse plugged in, it only ever goes
  blank.  If I xset force dpms off, then it will turn the backlights off
  on the internal monitor, and an external LCD, but then come back on at
  a random time later, from seconds to 10 minutes later.  The display
  remains blank though, but with the backlights turned on.
 
  Eventually, I tracked this down to random 1 or 2 pixel spontaneous
  moves of the mouse

 Still having the problem today?

Yes.  On an
01:00.0 VGA compatible controller: nVidia Corporation G84 [GeForce 8600M GT] 
(rev a1)
running unstable (which can't currently run X at all due to a segfault in
nvidia_glx.so, but this was the case the last time it ran)
and

00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (rev 0c)
00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller (rev 0c)

running xserver-xorg 1:7.4+4 and xserver-xorg-video-intel 2:2.9.1-1 (not
brave enough to upgrade it, given how my last upgrade went with the nvidia
machine)

And every other machine I have access to these days regardless of
distribution.  I suspect all optical mice suffer from 1 pixel jitters, and
being a hardware problem, it has to be worked around in software.

-- 
TimC
Er, RFC 882 put the dot in .com.-- unknown



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/alpine.deb.2.00.1003080300130.32...@dirac.rather.puzzling.org



Bug#528684: (no subject)

2010-03-07 Thread Brice Goglin
Alexey Feldgendler wrote:
 On Sun, 07 Mar 2010 16:33:53 +0100, Michel Dänzer daen...@debian.org
 wrote:


 Hmm, the line

 (II) [KMS] drm report modesetting isn't supported.

 in the X log file indicates that drmCheckModesettingSupported() fails,
 i.e. can't find some files in /sys . Alexey, what does

 find /sys/bus/pci/devices/*/ -name \*controlD\*

 say for you? Note that the asterisk and slash at the end of the second
 term are critical, otherwise there will be no results.

 You guessed right! It wasn't finding anything until I loaded the
 radeon module manually, after which it found

 /sys/bus/pci/devices/:00:02.0/:02:00.0/drm/controlD64
 /sys/bus/pci/devices/:02:00.0/drm/controlD64

 ...and KMS in general started working. With KMS enabled, I've got
 DRI2, and the original issue of this bug disappeared.

 I've added radeon to /etc/modules for now, but I guess I should file a
 bug for udev, what do you think?

No need, it should be fixed in the next kernel upload.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93d4bf.3020...@ens-lyon.org



Bug#528684: (no subject)

2010-03-07 Thread Alexey Feldgendler
On Sun, 07 Mar 2010 16:33:53 +0100, Michel Dänzer daen...@debian.org  
wrote:




Hmm, the line

(II) [KMS] drm report modesetting isn't supported.

in the X log file indicates that drmCheckModesettingSupported() fails,
i.e. can't find some files in /sys . Alexey, what does

find /sys/bus/pci/devices/*/ -name \*controlD\*

say for you? Note that the asterisk and slash at the end of the second
term are critical, otherwise there will be no results.


You guessed right! It wasn't finding anything until I loaded the radeon  
module manually, after which it found


/sys/bus/pci/devices/:00:02.0/:02:00.0/drm/controlD64
/sys/bus/pci/devices/:02:00.0/drm/controlD64

...and KMS in general started working. With KMS enabled, I've got DRI2,  
and the original issue of this bug disappeared.


I've added radeon to /etc/modules for now, but I guess I should file a bug  
for udev, what do you think?


Now, when I enabled KMS, I got a significant performance degradation  
compared to no KMS and no DRI2, but that's a different issue, I'm filing a  
new bug about it. Thanks for your help on this one!



--
Alexey Feldgendler ale...@feldgendler.ru
[ICQ: 115226275] http://feldgendler.livejournal.com



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/op.u87g5gsy1h6...@sandwich.feldgendler.ru



Bug#528684: (no subject)

2010-03-07 Thread Alexey Feldgendler
On Sun, 07 Mar 2010 17:30:55 +0100, Brice Goglin  
brice.gog...@ens-lyon.org wrote:



No need, it should be fixed in the next kernel upload.


Are you sure? I'm using the newest linux-image from experimental  
(2.6.33-1~experimental.2), do you mean the next upload to experimental?



--
Alexey Feldgendler ale...@feldgendler.ru
[ICQ: 115226275] http://feldgendler.livejournal.com



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/op.u87hluw71h6...@sandwich.feldgendler.ru



compiz-fusion-plugins-main 0.8.4-1 MIGRATED to testing

2010-03-07 Thread Debian testing watch
FYI: The status of the compiz-fusion-plugins-main source package
in Debian's testing distribution has changed.

  Previous version: 0.8.2-3
  Current version:  0.8.4-1

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nojve-j6...@ries.debian.org



mesa 7.7-4 MIGRATED to testing

2010-03-07 Thread Debian testing watch
FYI: The status of the mesa source package
in Debian's testing distribution has changed.

  Previous version: 7.6.1-1
  Current version:  7.7-4

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nojvg-lj...@ries.debian.org



Bug#572911: xserver-xorg-video-radeon: Slow glxgears with KMS/DRI2

2010-03-07 Thread Alexey Feldgendler

Package: xserver-xorg-video-radeon
Version: 1:6.12.191-1
Severity: normal

With KMS and DRI2, glxgears is dramatically slower (about 140 fps)
than without KMS and DRI2 and with only DRI (about 300 fps). Also, the
motion is not uniformly smooth and seems to depend a lot on the
background system activity. I have a shell script that updates the
clock in my dzen2 status bar once per second, and the gears seem to
stumble for a split second once per second as it happens. I tried
stopping that script, and have confirmed that it indeed is causing the
jitter, even though the load it puts on the system is tiny. This
didn't happen without KMS and DRI2; not only did the animation run
faster, but it was also smooth (without noticeable jitter).

The kernel is linux-image-2.6.33-2-686 from experimental, and
libgl1-mesa-dri is 7.7-4 from unstable.


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

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

X server symlink status:
lrwxrwxrwx 1 root root 13 Sep 15 02:27 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1712808 Feb 16 09:39 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
02:00.0 VGA compatible controller: ATI Technologies Inc M92 [Mobility
Radeon HD 4500 Series]

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

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1738 Mar  7 04:05 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool,
using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades
*only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically
updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section ServerFlags
Option  DRI2 on
Option  BlankTime 0
Option  StandbyTime 0
Option  SuspendTime 0
Option  OffTime 0
EndSection

Section ServerLayout
 Identifier Default Layout
 Screen Virtual Screen
EndSection

Section Monitor
 Identifier  LVDS monitor
 Option  PreferredMode 1366x768
EndSection

Section Monitor
 Identifier  VGA-0 monitor
 Option  PreferredMode 1024x768
EndSection

Section Monitor
Identifier  HDMI-0 monitor
Option  PreferredMode 1024x768
EndSection

Section Device
Identifier  Graphics Device
Driver  radeon
 Option  EnablePageFlip true
 Option  DynamicPM true
Option  DynamicClocks true
 Option  Monitor-LVDS LVDS monitor
 Option  Monitor-VGA-0 VGA-0 monitor
Option  Monitor-HDMI-0 HDMI-0 monitor
BusID   PCI:2:0:0
EndSection

Section Screen
Identifier Virtual Screen
Device Graphics Device
DefaultDepth 24
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 31893 Mar  7 16:52 /var/log/Xorg.0.log

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

X.Org X Server 1.7.5
Release Date: 2010-02-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-trunk-686 i686 Debian
Current Operating System: Linux sandwich 2.6.33-2-686 #1 SMP Mon Mar 1
03:56:47 UTC 2010 i686
Kernel command line: BOOT_IMAGE=//vmlinuz-2.6.33-2-686
root=UUID=1c1ecd24-ae38-4fb3-9020-78b2405e559e ro single i8042.noloop=1
radeon.modeset=1
Build Date: 16 February 2010  08:37:23AM
xorg-server 2:1.7.5-1 (bgog...@debian.org)
Current version of pixman: 0.16.4
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: Sun Mar  7 16:40:56 2010
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Virtual Screen (0)
(**) |   |--Monitor default monitor
(**) |   |--Device Graphics Device
(==) No monitor specified for screen Virtual Screen.
Using a default monitor configuration.
(**) Option BlankTime 0
(**) Option StandbyTime 0
(**) Option SuspendTime 0
(**) Option OffTime 0
(**) Option DRI2 on
(==) 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,
  

Bug#528684: (no subject)

2010-03-07 Thread Alexey Feldgendler


Anyway, this bug should probably be closed. I've added a found-in-version  
to this bug and now I'm not sure how to take it back.


See bug #572911 for the performance issue I'm experiencing.


--
Alexey Feldgendler ale...@feldgendler.ru
[ICQ: 115226275] http://feldgendler.livejournal.com



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/op.u87h31kt1h6...@sandwich.feldgendler.ru



Processed: notfound 528684 in xserver-xorg-video-ati/1:6.12.191-1, notfound 528684 in 6.12.191-1

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notfound 528684 xserver-xorg-video-ati/1:6.12.191-1
Bug #528684 {Done: Brice Goglin brice.gog...@ens-lyon.org} 
[xserver-xorg-video-radeon] xserver-xorg-video-radeon: glxgears window writes 
through another window placed in front of it
Bug No longer marked as found in versions xserver-xorg-video-ati/1:6.12.191-1.
 notfound 528684 6.12.191-1
Bug #528684 {Done: Brice Goglin brice.gog...@ens-lyon.org} 
[xserver-xorg-video-radeon] xserver-xorg-video-radeon: glxgears window writes 
through another window placed in front of it
There is no source info for the package 'xserver-xorg-video-radeon' at version 
'6.12.191-1' with architecture ''
Unable to make a source version for version '6.12.191-1'
Bug No longer marked as found in versions 6.12.191-1.
 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
Archive: 
http://lists.debian.org/handler.s.c.126798141912332.transcr...@bugs.debian.org



Bug#572911: xserver-xorg-video-radeon: Slow glxgears with KMS/DRI2

2010-03-07 Thread Brice Goglin
Alexey Feldgendler wrote:
 Package: xserver-xorg-video-radeon
 Version: 1:6.12.191-1
 Severity: normal

 With KMS and DRI2, glxgears is dramatically slower (about 140 fps)
 than without KMS and DRI2 and with only DRI (about 300 fps).

glxgears is dramatically not a benchmark. Its fps output measures
nothing interesting in the real life. You should use a real 3D game or
whatever, but not glxgears.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93dd69.8000...@ens-lyon.org



Bug#572067: Processed: reassign 572592 to linux-libc-dev, forcibly merging 572067 572592

2010-03-07 Thread Ben Hutchings
On Fri, 2010-03-05 at 19:37 +0100, Bastian Blank wrote:
 reassign 572067 libdrm-dev
 thanks
 
 The linux kernel is source of the drm headers in the meantime.

It *is*, but it shouldn't be.  Let's fix this now.

Ben.

-- 
Ben Hutchings
The most exhausting thing in life is being insincere. - Anne Morrow Lindberg


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


Processed: reassign 572922 to xserver-xorg-core, forcibly merging 554450 572922

2010-03-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 572922 xserver-xorg-core
Bug #572922 [xserver-xorg-video-intel] xserver-xorg-video-intel: X server 
crashes on blank when only using a secondary display
Bug reassigned from package 'xserver-xorg-video-intel' to 'xserver-xorg-core'.
Bug No longer marked as found in versions xserver-xorg-video-intel/2:2.9.1-2.
 forcemerge 554450 572922
Bug#554450: xserver-xorg-video-intel: server crash on external monitor when 
using gnome-screensaver
Bug#572922: xserver-xorg-video-intel: X server crashes on blank when only using 
a secondary display
Bug#565773: [xserver-xorg-video-intel] Segfaults when trying to lock screen
Bug#567318: gnome-screensaver causes X session crash
Forcibly Merged 554450 565773 567318 572922.

 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
Archive: 
http://lists.debian.org/handler.s.c.12679861472475.transcr...@bugs.debian.org



Bug#572926: xserver-xorg-video-radeon: (EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version mismatch

2010-03-07 Thread Andres Cimmarusti
Package: xserver-xorg-video-radeon
Version: 1:6.12.5-1
Severity: normal

I waited till today to upgrade my xserver-xorg-video-radeon package to the 
version in unstable (6.12.5), mainly because I was waiting for mesa (7.7) to 
migrate to testing. 

Unfortunately I have to report it does not correct my problems. I have KMS in 
this laptop which works well, but DRI is disabled due to some kind of conflict 
with the kernel version which really makes no sense! look for yourself:

(EE) RADEON(0): [dri] RADEONDRIGetVersion failed because of a version mismatch.
[dri] radeon kernel module version is 2.0.0 but version 1.8.0 or newer is 
needed.
[dri] Disabling DRI.
..
(WW) RADEON(0): Direct rendering disabled

version 1.8.0 OR NEWER is needed... and 2.0.0 is present!??
I guess I'll try the 2.6.33 kernel in experimental and I might try radeon 
from experimental. I'll post my results.

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

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

X server symlink status:
lrwxrwxrwx 1 root root 13 Jan  5  1980 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1712808 Feb 16 03:39 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M7 LW 
[Radeon Mobility 7500]

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

Xorg X server configuration file status:
-rw-r--r-- 1 matt matt 433 Mar  6 20:12 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section ServerLayout
Identifier  Default Layout
Screen  Screen 0
EndSection

Section Device
Identifier  Radeon Mobility 7500
Driver  radeon
BusID   PCI:1:0:0
Option  AccelMethod   EXA
Option  AccelDFS  1
Option  EnablePageFlip1
EndSection

Section Monitor
Identifier  LVDS
EndSection

Section Screen
Identifier  Screen 0
Device  Radeon Mobility 7500
Monitor LVDS
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 43834 Mar  7 12:59 /var/log/Xorg.0.log

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

X.Org X Server 1.7.5
Release Date: 2010-02-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-trunk-686 i686 Debian
Current Operating System: Linux dirty 2.6.32-trunk-686 #1 SMP Sun Jan 10 
06:32:16 UTC 2010 i686
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-trunk-686 
root=UUID=a5779667-ac81-4bf8-ba7d-2129374a488a ro quiet
Build Date: 16 February 2010  08:37:23AM
xorg-server 2:1.7.5-1 (bgog...@debian.org) 
Current version of pixman: 0.16.4
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: Sun Mar  7 12:58:33 2010
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Screen 0 (0)
(**) |   |--Monitor LVDS
(**) |   |--Device Radeon Mobility 7500
(==) 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 udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x81e7020
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:1:0:0) 1002:4c57:0e11:00b7 ATI Technologies Inc Radeon Mobility M7 
LW [Radeon Mobility 7500] rev 0, Mem @ 0x4800/134217728, 0x4040/65536, 
I/O @ 0x3000/256, BIOS @ 0x/131072
(II) Open ACPI successful (/var/run/acpid.socket)
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.7.5, 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) 

Bug#572928: xterm ignores cursorColor resource when allowSendEvents is on

2010-03-07 Thread Jay Berkenbilt
Package: xterm
Version: 255-1
Severity: normal

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

Starting with xterm 255-1, I noticed that I am no longer getting my
nice blue cursor.  Narrowing things down, it seems as though xterm
ignores the cursorColor resource if allowSendEvents is on.  Run the
following with 255-1:

xrdb -load /dev/null
xterm -xrm '*cursorColor: green'

See a green cursor.

xterm -xrm '*cursorColor: green' -xrm '*allowSendEvents: on'

See a black cursor.

Previous versions, including 253-1, did not have this problem.

Please let me know if any additional information is required or if I
should dig into the code to try to track it down.

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

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

Versions of packages xterm depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libfontconfig12.8.0-2generic font configuration library
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20090803-2 shared libraries for terminal hand
ii  libutempter0  1.1.5-2A privileged helper for utmp/wtmp 
ii  libx11-6  2:1.3.3-1  X11 client-side library
ii  libxaw7   2:1.0.7-1  X11 Athena Widget library
ii  libxft2   2.1.14-1   FreeType-based font drawing librar
ii  libxmu6   2:1.0.5-1  X11 miscellaneous utility library
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library
ii  xbitmaps  1.1.0-1Base X bitmaps

Versions of packages xterm recommends:
ii  x11-utils 7.5+2  X11 utilities

Versions of packages xterm suggests:
pn  xfonts-cyrillic   none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307132318.0275372347.qww314...@soup



Bug#564543: Seems to be fixed

2010-03-07 Thread Roland Gruber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

this seems to be fixed with the latest packages in testing. I had no
crashes since about a week.


- --

Best regards

Roland
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkuT78oACgkQq/ywNCsrGZ7fzwCfSrwrb7xXZaJsfw5AhP/DCtjE
dEMAnRU9sSpk6SPZgCYv6XlEivLaHQJq
=ljD2
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93efca.8060...@rolandgruber.de



Bug#572926: Results kernel 2.6.33 and radeon 6.12.191

2010-03-07 Thread Andres Cimmarusti
Package: xserver-xorg-video-radeon
Severity: normal

Well, the error message is gone. In fact I guess the bug is in the kernel 
rather than radeon. DRI and DRI2 are enabled, but I have to say I expected a 
better framerate. glxgears gave me about 100 FPS before and now it's at 300 FPS 
I tested it with Scorched3d and it was very very slow (avg 5 fps).

I'm going to try to downgrade from 6.12.191 to 6.12.5 from unstable to see if 
it works. I guess the bugreport should be considered closed.

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

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

X server symlink status:
lrwxrwxrwx 1 root root 13 Jan  5  1980 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1712808 Feb 16 03:39 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M7 LW 
[Radeon Mobility 7500]

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

Xorg X server configuration file status:
-rw-r--r-- 1 matt matt 433 Mar  6 20:12 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section ServerLayout
Identifier  Default Layout
Screen  Screen 0
EndSection

Section Device
Identifier  Radeon Mobility 7500
Driver  radeon
BusID   PCI:1:0:0
Option  AccelMethod   EXA
Option  AccelDFS  1
Option  EnablePageFlip1
EndSection

Section Monitor
Identifier  LVDS
EndSection

Section Screen
Identifier  Screen 0
Device  Radeon Mobility 7500
Monitor LVDS
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 29850 Mar  7 13:36 /var/log/Xorg.0.log

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

X.Org X Server 1.7.5
Release Date: 2010-02-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-trunk-686 i686 Debian
Current Operating System: Linux dirty 2.6.33-2-686 #1 SMP Mon Mar 1 03:56:47 
UTC 2010 i686
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.33-2-686 
root=UUID=a5779667-ac81-4bf8-ba7d-2129374a488a ro quiet
Build Date: 16 February 2010  08:37:23AM
xorg-server 2:1.7.5-1 (bgog...@debian.org) 
Current version of pixman: 0.16.4
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: Sun Mar  7 13:27:20 2010
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Screen 0 (0)
(**) |   |--Monitor LVDS
(**) |   |--Device Radeon Mobility 7500
(==) 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 udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x81e7020
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:1:0:0) 1002:4c57:0e11:00b7 ATI Technologies Inc Radeon Mobility M7 
LW [Radeon Mobility 7500] rev 0, Mem @ 0x4800/134217728, 0x4040/65536, 
I/O @ 0x3000/256, BIOS @ 0x/131072
(II) Open ACPI successful (/var/run/acpid.socket)
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.7.5, 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.7.5, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) 

Bug#572926: Results kernel 2.6.33 and radeon 6.12.191

2010-03-07 Thread Brice Goglin
Andres Cimmarusti wrote:
 DRI and DRI2 are enabled, but I have to say I expected a 
 better framerate. glxgears gave me about 100 FPS before and now it's at 300 
 FPS 
   

glxgears is not a benchmarks. Its fps means *nothing*.

Brice




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b93fba1.6050...@ens-lyon.org



Bug#572405: crashes X when compiz is started

2010-03-07 Thread Andreas Bombe
On Wed, Mar 03, 2010 at 10:38:01PM -0500, Dave Witbrodt wrote:
 Compiz should work well on radeon.  My advice is for you to get a kernel
 with KMS support enabled, a new enough libdrm with support for radeon
 DRM enabled, and mesa and radeon built against that new-enough
 libdrm-dev package.  These are all available in Debian experimental and
 unstable thanks to recent efforts by the Debian X Strike Force,
 especially Brice Goglin.  You should be much happier with this
 combination of packages than you are right now!

Everything except for a kernel with KMS Radeon enabled is indeed
available, after compiling that feature into the kernel it indeed works
very fine.  The DRM1 version that gets used when KMS is not available
was pretty problematic on further tries, but with KMS and DRM2 it's
fast and so far stable.

Another vote against radeonhd then, I guess, at least for the HD4850 I
am using.

[Note: You should Cc: submitters when you reply to them, only
maintainers and bug subscribers get copies of mail sent to the bug
address.  I found your mail through looking at the bug in the BTS.]



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307185749.ga4...@amos.infernal



Bug#572067: Processed: reassign 572592 to linux-libc-dev, forcibly merging 572067 572592

2010-03-07 Thread Bastian Blank
On Sun, Mar 07, 2010 at 05:43:30PM +, Ben Hutchings wrote:
 On Fri, 2010-03-05 at 19:37 +0100, Bastian Blank wrote:
  The linux kernel is source of the drm headers in the meantime.
 It *is*, but it shouldn't be.  Let's fix this now.

Ah. So libdrm still works if we remove the drm drivers as this is no
kernel interface at all?

Either it is a kernel interface, then the kernel includes the
definitions for it and provides it to the other parts of the system. Or
it is not, but why are there drivers _providing_ this interfaces then?

Bastian

-- 
The more complex the mind, the greater the need for the simplicity of play.
-- Kirk, Shore Leave, stardate 3025.8



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307194251.ga31...@wavehammer.waldi.eu.org



Bug#529830: Fix confirmed

2010-03-07 Thread Chanoch (Ken) Bloom
I upgraded to version 1:6.12.5-1 on Wednesday, and have not had any
issues. Thus, I can confirm that this bug is fixed.

--Ken

-- 
Chanoch (Ken) Bloom. PhD candidate. Linguistic Cognition Laboratory.
Department of Computer Science. Illinois Institute of Technology.
http://www.iit.edu/~kbloom1/



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307193458.ga16...@smtp.gmail.com



Bug#515326: gdb trace

2010-03-07 Thread Xavier Bestel
Le samedi 06 mars 2010 à 12:12 +0100, Brice Goglin a écrit :
 On Thu, Mar 19, 2009 at 10:59:58AM +0100, Xavier Bestel wrote:
  Anything I could try ?
 
 Try a newer version, and maybe 6.12.191 with KMS ?

I don't have an r300 anymore.
On an r600, with 6.12.191 + KMS it's perfect.

Xav






--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1267992063.2759.49.ca...@bip



Bug#462582: xserver-xorg-video-ati: regression, size configuration incredibly broken, on bog-standard display size

2010-03-07 Thread Alex Deucher
On Sun, Mar 7, 2010 at 5:03 AM, Brice Goglin brice.gog...@ens-lyon.org wrote:
 On Fri, Jan 25, 2008 at 09:33:48PM +0100, Andreas Mohr wrote:
 Package: xserver-xorg-video-ati
 Version: 1:6.7.197-1
 Severity: important

 Hi,

 my 14(!) VGA-connected 1024x768 _desktop_ LCD was working just fine with my
 config file on 1:6.6.193, however both 1:6.7.197-1 and
 6.7.198~git20080117.6bd510a2 manage to mess up size detection in a
 spectacularly awful way, it seems (either with or without xorg.conf).

 - there are 12 references to 1024x768 resolution in the log (DDC detection
   etc.), however it chooses to pick 1280x800 which has never been announced
   _anywhere_!
 - the DPI calculations are not WAY off as in another Debian bug report,
   they're rather very extremely off (147, 145 instead of 89, 92 previously)

 The display size detection of 290x210mm seems _correct_ since it matches
 physical dimensions.

 Do you still have these problems with latest packages in unstable?


FWIW, the DPI calculation is all handled in the xserver.  All the
driver does is pass along the EDID if there is one.

Alex



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/a728f9f91003071155m3e3489a2t73faee82006cc...@mail.gmail.com



Bug#515326: marked as done (xorg-video-radeon: OpenGL freezes on radeon 9600 XT)

2010-03-07 Thread Debian Bug Tracking System
Your message dated Sun, 07 Mar 2010 21:25:10 +0100
with message-id 4b940ba6.4090...@ens-lyon.org
and subject line Re: Bug#515326: gdb trace
has caused the Debian Bug report #515326,
regarding xorg-video-radeon: OpenGL freezes on radeon 9600 XT
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.)


-- 
515326: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515326
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xserver-xorg-video-radeon
Version: 1:6.10.99.0-1
Severity: normal
File: xorg-video-radeon


Hi,

when the screensaver runs for a while, Xorg deadlocks.
Happens since latest experimental upgrade.

HTH,
Xav

-- 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 févr. 20  2006 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1690172 févr. 12 12:25 /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 RV350 AR [Radeon 9600]

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

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2908 nov. 13 13:53 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# 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 manual page.
# (Type man XF86Config at the shell prompt.)

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

Section ServerFlags
#Option Xinerama
Option  AllowDeactivateGrabs
#Option AllowEmptyInput   false
EndSection


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

Section InputDevice
Identifier  Generic Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  ZAxisMapping  4 5
Option  Emulate3Buttons   no 
EndSection

Section Device
Identifier  ATI Radeon 9600XT
Driver  radeon
VendorName  ATI
#   Option  AGPMode   4
#   Option  AGPFastWrite  true
Option  No2048Limit   true
Option  accel
Option  AccelMethod   exa
#   Option  AccelMethod   xaa
Option  RenderAccel   true
Option  EnablePageFlipfalse
Option  ColorTiling   true
Option  AccelDFS  true
#   Option  XAANoOffscreenPixmaps true
Option  GARTSize  128
#   Option  FBTexPercent  0
#Option MergedFB  true
Option  DDCMode   true
#   Option  Monitor-DELL 2405FPW  Grand
#   Option  Monitor-DELL 2001FP   Petit
#   Option  RROutputOrder DELL 2405FPW
EndSection

Section Monitor
Identifier  DELL 2405FPW
EndSection

Section Monitor
Identifier  DELL 2001FP
Option  Above DELL 2405FPW
EndSection

Section Screen
Identifier  Default Screen
Device  ATI Radeon 9600XT
DefaultDepth24
#   Option  AddARGBGLXVisuals True
#   Option  DisableGLXRootClipping 

Bug#462582: xserver-xorg-video-ati: regression, size configuration incredibly broken, on bog-standard display size

2010-03-07 Thread Andreas Mohr
Hi,

On Sun, Mar 07, 2010 at 11:03:49AM +0100, Brice Goglin wrote:
 On Fri, Jan 25, 2008 at 09:33:48PM +0100, Andreas Mohr wrote:
  Package: xserver-xorg-video-ati
  Version: 1:6.7.197-1
  Severity: important
  
  Hi,
  
  my 14(!) VGA-connected 1024x768 _desktop_ LCD was working just fine with my
  config file on 1:6.6.193, however both 1:6.7.197-1 and
  6.7.198~git20080117.6bd510a2 manage to mess up size detection in a
  spectacularly awful way, it seems (either with or without xorg.conf).
  
  - there are 12 references to 1024x768 resolution in the log (DDC detection
etc.), however it chooses to pick 1280x800 which has never been announced
_anywhere_!
  - the DPI calculations are not WAY off as in another Debian bug report,
they're rather very extremely off (147, 145 instead of 89, 92 
  previously)
  
  The display size detection of 290x210mm seems _correct_ since it matches
  physical dimensions.
 
 Do you still have these problems with latest packages in unstable?

[same hardware still]

No, on 1:6.12.3-1 (slightly older testing package) at least,
it does not happen any more both with my usual xorg.conf
and when renaming the file.

It started to work relatively soon thereafter I believe (even though
I didn't realize the exact event since I simply left it un-upgraded for
a while).

BUT, I have bad news now:
Just did an upgrade to 1:6.12.5-1 testing (causing a large bunch of
other xorg stuff to get updated), and directly after having started
1:6.12.3-1, the screen is now quite a LOT darker than before
(in a weird twilight way, no contrast, no brightness, nothing).
Reverting to 6.12.4-2 (the only one readily available) did not help
either. And I DON'T think it's a (very) sudden monitor issue
(the OSD still shows with original colors)

Obviously I'm not too happy about this state of affairs ;)

Any ideas? What should I test?

Thank you very much for your re-inquiry!

Andreas Mohr



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307200949.ga6...@rhlx01.hs-esslingen.de



Bug#462582: xserver-xorg-video-ati: regression, size configuration incredibly broken, on bog-standard display size

2010-03-07 Thread Andreas Mohr
On Sun, Mar 07, 2010 at 09:09:49PM +0100, Andreas Mohr wrote:
 BUT, I have bad news now:
 Just did an upgrade to 1:6.12.5-1 testing (causing a large bunch of
 other xorg stuff to get updated), and directly after having started
 1:6.12.3-1, the screen is now quite a LOT darker than before
 (in a weird twilight way, no contrast, no brightness, nothing).
 Reverting to 6.12.4-2 (the only one readily available) did not help
 either. And I DON'T think it's a (very) sudden monitor issue
 (the OSD still shows with original colors)
 
 Obviously I'm not too happy about this state of affairs ;)
 
 Any ideas? What should I test?

I got the old packages from
http://boisson.homeip.net/debian/Xorg7.4/i386/
did a
dpkg -i xserver-xorg-video-ati_1:6.12.3-1_i386.deb
, same issue.
Then I realized that Xorg log showed Radeon entries (obviously, since
it's a Radeon).
Tried to downgrade to xserver-xorg-video-radeon_1:6.12.3-1_i386.deb , failed.
Had to downgrade xserver-xorg-core (was 2:1.7.5-1) to 2:1.6.5-1 , then
downgrading to xserver-xorg-video-radeon_1:6.12.3-1_i386.deb was
possible and the screen WORKED as it used to.

Trying to re-upgrade to xserver-xorg-video-radeon_1:6.12.3-1_i386.deb
(to check whether the problem lies with -core or -radeon) unfortunately
failed since it requires xserver-xorg-core (= 2:1.6.99.900).

Any other questions?

Andreas Mohr



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307202528.ga31...@rhlx01.hs-esslingen.de



Bug#572067: Processed: reassign 572592 to linux-libc-dev, forcibly merging 572067 572592

2010-03-07 Thread Julien Cristau
On Sun, Mar  7, 2010 at 20:42:51 +0100, Bastian Blank wrote:

 On Sun, Mar 07, 2010 at 05:43:30PM +, Ben Hutchings wrote:
  On Fri, 2010-03-05 at 19:37 +0100, Bastian Blank wrote:
   The linux kernel is source of the drm headers in the meantime.
  It *is*, but it shouldn't be.  Let's fix this now.
 
 Ah. So libdrm still works if we remove the drm drivers as this is no
 kernel interface at all?
 
 Either it is a kernel interface, then the kernel includes the
 definitions for it and provides it to the other parts of the system. Or
 it is not, but why are there drivers _providing_ this interfaces then?
 
Because the userspace part of the drivers (meaning xf86-video-foo and
the mesa dri drivers) need to have these definitions to call libdrm
functions (wrappers around drm ioctls).  They can handle a too old
kernel at runtime, but at build time they need the latest headers so the
source isn't full of useless #ifdefs.  The headers in libdrm are
regularly synced with Dave's drm tree (or Linus), and updating libdrm is
easier than bumping the kernel.
So basically what we have here is a kernel interface which is
fast-moving enough that userspace needs to have its own copy.  Which
means either we have libdrm install a system-wide copy, or each driver
has to include its own copy of the headers, if we want to be able to
update them without waiting for a new kernel.
As I said, I'd be fine with leaving /usr/include/drm/ to linux-libc-dev,
and install the headers from libdrm to /usr/include/libdrm or so.  Or
linux-libc-dev drops the drm subdir, and libdrm goes back to installing
these headers (like it was doing before 2.6.28).

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#448384: closed by Brice Goglin brice.gog...@ens-lyon.org (Re: Bug#448384: Which opengl driver)

2010-03-07 Thread Adam Bartley
Dear Brice,

Apologies for for not replying sooner. After the fan stopped working for a
while under linux (they changed the kernel drivers, sadly) my ibook died and
has had to be replaced with an intel based macbook. My thanks for all your
help over the years, and to Michel Dänzer, too.

With best wishes,

Adam Bartley

On Fri, Mar 5, 2010 at 10:09 PM, Debian Bug Tracking System 
ow...@bugs.debian.org wrote:

 This is an automatic notification regarding your Bug report
 which was filed against the libgl1-mesa-dri package:

 #448384: gnome-session: opengl artifacts since 2.20 when not full screen

 It has been closed by Brice Goglin brice.gog...@ens-lyon.org.

 Their explanation is attached below along with your original report.
 If this explanation is unsatisfactory and you have not received a
 better one in a separate message then please contact Brice Goglin 
 brice.gog...@ens-lyon.org by
 replying to this email.


 --
 448384: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=448384
 Debian Bug Tracking System
 Contact ow...@bugs.debian.org with problems


 -- Forwarded message --
 From: Brice Goglin brice.gog...@ens-lyon.org
 To: 448384-d...@bugs.debian.org
 Date: Fri, 5 Mar 2010 23:08:00 +0100
 Subject: Re: Bug#448384: Which opengl driver
 On Tue, Oct 30, 2007 at 10:56:25AM +0100, Michel Dänzer wrote:
  reassign 448384 libgl1-mesa-dri
  kthxbye
 
  On Tue, 2007-10-30 at 10:13 +0100, Josselin Mouette wrote:
  
   Le lundi 29 octobre 2007 à 21:25 +, Adam Bartley a écrit :
Thanks for the response. Re: which driver I use, the glxinfo output
follows:
   
OpenGL renderer string: Mesa DRI R200 20060602 AGP 4x TCL
  
   Thanks, reassigning.
 
  Adam, if you're using a compositing manager, see
  https://bugs.freedesktop.org/show_bug.cgi?id=8732

 We have DRI2 for radeon in experimental now.

  Otherwise, please
  provide screenshots of the problem.

 Otherwise no reply in 2 years, closing.

 Brice




 -- Forwarded message --
 From: Adam Bartley adam.bart...@gmail.com
 To: sub...@bugs.debian.org
 Date: Sun, 28 Oct 2007 17:03:23 +
 Subject: gnome-session: opengl artifacts since 2.20 when not full screen
 Package: gnome-session
 Version: 2.20.1-1
 Severity: normal

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

 This occurs on an ibook G4, 1.2 Ghx with the Radeon 9200 for graphics. On
 full screen applications, like armagetron, opengl graphics work as normal.
 Anything windowed misbehaves, however, by having jittery artifcats, and
 multiple images of something in motion. Glxinfo and glxgears report nothing
 unusual in their stats, but glxgears looks awful. Gnome-compiz is installed,
 but not configured. Is Gnome fighting with opengl somehow? That would
 explain why fullscreen apps behave themselves.

 Best wishes,

 Adam Bartley


 -- System Information:
 Debian Release: lenny/sid
   APT prefers unstable
   APT policy: (500, 'unstable'), (500, 'testing')
 Architecture: powerpc (ppc)

 Kernel: Linux 2.6.22-2-powerpc
 Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/bash

 Versions of packages gnome-session depends on:
 ii  gconf2  2.20.0-1 GNOME configuration database
 syste
 ii  gnome-control-center1:2.20.1-1   utilities to configure the
 GNOME d
 ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit





Bug#506989: Keyboard layout option is not applied at boot

2010-03-07 Thread Björn Stenberg
Brice Goglin wrote:
 Do you still experience this bug with latest X and gnome packages?

No, the problem does not occur anymore.

I'm afraid I don't know which update fixed it.

-- 
Björn



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307214123.ga25...@giant



Bug#501718: xserver-xorg-video-radeon: Crash when using minimal ServeryLayout

2010-03-07 Thread Jordi Mallach
Hi Brice,

On Sat, Mar 06, 2010 at 10:37:41AM +0100, Brice Goglin wrote:
  Using packages from experimental on PPC, I've experimented a reproducible
  crash with a certain configuration file.
  
  What triggers it is having a minimal ServerLayout with an InputDevice
  (Generic Keyboard) and the Identifier, but also with just the Identifier
  stanza.
 
 Still the same problem? Does it actually matter?

I'm sorry to not be able to test. My Powerbook died a few months ago and
still haven't had time to do any first-aid operations in an attempt to revive
it.

I'd say you go ahead and close it.

Jordi
-- 
Jordi Mallach Pérez  --  Debian developer http://www.debian.org/
jo...@sindominio.net jo...@debian.org http://www.sindominio.net/
GnuPG public key information available at http://oskuro.net/



--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307215616.ga2...@nubol.oskuro.net



Bug#572979: libgl1-mesa-dri: screen corruption and mouse slowness after upgrade

2010-03-07 Thread Danko, Miklos
Package: libgl1-mesa-dri
Version: 7.6.1-1
Severity: normal


Subject: libgl1-mesa-dri: screen corruption and mouse slowness after upgrade
Package: libgl1-mesa-dri
Version: 7.6.1-1
Severity: normal

After upgrading from libgl1-mesa-dri_7.4.1_i386.deb to the 7.5.1, several 
programs started to behave incorrectly. In FreedroidRPG the mouse became 
unusably slow, responding to the movements several seconds later, but only 
inside the game. The mouse was OK when in the menus. Similar happened in the 
UFO-AI.
The screen became corrupted after exiting the Freedroid RPG, Bos Wars or 
Globulation 2.
Before this upgrade all the games above worked correctly.
This package was upgraded only, nothing else. After that these problems 
appeared.
After the upgrade, when this happened, I have tried to upgrade several other 
things (X, DRI, kernel, etc.), hoping that there is a hidden dependency, but 
nothing solved the problem. The new versions of the package (7.6.1, 7.6.1-1) 
have not solved it either.
The graphical card is an ATI Radeon 9250.



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

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

Versions of packages libgl1-mesa-dri depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libdrm-intel1 2.4.17-1   Userspace interface to intel-speci
ii  libdrm2   2.4.17-1   Userspace interface to kernel DRM 
ii  libexpat1 2.0.1-7XML parsing C library - runtime li

libgl1-mesa-dri recommends no packages.

Versions of packages libgl1-mesa-dri suggests:
pn  libglide3 none (no description available)

-- no debconf information

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

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

Versions of packages libgl1-mesa-dri depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libdrm-intel1 2.4.17-1   Userspace interface to intel-speci
ii  libdrm2   2.4.17-1   Userspace interface to kernel DRM 
ii  libexpat1 2.0.1-7XML parsing C library - runtime li

libgl1-mesa-dri recommends no packages.

Versions of packages libgl1-mesa-dri suggests:
pn  libglide3 none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100307224829.5055.93814.report...@silent



Bug#570466: not fixed after all

2010-03-07 Thread Rémi Letot
Hello,

the stability of my laptop was apparently due to a missing firmware file
(R600_rlc.bin), which prevented DRI2 to work. Now that I have that file
back (I also upgraded to latest 2.6.33 kernel from experimental), I have
problems again with KMS/DRI2.

However the problem evolved, as my laptop does not completely crash
anymore. Only the screen randomly turns blank and doesn't come back.

For example, I can still switch to a VT. The screen somehow flickers but
remains blank, but I can blindly login and issue commands or reboot. I
suspect that my X session is still useable, but of course without
knowing where my pointer is, it's quite complicated to prove :-)

I logged in through ssh, and X is no longer using 100% CPU. I have no
error in syslog or the Xorg log, so it seems that the beast is blind but
didn't notice anything unusual.

Tell me if I can help further.

Thanks,
-- 
Rémi



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b943788.4010...@poukram.net



  1   2   >