Bug#443292: Workaround for the bug

2007-09-30 Thread Kanru Chen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dario Gallucci wrote:
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHAJihsbdbXzZcx6IRAmYRAKCuud3+9ELe9SAx1W57XkiGA1yYwgCg6yMM
pGRrvQebAUYe5TfQtb3bIZM=
=Xgz2
-END PGP SIGNATURE-


> I had the same problem.
>
> The mouse is working again whit evdev using
> Option "Device" and the specific event identifier given to the mouse by udev
> in /dev/input/by-path/...
>
> I hope this can solve temporary this problem.

Git commit a0ea7363f51ff6c2bb81006b7220b7daa9ee9221 actually remove a
lot of configuration stuffs. Option "Device" is the only method to
identify a mouse now. The problem is that the manpage is not up to
date.



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



Bug#444656: xserver-xorg-video-nv: Samsung LCD Syncmaster does not resume after dpms sleep

2007-09-30 Thread Brice Goglin
Tim Richardson wrote:
> Yesterday, I compiled the nv-driver source package in testing against
> the X server distribution in unstable.
>   

Why didn't you try 1:2.1.3-5 as I said earlier? 1:2.1.3-5 is exactely
1:2.1.3-1 (the one in testing) rebuilt against unstable.

> I've been checking ever since; the problem with the monitor resuming
> is not present.
>   

So your problem appeared between 2.1.3 and 2.1.5. There are only 8
commits between there releases. The only one that really changes some
code is:
http://gitweb.freedesktop.org/?p=xorg/driver/xf86-video-nv.git;a=commitdiff_plain;h=b2db7d414400d80a5567d71eed9a7e94f1043a20;hp=07fb9f0b00fafe18bd33bddff23cbb4325eb50f8

Could you try applying on top of your rebuilt 2.1.3 and see whether it
causes the problem to occur?

Thanks,
Brice




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



Bug#444656: xserver-xorg-video-nv: Samsung LCD Syncmaster does not resume after dpms sleep

2007-09-30 Thread Tim Richardson
On 9/30/07, Julien Cristau <[EMAIL PROTECTED]> wrote:
te:
> can you bisect which exact change did this?  To rule out an X server
> bug, it'd be good to first test a previously-working version of the nv
> driver rebuilt against xserver 1.4.
>
> Cheers,
> Julien
>

Yesterday, I compiled the nv-driver source package in testing against
the X server distribution in unstable. (I never would have guessed how
easy it is to do that, and apparently the build is smart enough to
make new dependencies).
I've been checking ever since; the problem with the monitor resuming
is not present.

So it seems that a change to the nv driver is the cause of the problem.

The xserver-xorg-video-nv package version I built is called
1:2.1.3-1

the xserver-xorg-core package version I have is 2:1.4-2



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



xorg-server: Changes to 'debian-unstable'

2007-09-30 Thread David Nusinow
 debian/changelog  |8 
 debian/patches/14_default_screen_section.diff |   44 ++
 debian/patches/series |1 
 3 files changed, 52 insertions(+), 1 deletion(-)

New commits:
commit 4c3e67eec9edfcc5e4b689428868445588f84a6c
Author: David Nusinow <[EMAIL PROTECTED]>
Date:   Sun Sep 30 21:43:11 2007 -0400

Add 14_default_screen_section.diff.

This allows you to not have a screen section in your xorg.conf. A basic
default one with a simple identifier will be created for you in this case
using all default values

diff --git a/debian/changelog b/debian/changelog
index c95e521..8b64211 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,16 @@
 xorg-server (2:1.4-4) UNRELEASED; urgency=low
 
+  [ Julien Cristau ]
   * Add conflict on xserver-xorg-input-wacom (<< 0.7.8) to xserver-xorg-core.
 That driver is built against the old ABI, but doesn't provide
 xserver-xorg-input.
 
- -- Julien Cristau <[EMAIL PROTECTED]>  Sun, 30 Sep 2007 01:03:20 +0200
+  [ David Nusinow ]
+  * Add 14_default_screen_section.diff. This allows you to not have a screen
+section in your xorg.conf. A basic default one with a simple identifier
+will be created for you in this case using all default values
+
+ -- David Nusinow <[EMAIL PROTECTED]>  Sun, 30 Sep 2007 19:51:49 -0400
 
 xorg-server (2:1.4-3) unstable; urgency=low
 
diff --git a/debian/patches/14_default_screen_section.diff 
b/debian/patches/14_default_screen_section.diff
new file mode 100644
index 000..77e0637
--- /dev/null
+++ b/debian/patches/14_default_screen_section.diff
@@ -0,0 +1,44 @@
+Index: xorg-server/hw/xfree86/common/xf86Config.c
+===
+--- xorg-server.orig/hw/xfree86/common/xf86Config.c2007-09-30 
19:55:22.0 -0400
 xorg-server/hw/xfree86/common/xf86Config.c 2007-09-30 20:48:02.0 
-0400
+@@ -1800,11 +1800,6 @@
+ if (!servlayoutp)
+   return FALSE;
+ 
+-if (conf_screen == NULL) {
+-  xf86ConfigError("No Screen sections present\n");
+-  return FALSE;
+-}
+-
+ /*
+  * which screen section is the active one?
+  *
+@@ -1892,6 +1887,12 @@
+ XF86ConfAdaptorLinkPtr conf_adaptor;
+ Bool defaultMonitor = FALSE;
+ 
++if (!conf_screen) {
++conf_screen = xnfcalloc(1, sizeof(XF86ConfScreenRec));
++conf_screen->scrn_identifier = "Default Screen Section";
++xf86Msg(X_DEFAULT, "No screen section available. Using defaults.\n");
++}
++
+ xf86Msg(from, "|-->Screen \"%s\" (%d)\n", conf_screen->scrn_identifier,
+   scrnum);
+ /*
+Index: xorg-server/hw/xfree86/parser/read.c
+===
+--- xorg-server.orig/hw/xfree86/parser/read.c  2007-09-30 19:55:22.0 
-0400
 xorg-server/hw/xfree86/parser/read.c   2007-09-30 19:55:22.0 
-0400
+@@ -82,8 +82,8 @@
+ {
+   /*if (!xf86validateDevice (p))
+   return FALSE;*/
+-  if (!xf86validateScreen (p))
+-  return FALSE;
++  /*if (!xf86validateScreen (p))
++  return FALSE;*/
+   if (!xf86validateInput (p))
+   return FALSE;
+   if (!xf86validateLayout (p))
diff --git a/debian/patches/series b/debian/patches/series
index 73f34fb..1706d24 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -10,6 +10,7 @@
 11_exa_no_negative_tile_offsets.diff
 12_bgPixel_fix_64bit_issue.diff
 13_debian_add_xkbpath_env_variable.diff
+14_default_screen_section.diff
 21_glx_align_fixes.patch
 41_vbe_filter_less.diff
 42_fix_RemoveGeneralSocket_crash_from_dbus.diff


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



Bug#444788: xserver-xorg-dev: Does not install DESIGN document

2007-09-30 Thread David Nusinow
Package: xserver-xorg-dev
Version: 2:1.4-3
Severity: minor

We should really be installing the DESIGN document in hw/xfree86/doc/sgml,
as well as any other docs in hw/xfree86/doc that aren't being installed.

 - David Nusinow

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

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

Versions of packages xserver-xorg-dev depends on:
ii  libpixman-1-dev   0.9.5-2pixel-manipulation library for X a
ii  x11proto-core-dev 7.0.11-1   X11 core wire protocol and auxilia
ii  x11proto-fonts-dev2.0.2-5X11 font extension wire protocol
ii  x11proto-input-dev1.4.2-1X11 Input extension wire protocol
ii  x11proto-randr-dev1.2.1-2X11 RandR extension wire protocol
ii  x11proto-render-dev   2:0.9.3-2  X11 Render extension wire protocol
ii  x11proto-video-dev2.2.2-4X11 Video extension wire protocol
ii  x11proto-xext-dev 7.0.2-5X11 various extension wire protoco

xserver-xorg-dev recommends no packages.

-- no debconf information



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



Bug#444779: marked as done (xserver-xorg: "Xorg crashes with nvidia proprietary driver (during allocation)")

2007-09-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 Sep 2007 22:54:42 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#444779: xserver-xorg: "Xorg crashes with nvidia 
proprietary driver (during allocation)"
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: xserver-xorg
Version: 1:7.3+2
Severity: normal


The Xorg server crashes when started with nvidia's proprietary driver. I've 
installed this driver (legacy 9631 version) 
through nvidia's .run file. Since it crashes, I tried recompiling it but it 
doesn't help. If the nv driver is specified in xorg.conf
then everything is fine. At first I was running a dualhead setup (using 
twinview), but the server crashes
with a singlehead setup as well. Note that I tried running the server with and 
without the -ignoreABI flag (here I report with the flag
enabled). Attached is the xorg.conf file used to make the bug occur and the log 
corresponding.

Hope this helps,
Clément

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

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-02-13 21:15 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1669976 2007-09-29 16:33 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation NV25 [GeForce4 Ti 4200] 
(rev a3)

/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 smelc smelc 2988 2007-09-30 22:06 /etc/X11/xorg.conf

X.Org X Server 1.4.0
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4-3)
Current Operating System: Linux churlin-msi 2.6.18-4-k7 #1 SMP Mon Mar 26 
17:57:15 UTC 2007 i686
Build Date: 29 September 2007  04:19:41PM
 
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: Sun Sep 30 22:05:45 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Écran générique"
(**) |   |-->Device "nVidia Corporation NV25 [GeForce4 Ti 4200]"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/X11R6/lib/X11/fonts/misc" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/100dpi/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/75dpi/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/Type1" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/100dpi" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/75dpi" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) Including the default font path 
/usr/share/fonts/X11/misc,/usr/share/fonts/X11/cyrillic,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType.
(**) 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,
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/cyrillic,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-con

Bug#444779: xserver-xorg: "Xorg crashes with nvidia proprietary driver (during allocation)"

2007-09-30 Thread Clement H
Package: xserver-xorg
Version: 1:7.3+2
Severity: normal


The Xorg server crashes when started with nvidia's proprietary driver. I've 
installed this driver (legacy 9631 version) 
through nvidia's .run file. Since it crashes, I tried recompiling it but it 
doesn't help. If the nv driver is specified in xorg.conf
then everything is fine. At first I was running a dualhead setup (using 
twinview), but the server crashes
with a singlehead setup as well. Note that I tried running the server with and 
without the -ignoreABI flag (here I report with the flag
enabled). Attached is the xorg.conf file used to make the bug occur and the log 
corresponding.

Hope this helps,
Clément

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

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-02-13 21:15 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1669976 2007-09-29 16:33 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation NV25 [GeForce4 Ti 4200] 
(rev a3)

/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 smelc smelc 2988 2007-09-30 22:06 /etc/X11/xorg.conf

X.Org X Server 1.4.0
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4-3)
Current Operating System: Linux churlin-msi 2.6.18-4-k7 #1 SMP Mon Mar 26 
17:57:15 UTC 2007 i686
Build Date: 29 September 2007  04:19:41PM
 
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: Sun Sep 30 22:05:45 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Écran générique"
(**) |   |-->Device "nVidia Corporation NV25 [GeForce4 Ti 4200]"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/X11R6/lib/X11/fonts/misc" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/100dpi/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/75dpi/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/Type1" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/100dpi" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/X11R6/lib/X11/fonts/75dpi" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) Including the default font path 
/usr/share/fonts/X11/misc,/usr/share/fonts/X11/cyrillic,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType.
(**) 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,
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/cyrillic,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is disabled
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Loader magic: 0x81d7b40
(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, module version = 1.0.0
ABI class: X.Org Video Driver, versio

Bug#352967: Shipping Clerk - flexible time work-at-home opening

2007-09-30 Thread Jefferey


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



Bug#348082: Shipping Clerk - flexible time work-at-home opening

2007-09-30 Thread Sheena


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



Bug#348873: Shipping Clerk - flexible time work-at-home opening

2007-09-30 Thread Toni


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



Bug#331637: Shipping Clerk - flexible time work-at-home opening

2007-09-30 Thread Julian


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



Bug#348873: Shipping Clerk - flexible time work-at-home opening

2007-09-30 Thread Gabrielle


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



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

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

user [EMAIL PROTECTED]

# remote status report for #444739
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12627
#  * remote status changed: (?) -> NEW
usertags 444739 + status-NEW

thanks



Bug#444739: xserver-xorg-video-mga: infinite loops once in a while

2007-09-30 Thread Marc Haber
On Sun, Sep 30, 2007 at 07:12:20PM +0200, Julien Cristau wrote:
> you mentioned on irc that you got lots of "(EE) MGA(0): [dri] Idle timed
> out, resetting engine..." in the log.
> One thing that would probably be worth trying is to disable dri.  To do
> that, add 'Disable "dri"' in the Module section of xorg.conf.

That doesn't help.

Greetings
Marc

-- 
-
Marc Haber | "I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things."Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835



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



[bts-link] source package mesa

2007-09-30 Thread bts-link-upstream
#
# bts-link upstream status pull for source package mesa
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user [EMAIL PROTECTED]

# remote status report for #439668
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12164
#  * remote status changed: NEEDINFO -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 439668 + fixed-upstream
usertags 439668 - status-NEEDINFO
usertags 439668 + status-RESOLVED resolution-FIXED

thanks



[bts-link] source package xorg-server

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

user [EMAIL PROTECTED]

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

# remote status report for #80
#  * https://bugs.freedesktop.org/show_bug.cgi?id=12434
#  * remote status changed: (?) -> NEW
usertags 80 + status-NEW

thanks



Processed: [bts-link] source package mesa

2007-09-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> #
> # bts-link upstream status pull for source package mesa
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #439668
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=12164
> #  * remote status changed: NEEDINFO -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 439668 + fixed-upstream
Bug#439668: blender crash
There were no tags set.
Tags added: fixed-upstream

> usertags 439668 - status-NEEDINFO
Bug#439668: blender crash
Usertags were: status-NEEDINFO.
Usertags are now: .
> usertags 439668 + status-RESOLVED resolution-FIXED
Bug#439668: blender crash
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#444743: xserver-xorg-video-nv: No error but blank screen on a T61p (Quadro FX570M)

2007-09-30 Thread Brice Goglin
Francois Fleuret wrote:
> Package: xserver-xorg-video-nv
> Version: 1:2.1.5-1
> Severity: important
>
> Dear Maintainer,
>
> On my thinkpad T61p, the nv driver starts without error nor warning,
> but produces a blank screen. At that point nothing works (can not log
> in "blind" nor kill the server with ctrl-alt-backspace) but the PC
> still reboots with ctrl-alt-del. The vesa driver works fine.
>   

Did you ever get this board to work with the nv driver? Which version?

Brice




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



Bug#281398: Shipping Clerk - flexible time work-at-home opening

2007-09-30 Thread Ernest


  Our company is looking for energetic and accountable individuals to occupy
  Shipping Clerk positions throughout the USA. These vacancies are entirely
  home-based  and do not require any travel or relocation. They are also
  suitable for students and senior citizens who are able to dedicate up to
  three business hours per day to their duties. No special qualifications are
  required, although previous shipping or customer service experience is a
  plus.  We  are  an international company providing mail/internet order
  opportunities for a global clientele since 1997. We are based in Russia, and
  also  have  offices  in  Latvia  and Kazakhstan. Our business provides
  online/Online Order facilities for those who are unable to benefit from the
  convenience of e-commerce due to lack of a banking relationship with an
  internationally recognized bank or because major online vendors will not
  ship to their location. We have domestic purchasing agents who place the
  orders on behalf of our clients, and the goods are then shipped to the local
  shipping clerks for further sorting and international shipment. We also
  provide escrow services for high amount and/or web auction orders, and offer
  assistance with customs clearance, if required. Currently, we are looking
  for individuals to fill in the positions of shipping clerks throughout the
  USA. Your duties will include receiving, sorting, repackaging and re-sending
  the orders made on behalf of our clients using the pre-paid USPS shipping
  labels that you will receive via email. You will be paid $20 for each parcel
  that you ship, plus $5 for each order that you will need to re-sort or
  re-package. We will also cover any other authorized expense, such as extra
  insurance or shipping materials. Your remuneration will be remitted to you
  via Western Union twice a month. You can expect to handle 5-15 incoming
  packages weekly, following a 2 week probation period. You can perform your
  duties from the convenience of your home. You will generally be re-shipping
  the orders on same day or next day basis, so you will not need to sacrifice
  your home space to storage. You will only be receiving orders placed with
  reputable online vendors and delivered by major courier services, such as
  FedEx  and  UPS, who pay great attention to ensuring that they are not
  involved into trafficking any illegal substances or hazardous materials.
  Thus, there will be no risk on your end. We also encourage you to open and
  inspect each package that you receive to ensure the legitimacy and safety of
  itsâ content. In order to fill the shipping clerk position, you need to be
  aged 18 and above, have a permanent address where you are available on a
  regular basis and also have access to phone and email. In order to ensure
  that you can be entrusted the client merchandise, we will need to verify
  your  identity  and confirm that you do not have any previous criminal
  convictions. To apply for this position and for more information on our
  company, please fax your resume and (optionally) cover letter to: (309)
  431-7288.





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



Bug#444764: [INTL:gl] Galician debconf template translation for xorg-server

2007-09-30 Thread Jacobo Tarrio
Package: xorg-server
Severity: wishlist
Tags: l10n patch

 It is attached to this report.
# Galician translation of xorg-server's debconf templates
# This file is distributed under the same license as the xorg-server package.
# Jacobo Tarrio <[EMAIL PROTECTED]>, 2007.
#
msgid ""
msgstr ""
"Project-Id-Version: xorg-server\n"
"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
"POT-Creation-Date: 2007-09-18 07:46+0200\n"
"PO-Revision-Date: 2007-09-30 18:53+0100\n"
"Last-Translator: Jacobo Tarrio <[EMAIL PROTECTED]>\n"
"Language-Team: Galician <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: string
#. Description
#: ../xprint-common.templates:2001
msgid "Default printer resolution:"
msgstr "Resolución de impresión por defecto:"

#. Type: string
#. Description
#: ../xprint-common.templates:2001
msgid ""
"By default, Xprint assumes a printer resolution of 600 dpi. This should be "
"well suited for the majority of printers."
msgstr ""
"Por defecto, Xprint supón unha resolución de impresión de 600 ppp. Este "
"valor é axeitado para a maioría das impresoras."

#. Type: string
#. Description
#: ../xprint-common.templates:2001
msgid ""
"On certain 1200 dpi printers, however, the image might appear squashed in "
"the corner of the page, or it might be blown up too large on 300 dpi "
"printers. If you are experiencing such printing problems, you may want to "
"set the default printer resolution to a more appropriate value. See /usr/"
"share/doc/xprint-common/README.printing-problems.gz for more details."
msgstr ""
"Nembargantes, nalgunhas impresoras de 1200 ppp a imaxe pode aparecer "
"aplastada nunha esquina da páxina, ou pode aparecer grande de máis en "
"impresoras de 300 ppp. Se ten este tipo de problemas pode cambiar a "
"resolución de impresión a un valor máis axeitado. Consulte /usr/share/doc/"
"xprint-common/README.printing-problems.gz para ter máis detalles."


Processed: bug 444739 is forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=12627

2007-09-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.8
> forwarded 444739 https://bugs.freedesktop.org/show_bug.cgi?id=12627
Bug#444739: xserver-xorg-video-mga: infinite loops once in a while
Noted your statement that Bug has been forwarded to 
https://bugs.freedesktop.org/show_bug.cgi?id=12627.

>
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#444739: xserver-xorg-video-mga: infinite loops once in a while

2007-09-30 Thread Julien Cristau
On Sun, Sep 30, 2007 at 18:53:58 +0200, Marc Haber wrote:

> Package: xserver-xorg-video-mga
> Version: 1:1.9.99.dfsg.1-1
> Severity: normal
> 
> Hi,
> 
> I am running unstable on a newly installed system. Graphics card is a
> Matrox G450 Dual Head, with two TFT displays connected via VGA. The
> xserver-xorg-video-mga is the version from experimental.
> 
> Once in a while, the driver gets into an endless loop: X takes all
> available CPU, does not react any more, and is not killable.
> 
> When SIGKILL is finally used, sometimes the entire system crashes.
> 
> This is also in upstream bugzilla, #12627.
> 
> Sorry, no dependency information as I am filing this bug from a
> different system.
> 
Hi,

you mentioned on irc that you got lots of "(EE) MGA(0): [dri] Idle timed
out, resetting engine..." in the log.
One thing that would probably be worth trying is to disable dri.  To do
that, add 'Disable "dri"' in the Module section of xorg.conf.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#444739: xserver-xorg-video-mga: infinite loops once in a while

2007-09-30 Thread Marc Haber
Package: xserver-xorg-video-mga
Version: 1:1.9.99.dfsg.1-1
Severity: normal

Hi,

I am running unstable on a newly installed system. Graphics card is a
Matrox G450 Dual Head, with two TFT displays connected via VGA. The
xserver-xorg-video-mga is the version from experimental.

Once in a while, the driver gets into an endless loop: X takes all
available CPU, does not react any more, and is not killable.

When SIGKILL is finally used, sometimes the entire system crashes.

This is also in upstream bugzilla, #12627.

Sorry, no dependency information as I am filing this bug from a
different system.

Greetings
Marc

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



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



Bug#444656: xserver-xorg-video-nv: Samsung LCD Syncmaster does not resume after dpms sleep

2007-09-30 Thread Julien Cristau
Please make sure to use reply-to-all so your mail gets to the bugreport,
not just to me.

On Sun, Sep 30, 2007 at 16:20:21 +0200, Tim Richardson wrote:

> On 9/30/07, Julien Cristau <[EMAIL PROTECTED]> wrote:
> > On Sun, Sep 30, 2007 at 08:40:02 +0200, Tim Richardson wrote:
> >
> > > A recent change to the  nv driver causes my monitor to "crash" when
> > > attempting to wake up after being sent into poweroff.
> >
> > Hi,
> >
> > can you bisect which exact change did this?  To rule out an X server
> > bug, it'd be good to first test a previously-working version of the nv
> > driver rebuilt against xserver 1.4.
> >
> 
> How can I do this best? Download an older source package from the
> testing repository, or go to old archives from x.org?

If you're sure that version 2.1.3 worked, then downloading the source
package from testing and building that against xserver 1.4 would be
the most simple way.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#420350: Same problem here with intel

2007-09-30 Thread Olaf Stetzer

Hi,

I just want to add some observations I made when struggling with this  
bug for
two months or even longer. I did install everything from unstable  
today, including

the recent kernel but the bug remains.

So, using the intel driver does not work at all, I found the vesa  
driver to be a workaround though.
BUT: Even the vesa driver exhibits this bug when I switch from X11 to  
a console and back.
Then the screen is black as if I would have used the intel driver  
from the beginning. This would
lead me to the conclusion that the bug is not in the driver but  
somewhere deeper in the core!


Hope that helps,

Olaf

My Hardware: 82845G video controller in a Compaq EVO PC

--
The state of mankind can be summarized in two sentences: We ought to.  
But we don't -- Kurt Tucholsky






Bug#444674: xserver-xorg-input-mouse: Duplicate events for mouse

2007-09-30 Thread Vincent Bernat
OoO Pendant le temps de midi  du dimanche 30 septembre 2007, vers 12:05,
Julien Cristau <[EMAIL PROTECTED]> disait:

>> If /dev/psaux is deprecated in favor of /dev/input/mice, this should
>> be noted in NEWS file. My current mouse is an USB one, so I can keep
>> /dev/input/mice. I don't know if PS/2 mouse are now handled by
>> /dev/input/mice too.
>> 
> AFAIK, /dev/psaux is deprecated as of linux 2.6, and gets the same
> events as the new /dev/input/mice (aka events from all mice on the
> system).  I'm not sure this belongs in an X NEWS file.

People upgrading  from sarge (via etch)  will be hit by  the bug. Maybe,
you  can tag this  bug wontfix  and wait  for other  people to  add some
comments.
-- 
panic("Attempted to kill the idle task!");
2.2.16 /usr/src/linux/kernel/exit.c



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



Bug#444674: xserver-xorg-input-mouse: Duplicate events for mouse

2007-09-30 Thread Julien Cristau
On Sun, Sep 30, 2007 at 11:42:35 +0200, Vincent Bernat wrote:

> If /dev/psaux is deprecated in favor of /dev/input/mice, this should
> be noted in NEWS file. My current mouse is an USB one, so I can keep
> /dev/input/mice. I don't know if PS/2 mouse are now handled by
> /dev/input/mice too.
> 
AFAIK, /dev/psaux is deprecated as of linux 2.6, and gets the same
events as the new /dev/input/mice (aka events from all mice on the
system).  I'm not sure this belongs in an X NEWS file.




signature.asc
Description: Digital signature


Bug#444674: xserver-xorg-input-mouse: Duplicate events for mouse

2007-09-30 Thread Vincent Bernat
Package: xserver-xorg-input-mouse
Version: 1:1.2.2-6
Severity: normal

Hi !

After recent upgrade of xserver-xorg-input-mouse, each simple click is
translated to a double click. In fact, xev output shows that each
event is duplicated.

The problem can be solved by removing Configured Mouse section in my
setup and setting CorePointer option for the Generic Mouse instead of
SendCoreEvents.

If /dev/psaux is deprecated in favor of /dev/input/mice, this should
be noted in NEWS file. My current mouse is an USB one, so I can keep
/dev/input/mice. I don't know if PS/2 mouse are now handled by
/dev/input/mice too.

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

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-11-05 09:58 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1827360 2007-09-29 23:13 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation G70 [GeForce 7300 GT] 
(rev a1)

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

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2744 2007-09-30 11:34 /etc/X11/xorg.conf

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

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

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

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

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


Section "Device"
Identifier  "RadeonVGA"
Driver  "nvidia"
BusId   "1:0:0"
Option  "MonitorLayout" "CRT,CRT"
Option  "DPMS" "On"
Screen  0
EndSection

Section "Device"
Identifier  "RadeonDVI"
Driver  "nvidia"
BusId   "1:0:0"
Option  "MonitorLayout" "CRT,CRT"
Option  "DPMS" "On"
Screen  1
Option  "UseEDID" "FALSE"
EndSection

Section "Monitor"
Identifier  "PanaSyncE70i"
HorizSync   30-70
VertRefresh 50-180
Option  "DPMS" "On"
EndSection

Section "Monitor"
Identifier  "Philips17B"
HorizSync   30-68
VertRefresh 50-160
Option  "DPMS" "On"
EndSection


Section "Screen"
Identifier  "SecondEcran"
Device  "RadeonDVI"
Monitor "Philips17B"
DefaultDepth24
SubSection "Display"
Depth   24
Modes   "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier  "PremierEcran"
Device  "RadeonVGA"
Monitor "PanaSyncE70i"
DefaultDepth24
SubSection "Display"
Depth   24
  

Bug#444656: xserver-xorg-video-nv: Samsung LCD Syncmaster does not resume after dpms sleep

2007-09-30 Thread Brice Goglin
Tim Richardson wrote:
> Package: xserver-xorg-video-nv
> Version: 1:2.1.5-1
> Severity: normal
>
>
> A recent change to the  nv driver causes my monitor to "crash" when 
> attempting to wake up after being sent into poweroff. When resuming 
> because I move the mouse or use the keyboard, the monitor dispalys  
> broad stripes of colors and then goes into a kind of psychadelic color 
> splash. Restarting X does nothing. All I need to do is to turn the 
> monitor off and on. It looks like the machine has crashed, but this is 
> not the case.
> This problem does not occur with the "nvidia" driver and it did not 
> occur until recently with the nv driver. 
> The problem (bad resume) is more likely to happen the longer the monitor 
> has been in sleep. 
> Right now I am using the nvidia driver, so the xorg.conf file attached 
> is wrong. I get the problem with the nv driver with a minimal xorg; no 
> modules, and DPMS set for the monitor. 
>   

Are you sure it is caused by the upgrade to xserver-xorg-video-nv 2.1.5
and not by xserver-xorg-core 1.4? Both have been upgraded recently.
Could you check with xserver-xorg-video-nv 1:2.1.3-5 available in
   
http://snapshot.debian.net/archive/2007/09/17/debian/pool/main/x/xserver-xorg-video-nv/

thanks
Brice




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



Bug#444656: xserver-xorg-video-nv: Samsung LCD Syncmaster does not resume after dpms sleep

2007-09-30 Thread Julien Cristau
On Sun, Sep 30, 2007 at 08:40:02 +0200, Tim Richardson wrote:

> A recent change to the  nv driver causes my monitor to "crash" when 
> attempting to wake up after being sent into poweroff.

Hi,

can you bisect which exact change did this?  To rule out an X server
bug, it'd be good to first test a previously-working version of the nv
driver rebuilt against xserver 1.4.

Cheers,
Julien



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