Re: Bug#506644: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Charles Plessy
Le Fri, Dec 05, 2008 at 04:20:07PM +0100, Josselin Mouette a écrit :
> Indeed, the kernel support seems broken. I can change the values
> in /sys/class/backlight/acpi_video0/brightness but they have no impact
> on the brightness.
> 
> Charles, setting "xrandr --output LVDS --set BACKLIGHT_CONTROL native"
> should make at least xbacklight work, but for HAL which relies on the
> ACPI interface, this is up to the kernel.

Thanks a lot everybody for your help.

Interestingly, on my machine both methods work.

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#507940: Missing sr_RS and sr...@latin Xlib locales

2008-12-05 Thread Goran Rakic
Package: libx11-data
Version: 2:1.0.3-7

sr_RS locale is missing from locale.dir/locale.alias/compose.dir files.

It should have the same defs as sr_CS. Also please note that we have
changed [EMAIL PROTECTED] to [EMAIL PROTECTED] some time ago, so "@latin" 
modifier should
be added to Xlib locale definition.

I don't know what is policy on this one, but support for obsolete sp,
sr_CS and sr_YU may even be omitted from new releases. For some time now
sr_RS locale is supported in glibc locale package and used as default
for Serbian language (together with [EMAIL PROTECTED] and legacy [EMAIL 
PROTECTED]).

This bug affects many applications that fallback to C locale due to
missing Xlib locale.

I am using Ubuntu, but after reporting this to their bug tracker I was
advised to report this to Debian first. Original bug report is available
at: https://bugs.launchpad.net/ubuntu/+source/libx11/+bug/299841





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#507886: xserver-xorg: X blocks suspend to RAM

2008-12-05 Thread Michel Dänzer
On Fri, 2008-12-05 at 15:56 +0100, Jörg Sommer wrote:
> Package: xserver-xorg
> Version: 1:7.4~4
> Severity: normal
> 
> Hi,
> 
> since using kernel version 2.6.28-rc1 my iBook doesn't enter the sleep
> mode, if X is active. If X is running, but not active, i.e. I'm on a
> virtual consol (e.g. tty2) the system goes asleep. With the kernel 2.6.27
> I've no problems.

Sounds like a kernel regression then?


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



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



xorg: Changes to 'ubuntu'

2008-12-05 Thread Bryce Harrington
 debian/changelog|9 +
 debian/local/Failsafe/failsafeXinit |   24 ++--
 2 files changed, 27 insertions(+), 6 deletions(-)

New commits:
commit 1f0d57a62c74fbd96521b6b407681c40575b038f
Author: Bryce Harrington <[EMAIL PROTECTED]>
Date:   Fri Dec 5 16:33:15 2008 -0800

  * debian/local/Failsafe/failsafeXinit:
- Provide option to launch a terminal window (LP: #275866)
- Add some additional useful files/data to the failsafe tarball
- Make wait dialog show progress bar (LP: #290250)

diff --git a/debian/changelog b/debian/changelog
index 02a02d3..784fe07 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+xorg (1:7.4~5ubuntu5) jaunty; urgency=low
+
+  * debian/local/Failsafe/failsafeXinit:
+- Provide option to launch a terminal window (LP: #275866)
+- Add some additional useful files/data to the failsafe tarball
+- Make wait dialog show progress bar (LP: #290250)
+  
+ -- Bryce Harrington <[EMAIL PROTECTED]>  Fri, 05 Dec 2008 15:59:23 -0800
+
 xorg (1:7.4~5ubuntu4) jaunty; urgency=low
 
   * Depend on hal.  Otherwise, if launching X without hal installed you
diff --git a/debian/local/Failsafe/failsafeXinit 
b/debian/local/Failsafe/failsafeXinit
index 167f8f6..2725d4f 100755
--- a/debian/local/Failsafe/failsafeXinit
+++ b/debian/local/Failsafe/failsafeXinit
@@ -45,6 +45,7 @@ display_main_menu() {
   TRUE   LOW_RES_MODE "Run Ubuntu in low-graphics mode for just this 
session" \
   FALSE  RECONFIGURE "Reconfigure graphics" \
   FALSE  TROUBLESHOOT "Troubleshoot the error" \
+  FALSE  TERMINAL "Open a terminal" \
 --hide-column 2
 
 # TODO:  3 FILE_BUG "Report a bug about this failure" \
@@ -105,6 +106,10 @@ backup_xorg_conf() {
 fi
 }
 
+run_terminal() {
+gnome-terminal
+}
+
 run_dexconf() {
 backup_xorg_conf || return 1
 
@@ -154,8 +159,13 @@ save_config_logs() {
 
 # cp $xorg_conf $xorg_backup_dir
 cp /etc/X11/xorg.conf $xorg_backup_dir
-cp $xorg_log $xorg_backup_dir
-cp $gdm_log $xorg_backup_dir
+cp ${xorg_log} $xorg_backup_dir
+cp ${xorg_log}.old $xorg_backup_dir
+cp ${gdm_log} $xorg_backup_dir
+cp ${gdm_log}.1 $xorg_backup_dir
+cp ${gdm_log}.2 $xorg_backup_dir
+lspci -vvnn > ${xorg_backup_dir}/lspci-vvnn.txt
+xrandr --verbose > ${xorg_backup_dir}/xrandr-verbose.txt
 tar -cf $xorg_backup_file $xorg_backup_dir
 rm -rf $xorg_backup_dir
 
@@ -180,6 +190,7 @@ while : ; do
 RECONFIGURE ) choice=$(display_reconfigure_menu) ;;
 TROUBLESHOOT )choice=$(display_troubleshooting_menu) ;;
 FILE_BUG )choice=$(display_filebug_menu) ;;
+TERMINAL )run_terminal ;;
 
 ## Reconfigure Menu ##
 RUN_DEXCONF ) choice="RECONFIGURE"; run_dexconf ;;
@@ -199,13 +210,14 @@ while : ; do
 esac
 done
 
-zenity --info --text "Stand by one minute while the display restarts..."
-
 if [ "x$with_gdm" = "xwith-gdm" ]; then
 export XORGCONFIG="/etc/X11/xorg.conf"
-/etc/init.d/gdm restart
 elif [ "x$with_gdm" = "xlow-res" ]; then
 export XORGCONFIG=${xorg_conf}
-/etc/init.d/gdm restart
+else
+exit
 fi
 
+/etc/init.d/gdm restart | \
+zenity --progress --pulsate --text "Stand by one minute while the display 
restarts..."
+


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#507916: xorg: Xorg segfault on swsusp resume

2008-12-05 Thread Andy Isaacson
Package: xorg
Version: 1:7.3+18
Severity: important

I trigger swsusp on my Thinkpad X40 using a script which does

sudo sh -c 'echo 3 > /sys/power/image_size;
echo shutdown > /sys/power/disk;
echo disk > /sys/power/state' 

This generally works (I've probably suspended 500 times in the last
three years, running various -mm and mainline kernels, and most of the
time it works), but this morning the X server crashed while resuming in
a most interesting manner:

> (II) Open ACPI successful (/var/run/acpid.socket)
> (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
> (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e (pgoffset 2016)
> (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
> (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
> (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
> (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x007f (pgoffset 2032)
> 
> Backtrace:
> 0: /usr/bin/X11/X(xf86SigHandler+0x81) [0x80c8631]
> 1: [0xe400]
> 2: /usr/bin/X11/X(xf86_reload_cursors+0x70) [0x80f9f80]
> 3: /usr/lib/xorg/modules/drivers//i810_drv.so [0xb7ba5f62]
> 4: /usr/bin/X11/X(xf86CrtcSetMode+0x279) [0x80f9169]
> 5: /usr/bin/X11/X(xf86SetDesiredModes+0x139) [0x80f9519]
> 6: /usr/lib/xorg/modules/drivers//i810_drv.so [0xb7ba98c9]
> 7: /usr/lib/xorg/modules//libxaa.so [0xb7a643f2]
> 8: /usr/bin/X11/X [0x80d08fc]
> 9: /usr/bin/X11/X [0x80ddcd8]
> 10: /usr/bin/X11/X(xf86Wakeup+0x3bd) [0x80c9d4d]
> 11: /usr/bin/X11/X(WakeupHandler+0x59) [0x80929e9]
> 12: /usr/bin/X11/X(WaitForSomething+0x1ae) [0x81b88ee]
> 13: /usr/bin/X11/X(Dispatch+0x82) [0x808ec22]
> 14: /usr/bin/X11/X(main+0x495) [0x8076e85]
> 15: /lib/i686/cmov/libc.so.6(__libc_start_main+0xe0) [0xb7d74450]
> 16: /usr/bin/X11/X(FontFileCompleteXLFD+0x1ed) [0x80761c1]
> 
> Fatal server error:
> Caught signal 11.  Server aborting
> 
> (II) intel(0): xf86UnbindGARTMemory: unbind key 0
> (II) intel(0): xf86UnbindGARTMemory: unbind key 1
> (II) intel(0): xf86UnbindGARTMemory: unbind key 2
> (II) intel(0): xf86UnbindGARTMemory: unbind key 3
> (II) intel(0): xf86UnbindGARTMemory: unbind key 4
> (II) intel(0): xf86UnbindGARTMemory: unbind key 5

It looks to me like the SIGIO from the mouse filedescriptor came in
while the driver was reinitializing and caught a function pointer with
its pants down.

I've never seen this before, though I have had some untriaged X
crashes-on-resume in the past.

Complete system information (including xorg.conf, .config, and complete
Xorg.0.log.old) is at
http://web.hexapodia.org/~adi/bobble/bobble_2.6.27_20081205113626/
http://web.hexapodia.org/~adi/bobble/bobble_2.6.27_20081205113626.tar.gz
SHA1 (bobble_2.6.27_20081205113626.tar.gz) = 
2123c9633053f1423b04ebff2d8cc71f72774ae0

-andy

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

Kernel: Linux 2.6.27
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 xorg depends on:
ii  libgl1-mesa-glx [libgl1]  7.0.3-6A free implementation of the OpenG
ii  libglu1-mesa  7.0.3-6The OpenGL utility library (GLU)
ii  x11-apps  7.3+4  X applications
ii  x11-session-utils 7.3+1  X session utilities
ii  x11-utils 7.3+2  X11 utilities
ii  x11-xfs-utils 7.3+1  X font server utilities
ii  x11-xkb-utils 7.4+1  X11 XKB utilities
ii  x11-xserver-utils 7.3+5  X server utilities
ii  xauth 1:1.0.3-2  X authentication utility
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X
ii  xfonts-base   1:1.0.0-5  standard fonts for X
ii  xfonts-scalable   1:1.0.0-6  scalable fonts for X
ii  xfonts-utils  1:7.4+1X Window System font utility progr
ii  xinit 1.0.9-2X server initialisation tool
ii  xkb-data  1.3-2  X Keyboard Extension (XKB) configu
ii  xserver-xorg  1:7.2-5the X.Org X server
ii  xterm [x-terminal-emulator]   237-1  X terminal emulator

Versions of packages xorg recommends:
ii  xorg-docs 1:1.4-3Miscellaneous documentation for th

xorg suggests no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#507844: fixed

2008-12-05 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

xserver-xorg-input-evtouch |0.8.6-1 | hurd-i386

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED]

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[EMAIL PROTECTED]

Debian distribution maintenance software
pp.
Thomas Viehmann (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#507841: fixed

2008-12-05 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

xserver-xorg-input-joystick |  1:1.1.0-1 | hurd-i386

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED]

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[EMAIL PROTECTED]

Debian distribution maintenance software
pp.
Thomas Viehmann (the ftpmaster behind the curtain)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



drm-snapshot: Changes to 'debian-experimental'

2008-12-05 Thread Julien Cristau
 debian/changelog |2 ++
 debian/control   |2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit fe3cfed71c2f034aee1f8341c0e39431f92cdeb3
Author: Julien Cristau <[EMAIL PROTECTED]>
Date:   Fri Dec 5 18:28:08 2008 +0100

Fix typo in Vcs-Browser control field (closes: #507898).

Thanks, Guido Günther!

diff --git a/debian/changelog b/debian/changelog
index e8ec750..dd0ab73 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 drm-snapshot (2.4.1+git+20081116+930c0e7-2) UNRELEASED; urgency=low
 
   * Make libdrm-dev depend on libdrm-intel1 on x86.
+  * Fix typo in Vcs-Browser control field (closes: #507898).  Thanks, Guido
+Günther!
 
  -- Julien Cristau <[EMAIL PROTECTED]>  Sun, 23 Nov 2008 17:00:36 +0100
 
diff --git a/debian/control b/debian/control
index 634ce02..cd99512 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Standards-Version: 3.8.0
 Section: libs
 Homepage: http://dri.freedesktop.org/wiki/FrontPage
 Vcs-Git: git://git.debian.org/git/pkg-xorg/lib/drm-snapshot
-Vcs-Browser: http://git.debian.org/?=pkg-xorg/lib/drm-snapshot.git
+Vcs-Browser: http://git.debian.org/?p=pkg-xorg/lib/drm-snapshot.git
 
 Package: libdrm-dev
 Section: libdevel


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#507898: typo in VCS-Browser fiels

2008-12-05 Thread Guido Günther
Package: drm-snapshot
Severity: minor

Hi,
while adding support for the way you specify commit ids in the changelog
to https://honk.sigxcpu.org/cl2vcs/ in noticed there's a typo in the
VCS-Browser field:

- Vcs-Browser: http://git.debian.org/?=pkg-xorg/lib/drm-snapshot.git
+ Vcs-Browser: http://git.debian.org/?p=pkg-xorg/lib/drm-snapshot.git
  ^
Cheers,
 -- Guido



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Bug#506644: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Sjoerd Simons
On Fri, Dec 05, 2008 at 03:35:48PM +0100, Josselin Mouette wrote:
> Le vendredi 05 décembre 2008 à 15:23 +0100, Julien Cristau a écrit :
> > What's the value of the BACKLIGHT_CONTROL randr property in the
> > working/non-working cases?  (xrandr --prop will list it)
> 
> Here it is listed as:
>   BACKLIGHT_CONTROL: kernel
>   supported: native   legacy   combination  kernel  
> 
> I don???t have a working setup handy anymore, unfortunately.

Check if you hav e a class backlight device in /sys (iotw something under
/sys/class/backlight). If so you should be able to control the backlight via
hal. You can test the kernel by echoing values into the brightness file

  Sjoerd
-- 
You can't push on a string.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Bug#506644: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Josselin Mouette
reassign 506644 linux-2.6
thanks

Le vendredi 05 décembre 2008 à 15:06 +, Sjoerd Simons a écrit :
> Check if you hav e a class backlight device in /sys (iotw something under
> /sys/class/backlight). If so you should be able to control the backlight via
> hal. You can test the kernel by echoing values into the brightness file

Indeed, the kernel support seems broken. I can change the values
in /sys/class/backlight/acpi_video0/brightness but they have no impact
on the brightness.

Charles, setting "xrandr --output LVDS --set BACKLIGHT_CONTROL native"
should make at least xbacklight work, but for HAL which relies on the
ACPI interface, this is up to the kernel.

Thanks to all for the help,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Bug#507886: xserver-xorg: X blocks suspend to RAM

2008-12-05 Thread Jörg Sommer
Package: xserver-xorg
Version: 1:7.4~4
Severity: normal

Hi,

since using kernel version 2.6.28-rc1 my iBook doesn't enter the sleep
mode, if X is active. If X is running, but not active, i.e. I'm on a
virtual consol (e.g. tty2) the system goes asleep. With the kernel 2.6.27
I've no problems.

When starting suspend to RAM (via pbbuttons) while X is active, the
screen becomes black (the common switch to the virtual console) and then
the screen becomes scrambled and the system stops, but it's not off. If
the fan is spinning before going asleep it still spinns after the screen
becomes scrambled. So, the system is not off, but no keys working, e.g.
Ctrl+Alt+Fn to change the virtual console.

I'm sorry, I can't give you more informations. But if you have questions,
ask me.

Bye, Jörg.

-- 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 12. Aug 19:23 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1845156 12. Nov 15:48 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
:00:10.0 VGA compatible controller: ATI Technologies Inc M9+ 5C63 [Radeon 
Mobility 9200 (AGP)] (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 2622 24. Nov 14:33 /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"
Load"dbe"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"record"
#   Load"type1"
Load"vbe"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "macintosh"
Option  "XkbLayout" "de"
Option  "XkbVariant""nodeadkeys"
Option  "XkbOptions""lv3:lwin_switch"
# Option  "XkbOptions""ctrl:nocaps"
EndSection

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

Section "Device"
Identifier  "ATI"
Driver  "radeon"
BusID   "PCI:0:16:0"
Option  "EnablePageFlip"
Option  "DDCMode"
Option  "MacModel"  "ibook"
EndSection

Section "Monitor"
Identifier  "iBook Panel"
Option  "DPMS"  "off"
EndSection

Section "Screen"
Identifier  "Panel"
Device  "ATI"
Monitor "iBook Panel"
DefaultDepth16
SubSection "Display"
Depth   16
Modes   "1024x768"
Virtual 2048 768
EndSubSection
SubSection "Display"
Depth   24
Modes   "1024x768"
EndSubSection
EndSection

Section "ServerLayout"
Identifier  "default"
Screen  "Panel"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
Option  "BlankTime" "0"
Option  "DontZap"   "true"
Option  "AllowEmptyInput"   "false"
Option  "AllowDeactivateGrabs"  "true"
EndSection

Section "DRI"
Mode0666
EndSection


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

Re: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Josselin Mouette
Le vendredi 05 décembre 2008 à 15:23 +0100, Julien Cristau a écrit :
> What's the value of the BACKLIGHT_CONTROL randr property in the
> working/non-working cases?  (xrandr --prop will list it)

Here it is listed as:
BACKLIGHT_CONTROL: kernel
supported: native   legacy   combination  kernel  

I don’t have a working setup handy anymore, unfortunately.
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Re: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Julien Cristau
On Fri, Dec  5, 2008 at 14:37:35 +0100, Josselin Mouette wrote:

> Le vendredi 05 décembre 2008 à 14:26 +0100, Michael Biebl a écrit :
> > Josselin Mouette wrote:
> > > X & Utopia people: do you know what it means when neither g-p-m (through
> > > HAL) nor xbacklight (through XRandR) work to change the backlight of a
> > > display? Is it a problem in the kernel?
> 
> > I can't control my backlight either (never could). Afaik it's because this
> > function is hard wired and not controllable by software on my laptop.
> > 
> > But if you say, that it worked for you before, than this is something 
> > different.
> 
> The original report was about a regression for a Sony model, yes.
> 
> On my laptop (a Fujitsu-Siemens one), this never worked with HAL but
> used to work with XRandR. Which is why I’m suspecting some change in the
> kernel, but I’m not sure how this is done in the X server.
> 
What's the value of the BACKLIGHT_CONTROL randr property in the
working/non-working cases?  (xrandr --prop will list it)

Cheers,
Julien


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#470450: marked as done (xserver-xorg-video-intel: random segfaults when using XVideo)

2008-12-05 Thread Debian Bug Tracking System

Your message dated Fri, 5 Dec 2008 15:06:18 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#470450: Still exists in 2.2.1
has caused the Debian Bug report #470450,
regarding xserver-xorg-video-intel: random segfaults when using XVideo
to be marked as done.

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

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
470450: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470450
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.2.0-1
Severity: important
Attach: /var/log/Xorg.0.log.old 

X segfaults more or less randomly when I play videos with xine through
the XVideo extension. It does not segfault immediately, I can play
videos for tens of seconds or minutes, and then suddenly it
segfaults. Or I start playing a video, I pause it, I do something else
on the computer (web browsing, email, development, ...), and suddenly
X segfaults. It seems to never happen as long as I have not played any
video since X restarted.

Xorg.0.log.old with backtrace attached.

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

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

X server symlink status:
lrwxrwxrwx 1 root root 13 jun  3  2006 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1673980 fév  1 05:06 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated 
Graphics Device (rev 02)

/etc/X11/xorg.conf unchanged from checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1114 jan 24 23:26 /etc/X11/xorg.conf

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

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc101"
Option  "XkbLayout" "us"
Option  "XkbOptions""compose:ralt"
EndSection

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

Section "Device"
Identifier  "Configured Video Device"
EndSection

Section "Monitor"
Identifier  "Configured Monitor"
EndSection

Section "Screen"
Identifier  "Default Screen"
Monitor "Configured Monitor"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 108400 déc 19  2006 /var/log/Xorg.20.log
-rw-r--r-- 1 root root  67973 déc 30  2006 /var/log/Xorg.1.log
-rw-r--r-- 1 root root  35467 mar 11 09:39 /var/log/Xorg.0.log

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

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.4.0.90
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.1~git20080131-1)
Current Operating System: Linux bagnat 2.6.22-2-686 #1 SMP Fri Aug 31 00:24:01 
UTC 2007 i686
Build Date: 01 February 2008  03:49:13AM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Mar 11 09:38:00 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section.  Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Configured Monitor"
(==) No devi

Processed (with 1 errors): Re: Bug#488857: gnome-applets: keyboard indicator stopped working

2008-12-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> forcemerge 506989 488857
Bug#506989: Keyboard layout option is not applied at boot
Bug#488857: gnome-applets: keyboard indicator stopped working
Mismatch - only Bugs in the same package can be forcibly merged:
Bug 488857 is not in the same package as 506989
> reassign 488857 xserver-xorg-core
Bug#488857: gnome-applets: keyboard indicator stopped working
Bug reassigned from package `gnome-applets' to `xserver-xorg-core'.

> forcemerge 480021 488857
Bug#480021: xserver-xorg-core: upgrading to 7.3 (recent testing) breaks xkbset
Bug#488857: gnome-applets: keyboard indicator stopped working
Forcibly Merged 480021 488857.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Bug#488857: gnome-applets: keyboard indicator stopped working

2008-12-05 Thread Josselin Mouette
forcemerge 506989 488857
reassign 488857 xserver-xorg-core
forcemerge 480021 488857
thanks

Le jeudi 27 novembre 2008 à 10:16 +0100, Milan Zamazal a écrit :
> FWIW, I've observed exactly the same problem on a fresh Lenny
> installation, except for I couldn't fix the problem.
> 
> Additional information: If I make changes in the keyboard applet
> configuration, the applet starts to work and `xkbset q' starts to report
> XKB information.  But after reboot it stops to work again.  So the
> applet is mostly useless on Lenny.

Thanks a lot for this information. It means that #506989 is precisely
the same issue, and it is most probably the same as #480021 which lies
either in the X server or in xkb-data.

Cheers,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Re: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Michael Biebl
Josselin Mouette wrote:
> Le vendredi 05 décembre 2008 à 09:40 +0900, Charles Plessy a écrit :
>> Le Thu, Dec 04, 2008 at 05:54:35PM +0100, Josselin Mouette a écrit :
>>> Does it work when you set the brightness with xbacklight? It doesn’t
>>> work anymore on my system, and I’m pretty sure it used to. The bug could
>>> lie in the X server somehow.
>> Good point, xbacklight does not work on my system either, that's very bad
>> news :(
> 
> Yes, the same goes for me.
> 
> X & Utopia people: do you know what it means when neither g-p-m (through
> HAL) nor xbacklight (through XRandR) work to change the backlight of a
> display? Is it a problem in the kernel?
> 
> Thanks for your insight,
> 

I can't control my backlight either (never could). Afaik it's because this
function is hard wired and not controllable by software on my laptop.

But if you say, that it worked for you before, than this is something different.

Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Josselin Mouette
Le vendredi 05 décembre 2008 à 14:26 +0100, Michael Biebl a écrit :
> Josselin Mouette wrote:
> > X & Utopia people: do you know what it means when neither g-p-m (through
> > HAL) nor xbacklight (through XRandR) work to change the backlight of a
> > display? Is it a problem in the kernel?

> I can't control my backlight either (never could). Afaik it's because this
> function is hard wired and not controllable by software on my laptop.
> 
> But if you say, that it worked for you before, than this is something 
> different.

The original report was about a regression for a Sony model, yes.

On my laptop (a Fujitsu-Siemens one), this never worked with HAL but
used to work with XRandR. Which is why I’m suspecting some change in the
kernel, but I’m not sure how this is done in the X server.

Cheers,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Re: Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Josselin Mouette
Le vendredi 05 décembre 2008 à 09:40 +0900, Charles Plessy a écrit :
> Le Thu, Dec 04, 2008 at 05:54:35PM +0100, Josselin Mouette a écrit :
> > 
> > Does it work when you set the brightness with xbacklight? It doesn’t
> > work anymore on my system, and I’m pretty sure it used to. The bug could
> > lie in the X server somehow.
> 
> Good point, xbacklight does not work on my system either, that's very bad
> news :(

Yes, the same goes for me.

X & Utopia people: do you know what it means when neither g-p-m (through
HAL) nor xbacklight (through XRandR) work to change the backlight of a
display? Is it a problem in the kernel?

Thanks for your insight,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Processed: reassign 507743 to xserver-xorg-input-evdev, forcibly merging 442316 507743

2008-12-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.26
> reassign 507743 xserver-xorg-input-evdev
Bug#507743: Up arrow key invokes gnome-screenshot in most contexts
Bug reassigned from package `gnome' to `xserver-xorg-input-evdev'.

> forcemerge 442316 507743
Bug#442316: xserver-xorg-input-evdev: evdev from experimental messes up my 
keyboard layout
Bug#507743: Up arrow key invokes gnome-screenshot in most contexts
Bug#447731: Scroll keys do not work any more
Forcibly Merged 442316 447731 507743.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]