Bug#487793: xserver-xorg-input-evtouch: TSC-10 missing from udev rules
Package: xserver-xorg-input-evtouch Version: 0.8.7-3ubuntu1 Severity: minor *** Please type your report below this line *** The udev rules (69-touchscreen.rules) should also support my touch screen :-) Adding the following line solves this: KERNEL=="event*", SUBSYSTEM=="input", ATTRS{name}=="TSC-10 DM TSC-10 DM", SYMLINK+="input/evtouch_event" BTW. instead of listing every single touch screen on the market, would it be possible to simply create a /dev/input/evtouch_event device when it uses the 'usbtouchscreen' kernel module? Something like: KERNEL=="event*", SUBSYSTEM=="input", DRIVER=="usbtouchscreen", SYMLINK+="input/evtouch_event" ? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#487798: xserver-xorg-input-evtouch: too high default value of MoveLimit option
Package: xserver-xorg-input-evtouch Version: 0.8.7-3ubuntu1 Severity: minor *** Please type your report below this line *** Looking at evtouch.c it seems that the default value of the MoveLimit option is 180. I don't know the first thing about X drivers, but it seems to me that with recent changes (to make the driver compatible with the latest xorg release) the unit of this option is pixels. This basically means that when using the default options you have to move the cursor more than 180 pixels before the move is registred. This is at least what happens on my system. I recommend lowering the default value. I'm using a value of 5, which still might be a bit too high. BTW. are you guys in contact with the upstream author of the driver? It seems that the debian version has diverged quite a bit from upstream. So far actually that only the debian version works on any modern distribution. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#382037: Missing programname and PID in syslog-log by PAM
On Mon, Mar 10, 2008 at 18:19:43 +0100, Julien Cristau wrote: > On Tue, Mar 4, 2008 at 18:51:33 -0800, Alan Coopersmith wrote: > > > I'd have no objections to using openlog() on other OS'es too, though I'd > > prefer an autoconf test for the openlog() function over just adding > > __linux__ > > (or just making it non-conditional for all OS'es if everyone has openlog()). > > > Hi, > > the attached patch adds a configure check for openlog, and changes the > greeter code to use #ifdef HAVE_OPENLOG instead of __OpenBSD__. I don't > know if additional checks for or LOG_AUTH are needed, though, > but that should be easy to fix if necessary. > Updated version, with a check for in addition to openlog(). Cheers, Julien >From 83a6107916e1285c0750e50eb286ae0793e08031 Mon Sep 17 00:00:00 2001 From: Julien Cristau <[EMAIL PROTECTED]> Date: Mon, 10 Mar 2008 17:51:15 +0100 Subject: [PATCH] Add support for syslog on more than openbsd. Also use LOG_AUTHPRIV by default, if that exists. --- configure.ac|4 ++-- greeter/greet.c | 17 +++-- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/configure.ac b/configure.ac index 329c8e8..4f2845b 100644 --- a/configure.ac +++ b/configure.ac @@ -76,8 +76,8 @@ if test "x$HAS_SETUSERCONTEXT" = "xyes" ; then [Define to 1 if you have the 'setusercontext' function.]) fi -AC_CHECK_FUNCS([daemon sigaction]) -AC_CHECK_HEADERS([grp.h]) +AC_CHECK_FUNCS([daemon sigaction openlog]) +AC_CHECK_HEADERS([grp.h syslog.h]) AC_TYPE_SIGNAL XTRANS_CONNECTION_FLAGS diff --git a/greeter/greet.c b/greeter/greet.c index 0aabec7..852e1eb 100644 --- a/greeter/greet.c +++ b/greeter/greet.c @@ -83,8 +83,15 @@ from The Open Group. #include "greet.h" #include "Login.h" -#ifdef __OpenBSD__ +#ifdef HAVE_OPENLOG && HAVE_SYSLOG_H +#define USE_SYSLOG #include +#ifndef LOG_AUTHPRIV +#define LOG_AUTHPRIV LOG_AUTH +#endif +#ifndef LOG_PID +#define LOG_PID 0 +#endif #endif #if defined(SECURE_RPC) && defined(sun) @@ -408,9 +415,7 @@ Greet (struct display *d, struct greet_info *greet) static void FailedLogin (struct display *d, struct greet_info *greet) { -#ifdef __OpenBSD__ -syslog(LOG_NOTICE, "LOGIN FAILURE ON %s", - d->name); +#ifdef USE_SYSLOG syslog(LOG_AUTHPRIV|LOG_NOTICE, "LOGIN FAILURE ON %s, %s", d->name, greet->name); @@ -485,8 +490,8 @@ greet_user_rtn GreetUser( LogError ("Cannot reopen display %s for greet window\n", d->name); exit (RESERVER_DISPLAY); } -#ifdef __OpenBSD__ -openlog("xdm", LOG_ODELAY, LOG_AUTH); +#ifdef USE_SYSLOG +openlog("xdm", LOG_ODELAY|LOG_PID, LOG_AUTHPRIV); #endif for (;;) { -- 1.5.5.4
xdm: Changes to 'debian-unstable'
debian/changelog |8 debian/patches/07_openlog.diff | 48 + debian/patches/series |1 debian/rules |1 debian/xsfbs/xsfbs.mk | 22 -- debian/xsfbs/xsfbs.sh | 387 ++--- 6 files changed, 273 insertions(+), 194 deletions(-) New commits: commit 02090247d74546319f0261a389c8a2bea20ad545 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Tue Jun 24 13:44:56 2008 +0200 New patch 07_openlog.diff call openlog() in the greeter to set the service name/pid and get proper logging from pam. diff --git a/debian/changelog b/debian/changelog index ce6a3c1..70043a5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ xdm (1:1.1.8-2) UNRELEASED; urgency=low * Disable xdm-auth to work around an Xlib bug (closes: #486606). + * New patch 07_openlog.diff: call openlog() in the greeter to set the +service name/pid and get proper logging from pam (closes: #382037). -- Julien Cristau <[EMAIL PROTECTED]> Tue, 24 Jun 2008 13:17:13 +0200 diff --git a/debian/patches/07_openlog.diff b/debian/patches/07_openlog.diff new file mode 100644 index 000..4d28a64 --- /dev/null +++ b/debian/patches/07_openlog.diff @@ -0,0 +1,48 @@ +From: Julien Cristau <[EMAIL PROTECTED]> +Subject: greeter: call openlog() not just on openbsd + +If we don't call openlog() pam will use syslog but won't have a service name. +See Debian bug #382037. + +Note: this patch is not appropriate for upstream; the bug log contains a more +complete patch, but this one should be ok for debian's purposes. + +Index: xdm/greeter/greet.c +=== +--- xdm.orig/greeter/greet.c xdm/greeter/greet.c +@@ -83,9 +83,7 @@ + #include "greet.h" + #include "Login.h" + +-#ifdef __OpenBSD__ + #include +-#endif + + #if defined(SECURE_RPC) && defined(sun) + /* Go figure, there's no getdomainname() prototype available */ +@@ -408,13 +406,9 @@ + static void + FailedLogin (struct display *d, struct greet_info *greet) + { +-#ifdef __OpenBSD__ +-syslog(LOG_NOTICE, "LOGIN FAILURE ON %s", +- d->name); + syslog(LOG_AUTHPRIV|LOG_NOTICE, + "LOGIN FAILURE ON %s, %s", + d->name, greet->name); +-#endif + DrawFail (login); + #ifndef USE_PAM + bzero (greet->name, strlen(greet->name)); +@@ -485,9 +479,7 @@ + LogError ("Cannot reopen display %s for greet window\n", d->name); + exit (RESERVER_DISPLAY); + } +-#ifdef __OpenBSD__ +-openlog("xdm", LOG_ODELAY, LOG_AUTH); +-#endif ++openlog("xdm", LOG_ODELAY | LOG_PID, LOG_AUTHPRIV); + + for (;;) { + #ifdef USE_PAM diff --git a/debian/patches/series b/debian/patches/series index 07a35ec..f132ea2 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -4,3 +4,4 @@ selinux_support.diff support_logfile_rotation.diff debian.diff 06_hurd_utsname.diff +07_openlog.diff commit c49757480ebd8baa644eea2a13264a658d055880 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Tue Jun 24 13:19:01 2008 +0200 Disable xdm-auth to work around an Xlib bug (closes: #486606). diff --git a/debian/changelog b/debian/changelog index 7ce3f21..ce6a3c1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xdm (1:1.1.8-2) UNRELEASED; urgency=low + + * Disable xdm-auth to work around an Xlib bug (closes: #486606). + + -- Julien Cristau <[EMAIL PROTECTED]> Tue, 24 Jun 2008 13:17:13 +0200 + xdm (1:1.1.8-1) unstable; urgency=low * Drop lintian overrides, they're unused anyway. diff --git a/debian/rules b/debian/rules index 077b10d..36b28bc 100755 --- a/debian/rules +++ b/debian/rules @@ -22,6 +22,7 @@ confflags += --with-pam \ --with-color-pixmap=debian.xpm \ --with-bw-pixmap=debianbw.xpm \ --disable-dynamic-greeter \ + --disable-xdm-auth \ --with-xft CFLAGS = -Wall -g commit 4c2fb5aa80a15b5a9a9b51b03c7dc30496a22561 Author: Brice Goglin <[EMAIL PROTECTED]> Date: Sat May 31 13:23:24 2008 +0200 Update xsfbs/quilt patching rules to be compatible with the "3.0 (quilt)" source package. Thanks to Raphael Hertzog. See http://lists.debian.org/debian-x/2008/05/msg01250.html for details. diff --git a/debian/xsfbs/xsfbs.mk b/debian/xsfbs/xsfbs.mk index c11923f..b871b3b 100755 --- a/debian/xsfbs/xsfbs.mk +++ b/debian/xsfbs/xsfbs.mk @@ -21,10 +21,8 @@ # Pass $(DH_OPTIONS) into the environment for debhelper's benefit. export DH_OPTIONS -# force quilt to not use ~/.quiltrc -QUILT = quilt --quiltrc /dev/null -# force QUILT_PATCHES to the default in case it is exported in the environment -QUILT_PATCHES = patches/ +# force quilt to not use ~/.quiltrc and to use debian/patches +QUILT = QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null # Set up parameters for the upstream build environment. @@ -121,19 +119,11 @@ $(STAMP_DIR)/stampdir: # Set up the package build directory as quilt expects to
Bug#382037: setting package to xdm, tagging 382037, tagging 486606
# Automatically generated email from bts, devscripts version 2.10.30 # via tagpending # # xdm (1:1.1.8-2) UNRELEASED; urgency=low # # * Disable xdm-auth to work around an Xlib bug (closes: #486606). # * New patch 07_openlog.diff: call openlog() in the greeter to set the #service name/pid and get proper logging from pam (closes: #382037). # package xdm tags 382037 + pending tags 486606 + pending -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: setting package to xdm, tagging 382037, tagging 486606
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.30 > # via tagpending > # > # xdm (1:1.1.8-2) UNRELEASED; urgency=low > # > # * Disable xdm-auth to work around an Xlib bug (closes: #486606). > # * New patch 07_openlog.diff: call openlog() in the greeter to set the > #service name/pid and get proper logging from pam (closes: #382037). > # > package xdm Ignoring bugs not assigned to: xdm > tags 382037 + pending Bug#382037: xdm: missing call to openlog() There were no tags set. Tags added: pending > tags 486606 + pending Bug#486606: xdm:unable to login - XDM authorization key matches an existing client There were no tags set. Tags added: pending > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#487603: Re : Bug#487603: further informations about this bug
Yes, I have done : $export MESA_NO_ASM that resolves the problem. So freedroid is launched properly and running very well. Indeed, my Cpu is intel Dual Core. Here you catch the content of my /proc/cpuinfo file : /**start of cat /proc/cpuinfo**/ processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 14 model name : Genuine Intel(R) CPU T2080 @ 1.73GHz stepping: 12 cpu MHz : 1729.061 cache size : 1024 KB physical id : 0 siblings: 2 core id : 0 cpu cores : 2 fdiv_bug: no hlt_bug : no f00f_bug: no coma_bug: no fpu : yes fpu_exception : yes cpuid level : 10 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr bogomips: 3463.09 clflush size: 64 processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 14 model name : Genuine Intel(R) CPU T2080 @ 1.73GHz stepping: 12 cpu MHz : 1729.061 cache size : 1024 KB physical id : 0 siblings: 2 core id : 1 cpu cores : 2 fdiv_bug: no hlt_bug : no f00f_bug: no coma_bug: no fpu : yes fpu_exception : yes cpuid level : 10 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr bogomips: 3458.14 clflush size: 64 /End of cat /proc/cpuinfo/ 2008/6/23, Julien Cristau <[EMAIL PROTECTED]>: > On Mon, Jun 23, 2008 at 23:42:27 +0200, Brice Goglin wrote: > >> Ok, thanks, it looks like >> https://bugs.freedesktop.org/show_bug.cgi?id=8724 >> > I'm not so sure. One is SIGFPE, the other SIGILL. > > Cheers, > Julien > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#474106: video-vesa: does not work on i815
On Jun 21, 2008, at 5:33 PM, Julien Cristau wrote: On Fri, Jun 20, 2008 at 12:12:39 +0200, Michal Suchanek wrote: Also it might be that the misdetection only occurs with scripts that try to determine the card automatically using debconf like live-initramfs does. At least for one card the automatic detection works if there is the default config with no card specified but fails if live-initramfs tries to determine the card type using debconf. What is live-initramfs doing with debconf exactly? Looking closely at the scripts it appears that the output (bash script trace) was not caused by live-initramfs directly but by some utility it called, probably xdebconfigurator. Now this works as expected so I guess the detection issue is gone. MS -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#474105: video-intel: X autoconfiguration fails to detect i815 graphics
On Jun 15, 2008, at 4:02 PM, Brice Goglin wrote: Debian Live user wrote: Package: xserver-xorg-video-intel Version: 2:2.1.0-2 Severity: normal File: video-intel The X autoconfiguration scripts fail to detect this device as intel. Since this usually works there must be some problem with the driver. To make things worse the vesa driver fails with this device showing some garbage on the screen. Changing the driver name iin xorg.conf from vesa to intel makes the device work. Does autoconfiguration work better with latest X packages from testing or unstable? Yes, with my latest build of the image the detection works. Thanks MS -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#487834: xserver-xorg-video-radeon: Image scaling busted with XAA on Mobility Radeon 9600
Option "XaaNoOffscreenPixmaps" seems to fix this, so presumably it should be enabled by default on this hardware. Ben. -- Ben Hutchings Never attribute to conspiracy what can adequately be explained by stupidity. signature.asc Description: This is a digitally signed message part
Bug#474106: video-vesa: does not work on i815
On Jun 20, 2008, at 6:57 AM, Brice Goglin wrote: Debian Live user wrote: Package: xserver-xorg-video-vesa Version: 1:1.3.0-1 Severity: normal File: video-vesa Because the i815 card is misdetected by the X config scripts vesa is used instead of intel driver. However, with vesa the card does not work, only garbage is displayed on the screen. Is it better with the latest X packages? With vesa 1.3.0-4 and xorg-core 1.4.1~git20080517-1 the vesa driver displays correctly 320x200 and 640x400. Larger modes do not sync so I cannot tell what picture is supposed to be there. The monitor is detected properly. Thanks MS -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#487834: xserver-xorg-video-radeon: Image scaling busted with XAA on Mobility Radeon 9600
Package: xserver-xorg-video-radeon Version: 1:6.8.191-3 Severity: important -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In Iceweasel 3 I see black rectangles in place of images that are scaled. This doesn't happen if I enable EXA, but that is currently too slow to be usable on this hardware. - -- 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 2006-11-22 22:22 /etc/X11/X -> /usr/bin/Xorg - -rwxr-xr-x 1 root root 1717748 2008-06-09 14:34 /usr/bin/Xorg Contents of /var/lib/x11/xorg.conf.roster: xserver-xorg VGA-compatible devices on PCI bus: 01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] /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 842 2008-06-24 13:39 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: # xorg.conf (X.Org X Window System server configuration file) # # 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" "gb" Option "XkbOptions""ctrl:nocaps" EndSection Section "Monitor" Identifier "LVDS" # Reported physical display size is wrong, so override it DisplaySize 284 213 Option "DPMS" EndSection Xorg X server log files on system: - -rw-r- 1 root root 42036 2007-04-25 22:42 /var/log/Xorg.1.log - -rw-r- 1 root root 57288 2007-09-23 15:33 /var/log/Xorg.2.log - -rw-r--r-- 1 root root 46473 2008-06-24 13:37 /var/log/Xorg.0.log Contents of most recent Xorg X server log file /var/log/Xorg.0.log: 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~git20080517-2) Current Operating System: Linux deadeye 2.6.25-2-686 #1 SMP Thu Jun 12 16:26:30 UTC 2008 i686 Build Date: 09 June 2008 03:18:20PM 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 Jun 24 13:37:30 2008 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (==) No screen section available. Using defaults. (**) |-->Screen "Default Screen Section" (0) (**) | |-->Monitor "" (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. (==) |-->Input Device "" (==) |-->Input Device "Generic Keyboard" (==) The core pointer device wasn't specified explicitly in the layout. Using the default mouse configuration. (==) The core keyboard device wasn't specified explicitly in the layout. Using the first keyboard device. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (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 (==) RgbPath set to "/etc/X11/rgb" (==) ModulePath set to "/usr/lib/xorg/modules" (II) Open ACPI successful (/var/run/acpid.socket) (II) Loader magic: 0x81e2560 (II) Module ABI versions: X.Org ANSI C Emulation: 0.3 X.Org Video Driver: 2.0 X.Org XInput driver : 2.0 X.Org Server Extension : 0.3 X.Org Font Renderer : 0.5 (II) Loader running on linux (II) LoadModule: "pcidata" (II) Loading /usr/lib/xorg/modules//libpcidata.so (II) Module pcidata: vendor="X.Org Foundation" compiled for 1.4.0.90, module version = 1.0.0 ABI class: X.Org Video Driver, version 2.0 (++) using VT number 7 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,3340 card 1014,0529 rev 03 class 06,00,00 hdr 00 (II) PCI: 00:01:0: chip 8086,3341 card , rev 03 class 06,04,00 hdr 01
reassign 487834 to xserver-xorg-core, forcibly merging 478277 487834
# Automatically generated email from bts, devscripts version 2.10.30 reassign 487834 xserver-xorg-core forcemerge 478277 487834 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: reassign 487834 to xserver-xorg-core, forcibly merging 478277 487834
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.30 > reassign 487834 xserver-xorg-core Bug#487834: xserver-xorg-video-radeon: Image scaling busted with XAA on Mobility Radeon 9600 Bug reassigned from package `xserver-xorg-video-radeon' to `xserver-xorg-core'. > forcemerge 478277 487834 Bug#478277: xulrunner-1.9: JPEG images used as backgrounds do not render Bug#487834: xserver-xorg-video-radeon: Image scaling busted with XAA on Mobility Radeon 9600 Bug#485939: epiphany-browser: shows corrupted homepage of my bank Bug#487146: [epiphany-browser] Display issues of certain websites Forcibly Merged 478277 485939 487146 487834. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: your mail
Processing commands for [EMAIL PROTECTED]: > forwarded 487672 https://bugs.freedesktop.org/show_bug.cgi?id=16494 Bug#487672: linux-image-2.6.26-rc7-686: freeze when closing laptop panel lid, in dual screen mode. Noted your statement that Bug has been forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=16494. > 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]
xdm: Changes to 'debian-unstable'
debian/NEWS | 30 ++ debian/changelog |4 +++- 2 files changed, 25 insertions(+), 9 deletions(-) New commits: commit ec3cd155a75dd9dc889ee24786b744b0e3eea7c8 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Tue Jun 24 16:28:12 2008 +0200 Add a NEWS entry about the xdm-auth change Warn people about XDM-AUTHORIZATION-1 cookies no longer working, thanks to Bernhard R. Link. diff --git a/debian/NEWS b/debian/NEWS index b4b1fce..54fef16 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,12 +1,26 @@ +xdm (1:1.1.8-2) unstable; urgency=low + + This version has XDM-AUTHORIZATION-1 cookies disabled. While this + fixes a couple of problems, there is a problem with left over cookies + in users' .Xauthority files. + Usually XDM-AUTHORIZATION-1 cookies from users' .Xauthority files + are removed when logging out. If they are still there when installing + this version, then this user will not be able to log in again until + removing those cookies from .Xauthority using xauth(1) or deleting the + whole .Xauthority file. (Do not do this while logged in. No application + will be able to connect to the X server after that.) + + -- Julien Cristau <[EMAIL PROTECTED]> Tue, 24 Jun 2008 16:30:47 +0200 + xdm (1:1.1.6-4) unstable; urgency=low - * As many other display managers, xdm does not pass -dpi 100 to the -X server anymore. xserver-xorg-core now uses 96 instead of 75 by -default, it should be fine for most people. -In case of problem, the DisplaySize option be used in the Monitor -section of your /etc/X11/xorg.conf to force another DPI. If you -have multiple RandR 1.2 outputs, DisplaySize should be specified -in each Monitor section. -See http://wiki.debian.org/XStrikeForce/HowToRandR12 + As many other display managers, xdm does not pass -dpi 100 to the + X server anymore. xserver-xorg-core now uses 96 instead of 75 by + default, it should be fine for most people. + In case of problem, the DisplaySize option be used in the Monitor + section of your /etc/X11/xorg.conf to force another DPI. If you + have multiple RandR 1.2 outputs, DisplaySize should be specified + in each Monitor section. + See http://wiki.debian.org/XStrikeForce/HowToRandR12 -- Brice Goglin <[EMAIL PROTECTED]> Thu, 17 Jan 2008 20:50:28 +0100 diff --git a/debian/changelog b/debian/changelog index 70043a5..22fb9e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ xdm (1:1.1.8-2) UNRELEASED; urgency=low - * Disable xdm-auth to work around an Xlib bug (closes: #486606). + * Disable xdm-auth to work around an Xlib bug (closes: #486606). Add a NEWS +entry warning people about XDM-AUTHORIZATION-1 cookies no longer working, +thanks to Bernhard R. Link. * New patch 07_openlog.diff: call openlog() in the greeter to set the service name/pid and get proper logging from pam (closes: #382037). -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: xserver-xorg-video-glide
Hi, On Wed, 2008-06-18 at 20:14:37 +0200, Brice Goglin wrote: > On Guillem's request, I've prepared a packaging of the xf86-video-glide > driver. This driver is for Voodoo 1 and 2 boards. From what I > understand, it does not manage any PCI device (so there's no > /usr/share/xserver-xorg/pci/glide.ids). And you'll get better perf if > you load the 3dfx kernel driver (so it recommends device3dfx-source). > Please somebody review the attached patch. You actually need the module for libglide2 (but you got that right in the package description). I released a new upstream version of it this morning as well, so that it builds with latest kernels with CONFIG_PCI_LEGACY disabled, and few other fixes. > Guillem or anybody having such a graphic board, you can try the driver > for i386 at: > http://people.debian.org/~bgoglin/glide/ Thanks for this! I'll be testing in the coming next days. regards, guillem -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: Re: Bug#483942: autodetection of sbus graphic cards
Processing commands for [EMAIL PROTECTED]: > forwarded 483942 https://bugs.freedesktop.org/show_bug.cgi?id=16501 Bug#483942: autodetection of sbus graphic cards Noted your statement that Bug has been forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=16501. > kthxbye Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#483942: autodetection of sbus graphic cards
forwarded 483942 https://bugs.freedesktop.org/show_bug.cgi?id=16501 kthxbye On Sun, Jun 1, 2008 at 14:05:01 +0200, Bernhard R. Link wrote: > Attached patch adds automatic detection of the graphic > driver to load for sbus devices. This allows xorg to > work on those devices without a "Device" section > and the (buggy, see #469299) autodetection in xserver-xorg's > postinst to go away. > > I've tested this only on sparc and with my sunffb[1] graphic > card, but I see no reason why this should fail for anything > else on sparc. (I think it should even be able to get the > real primary video card in case there are multiple built in). > Thanks, forwarded upstream now. Cheers, Julien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#474106: video-vesa: does not work on i815
Michal Suchanek wrote: > With vesa 1.3.0-4 and xorg-core 1.4.1~git20080517-1 the vesa driver > displays correctly 320x200 and 640x400. Larger modes do not sync so I > cannot tell what picture is supposed to be there. The monitor is > detected properly. I see. I don't know which resolution the vesa driver is supposed to support, but it's probably more than 640x400. What kind of monitor do you have? Which resolutions does it support? What's the output of xrandr? Brice -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: bug 487603 is forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=8724
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.29 > forwarded 487603 https://bugs.freedesktop.org/show_bug.cgi?id=8724 Bug#487603: xserver-xorg-video-intel: [945GM] crash on Floating Point Exception Noted your statement that Bug has been forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=8724. > 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]
xorg-server: Changes to 'debian-unstable'
debian/changelog|8 debian/patches/49_x86emu_int1a_fix.diff | 70 +++ debian/patches/series |1 hw/xfree86/modes/xf86Crtc.c | 31 ++- hw/xfree86/modes/xf86EdidModes.c| 283 ++-- hw/xfree86/modes/xf86Modes.h|3 6 files changed, 342 insertions(+), 54 deletions(-) New commits: commit 0d4a052db5bb10f82387f502977aff96684a57d3 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Tue Jun 24 20:39:52 2008 +0200 Backport patch from upstream git to fix emulation of int1A PCI BIOS services diff --git a/debian/changelog b/debian/changelog index 826002d..cae33c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,8 @@ xorg-server (2:1.4.2-1) UNRELEASED; urgency=low - inherit the preferred mode from the global configuration (so if you have Modes "800x600" in the Display subsection the server will honor it instead of ignoring it) + * Backport patch from upstream git to fix emulation of int1A PCI BIOS +services (closes: #404885). Thanks, Robert de Bath! [ Brice Goglin ] * Update patches to not require -p0, closes: #485185. diff --git a/debian/patches/49_x86emu_int1a_fix.diff b/debian/patches/49_x86emu_int1a_fix.diff new file mode 100644 index 000..1628a46 --- /dev/null +++ b/debian/patches/49_x86emu_int1a_fix.diff @@ -0,0 +1,70 @@ +commit 9e5b3deafb97ec1f83e6bfe067bc68df7385bc6a +Author: Adam Jackson <[EMAIL PROTECTED]> +Date: Tue Jun 24 14:08:04 2008 -0400 + +Bug #11842: Fix emulation of int1A PCI BIOS services. + +Use only %di to name the PCI register to read/write, rather than %edi. +DOS is only expecting the base PCI config space anyway, and the BIOS +might be using the high bits of %edi. + +backported to pre-pciaccess, fixes #404885. + +Index: xorg-server/hw/xfree86/int10/xf86int10.c +=== +--- xorg-server.orig/hw/xfree86/int10/xf86int10.c 2008-06-24 20:31:06.0 +0200 xorg-server/hw/xfree86/int10/xf86int10.c 2008-06-24 20:34:46.0 +0200 +@@ -667,7 +667,7 @@ + return 1; + case 0xb108: + if ((tag = findPci(pInt, X86_EBX)) != PCI_NOT_FOUND) { +- X86_CL = pciReadByte(tag, X86_EDI); ++ X86_CL = pciReadByte(tag, X86_DI); + X86_EAX = X86_AL | (SUCCESSFUL << 8); + X86_EFLAGS &= ~((unsigned long)0x01); /* clear carry flag */ + } else { +@@ -680,7 +680,7 @@ + return 1; + case 0xb109: + if ((tag = findPci(pInt, X86_EBX)) != PCI_NOT_FOUND) { +- X86_CX = pciReadWord(tag, X86_EDI); ++ X86_CX = pciReadWord(tag, X86_DI); + X86_EAX = X86_AL | (SUCCESSFUL << 8); + X86_EFLAGS &= ~((unsigned long)0x01); /* clear carry flag */ + } else { +@@ -693,7 +693,7 @@ + return 1; + case 0xb10a: + if ((tag = findPci(pInt, X86_EBX)) != PCI_NOT_FOUND) { +- X86_ECX = pciReadLong(tag, X86_EDI); ++ X86_ECX = pciReadLong(tag, X86_DI); + X86_EAX = X86_AL | (SUCCESSFUL << 8); + X86_EFLAGS &= ~((unsigned long)0x01); /* clear carry flag */ + } else { +@@ -706,7 +706,7 @@ + return 1; + case 0xb10b: + if ((tag = findPci(pInt, X86_EBX)) != PCI_NOT_FOUND) { +- pciWriteByte(tag, X86_EDI, X86_CL); ++ pciWriteByte(tag, X86_DI, X86_CL); + X86_EAX = X86_AL | (SUCCESSFUL << 8); + X86_EFLAGS &= ~((unsigned long)0x01); /* clear carry flag */ + } else { +@@ -719,7 +719,7 @@ + return 1; + case 0xb10c: + if ((tag = findPci(pInt, X86_EBX)) != PCI_NOT_FOUND) { +- pciWriteWord(tag, X86_EDI, X86_CX); ++ pciWriteWord(tag, X86_DI, X86_CX); + X86_EAX = X86_AL | (SUCCESSFUL << 8); + X86_EFLAGS &= ~((unsigned long)0x01); /* clear carry flag */ + } else { +@@ -732,7 +732,7 @@ + return 1; + case 0xb10d: + if ((tag = findPci(pInt, X86_EBX)) != PCI_NOT_FOUND) { +- pciWriteLong(tag, X86_EDI, X86_ECX); ++ pciWriteLong(tag, X86_DI, X86_ECX); + X86_EAX = X86_AL | (SUCCESSFUL << 8); + X86_EFLAGS &= ~((unsigned long)0x01); /* clear carry flag */ + } else { diff --git a/debian/patches/series b/debian/patches/series index 2b0c641..6132c6c 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -21,6 +21,7 @@ 46_reduce_wakeups_from_smart_scheduler.patch #47_fbdevhw_magic_numbers.diff 48_xaa_nooffscreenpixmaps.diff +49_x86emu_int1a_fix.diff 91_ttf2pt1 91_ttf2pt1_updates 92_xprint-security-holes-fix.patch commit 9af54c19ab186dc927e19bf4c56a9ac9f949fc0e Author: Julien Cristau <[EMAIL PROTECTED]> Date: Mon Jun 23 20:59:49 2008 +0200 update changelog for cherry-picked patches various fixes in hw/xfree86/modes/, mostly quirks diff --git a/debian/changelog b/debian/changelog index 7eb12a3..826002d 100644 --- a/debian/change
Processed: setting package to xdmx-tools xvfb xnest xserver-xorg-core xserver-xorg-core-dbg xserver-xorg-dev xprint xdmx xprint-common xorg-server xserver-xephyr ...
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.30 > # via tagpending > # > # xorg-server (2:1.4.2-1) UNRELEASED; urgency=low > # > # * Backport patch from upstream git to fix emulation of int1A PCI BIOS > #services (closes: #404885). Thanks, Robert de Bath! > # > package xdmx-tools xvfb xnest xserver-xorg-core xserver-xorg-core-dbg > xserver-xorg-dev xprint xdmx xprint-common xorg-server xserver-xephyr Ignoring bugs not assigned to: xdmx-tools xvfb xserver-xorg-core xnest xserver-xorg-core-dbg xserver-xorg-dev xprint xdmx xorg-server xprint-common xserver-xephyr > tags 404885 + pending Bug#404885: lockup and illegal extended x86 opcode There were no tags set. Bug#428796: i810 and X-server hard-lock Bug#433144: xserver-xorg: VESA driver fails to load with: ILLEGAL EXTENDED X86 OPCODE! Tags added: pending > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#404885: setting package to xdmx-tools xvfb xnest xserver-xorg-core xserver-xorg-core-dbg xserver-xorg-dev xprint xdmx xprint-common xorg-server xserver-xephyr ...
# Automatically generated email from bts, devscripts version 2.10.30 # via tagpending # # xorg-server (2:1.4.2-1) UNRELEASED; urgency=low # # * Backport patch from upstream git to fix emulation of int1A PCI BIOS #services (closes: #404885). Thanks, Robert de Bath! # package xdmx-tools xvfb xnest xserver-xorg-core xserver-xorg-core-dbg xserver-xorg-dev xprint xdmx xprint-common xorg-server xserver-xephyr tags 404885 + pending -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#487877: Italian translation not complete
Subject: xorg: Italian translation not complete Package: xorg Version: 1:7.3+10 Severity: wishlist Tags: l10n The italian translation of the xorg package in the installer is not complete. I'm attaching the updated translation. -- System Information: Debian Release: lenny/sid APT prefers hardy-updates APT policy: (500, 'hardy-updates'), (500, 'hardy-security'), (500, 'hardy') Architecture: i386 (i686) Kernel: Linux 2.6.24-19-generic (SMP w/2 CPU cores) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- Milo Casagrande <[EMAIL PROTECTED]> xorg_po_it.po.gz Description: GNU Zip compressed data signature.asc Description: Questa è una parte del messaggio firmata digitalmente
xorg: Changes to 'debian-unstable'
debian/changelog |7 -- debian/po/it.po | 188 +-- 2 files changed, 49 insertions(+), 146 deletions(-) New commits: commit 3c3dbe229049476dff45eab3f8a8dd1671af297b Author: Julien Cristau <[EMAIL PROTECTED]> Date: Tue Jun 24 21:52:08 2008 +0200 Updated Italian debconf translation diff --git a/debian/changelog b/debian/changelog index ecaac71..ef0abe8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ xorg (1:7.3+13) UNRELEASED; urgency=low - [ Christian Perrier ] [ Debconf translations] * Malayalam. Closes: #486830 + * Italian. Closes: #487877 [ Brice Goglin ] * Remove obsolete xserver-xorg startup links, closes: #487453. @@ -37,6 +37,7 @@ xorg (1:7.3+12) unstable; urgency=low * Czech. Closes: #486358, #486456, #486472 * Dutch. Closes: #486459 * Turkish. Closes: #486462 + * Romanian. Closes: #486636 [ Julien Cristau ] * Don't recommend the 'sun' xkb rule set, they're handled by 'xorg' now, @@ -45,16 +46,12 @@ xorg (1:7.3+12) unstable; urgency=low * Re-add the xutils-dev dependency to xutils. There are still too many packages build-depending on xutils and expecting imake to be available. We'll drop it again after the lenny release (closes: #485184). - * Debconf translations: * xserver-xorg-video-all: don't depend on the via driver on non-x86 architectures; change the via dependency on x86 to openchrome | via. [ Brice Goglin ] * Add SH4 support script, thanks Nobuhiro Iwamatsu, closes: #473582. - [ Christian Perrier ] - * Romanian. Closes: #486636 - -- Brice Goglin <[EMAIL PROTECTED]> Tue, 17 Jun 2008 21:56:20 +0200 xorg (1:7.3+11) unstable; urgency=low diff --git a/debian/po/it.po b/debian/po/it.po index 1161cd2..26dcd40 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -10,6 +10,7 @@ # Luca Monducci, 2004 # Danilo Piazzalunga, 2004-2005 # Stefano Canepa, 2006, 2007 +# Milo Casagrande, 2008 # # This file is distributed under the same license as the xorg-x11 package. # Please see debian/copyright. @@ -31,8 +32,8 @@ msgstr "" "Project-Id-Version: xorg-x11 6.8.2.dfsg.1-10\n" "Report-Msgid-Bugs-To: [EMAIL PROTECTED]" "POT-Creation-Date: 2008-06-08 22:20+0200\n" -"PO-Revision-Date: 2007-04-25 21:37+0200\n" -"Last-Translator: Stefano Canepa <[EMAIL PROTECTED]>\n" +"PO-Revision-Date: 2008-06-17 22:22+0200\n" +"Last-Translator: Milo Casagrande <[EMAIL PROTECTED]>\n" "Language-Team: debian-l10n-italian <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,9 +51,7 @@ msgstr "Driver per il server X:" msgid "" "For the X Window System graphical user interface to operate correctly, it is " "necessary to select a video card driver for the X server." -msgstr "" -"Perché l'interfaccia grafica del sistema X Window funzioni correttamente, è " -"necessario scegliere un driver della scheda video per il server X." +msgstr "Affinché l'interfaccia grafica del sistema X Window funzioni correttamente, è necessario scegliere un driver della scheda video per il server X." #. Type: select #. Description @@ -108,10 +107,7 @@ msgid "" "Users of PowerPC machines, and users of any computer with multiple video " "devices, should specify the BusID of the video card in an accepted bus-" "specific format." -msgstr "" -"Gli utenti di macchine PowerPC o di qualsiasi computer con dispositivi video " -"multipli devono specificare il BusID della scheda video in un formato " -"specifico, diverso a seconda del tipo di bus." +msgstr "Gli utenti di computer PowerPC o di qualsiasi computer con molteplici dispositivi video devono specificare il BusID della scheda video in un formato specifico basato sul tipo di bus." #. Type: string #. Description @@ -137,9 +133,7 @@ msgstr "" msgid "" "You may wish to use the \"lspci\" command to determine the bus location of " "your PCI, AGP, or PCI-Express video card." -msgstr "" -"Si può usare il comando «lspci» per determinare la collocazione sul bus della " -"scheda video PCI, AGP o PCI-Express." +msgstr "È possibile usare il comando «lspci» per determinare il bus della scheda video PCI, AGP o PCI-Express." #. Type: string #. Description @@ -169,23 +163,13 @@ msgstr "Set di regole XKB da usare:" msgid "" "For the X server to handle the keyboard correctly, an XKB rule set must be " "chosen." -msgstr "" -"Perché il server X funzioni correttamente, occorre selezionare il set di " -"regole XKB." +msgstr "Affinché il server X funzioni correttamente, occorre selezionare il set di regole XKB." -# NdT: Con le versioni di X da woody in poi, anche gli italiani dovrebbero -# lasciare vuoto questo campo. -# "questo campo." #. Type: string #. Description #: ../xserver-xorg.templates:6001 -#, fuzzy -#| msgid "" -#| "Users of U.S. English keyboards should generally leave this entry blank." msgid "Users of most keyboards should enter \"xorg\"." -msgstr "" -"Gli utenti di tasti
Bug#487877: setting package to xorg xlibmesa-gl-dev xserver-xorg-input-all xserver-xorg libglu1-xorg-dev xbase-clients xserver-xorg-video-all xlibmesa-gl xlibmesa-glu xutils libglu1-xorg xorg-dev x11-
# Automatically generated email from bts, devscripts version 2.10.30 # via tagpending # # xorg (1:7.3+13) UNRELEASED; urgency=low # # * Italian. Closes: #487877 # package xorg xlibmesa-gl-dev xserver-xorg-input-all xserver-xorg libglu1-xorg-dev xbase-clients xserver-xorg-video-all xlibmesa-gl xlibmesa-glu xutils libglu1-xorg xorg-dev x11-common tags 487877 + pending -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: setting package to xorg xlibmesa-gl-dev xserver-xorg-input-all xserver-xorg libglu1-xorg-dev xbase-clients xserver-xorg-video-all xlibmesa-gl xlibmesa-glu xutils libglu1-xorg xorg-dev x11-c
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.30 > # via tagpending > # > # xorg (1:7.3+13) UNRELEASED; urgency=low > # > # * Italian. Closes: #487877 > # > package xorg xlibmesa-gl-dev xserver-xorg-input-all xserver-xorg > libglu1-xorg-dev xbase-clients xserver-xorg-video-all xlibmesa-gl > xlibmesa-glu xutils libglu1-xorg xorg-dev x11-common Ignoring bugs not assigned to: xorg xlibmesa-gl-dev xserver-xorg xserver-xorg-input-all libglu1-xorg-dev xbase-clients xserver-xorg-video-all xlibmesa-gl xlibmesa-glu xutils libglu1-xorg xorg-dev x11-common > tags 487877 + pending Bug#487877: Italian translation not complete Tags were: l10n Tags added: pending > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: xorg: Changes to 'debian-unstable'
On Sun, Jun 22, 2008 at 09:01:15 +, Brice Goglin wrote: > commit 9d677543d31d9da34efc4cfa4e9575f49c296021 > Author: Brice Goglin <[EMAIL PROTECTED]> > Date: Sun Jun 22 10:18:13 2008 +0200 > > Remove obsolete xserver-xorg startup links > > diff --git a/debian/xserver-xorg.postinst.in b/debian/xserver-xorg.postinst.in > index 9cd8ac1..55d4643 100644 > --- a/debian/xserver-xorg.postinst.in > +++ b/debian/xserver-xorg.postinst.in > @@ -1003,6 +1003,9 @@ case "$1" in > if dpkg --compare-versions "$2" lt-nl "1:7.3+11"; then >remove_conffile_commit "/etc/init.d/xserver-xorg" > fi > +if dpkg --compare-versions "$2" lt-nl "1:7.3+13"; then > + update-rc.d -f xserver-xorg remove > +fi > ;; > esac Is the -f necessary here? If the script doesn't get removed by remove_conffile_commit then maybe the links should stick around too? Cheers, Julien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#465864: xserver-xorg-video-ati: xserver freezes the computer on startup
Tags: fixed-upstream On Monday 23 June 2008 21:55:21 Alex Deucher wrote: > On Sun, Jun 22, 2008 at 10:47 AM, Jiří Paleček <[EMAIL PROTECTED]> wrote: > > Hello, > > > > I prepared a new (better) version of the patch. Please consider applying > > it or otherwise fixing the bug. > > > > Some comments: > > > > The first patch causes abort instead of hangs when PLL computation fails. > > > > The second changes the algorithm so it doesn't miss any solution which > > might be better than current and finds a solution iff there is one. > > > > The third patch removes a condition which seems to be bogus for me - it > > cannot force pll->reference_div in the solution, but will probably poison > > the solution with a bad solution having good ref_div, for the next > > ref_div to override it with a better solution. > > Thanks for doing this! You're welcome. It wouldn't have been possible without your suggestion. > I've pushed a variation on this set of patches > to ati git master (72feaa37ea07620f5f2ead438dbc72a1c8883cd3). Please > let me know if you are still having problems. Looking (and working) good. Just some non-issues (at least for me): + if ((best_vco == 0 && error < best_error) || + (best_vco != 0 && +(error < best_error - 100 || + (abs(error - best_error) < 100 && vco_diff < best_vco_diff { Is the "100" on the previous line 100 meaning 100 Hz, or a relict from the "10kHz-unit" times (meaning 1 MHz)? + } else if (current_freq == freq) { Can this ever work? I mean, if the condition is true, error is zero so the previous "if" likely matched. How should the preference for low ref_divs work? For example, I have pixelclock of 175 MHz, which is 2.7 MHz/27(ref)*350(feedback)/2 Would it be better to have 2.7 MHz/3*194/1 = 174.6 MHz? Last, would it be possible to make it also consider the maximum pixelclock of the CRT (for example, if you want the maximum pixelclock of the CRT, the algorithm might get a higher frequency)? I don't think any of these are important, they're just suggestions. Regards Jiri Palecek -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#151780: Want a better job? We can help you in under 20 days
Degrees issued for previous experience & education So close, yet so far, complete your degree in 35 days Call 24/7 on For US: 1-419-735-9250 Outside US: +1-419-735-9250 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#465864: xserver-xorg-video-ati: xserver freezes the computer on startup
2008/6/24 Jiri Palecek <[EMAIL PROTECTED]>: > Tags: fixed-upstream > > On Monday 23 June 2008 21:55:21 Alex Deucher wrote: >> On Sun, Jun 22, 2008 at 10:47 AM, Jiří Paleček <[EMAIL PROTECTED]> wrote: >> > Hello, >> > >> > I prepared a new (better) version of the patch. Please consider applying >> > it or otherwise fixing the bug. >> > >> > Some comments: >> > >> > The first patch causes abort instead of hangs when PLL computation fails. >> > >> > The second changes the algorithm so it doesn't miss any solution which >> > might be better than current and finds a solution iff there is one. >> > >> > The third patch removes a condition which seems to be bogus for me - it >> > cannot force pll->reference_div in the solution, but will probably poison >> > the solution with a bad solution having good ref_div, for the next >> > ref_div to override it with a better solution. >> >> Thanks for doing this! > > You're welcome. It wouldn't have been possible without your suggestion. > >> I've pushed a variation on this set of patches >> to ati git master (72feaa37ea07620f5f2ead438dbc72a1c8883cd3). Please >> let me know if you are still having problems. > > Looking (and working) good. Just some non-issues (at least for me): > > + if ((best_vco == 0 && error < best_error) || > + (best_vco != 0 && > +(error < best_error - 100 || > + (abs(error - best_error) < 100 && vco_diff < > best_vco_diff { > > Is the "100" on the previous line 100 meaning 100 Hz, or a relict from the > "10kHz-unit" times (meaning 1 MHz)? 100 Hz. > > + } else if (current_freq == freq) { > > Can this ever work? I mean, if the condition is true, error is zero so the > previous "if" likely matched. How should the preference for low ref_divs work? It only happens if the frequency is an exact match and there are several possible combinations available. The error will be 0, but the vco diff becomes the same as the vco so the first part of that "if" block fails. It happens more often on newer cards as they have a wider range of available dividers. For example on some of my cards, there are quite a few matches for 65 Mhz (27 Mhz ref clk): 260, 6, 18 (feedback, ref, post) 650, 27, 10 715, 27, 11 260, 9, 12 650, 18, 15 130, 3, 18 etc. For whatever reason, monitors seem to prefer the clk generated with a lower ref divider, given these choices. > For example, I have pixelclock of 175 MHz, which is > > 2.7 MHz/27(ref)*350(feedback)/2 > > Would it be better to have > > 2.7 MHz/3*194/1 = 174.6 MHz? > hard to say. Generally, an exact match would be preferred. The flag really is really just to help choose a preferred set of dividers when you have more than one match. Monitors (especially DVI/HDMI) are rather picky. > Last, would it be possible to make it also consider the maximum pixelclock of > the CRT (for example, if you want the maximum pixelclock of the CRT, the > algorithm might get a higher frequency)? The algorithm is limited by the range of clocks that the pll is able to produce. Presumably mode validation has culled out any modes that the monitor is not able to handle. Alex > > I don't think any of these are important, they're just suggestions. > > Regards >Jiri Palecek > > > > > >
Bug#465864: xserver-xorg-video-ati: xserver freezes the computer on startup
On Tue, 24 Jun 2008 23:21:09 +0200, Alex Deucher <[EMAIL PROTECTED]> wrote: 2008/6/24 Jiri Palecek <[EMAIL PROTECTED]>: Last, would it be possible to make it also consider the maximum pixelclock of the CRT (for example, if you want the maximum pixelclock of the CRT, the algorithm might get a higher frequency)? The algorithm is limited by the range of clocks that the pll is able to produce. Presumably mode validation has culled out any modes that the monitor is not able to handle. True, but I was thinking about cases where monitor can handle some (upper limit) frequency, but the pll cannot produce it, and can produce some higher frequency (which can be the best match). PS: As I think about it once more, I think the line + max_ref_div = 2*max_ref_div - min_ref_div; is an error. I added it to ensure the algorithm wouldn't cut the range of ref_divs if they are all valid, but now I think it's unneeded and errorneous. Regards Jiri Palecek -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Bug #483819
Hello, I do not think this bug should have been closed as it is not fixed in testing where the issue existed and still exists. The workaround of using upstream packages will fix the problem but it should not be necessary. Since a number of lenny users who use compiz-fusion will have upgraded to the upstream packages from sid, why not migrate those packages to lenny for those who did not and are still waiting for a patch? Unless there are major stability issues (in which case it would make no more sense to use those packages than the ones in the lenny repository) there is no reason not to upgrade the packages in the testing repository. Kevin _ Find hidden words, unscramble celebrity names, or try the ultimate crossword puzzle with Live Search Games. Play now! http://g.msn.ca/ca55/212
Bug#487834: xserver-xorg-video-radeon: Image scaling busted with XAA on Mobility Radeon 9600
On Tue, Jun 24, 2008 at 8:54 AM, Ben Hutchings <[EMAIL PROTECTED]> wrote: > Option "XaaNoOffscreenPixmaps" seems to fix this, so presumably it > should be enabled by default on this hardware. This is a bug in XAA, not radeon. It happens with all drivers. The default in the xserver in git now is to disable offscreen pixmaps with XAA. Alex > > Ben. > > -- > Ben Hutchings > Never attribute to conspiracy what can adequately be explained by stupidity. > > ___ > xorg-driver-ati mailing list > [EMAIL PROTECTED] > http://lists.x.org/mailman/listinfo/xorg-driver-ati > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#465864: xserver-xorg-video-ati: xserver freezes the computer on startup
On Tue, Jun 24, 2008 at 6:30 PM, Jiří Paleček <[EMAIL PROTECTED]> wrote: > On Tue, 24 Jun 2008 23:21:09 +0200, Alex Deucher <[EMAIL PROTECTED]> > wrote: > >> 2008/6/24 Jiri Palecek <[EMAIL PROTECTED]>: >>> >>> Last, would it be possible to make it also consider the maximum >>> pixelclock of >>> the CRT (for example, if you want the maximum pixelclock of the CRT, the >>> algorithm might get a higher frequency)? >> >> The algorithm is limited by the range of clocks that the pll is able >> to produce. Presumably mode validation has culled out any modes that >> the monitor is not able to handle. > > True, but I was thinking about cases where monitor can handle some (upper > limit) frequency, but the pll cannot produce it, and can produce some higher > frequency (which can be the best match). > Ah, I see, > PS: As I think about it once more, I think the line > > + max_ref_div = 2*max_ref_div - min_ref_div; > > is an error. I added it to ensure the algorithm wouldn't cut the range of > ref_divs if they are all valid, but now I think it's unneeded and > errorneous. Pushed! thanks. Alex
xorg: Changes to 'ubuntu'
debian/changelog |6 debian/local/dexconf | 19 - debian/po/be.po | 628 + debian/po/id.po | 649 +++ debian/po/ku.po | 521 ++ debian/scripts/vars.sh4 | 10 debian/xserver-xorg.install |2 debian/xserver-xorg.manpages |1 debian/xutils.postinst.in| 35 ++ debian/xutils.postrm.in | 31 ++ debian/xutils.preinst.in | 31 ++ 11 files changed, 1912 insertions(+), 21 deletions(-) New commits: commit 679ceaebd45f2b3f8a460117b511395492b0852e Author: Bryce Harrington <[EMAIL PROTECTED]> Date: Tue Jun 24 19:12:40 2008 -0700 Merge with debian diff --git a/debian/po/be.po b/debian/po/be.po new file mode 100644 index 000..926cfe7 --- /dev/null +++ b/debian/po/be.po @@ -0,0 +1,628 @@ +# translation of xorg_be.po to Belarusian +# Pavel Piatruk <[EMAIL PROTECTED]>, 2008. +# Version xorg 1:7.3+12 +msgid "" +msgstr "" +"Project-Id-Version: xorg_be\n" +"Report-Msgid-Bugs-To: [EMAIL PROTECTED]" +"POT-Creation-Date: 2008-06-24 18:55-0700\n" +"PO-Revision-Date: 2008-06-09 12:18+0300\n" +"Last-Translator: Pavel Piatruk <[EMAIL PROTECTED]>\n" +"Language-Team: Belarusian <[EMAIL PROTECTED]>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: select +#. Description +#: ../xserver-xorg.templates:2001 +msgid "X server driver:" +msgstr "Драйвер X-сервера:" + +#. Type: select +#. Description +#: ../xserver-xorg.templates:2001 +msgid "" +"For the X Window System graphical user interface to operate correctly, it is " +"necessary to select a video card driver for the X server." +msgstr "" +"Для работы графічнага інтэрфейсу X Window System трэба выбраць драйвер відэа-" +"карты для X сервера." + +#. Type: select +#. Description +#: ../xserver-xorg.templates:2001 +msgid "" +"Drivers are typically named for the video card or chipset manufacturer, or " +"for a specific model or family of chipsets." +msgstr "" +"Назвы драйвераў звычайна паходзяць ад відэа-карты ці вытворцы мікрасхем, або " +"ад найменавання дакладнай модели ці сямейства мікрасхем." + +#. Type: boolean +#. Description +#: ../xserver-xorg.templates:3001 +msgid "Use kernel framebuffer device interface?" +msgstr "Ці выкарыстоўваць framebuffer ядра?" + +#. Type: boolean +#. Description +#: ../xserver-xorg.templates:3001 +msgid "" +"Rather than communicating directly with the video hardware, the X server may " +"be configured to perform some operations, such as video mode switching, via " +"the kernel's framebuffer driver." +msgstr "" +"Замест таго, каб звяртацца наўпрост да відэа-карты, X-сервер можа быць " +"наладжаны на працу з экранным буферам (framebuffer) ядра Linux для такіх " +"аперацый, як пераключэнне відэарэжыму." + +#. Type: boolean +#. Description +#: ../xserver-xorg.templates:3001 +msgid "" +"In theory, either approach should work, but in practice, sometimes one does " +"and the other does not. Enabling this option is the safe bet, but feel free " +"to turn it off if it appears to cause problems." +msgstr "" +"Тэарэтычна абодва спосабы павінны працаваць, але практычна адзін можа " +"працаваць, а другі не. Задзейнічанне гэтай магчымасці - бяспечнае рашэнне, " +"але, калі праз гэта займееце праблемы, можаце яе адключць." + +#. Type: string +#. Description +#: ../xserver-xorg.templates:4001 +msgid "Video card's bus identifier:" +msgstr "Ідэнтыфікатар шыны відэа-карты:" + +#. Type: string +#. Description +#: ../xserver-xorg.templates:4001 +msgid "" +"Users of PowerPC machines, and users of any computer with multiple video " +"devices, should specify the BusID of the video card in an accepted bus-" +"specific format." +msgstr "" +"Карыстальнікі кампутараў PowerPC або кампутараў з некалькімі відэа-картами " +"павінны ўказаць ідэнтыфікатар BusID шыны відэа-карты ў дапушчальным фармаце." + +#. Type: string +#. Description +#: ../xserver-xorg.templates:4001 +msgid "Examples:" +msgstr "Узоры:" + +#. Type: string +#. Description +#: ../xserver-xorg.templates:4001 +msgid "" +"For users of multi-head setups, this option will configure only one of the " +"heads. Further configuration will have to be done manually in the X server " +"configuration file, /etc/X11/xorg.conf." +msgstr "" +"На сістэмах з некалькімі маніторамі гэта наладзіць толькі адзін з д іх. " +"Далейшую наладку мусіце рабіць уручную ў файле /etc/X11/xorg.conf." + +#. Type: string +#. Description +#: ../xserver-xorg.templates:4001 +msgid "" +"You may wish to use the \"lspci\" command to determine the bus location of " +"your PCI, AGP, or PCI-Express video card." +msgstr "" +"Вы можаце скарыстаць праграму \"lspci\", каб вызначыць знаходжанне шыны " +"вашай PCI, AGP або PCI-Express відэа-карты." + +#. Type: string +#. Description +#: ../xserver-xorg.templates:4001 +msgid "" +"When possible,
Bug#487904: xserver-xorg-video-nv: Open ACPI failed
Package: xserver-xorg-video-nv Version: 1:2.1.9-1 Severity: normal Without the acpid package installed, /var/log/Xorg.0.log is filled with (WW) Open ACPI failed (/var/run/acpid.socket) (Connection refused) If that's the case, shouldn't xserver-xorg-video-nv depend on acpid ? Regards, Ryo -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.22-2-686 (SMP w/4 CPU cores) Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/bash Versions of packages xserver-xorg-video-nv depends on: ii libc6 2.7-10 GNU C Library: Shared libraries ii xserver-xor 2:1.4.1~git20080517-2~lenny1 Xorg X server - core server xserver-xorg-video-nv recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xorg: Changes to 'ubuntu'
debian/apport/xorg-server.py | 61 - debian/apport/xserver-xorg-core.py | 61 + debian/changelog | 177 debian/control | 43 - debian/local/dexconf | 48 - debian/po/ar.po| 563 +-- debian/po/bg.po| 83 +- debian/po/bs.po| 89 +- debian/po/ca.po| 616 +--- debian/po/cs.po| 195 ++--- debian/po/da.po| 90 +- debian/po/de.po| 91 +- debian/po/dz.po| 92 +- debian/po/el.po| 95 +- debian/po/es.po| 97 +- debian/po/eu.po| 679 ++ debian/po/fi.po| 90 +- debian/po/fr.po| 624 +--- debian/po/gl.po| 80 +- debian/po/he.po| 513 + debian/po/hr.po| 88 +- debian/po/hu.po| 75 +- debian/po/it.po| 95 +- debian/po/ja.po| 593 +--- debian/po/km.po| 90 +- debian/po/ko.po| 73 + debian/po/lt.po| 90 +- debian/po/ml.po| 89 +- debian/po/mr.po| 93 +- debian/po/nb.po| 87 +- debian/po/ne.po| 90 +- debian/po/nl.po| 110 +- debian/po/nn.po| 88 +- debian/po/pl.po| 186 ++--- debian/po/pt.po| 83 +- debian/po/pt_BR.po | 89 +- debian/po/ro.po| 1371 +++-- debian/po/ru.po| 85 +- debian/po/sk.po| 78 +- debian/po/sq.po| 94 +- debian/po/sv.po| 97 +- debian/po/ta.po| 78 +- debian/po/templates.pot| 27 debian/po/th.po| 119 +-- debian/po/tr.po| 94 +- debian/po/vi.po| 598 +--- debian/po/wo.po| 97 +- debian/po/zh_CN.po | 72 + debian/po/zh_TW.po | 86 +- debian/rules | 11 debian/scripts/vars.alpha |2 debian/scripts/vars.amd64 |3 debian/scripts/vars.arm|2 debian/scripts/vars.armeb |2 debian/scripts/vars.armel |2 debian/scripts/vars.hppa |2 debian/scripts/vars.hurd-i386 |2 debian/scripts/vars.i386 |2 debian/scripts/vars.ia64 |2 debian/scripts/vars.kfreebsd-amd64 |2 debian/scripts/vars.kfreebsd-i386 |2 debian/scripts/vars.m32r |2 debian/scripts/vars.m68k |2 debian/scripts/vars.mips |2 debian/scripts/vars.mipsel |2 debian/scripts/vars.powerpc|2 debian/scripts/vars.ppc64 |2 debian/scripts/vars.sparc |2 debian/x11-common.init | 10 debian/x11-common.install |2 debian/x11-common.manpages |1 debian/x11-common.preinst.in | 12 debian/x11-common.templates| 13 debian/xserver-xorg.postinst.in| 15 debian/xserver-xorg.postrm.in |8 debian/xserver-xorg.preinst.in |8 debian/xserver-xorg.templates |6 debian/xsfbs/xsfbs.mk | 82 -- debian/xsfbs/xsfbs.sh | 387 +- 79 files changed, 3331 insertions(+), 6563 deletions(-) New commits: commit b06f5712d92bf4b51170b74f58bb65e1a60c4f5d Author: Bryce Harrington <[EMAIL PROTECTED]> Date: Tue Jun 24 20:57:09 2008 -0700 Merge with debian. Rename apport script (it's not catching crashes so far) diff --git a/debian/apport/xorg-server.py b/debian/apport/xorg-server.py deleted file mode 100644 index b193df6..000 --- a/debian/apport/xorg-server.py +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/python - -'''Xorg Apport interface - -Copyright (C) 2007 Canonical Ltd. -Author: Bryce Harrington <[EMAIL PROTECTED]> - -This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2 of the License, or (at your -option) any later version. See http://www.gnu.org/copyleft/gpl.html for -the full text of the license. -''' - -import os.path -import subprocess - -XORG_CONF = '/etc/X11/xorg.conf' -XORG_LOG = '/var/log/Xorg.0.log' - -def add_info(report): -# xorg.conf -try: -report['XorgConf'] = open(XORG_CONF).read() -except IOError: -pass - -# Xorg.0.log -try: -report['XorgLog'] = open(XORG_LOG).read() -except IOErro
xorg: Changes to 'ubuntu'
debian/changelog | 122 +++ 1 file changed, 61 insertions(+), 61 deletions(-) New commits: commit 4f31dd9218cb90675f5f36e856865249f6829898 Author: Bryce Harrington <[EMAIL PROTECTED]> Date: Tue Jun 24 20:59:28 2008 -0700 Fix formatting diff --git a/debian/changelog b/debian/changelog index d6b8bbb..876239a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,67 +1,67 @@ xorg (1:7.3+12ubuntu1) intrepid; urgency=low * Merge from debian unstable, remaining changes: - - apport/xorg-server-core.py, x11-common.install: -+ apport hook for xorg-server crashes - - control: -+ Change maintainer address. -+ xserver-xorg: Recommends displayconfig-gtk and laptop-detect -+ Move xorg-docs Recommends to Suggests, because xorg-docs is in - universe. -+ Add a dependency to xserver-xorg for each binary built to save - disk/livecd space. -+ Add xqbiff (<= 0.75-4) to the list of x11-common Conflicts. -+ Add replaces for xinit since we now ship Xsession from x11-common. - Ditto for xrgb as we ship rgb.txt in x11-common. -+ Add an epoch to the "x11-common Replaces xrgb" version. - (LP: #212672) -+ xserver-xorg needs to Depend on mdetect instead of Recommends. - - local/Failsafe/*, x11-common.install: -+ Bulletproof-X. - - local/Xsession: -+ If ~/.xsession-errors is bigger than 0.5MiB, truncate it to the last - 0.5MiB to avoid having it grow indefinitively. (This does not happen - with gdm anyway since gdm cleans the file on login). - - local/dexconf: -+ Added support for vmmouse_detect (if present) to override mouse - driver with vmware. Depends on mdetect. - (LP: #216667, #216276, #197337) -+ Add extra bits for ps3fb xorg.conf. (LP: #230091) -+ Add CorePointer to the default mouse section, otherwise - the server defaults are used. (LP: #197337) -+ dexconf: Bring Device back to the Screen-section, nvidia-settings - and aticonfig need that. (LP: #181405) -+ Add customizations to detect if running in KVM environment - (CPU = "QEMU") and specify the H/V rates, DefaultDepth, etc. - - local/xserver-wrapper.c: -+ Stop handling -config specifically in the wrapper, as Xorg now - handles this itself. - - rules: -+ Symlink the doc directories to xserver-xorg, explicitly remove the - doc directories on upgrade for the now symlinked doc - directories, to save disk/livecd space. - - scripts/vars.amd64: -+ Add vmmouse. - - scripts/vars.i386: -+ Add vmmouse. -+ Add xserver-xorg-video-psb. - - scripts/vars.lpia: -+ Copied from vars.i386. - - x11-common.install: -+ Add installation of apport hooks and bulletproof-X scripts - - xserver-xorg.postinst.in: -+ Skip video card autodetection if xforcevesa is set. -* control: - - Drop Ubuntu addition of xserver-xorg-driver-all (obsolete) -* local/dexconf: - + Drop synaptics section and ServerLayout line to re-enable -input-hotplug (Reverts LP: #173411) -* x11-common.preinst.in, x11-common.templates: - + Drop ubuntu addition to not fail if /usr/X11R6/bin is not empty -but move it away instead and tell the user about it -since it was only needed for Dapper->Hardy upgrades. (LP: 217724) - - -- Bryce Harrington <[EMAIL PROTECTED]> Tue, 24 Jun 2008 19:36:06 -0700 +- apport/xorg-server-core.py, x11-common.install: + + apport hook for xorg-server crashes +- control: + + Change maintainer address. + + xserver-xorg: Recommends displayconfig-gtk and laptop-detect + + Move xorg-docs Recommends to Suggests, because xorg-docs is in +universe. + + Add a dependency to xserver-xorg for each binary built to save +disk/livecd space. + + Add xqbiff (<= 0.75-4) to the list of x11-common Conflicts. + + Add replaces for xinit since we now ship Xsession from x11-common. +Ditto for xrgb as we ship rgb.txt in x11-common. + + Add an epoch to the "x11-common Replaces xrgb" version. +(LP: #212672) + + xserver-xorg needs to Depend on mdetect instead of Recommends. +- local/Failsafe/*, x11-common.install: + + Bulletproof-X. +- local/Xsession: + + If ~/.xsession-errors is bigger than 0.5MiB, truncate it to the last +0.5MiB to avoid having it grow indefinitively. (This does not happen +with gdm anyway since gdm cleans the file on login). +- local/dexconf: + + Added support for vmmouse_detect (if present) to override mouse +driver with vmware. Depends on mdetect. +(LP: #216667, #216276, #197337) + + Add extra bits for ps3fb xorg.conf. (LP: #230091) + + Add CorePointer to the default mou
Bug#480241: xserver-xorg-video-i810: No console, bad flicker after suspend to ram
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brice Goglin wrote: > Brian McKee wrote: >> Brice Goglin wrote: >>> Brian McKee wrote: Package: xserver-xorg-video-i810 Version: 2:2.2.1-2 Severity: important First time bug reporter - let me know what else I can do No consoles and heavy flickering after suspend to ram >>> Could you try xserver-xorg-video-intel 2.3 from experimental ? And maybe >>> a more recent kernel too ? (namely 2.6.25 or 2.6.26-rc) >> OK - will try in next couple of days. > > Any news ? Can you try intel 2.3.2 ? The kernel update to 2.6.25 seemed to fix the no consoles issue. The flickering after suspend is still here though - even with 2.3.2 from experimental. Hibernation or reboot fixes it until the next time I suspend. FWIW, it seems to be (seat of the pants) worst when the system is under load. When idle the flickering is unnoticable or absent, but start flipping screens and starting programs and it's very annoying. Brian -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFIYa+1GnOmb9xIQHQRAt6oAKDhw7ElRlQx/pVCjp0KZLtDRhfNwwCeIuJV ypHPbYNHxLNh6Ed7fSk8Nq0= =ezR6 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of xserver-xorg-video-ati_6.8.192-1_i386.changes
xserver-xorg-video-ati_6.8.192-1_i386.changes uploaded successfully to localhost along with the files: xserver-xorg-video-ati_6.8.192-1.dsc xserver-xorg-video-ati_6.8.192.orig.tar.gz xserver-xorg-video-ati_6.8.192-1.diff.gz xserver-xorg-video-ati_6.8.192-1_i386.deb xserver-xorg-video-ati-dbg_6.8.192-1_i386.deb xserver-xorg-video-radeon_6.8.192-1_i386.deb xserver-xorg-video-radeon-dbg_6.8.192-1_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xserver-xorg-video-ati: Changes to 'upstream-unstable'
Makefile.am | 11 README.ati | 828 - README.ati.sgml | 648 README.r128 | 160 - README.r128.sgml| 138 configure.ac| 83 man/Makefile.am |5 man/r128.man| 156 - man/radeon.man | 54 src/AtomBios/CD_Operations.c|9 src/AtomBios/Decoder.c |9 src/AtomBios/includes/CD_Common_Types.h |8 src/AtomBios/includes/ObjectID.h| 928 +++--- src/AtomBios/includes/atombios.h| 50 src/Makefile.am | 91 src/ati.c |6 src/ati.h |3 src/ati_pciids_gen.h| 30 src/atiadjust.c | 134 src/atiadjust.h | 31 src/atiaudio.c | 50 src/atiaudio.h | 51 src/atibank.c | 114 src/atibank.h | 44 src/atibus.c| 123 src/atibus.h| 49 src/atichip.c | 271 - src/atichip.h | 94 src/aticlock.c | 443 --- src/aticlock.h | 62 src/aticonfig.c | 506 --- src/aticonsole.c| 816 - src/aticonsole.h| 43 src/aticrtc.h | 42 src/aticursor.h | 42 src/atidac.c| 462 --- src/atidac.h| 99 src/atidecoder.c| 50 src/atidecoder.h| 51 src/atidga.c| 483 --- src/atidga.h| 36 src/atidri.c| 1640 --- src/atidri.h| 49 src/atidripriv.h| 57 src/atidsp.c| 302 -- src/atidsp.h| 35 src/atii2c.c| 399 -- src/atii2c.h| 48 src/atiload.c | 98 src/atiload.h | 32 src/atilock.c | 537 --- src/atilock.h | 31 src/atimach64.c | 1341 - src/atimach64.h | 36 src/atimach64accel.c| 1068 --- src/atimach64accel.h| 42 src/atimach64cursor.c | 426 --- src/atimach64exa.c | 696 src/atimach64i2c.c | 469 --- src/atimach64i2c.h | 32 src/atimach64io.c | 103 src/atimach64io.h | 421 --- src/atimach64probe.c| 289 -- src/atimach64probe.h| 32 src/atimach64render.c | 898 -- src/atimach64version.h | 59 src/atimach64xv.c | 1686 src/atimisc.c | 78 src/atimode.c | 1084 --- src/atimode.h | 35 src/atimodule.c |2 src/atioption.h | 98 src/atipreinit.c| 2509 - src/atipreinit.h| 30 src/atiprint.c | 784 - src/atiprint.h | 34 src/atipriv.h | 30 src/atiprobe.c | 475 --- src/atiprobe.h | 30 src/atiregs.h | 2882 src/atirgb514.c | 283 -- src/atirgb514.h | 35 src/atiscreen.c | 692 src/atiscreen.h | 31 src/atistruct.h | 529 --- src/atituner.c | 177 - src/atituner.h | 69 src/atiutil.c | 117 src/atiutil.h | 67 src/ativalid.c | 161 - src/ativalid.h | 30 src/ativga.c| 195 - src/ativga.h| 40 src/ativgaio.c | 49 src/ativgaio.h | 56 src/atividmem.c | 483 --- src/atividmem.h | 73 src/atiwonder.c | 159 - src/atiwonder.h
xserver-xorg-video-ati: Changes to 'refs/tags/xserver-xorg-video-ati-1_6.8.192-1'
Tag 'xserver-xorg-video-ati-1_6.8.192-1' created by Brice Goglin <[EMAIL PROTECTED]> at 2008-06-25 05:44 + Tagging upload of xserver-xorg-video-ati 1:6.8.192-1 to unstable. Changes since xserver-xorg-video-ati-1_6.8.191-3: Alex Deucher (9): RADEON: man page updates radeon: X_ERROR -> X_WARNING for num gb pipes RADEON: fix read past the end of an array 0x1002 0x5657 is actually RV410 RADEON: adjust randr crtc/output prepare/commit ordering IGP: attempt to fix VGA on IGP chips RADEON: cleanups RADEON: warning fix bump for rc release Brice Goglin (4): Fix typo in long description Merge tag 'xf86-video-ati-6.8.192' into debian-unstable New upstream release Prepare changelog for upload Dave Airlie (5): Revert "ATOM: disable TV-out for now" Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/driver/xf86-video-ati r600: don't add fb offset here to make shadowfb work. atombios: use MMIO from the entity not the info legacy: use entity MMIO for dpms as this can crossover between zaphod infos Jiří Paleček (2): RADEON: PLL tweaks RADEON: remove extraneous line from new pll code --- ChangeLog | 129 ++ configure | 20 ++--- configure.ac |2 debian/changelog |9 ++ debian/control|4 - man/radeon.man| 20 +++-- src/ati_pciids_gen.h |2 src/atombios_crtc.c |3 src/legacy_crtc.c |7 -- src/legacy_output.c | 20 + src/pcidb/ati_pciids.csv |2 src/radeon.h |3 src/radeon_accel.c|2 src/radeon_atombios.c | 15 +--- src/radeon_chipinfo_gen.h |2 src/radeon_chipset_gen.h |2 src/radeon_crtc.c | 118 -- src/radeon_driver.c |3 src/radeon_output.c | 42 +++- src/radeon_pci_chipset_gen.h |2 src/radeon_pci_device_match_gen.h |2 21 files changed, 311 insertions(+), 98 deletions(-) --- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xserver-xorg-video-ati: Changes to 'debian-unstable'
ChangeLog | 129 ++ configure | 20 ++--- configure.ac |2 debian/changelog |6 + man/radeon.man| 20 +++-- src/ati_pciids_gen.h |2 src/atombios_crtc.c |3 src/legacy_crtc.c |7 -- src/legacy_output.c | 20 + src/pcidb/ati_pciids.csv |2 src/radeon.h |3 src/radeon_accel.c|2 src/radeon_atombios.c | 15 +--- src/radeon_chipinfo_gen.h |2 src/radeon_chipset_gen.h |2 src/radeon_crtc.c | 118 -- src/radeon_driver.c |3 src/radeon_output.c | 42 +++- src/radeon_pci_chipset_gen.h |2 src/radeon_pci_device_match_gen.h |2 20 files changed, 304 insertions(+), 98 deletions(-) New commits: commit d0c85bce3fcb03c12438f598dda6a9e76562a86d Author: Brice Goglin <[EMAIL PROTECTED]> Date: Wed Jun 25 07:26:20 2008 +0200 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index be4b6a7..064b452 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,11 @@ -xserver-xorg-video-ati (1:6.8.192-1) UNRELEASED; urgency=low +xserver-xorg-video-ati (1:6.8.192-1) unstable; urgency=low * New upstream release. + Add some PLL tweaks, closes: #465864. * Fix typo in long description, thanks Anders Semb Hermansen, closes: #487628. - -- Brice Goglin <[EMAIL PROTECTED]> Wed, 25 Jun 2008 07:20:19 +0200 + -- Brice Goglin <[EMAIL PROTECTED]> Wed, 25 Jun 2008 07:26:16 +0200 xserver-xorg-video-ati (1:6.8.191-3) unstable; urgency=low commit 7df21e1eb29a6b4fe2a4584b7572bc37b776aa34 Author: Brice Goglin <[EMAIL PROTECTED]> Date: Wed Jun 25 07:26:13 2008 +0200 New upstream release diff --git a/ChangeLog b/ChangeLog index 6bb9b94..7978cf2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,132 @@ +commit 67a6ac0001bc9d062aa426384a11a41fa7a1c09a +Author: Alex Deucher <[EMAIL PROTECTED]> +Date: Tue Jun 24 21:06:37 2008 -0400 + +bump for rc release + +commit bd68507d2d66e03d8bcde5f6e7ea9b2dbfe8b8a0 +Author: Alex Deucher <[EMAIL PROTECTED]> +Date: Tue Jun 24 20:59:58 2008 -0400 + +RADEON: warning fix + +commit 8e534d69c9b19fc085f7c5ca9e18f5ea04f6fc12 +Author: Alex Deucher <[EMAIL PROTECTED]> +Date: Tue Jun 24 20:08:35 2008 -0400 + +RADEON: cleanups + +- fix some warnings +- RS400 and RS480 are separate families now (update default tmds and dac2 +tables) + +commit e78e8a21b4040cd7f1983c241c860d9209398396 +Author: Alex Deucher <[EMAIL PROTECTED]> +Date: Tue Jun 24 19:53:28 2008 -0400 + +IGP: attempt to fix VGA on IGP chips + +VGA has never worked on some IGP chips. While the chip only has +one DAC, it appears to use a mix of Primary DAC and TVDAC controls. + +See bug 15708 + +commit faa4b4b8dbe9b8a452cfa60d53874350bb04e0cb +Author: Jiří Paleček <[EMAIL PROTECTED]> +Date: Tue Jun 24 19:20:50 2008 -0400 + +RADEON: remove extraneous line from new pll code + +commit 72feaa37ea07620f5f2ead438dbc72a1c8883cd3 +Author: Jiří Paleček <[EMAIL PROTECTED]> +Date: Mon Jun 23 15:53:58 2008 -0400 + +RADEON: PLL tweaks + +Patch from Jiří Paleček (see debian bug 465864) with some tweaks +by me. + +- abort rather than programming bad dividers if no pll dividers can be found +- improve the pll selection algorithm +- in general, prefer lower ref dividers + +I've tested this patch on a wide variety of chips (r1xx-r6xx) and clocks. + +commit 9c2f909ea437a63a408d2398ecabe0b378dbb982 +Author: Alex Deucher <[EMAIL PROTECTED]> +Date: Mon Jun 23 10:38:15 2008 -0400 + +RADEON: adjust randr crtc/output prepare/commit ordering + +This fixes some occasional mode change problems with multiple heads active. +It seems radeons generally like to turn on the whole output/crtc setup +in one shot. + +commit aea9bf75cf0774afd3e65fcf3fd3851f5fb21ca3 +Author: Alex Deucher <[EMAIL PROTECTED]> +Date: Sat Jun 21 10:57:05 2008 -0400 + +0x1002 0x5657 is actually RV410 + +See bug 14289 + + com_bios_scratch.diff + +commit 38ce8a984f96056b7345bcc06505ba27e0e6d5b4 +Author: Dave Airlie <[EMAIL PROTECTED]> +Date: Fri Jun 20 14:16:22 2008 +1000 + +legacy: use entity MMIO for dpms as this can crossover between zaphod infos + +commit 1a7d9bc53512b0a5240176c949e6abf1ae2fb1fd +Author: Dave Airlie <[EMAIL PROTECTED]> +Date: Fri Jun 20 14:14:21 2008 +1000 + +atombios: use MMIO from the entity not the info + +commit ef624b88903b1a87ef5b6388e18291f75776b93d +Author: Alex Deucher <[EMAIL PROTECTED]> +Date: Thu Jun 19 18:20:52 2008 -0400 + +RADEON: fix read past the end of an array + +commit cfe814a481d8cf2005d738a0ca9782f1ed4177f5 +Aut
Processed: found 480241 in 2:2.3.2-1
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.29 > found 480241 2:2.3.2-1 Bug#480241: xserver-xorg-video-i810: No console, bad flicker after suspend to ram Bug marked as found in version 2:2.3.2-1. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#483819: Bug #483819
hi, On Wednesday 25 June 2008 12:39:17 am Kevin Hobbs wrote: > I do not think this bug should have been closed as it is not fixed in > testing where the issue existed and still exists. The workaround of using and it is marked as still affecting testing, so i don't see what the problem is... look at the pretty version graph at the top of the report. if the bug were left open the fixed compiz would not be able to transition to lenny. > upstream packages will fix the problem but it should not be necessary. and it is not. currently users have to either (a) wait for the packages to make it in or (b) take the packages from sid. (a) is blocked by problems with an otherwise unrelated dependency but should be resolved RSN hopefully. > Since a number of lenny users who use compiz-fusion will have upgraded to > the upstream packages from sid, why not migrate those packages to lenny for > those who did not and are still waiting for a patch? Unless there are i don't control the migration of packages. see http://release.debian.org/migration/testing.pl?package=compiz sean signature.asc Description: This is a digitally signed message part.
xserver-xorg-video-glide_1.0.1-1_i386.changes is NEW
(new) xserver-xorg-video-glide_1.0.1-1.diff.gz optional x11 (new) xserver-xorg-video-glide_1.0.1-1.dsc optional x11 (new) xserver-xorg-video-glide_1.0.1-1_i386.deb optional x11 X.Org X server -- Glide display driver This driver for the X.Org X server (see xserver-xorg for a further description) provides support for Voodoo 1 and Voodoo 2 boards. . More information about X.Org can be found at: http://www.X.org> http://xorg.freedesktop.org> http://lists.freedesktop.org/mailman/listinfo/xorg> . This package is built from the X.org xf86-video-glide driver module. . You will need the /dev/3dfx kernel driver to use this video driver. (new) xserver-xorg-video-glide_1.0.1.orig.tar.gz optional x11 Changes: xserver-xorg-video-glide (1.0.1-1) unstable; urgency=low . * First xserver-xorg-driver-glide release. * Do not provide any glide.ids for Xserver autoloading since this driver does not support any PCI device. Override entries for your package: Announcing to [EMAIL PROTECTED] Your package contains new components which requires manual editing of the override file. It is ok otherwise, so please be patient. New packages are usually added to the override file about once a week. You may have gotten the distribution wrong. You'll get warnings above if files already exist in other distributions. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xserver-xorg-video-ati_6.8.192-1_i386.changes ACCEPTED
Accepted: xserver-xorg-video-ati-dbg_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati-dbg_6.8.192-1_i386.deb xserver-xorg-video-ati_6.8.192-1.diff.gz to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192-1.diff.gz xserver-xorg-video-ati_6.8.192-1.dsc to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192-1.dsc xserver-xorg-video-ati_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192-1_i386.deb xserver-xorg-video-ati_6.8.192.orig.tar.gz to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192.orig.tar.gz xserver-xorg-video-radeon-dbg_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon-dbg_6.8.192-1_i386.deb xserver-xorg-video-radeon_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_6.8.192-1_i386.deb Override entries for your package: xserver-xorg-video-ati-dbg_6.8.192-1_i386.deb - extra x11 xserver-xorg-video-ati_6.8.192-1.dsc - source x11 xserver-xorg-video-ati_6.8.192-1_i386.deb - optional x11 xserver-xorg-video-radeon-dbg_6.8.192-1_i386.deb - extra x11 xserver-xorg-video-radeon_6.8.192-1_i386.deb - optional x11 Announcing to [EMAIL PROTECTED] Closing bugs: 465864 487628 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#487628: marked as done (Package description contains small mistake)
Your message dated Wed, 25 Jun 2008 06:02:15 + with message-id <[EMAIL PROTECTED]> and subject line Bug#487628: fixed in xserver-xorg-video-ati 1:6.8.192-1 has caused the Debian Bug report #487628, regarding Package description contains small mistake 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.) -- 487628: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487628 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems --- Begin Message --- Package: xserver-xorg-video-ati Version: 1:6.8.191-3 Description says: (...) It provides the 'ati' driver wrapper which loads one of the 'mach64', 'r128' or 'ati' sub-drivers depending on the hardware. (..) The last 'ati' should be 'radeon' Thanks, Anders --- End Message --- --- Begin Message --- Source: xserver-xorg-video-ati Source-Version: 1:6.8.192-1 We believe that the bug you reported is fixed in the latest version of xserver-xorg-video-ati, which is due to be installed in the Debian FTP archive: xserver-xorg-video-ati-dbg_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati-dbg_6.8.192-1_i386.deb xserver-xorg-video-ati_6.8.192-1.diff.gz to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192-1.diff.gz xserver-xorg-video-ati_6.8.192-1.dsc to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192-1.dsc xserver-xorg-video-ati_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192-1_i386.deb xserver-xorg-video-ati_6.8.192.orig.tar.gz to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.8.192.orig.tar.gz xserver-xorg-video-radeon-dbg_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon-dbg_6.8.192-1_i386.deb xserver-xorg-video-radeon_6.8.192-1_i386.deb to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_6.8.192-1_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Brice Goglin <[EMAIL PROTECTED]> (supplier of updated xserver-xorg-video-ati package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 25 Jun 2008 07:26:16 +0200 Source: xserver-xorg-video-ati Binary: xserver-xorg-video-ati xserver-xorg-video-ati-dbg xserver-xorg-video-radeon xserver-xorg-video-radeon-dbg Architecture: source i386 Version: 1:6.8.192-1 Distribution: unstable Urgency: low Maintainer: Debian X Strike Force Changed-By: Brice Goglin <[EMAIL PROTECTED]> Description: xserver-xorg-video-ati - X.Org X server -- ATI display driver wrapper xserver-xorg-video-ati-dbg - X.Org X server -- ATI display driver wrapper (debugging symbols) xserver-xorg-video-radeon - X.Org X server -- ATI Radeon display driver xserver-xorg-video-radeon-dbg - X.Org X server -- ATI Radeon display driver (debugging symbols) Closes: 465864 487628 Changes: xserver-xorg-video-ati (1:6.8.192-1) unstable; urgency=low . * New upstream release. + Add some PLL tweaks, closes: #465864. * Fix typo in long description, thanks Anders Semb Hermansen, closes: #487628. Checksums-Sha1: ceb6c2ffe62036e599b11477f51dc35aa02b6b83 1796 xserver-xorg-video-ati_6.8.192-1.dsc ab4bdec748ff05847d75344e334421beb1c80b2e 965660 xserver-xorg-video-ati_6.8.192.orig.tar.gz d60bf6f0e27b347044eeb8fe71375bca00162a45 124682 xserver-xorg-video-ati_6.8.192-1.diff.gz 8c214c767589c213d6bae48999376d4b219c0b78 149082 xserver-xorg-video-ati_6.8.192-1_i386.deb 869a13546e89e9a928f4d5ddb913ff8a2d74a9ad 153150 xserver-xorg-video-ati-dbg_6.8.192-1_i386.deb c7a4e9b74870f840f0363f90f780f557e0f9c41a 383790 xserver-xorg-video-radeon_6.8.192-1_i386.deb 40267f8a3ac4a6d9b9abad23a2f82ff4f719dcc1 1067778 xserver-xorg-video-radeon-dbg_6.8.192-1_i386.deb Checksums-Sha256: ecf5ca1b197328563f5f135721ab896ff78fa706bd2e4d7229bb7d73a9a1beb4 1796 xserver-xorg-video-ati_6.8.192-1.dsc 159ee3862d5f5e71b4a448a0996131cf5b1bd7a0c7ca06235b0526b5cb54e9fa 965660 xserver-xorg-video-ati_6.8.192.orig.tar.gz a42a72b3547226f848a257775e80eba23ad07ba8ab0c7b19a42b25fc77b10221 124682 xserver-xorg-video-ati_6.8.192-1.diff.gz 96ffe75c9fc90d03ce19ed19aadd240645b701808e9caad5a6027a5578f50407 149082 xserver-xorg-video-ati_6.8.192-1_i386.deb
Processing of xserver-xorg-video-glide_1.0.1-1_i386.changes
xserver-xorg-video-glide_1.0.1-1_i386.changes uploaded successfully to localhost along with the files: xserver-xorg-video-glide_1.0.1-1.dsc xserver-xorg-video-glide_1.0.1.orig.tar.gz xserver-xorg-video-glide_1.0.1-1.diff.gz xserver-xorg-video-glide_1.0.1-1_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xserver-xorg-video-glide: Changes to 'debian-unstable'
New branch 'debian-unstable' available with the following commits: commit 0a277b9e9af7af4e0908280b34de2094d622afde Author: Brice Goglin <[EMAIL PROTECTED]> Date: Wed Jun 25 07:56:44 2008 +0200 Prepare changelog for upload commit 6d7fb57a5daa42925cf7c585a46fd9f07a86ad4e Author: Brice Goglin <[EMAIL PROTECTED]> Date: Wed Jun 18 19:29:37 2008 +0200 First packaging of the xserver-xorg-video-glide package commit b4578dce7790dc2b211bcc3a7f371834db1cb7ad Merge: ce31b3e87032253ef8c77a8738014b8e981f01e5 4c2fb5aa80a15b5a9a9b51b03c7dc30496a22561 Author: Brice Goglin <[EMAIL PROTECTED]> Date: Wed Jun 18 19:28:27 2008 +0200 Merge branch 'debian-unstable' of git://git.debian.org/git/pkg-xorg/xsfbs into debian-unstable commit 4c2fb5aa80a15b5a9a9b51b03c7dc30496a22561 Author: Brice Goglin <[EMAIL PROTECTED]> Date: Sat May 31 13:23:24 2008 +0200 Update xsfbs/quilt patching rules to be compatible with the "3.0 (quilt)" source package. Thanks to Raphael Hertzog. See http://lists.debian.org/debian-x/2008/05/msg01250.html for details. commit dcf4204d5328834172df80951a18de014b0f74ef Author: Julien Cristau <[EMAIL PROTECTED]> Date: Fri May 30 12:26:18 2008 +0200 xsfbs.sh: use 'local' now that policy allows it Policy 3.7.3 allows /bin/sh scripts to use 'local'. commit d9066a28b95e1a74e9f6ebac8e71e07fca321cd1 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Tue May 20 18:53:28 2008 +0200 xsfbs.sh: add remove_conffile_lookup This variant of remove_conffile_prepare looks for the given conffile's canonical md5sum in dpkg's status database itself instead of using provided values. commit 9d66b3441b36e5a47ffc288ba21f2fd929e869d0 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Fri May 23 11:12:20 2008 +0200 Remove the .pc directory properly commit c87ea43906787791a87a659c0a9d6312945ffb32 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Sun Apr 13 03:12:18 2008 +0200 Remove xsfbs-autoreconf.mk It has never been used, and that doesn't look likely to change. commit bef8b301bf7649b4156bef2dc26ebf9f7f9244ad Author: Julien Cristau <[EMAIL PROTECTED]> Date: Fri Mar 21 11:53:16 2008 +0100 xsfbs.mk: make 'serverabi' depend on 'install' See bug#471193, thanks to Bernhard R. Link <[EMAIL PROTECTED]> commit 844199da71f29556be3436fa0fead2f0cc0bfc1b Author: David Nusinow <[EMAIL PROTECTED]> Date: Tue Jan 8 20:18:49 2008 -0500 Kill the manifest code. It served its purpose for the monolith and is now dead. commit 331c032528ba1faebef1d8eaa56db47f533f0426 Author: David Nusinow <[EMAIL PROTECTED]> Date: Sat Sep 22 23:49:11 2007 -0400 Remove make-orig-tar-gz target This target wasn't kept up to date and was totally broken for the git world. The way we use git has made this target pretty well impossible to use in any form, so it's been supersceded by a script that is currently located at http://people.debian.org/~dnusinow/xsf_scripts/git-make-orig-tar-gz commit 575efb7249d7cf194f07e45db17e601d9c259231 Author: Brice Goglin <[EMAIL PROTECTED]> Date: Wed Aug 29 09:36:00 2007 +0200 Do not call laptop-detect, let the only user call it directly commit 12a633f722a2ff9677728d1e2ae56767f804232a Author: Brice Goglin <[EMAIL PROTECTED]> Date: Thu Jul 12 16:06:22 2007 +0200 Fix "display the output of quilt push/pop". Fix commit 16d97b30b91da02d5a3edc2b895cbd4a1995f62d to check the return value of quilt, not the one of tee. commit e29b56820909668b062fdba72458ee9483a4ae44 Author: Brice Goglin <[EMAIL PROTECTED]> Date: Mon Jul 9 21:50:47 2007 +0200 Minor fixes in the patching system. * Fix debian/rules to not be confused by ~/.quiltrc or QUILT_PATCHES (as in #369920). * Display which patches are applied and removed instead of just the first one (for #428090). commit 16d97b30b91da02d5a3edc2b895cbd4a1995f62d Author: Brice Goglin <[EMAIL PROTECTED]> Date: Mon Jul 9 19:06:05 2007 +0200 Fix displaying of patches applied by quilt. As requested in bug #428090, we silence the output of quilt next and display the output of quilt push/pop. commit 271778bd6338575afa3e4ae7f614f38cdff8e2fb Author: Branden Robinson <[EMAIL PROTECTED](none)> Date: Thu Apr 12 23:18:32 2007 -0400 Test for existence of debian/patches directory before creating a symlink to it. This prevents packages that apply no patches from ending up with a broken symlink in them. Remove SVN keyword. Update copyright notice. commit 72811b4cede7275a35d36b44bcb5f431a8aa0133 Author: Julien Cristau <[EMAIL PROTECTED]> Date: Fri Mar 2 20:28:15 2007 +0100 Fix copy/paste typo in the input driver provides. commit 4a943db2564c4f573ce2f5f676a841267e961f16 Author: David Nusinow <[EMAIL PROTECTED]> Date: Thu Mar 1 22:06:04 2007 -0500 Fix one missed bit from the serverabiver -> serverminver rename commit 1344bb9deda5ba54215d0ec5b1
xserver-xorg-video-glide: Changes to 'refs/tags/xserver-xorg-video-glide-1.0.1-1'
Tag 'xserver-xorg-video-glide-1.0.1-1' created by Brice Goglin <[EMAIL PROTECTED]> at 2008-06-25 05:57 + Tagging upload of xserver-xorg-video-glide 1.0.1-1 to unstable. Changes since the dawn of time: Adam Jackson (3): Bug #3626: _X_EXPORT tags for video and input drivers. Prep for modular builds by adding guarded #include "config.h" everywhere. Stub COPYING files Branden Robinson (4): Set svn:keywords property to "Id" (keyword already present). Note probable out-of-dateness of maplink() function body. Add high-level documentation to XSFBS shell library, intended to reduce Test for existence of debian/patches directory before creating a symlink to it. Brice Goglin (11): Fix displaying of patches applied by quilt. Minor fixes in the patching system. Fix "display the output of quilt push/pop". Define GLIDE_*_VERSION* using PACKAGE_VERSION_* Check for glide.h presence in configure Do not call laptop-detect, let the only user call it directly Move build time information from the man page to a README Update xsfbs/quilt patching rules to be compatible with the Merge branch 'debian-unstable' of git://git.debian.org/git/pkg-xorg/xsfbs into debian-unstable First packaging of the xserver-xorg-video-glide package Prepare changelog for upload Daniel Stone (1): Fix includes right throughout the Xserver tree: David Nusinow (13): Move xsfbs back to its rightful place Make us error out if we call patch and don't have quilt installed Fix the last commit and fix spelling error. Thanks Brice Goglin for the spelling catch. Fix for bug #371152. Thanks Joey Hess. Pull patches from ubuntu for ARCHITECTURE, LAPTOP, RECONFIGURE, FIRSTINST, and UPGRADE variables Move the files so they'll be put in debian/xsfbs automatically when pulled Update serverabi generation to also account for driver Provides Fix name of serverminver Add support for X server input ABI versioning Fix typo that prevented the input abi versioning from working. Fix one missed bit from the serverabiver -> serverminver rename Remove make-orig-tar-gz target Kill the manifest code. Egbert Eich (5): Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 readding XFree86's cvs IDs Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 Merging XORG-CURRENT into trunk Eric Anholt (2): DRI XFree86-4_3_99_12-merge import Add .cvsignores for drivers. Guillem Jover (10): Modularize xf86-video-glide Use system include dir by default for glide.h Rename .cvsignore to .gitignore Add license and copyright information to COPYING Remove RCS tags Add generated glide.4 to .gitignore Generate the ChangeLog file from git history Remove unused MIN and MAX macros Remove redefinition of NULL Bump to 1.0.1 James Cloos (2): Add *~ to .gitignore to skip patch/emacs droppings Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/driver/xf86-video-glide Julien Cristau (7): Add new "serverabi" rule to generate drivers dependency on the server. Fix copy/paste typo in the input driver provides. xsfbs.mk: make 'serverabi' depend on 'install' Remove xsfbs-autoreconf.mk Remove the .pc directory properly xsfbs.sh: add remove_conffile_lookup xsfbs.sh: use 'local' now that policy allows it Kaleb Keithley (2): Initial revision XFree86 4.3.0.1 Markus Kuhn (1): Encoding of numerous files changed to UTF-8 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]