Bug#445067: log and xorg.conf files

2007-10-03 Thread Brice Goglin
James R. Van Zandt wrote:
 Here are my current xorg.conf and the old (good) and current (broken)
 log files.


Could be related to #420840, where the driver detects a wrong Panel size
and thus refuses larger resolutions. Please add
Option ModeDebug yes
to section Device of your xorg.conf, remove the Modes lines,
PreferredMode and Modeline and send the new log with
xserver-xorg-core 1.4 and video-intel 2:2.1.1-4.

Brice




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



Re: libpciaccess: Changes to 'refs/tags/libpciaccess-0.8.0+git20071002-1'

2007-10-03 Thread Brice Goglin
David Nusinow wrote:
 Tag 'libpciaccess-0.8.0+git20071002-1' created by David Nusinow [EMAIL 
 PROTECTED] at 2007-10-03 01:44 +

 Tagging upload of libpciaccess-0.8.0+git20071002-1 to experimental.

 Changes since libpciaccess-0.8.0+git20070628-1:
   

0.8.0+git20070628-1 ?


 Ian Romanick (6):
   Bump version to 0.9.0.
   Add linux_devmem.h to file list.
   Bump version to 0.9.1 (sigh).
   

0.9.1 ?

:)
Brice


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



xserver-xorg-video-mga: Changes to 'upstream-experimental'

2007-10-03 Thread Brice Goglin
 configure.ac|2 
 src/Makefile.am |1 
 src/mga.h   |   17 -
 src/mga_2064_crtc.c |   27 +--
 src/mga_dac3026.c   |2 
 src/mga_dacG.c  |2 
 src/mga_dga.c   |  451 
 src/mga_dri.c   |4 
 src/mga_driver.c|   25 --
 src/mga_exa.c   |   15 -
 src/mga_g_crtc.c|   38 ++--
 src/mga_g_crtc2.c   |   53 +-
 src/mga_g_output.c  |   65 ---
 src/mga_macros.h|2 
 src/mga_storm.c |   92 --
 src/mga_video.c |2 
 16 files changed, 152 insertions(+), 646 deletions(-)

New commits:
commit ecf0c42966beddb332e432e89e808ae9ff06e039
Author: Tilman Sauerbeck [EMAIL PROTECTED]
Date:   Wed Oct 3 00:15:14 2007 +0200

Bumped version to 1.9.100.

diff --git a/configure.ac b/configure.ac
index ec72bc1..3c5feab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,7 @@ AC_PREREQ(2.57)
 
 # When the version number is modified here, also modify it in src/mga.h.
 AC_INIT([xf86-video-mga],
-1.9.99,
+1.9.100,
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 xf86-video-mga)
 

commit fda9377e5e45b4fc3190bad03e081cadc96fe231
Author: Tilman Sauerbeck [EMAIL PROTECTED]
Date:   Wed Oct 3 00:03:20 2007 +0200

Bug #12598: Only write palette data when available.

When we're restoring a CRTC state from crtc_mode_set(), the palette
data is initialized to zero. Don't write it to the hardware in that case.

diff --git a/src/mga_g_crtc.c b/src/mga_g_crtc.c
index 7f3d90f..d428b3d 100644
--- a/src/mga_g_crtc.c
+++ b/src/mga_g_crtc.c
@@ -725,9 +725,10 @@ state_restore(xf86CrtcPtr crtc, MgaCrtcStatePtr state,
 if (vga_flags  VGA_SR_FONTS)
 MGAG200SERestoreFonts(scrn, vga);
 } else
-vgaHWRestore(scrn, vga, vga_flags);
+vgaHWRestore(scrn, vga, vga_flags  ~VGA_SR_CMAP);
 
-MGAGRestorePalette(scrn, vga-DAC);
+if (vga_flags  VGA_SR_CMAP)
+MGAGRestorePalette(scrn, vga-DAC);
 
 /*
  * this is needed to properly restore start address
@@ -853,7 +854,7 @@ crtc_restore(xf86CrtcPtr crtc)
 MgaCrtcDataPtr data = MGACRTCDATAPTR(crtc);
 MGAPtr pMga = MGAPTR(crtc-scrn);
 vgaHWPtr vga = VGAHWPTR(crtc-scrn);
-int vga_flags = VGA_SR_MODE;
+int vga_flags = VGA_SR_MODE | VGA_SR_CMAP;
 
 if (pMga-Primary)
 vga_flags |= VGA_SR_FONTS;

commit 6695dc4222bb97c0f9dffce46a54456eeb5f4b5f
Author: Tilman Sauerbeck [EMAIL PROTECTED]
Date:   Tue Oct 2 22:06:35 2007 +0200

Don't check texture dimensions in mgaCheckSourceTexture().

The server is already doing that for us.

diff --git a/src/mga_exa.c b/src/mga_exa.c
index 1c12616..5ffb553 100644
--- a/src/mga_exa.c
+++ b/src/mga_exa.c
@@ -322,11 +322,6 @@ mgaCheckSourceTexture(int tmu, PicturePtr pPict)
 int w = pPict-pDrawable-width;
 int h = pPict-pDrawable-height;
 
-if ((w  2047) || (h  2047)){
-DEBUG_MSG((Picture w/h too large (%dx%d)\n, w, h));
-return FALSE;
-}
-
 if (!mgaGetTexFormat(pPict)) {
 DEBUG_MSG((Unsupported picture format 0x%x\n, pPict-format));
 return FALSE;

commit 4266ced619de86b3a7706f3ee6c8a24ba111b6ba
Author: Tilman Sauerbeck [EMAIL PROTECTED]
Date:   Tue Oct 2 22:05:28 2007 +0200

Removed MGAFBLayout structure.

diff --git a/src/mga.h b/src/mga.h
index 6b18a93..5d0486b 100644
--- a/src/mga.h
+++ b/src/mga.h
@@ -222,16 +222,6 @@ typedef struct {
 void   (*PreInit)(ScrnInfoPtr);
 } MGARamdacRec, *MGARamdacPtr;
 
-
-typedef struct {
-int bitsPerPixel;
-int depth;
-int displayWidth;
-rgb weight;
-Bool Overlay8Plus24;
-DisplayModePtr mode;
-} MGAFBLayout;
-
 /* Card-specific driver information */
 
 typedef struct {
@@ -484,7 +474,6 @@ typedef struct {
 intvideoKey;
 intfifoCount;
 intRotate;
-MGAFBLayoutCurrentLayout;
 Bool   DrawTransparent;
 intMaxBlitDWORDS;
 Bool   TexturedVideo;
diff --git a/src/mga_2064_crtc.c b/src/mga_2064_crtc.c
index 0277172..dd06e25 100644
--- a/src/mga_2064_crtc.c
+++ b/src/mga_2064_crtc.c
@@ -400,7 +400,7 @@ state_set_pclk(ScrnInfoPtr scrn, MgaCrtcStatePtr state, 
long f_out, int bpp)
 * First we figure out lm, ln, and z.
 * Things are different in packed pixel mode (24bpp) though.
 */
-if ( pMga-CurrentLayout.bitsPerPixel == 24 ) {
+if (scrn-bitsPerPixel == 24) {
 
/* ln:lm = ln:3 */
lm = 65 - 3;
@@ -450,7 +450,7 @@ state_set_pclk(ScrnInfoPtr scrn, MgaCrtcStatePtr state, 
long f_out, int bpp)
}
 
 /* Values for the loop clock PLL registers */
-if ( pMga-CurrentLayout.bitsPerPixel == 24 ) {
+if (scrn-bitsPerPixel == 24 ) {
 /* Packed pixel mode values */
 state-DacClk[ 3 ] = ( ln  0x3f ) | 0x80;
   

xserver-xorg-video-mga: Changes to 'debian-experimental'

2007-10-03 Thread Brice Goglin
 configure   |   20 +-
 configure.ac|2 
 debian/changelog|7 
 src/Makefile.am |1 
 src/Makefile.in |   34 +--
 src/mga.h   |   17 -
 src/mga_2064_crtc.c |   27 +--
 src/mga_dac3026.c   |2 
 src/mga_dacG.c  |2 
 src/mga_dga.c   |  451 
 src/mga_dri.c   |4 
 src/mga_driver.c|   25 --
 src/mga_exa.c   |   15 -
 src/mga_g_crtc.c|   38 ++--
 src/mga_g_crtc2.c   |   53 +-
 src/mga_g_output.c  |   65 ---
 src/mga_macros.h|2 
 src/mga_storm.c |   92 --
 src/mga_video.c |2 
 19 files changed, 185 insertions(+), 674 deletions(-)

New commits:
commit 23ad4ca1f0418f4484e2eb557eab137797080ee3
Author: Brice Goglin [EMAIL PROTECTED]
Date:   Wed Oct 3 08:27:36 2007 +0200

New upstream release candidate

diff --git a/configure b/configure
index 317b3d1..c6d4ef9 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for xf86-video-mga 1.9.99.
+# Generated by GNU Autoconf 2.61 for xf86-video-mga 1.9.100.
 #
 # Report bugs to https://bugs.freedesktop.org/enter_bug.cgi?product=xorg.
 #
@@ -728,8 +728,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='xf86-video-mga'
 PACKAGE_TARNAME='xf86-video-mga'
-PACKAGE_VERSION='1.9.99'
-PACKAGE_STRING='xf86-video-mga 1.9.99'
+PACKAGE_VERSION='1.9.100'
+PACKAGE_STRING='xf86-video-mga 1.9.100'
 PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg'
 
 ac_unique_file=Makefile.am
@@ -1428,7 +1428,7 @@ if test $ac_init_help = long; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures xf86-video-mga 1.9.99 to adapt to many kinds of 
systems.
+\`configure' configures xf86-video-mga 1.9.100 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1498,7 +1498,7 @@ fi
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of xf86-video-mga 1.9.99:;;
+ short | recursive ) echo Configuration of xf86-video-mga 1.9.100:;;
esac
   cat \_ACEOF
 
@@ -1618,7 +1618,7 @@ fi
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-xf86-video-mga configure 1.9.99
+xf86-video-mga configure 1.9.100
 generated by GNU Autoconf 2.61
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1632,7 +1632,7 @@ cat config.log _ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by xf86-video-mga $as_me 1.9.99, which was
+It was created by xf86-video-mga $as_me 1.9.100, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   $ $0 $@
@@ -2347,7 +2347,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='xf86-video-mga'
- VERSION='1.9.99'
+ VERSION='1.9.100'
 
 
 cat confdefs.h _ACEOF
@@ -21919,7 +21919,7 @@ exec 61
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by xf86-video-mga $as_me 1.9.99, which was
+This file was extended by xf86-video-mga $as_me 1.9.100, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -21972,7 +21972,7 @@ Report bugs to [EMAIL PROTECTED].
 _ACEOF
 cat $CONFIG_STATUS _ACEOF
 ac_cs_version=\\
-xf86-video-mga config.status 1.9.99
+xf86-video-mga config.status 1.9.100
 configured by $0, generated by GNU Autoconf 2.61,
   with options \\`echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`\\
 
diff --git a/debian/changelog b/debian/changelog
index 21413f9..84f880a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-mga (1:1.9.100.dfsg.1-1) experimental; urgency=low
+
+  * New upstream release candidate.
+  * Fix dual-head on G550, closed: #324500, #356558, #444114.
+
+ -- Brice Goglin [EMAIL PROTECTED]  Wed, 03 Oct 2007 08:33:12 +0200
+
 xserver-xorg-video-mga (1:1.9.99.dfsg.1-1) experimental; urgency=low
 
   * New upstream release candidate.
diff --git a/src/Makefile.in b/src/Makefile.in
index f005e4b..d373a26 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -89,21 +89,21 @@ mga_drv_laLTLIBRARIES_INSTALL = $(INSTALL)
 LTLIBRARIES = $(mga_drv_la_LTLIBRARIES)
 mga_drv_la_DEPENDENCIES =
 am__mga_drv_la_SOURCES_DIST = mga_arc.c mga_bios.c mga_common.h \
-   mga_dac3026.c mga_dac3026.h mga_dacG.c mga_dacG.h mga_dga.c \
-   mga_driver.c mga_g450pll.c mga.h mga_hwcurs.c mga_macros.h \
-   mga_maven.h mgareg_flags.h mga_reg.h mga_sarea.h mga_shadow.c \
-   mga_vga.c mga_video.c mga_2064_crtc.c mga_2064_output.c \
-   mga_g_crtc.c mga_g_crtc2.c mga_g_output.c mga_dri.c mga_dri.h 

Processing of xserver-xorg-video-mga_1.9.100.dfsg.1-1_i386.changes

2007-10-03 Thread Archive Administrator
xserver-xorg-video-mga_1.9.100.dfsg.1-1_i386.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-mga_1.9.100.dfsg.1-1.dsc
  xserver-xorg-video-mga_1.9.100.dfsg.1.orig.tar.gz
  xserver-xorg-video-mga_1.9.100.dfsg.1-1.diff.gz
  xserver-xorg-video-mga_1.9.100.dfsg.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-mga_1.9.100.dfsg.1-1_i386.changes ACCEPTED

2007-10-03 Thread Debian Installer

Accepted:
xserver-xorg-video-mga_1.9.100.dfsg.1-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.9.100.dfsg.1-1.diff.gz
xserver-xorg-video-mga_1.9.100.dfsg.1-1.dsc
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.9.100.dfsg.1-1.dsc
xserver-xorg-video-mga_1.9.100.dfsg.1-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.9.100.dfsg.1-1_i386.deb
xserver-xorg-video-mga_1.9.100.dfsg.1.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.9.100.dfsg.1.orig.tar.gz


Override entries for your package:
xserver-xorg-video-mga_1.9.100.dfsg.1-1.dsc - source x11
xserver-xorg-video-mga_1.9.100.dfsg.1-1_i386.deb - optional x11

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



Bug#420350: Fwd: Bug#420350: xserver-xorg-video-intel: Bug in driver

2007-10-03 Thread Mateusz Kaduk
2007/10/3, Brice Goglin:

  Thanks I am looking forward for that. Can You post direct url ?

 http://people.debian.org/~bgoglin/rebuilds/i810/1.7.2-Xserver1.4/http://people.debian.org/%7Ebgoglin/rebuilds/i810/1.7.2-Xserver1.4/

 Untested, of course :)


Tested.
~$ glxinfo  | grep render
direct rendering: Yes
OpenGL renderer string: Mesa DRI Intel(R) 845G 20061017 x86/MMX/SSE2

Package doesn't install because of package conflict. This could be fixed so
i810 replaces i810 link to intel with driver file. But binaries are
compatible. I unpacked i810_drv.so from Your package and copied to
/usr/lib/xorg/modules/drivers/i810_drv.so

Also having acpid instead of apmd caused black LCD.

Now everything works fine.
Thanks for fast response, good job:)


Bug#444183: works for me...

2007-10-03 Thread Soeren Sonnenburg
Package: xserver-xorg-input-mouse
Followup-For: Bug #444183


I wonder why it does not work for you... however it works here on this
mbp1,1 ...

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

/etc/X11/X target unchanged from checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-01-10 17:20 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1669528 2007-09-16 20:56 /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 M56P [Radeon Mobility 
X1600]

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

Xorg X server configuration file status:
-rw-rw-rw- 1 root root 5296 2007-09-28 16:07 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:

Section InputDevice
Identifier  Internal Touchpad
Driver  synaptics
Option  SendCoreEvents true
Option  Device 
/dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-mouse
Option  Protocol auto-dev
Option  MinSpeed 0.50
Option  MaxSpeed 4
Option  AccelFactor 0.09
# Tap options.
Option  FastTaps off# Respond faster to single-taps, and 
slower to double-taps
Option  TapButton1 0 # Mouse button for 1-finger tap
Option  TapButton2 0 # Mouse button for 2-finger tap
Option  TapButton3 0 # Mouse button for 3-finger tap
Option  CoastingSpeed 0 # Scrolling *after* the finger is 
released
Option  LockedDrags off# On means dragging is terminated 
with a tap
Option  VertEdgeScroll off
Option  HorizEdgeScroll off
Option  VertTwoFingerScroll true
Option  HorizTwoFingerScroll false
Option  LTCornerButton 0
Option  RTCornerButton 0
Option  LBCornerButton 0
Option  RBCornerButton 0
EndSection

-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (700, 'stable'), (650, 'testing'), (600, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.23-rc9-sonne (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg-input-mouse depends on:
ii  libc6 2.6.1-5GNU C Library: Shared libraries
hi  xserver-xorg-core 2:1.4-2X.Org X server -- core server

xserver-xorg-input-mouse recommends no packages.

-- no debconf information



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



Bug#337694: marked as done (xserver-xorg: Second display not used on Matrox G550.)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Wed, 03 Oct 2007 09:50:03 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in 1:1.9.100.dfsg.1-1
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)

---BeginMessage---
Package: xserver-xorg
Version: 6.8.2.dfsg.1-7
Severity: important

I did a Debian-testing (Etch) install from a netinst CD. The automatic
/etc/X11/xorg.conf file produced a configuration that worked, but didn't
use the second display. Instead, both displays showed the same thing. This
is not unusual for a system that I have not yet set up to use the second
display.

I edited xorg.conf (see below) to use the second display. I restarted the
X server and it worked correctly. However, upon rebooting the second
display did not work with the new configuration. Instead of mirroring the
first display, the monitor remained in the standby mode (presumeably it
was not recieving a signal). I reverted back to the old configuration, got
the mirrored display, used the new configuration, and got the second
display correctly. This is my workaround.

I was previously using Debian-stable (Sarge) and the second display worked
correctly with that.

I'm using a Matrox G550 AGP 32mb video card with an Asus A8V motherboard.

$ uname -a
Linux thecheat 2.6.12-1-386 #1 Tue Sep 27 12:41:08 JST 2005 i686 GNU/Linux

This is my new xorg.conf:

Section Files
FontPathunix/:7100
FontPath/usr/lib/X11/fonts/misc
FontPath/usr/lib/X11/fonts/cyrillic
FontPath/usr/lib/X11/fonts/100dpi/:unscaled
FontPath/usr/lib/X11/fonts/75dpi/:unscaled
FontPath/usr/lib/X11/fonts/Type1
FontPath/usr/lib/X11/fonts/CID
FontPath/usr/lib/X11/fonts/100dpi
FontPath/usr/lib/X11/fonts/75dpi
EndSection
Section Module
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadtype1
Loadv4l
Loadvbe
EndSection
Section InputDevice
Identifier  Generic Keyboard
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us
EndSection
Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  Emulate3Buttons   true
Option  ZAxisMapping  4 5
EndSection
Section Device
Identifier  Matrox Graphics, Inc. MGA G550 AGP #1
Driver  mga
BusID   PCI:1:0:0
Screen  0
EndSection
Section Device
Identifier  Matrox Graphics, Inc. MGA G550 AGP #2
Driver  mga
BusID   PCI:1:0:0
Screen  1
EndSection
Section Monitor
Identifier  Samsung SyncMaster 710N
HorizSync   30-75
VertRefresh 56-70
Option  DPMS
EndSection
Section Monitor
Identifier  NEC FE771SB
HorizSync   50-64.2
VertRefresh 50-70.0
Option  DPMS
EndSection
Section Screen
Identifier  Default Screen #1
Device  Matrox Graphics, Inc. MGA G550 AGP #1
Monitor Samsung SyncMaster 710N
DefaultDepth24
SubSection Display
Depth   24
Modes   1280x1024
EndSubSection
EndSection
Section Screen
Identifier  Default Screen #2
Device  Matrox Graphics, Inc. MGA G550 AGP #2
Monitor NEC FE771SB
DefaultDepth24
SubSection Display
Depth   24
Modes   1280x1024
EndSubSection
EndSection
Section ServerLayout
Identifier  Default Layout
Option  Xinerama on
Screen  0 Default Screen #1 0 0
Screen  1 Default Screen #2 RightOf Default Screen #1
InputDevice Generic Keyboard
InputDevice Configured Mouse
EndSection
Section DRI
Mode0666
EndSection

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

Bug#444114: marked as done (xserver-xorg-video-mga: Xinerama not working since last update)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Wed, 03 Oct 2007 09:50:03 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in 1:1.9.100.dfsg.1-1
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)

---BeginMessage---
Package: xserver-xorg-video-mga
Version: 1:1.4.7.dfsg.1-3
Severity: important

After installing the last upgraded packages, my xserver started ignoring
xinerama configuration in lower mentioned xorg.conf - ideas

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

/etc/X11/X target unchanged from checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 Apr 24  2006 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1669528 Sep 16 20:56 /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: Matrox Graphics, Inc. MGA G550 AGP (rev 01)

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

Xorg X server configuration file status:
-rw-r--r-- 1 root root 3196 Sep 26 08:59 /etc/X11/xorg.conf

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

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

Section Module
Loadbitmap
Loadddc
#   Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadtype1
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout de
Option  XkbVariantnodeadkeys
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 DRI
Mode0666
EndSection

Section ServerFlags
EndSection

Section Monitor
Identifier  Display 0
HorizSync   30 - 82
VertRefresh 56-76
EndSection

Section Monitor
Identifier  Display 1
HorizSync   30 - 82
VertRefresh 56-76
EndSection

Section Device
 Identifier  Matrox Graphics, Inc. MGA G550 AGP, Screen 0
 Driver  mga
 BusID   PCI:1:0:0
 Screen  0
 Option hwcursor off
EndSection

Section Device
 Identifier  Matrox Graphics, Inc. MGA G550 AGP, Screen 1
 Driver  mga
 BusID   PCI:1:0:0
 Screen  1
 Option  hwcursor off
EndSection

Section Screen
 Identifier  Screen 0
 Device  Matrox Graphics, Inc. MGA G550 AGP, Screen 0
 Monitor Display 0
 DefaultDepth16
 SubSection Display
Depth   16
Modes   1280x1024
 EndSubSection
EndSection

Section Screen
 Identifier  Screen 1
 Device  Matrox Graphics, Inc. MGA G550 AGP, Screen 1
 Monitor Display 1
 DefaultDepth16
 SubSection Display
Depth   16
Modes   1280x1024
 EndSubSection
EndSection

Section ServerLayout

Bug#372079: marked as done (xserver-xorg-video-mga: strange frequency behavior with dvi)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Wed, 03 Oct 2007 09:50:03 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in 1:1.9.100.dfsg.1-1
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)

---BeginMessage---
Package: xserver-xorg-video-mga
Version: 1:1.2.1.3.dfsg.1-2
Severity: grave
Justification: renders package unusable


i just upgraded from xfree86 4.2 to xorg 7.0.  this driver seems to
output frequencies that are out of range for the monitor when the
monitor's documented ranges are entered in the horizsync line.

the documented ranges worked perfectly with 4.2, although that was
probably using matrox's proprietary driver.

when the horizsync line is reduced to a narrow range of frequencies,
there are strange -dpi and font behaviors.  everything is ugly and
many things are not resizable by -dpi and far too large.  for example,
gkrellm is too large and unaffected by the -dpi option to the x
server.  small fonts are impossible to read in most cases, even when
the font path is identical to 4.2.  strangely, i don't think i changed
xfs at all.  xorg.conf is the same as xf86config-4 was otherwise.
configuring via debconf and via mgapdesk result in the same behaviors.

it's possible that some of these are software changes in the way x
works since 4.2 and have nothing to do with the frequency issue or
even the driver.  i have no idea whether frequency changes or the
driver are the cause or not.

i arrived at the narrow range by trial and error.

card=g550
output=dvi
monitor=sony lcd

HorizSync35.0 - 38.0 #far narrower than the monitor supports
VertRefresh  52.0 - 60.0

i will provide xorg.conf, x server logs, monitor specs, or any other
data -- just ask.  i don't know which would be helpful and don't want
to clutter the bug report with non-useful data.

thanks.

p.s.  severity set to grave because i'm not sure which of the
following i should do.  i cannot use the driver as it is now.  if this
is incorrect, please reassign.

o downgrade to xfree86
o try to fix bugs
o reinstall etch
o try to install proprietary drivers
o replace card

all are undesirable, but if i can help fix the bug by working around it
and providing data to the people working on the driver, i will.

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16myver
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xserver-xorg-video-mga depends on:
ii  libc6 2.3.6-13   GNU C Library: Shared libraries
ii  xserver-xorg-core 1:1.0.2-8  X.Org X server -- core server

xserver-xorg-video-mga recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
Version: 1:1.9.100.dfsg.1-1

These bugs should be fixed in 1.9.100 that I just uploaded (with a typo
in the closers in the changelog...). It contains fixes for upstream
bugs #615, #12575 and #12598.

Brice




 xserver-xorg-video-mga (1:1.9.100.dfsg.1-1) experimental; urgency=low
 .
   * New upstream release candidate.
   * Fix dual-head on G550, closed: #324500, #356558, #444114.

---End Message---


Bug#376326: marked as done (xserver-xorg-video-mga: MGA G550 DVI output doesn't work)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Wed, 03 Oct 2007 09:50:03 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in 1:1.9.100.dfsg.1-1
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)

---BeginMessage---
Package: xserver-xorg-video-mga
Version: 1:1.2.1.3.dfsg.1-2
Severity: normal

This is a continuation of bug 356558.  The DVI output doesn't work under X
but console output works fine.

This problem isn't related to a particular kernel version.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xserver-xorg-video-mga depends on:
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  xserver-xorg-core 1:1.0.2-8  X.Org X server -- core server

xserver-xorg-video-mga recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
Version: 1:1.9.100.dfsg.1-1

These bugs should be fixed in 1.9.100 that I just uploaded (with a typo
in the closers in the changelog...). It contains fixes for upstream
bugs #615, #12575 and #12598.

Brice




 xserver-xorg-video-mga (1:1.9.100.dfsg.1-1) experimental; urgency=low
 .
   * New upstream release candidate.
   * Fix dual-head on G550, closed: #324500, #356558, #444114.

---End Message---


Bug#324500: marked as done (mga: G550 Dualhead)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Wed, 03 Oct 2007 09:50:03 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in 1:1.9.100.dfsg.1-1
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)

---BeginMessage---
Package: xserver-xorg
Version: 6.8.2.dfsg.1-5
Tags: upstream

Hi,

Perhaps somebody of the XSF has the final good idea...

Starting X on a G550 in dual-head/Xinerama mode won't activate signal output 
on the second head.  Starting X in 'clone mode' (no special configuration 
in xorg.conf, thus both screens show the same content) switches on the 
second head, so I can kill and restart X with the Xinerama configuration 
which works then just fine until the next reboot.

More details (and confirmation from a different user): 
http://lists.debian.org/debian-user/2005/08/msg02369.html

Others have the same problem:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=108073
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=126820

Upstream indicates it *might* be fixed as of this weekend.
https://bugs.freedesktop.org/show_bug.cgi?id=615
If somebody could isolate the patch I'd be inclined to try it (how long does 
Xorg build on a 3GHz P4?)

cheers
-- vbi

-- 
Yesterday I was a dog.  Today I'm a dog.  Tomorrow I'll probably still
be a dog. Sigh!  There's so little hope for advancement.
-- Snoopy


pgpSGoSHUJ5wf.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Version: 1:1.9.100.dfsg.1-1

These bugs should be fixed in 1.9.100 that I just uploaded (with a typo
in the closers in the changelog...). It contains fixes for upstream
bugs #615, #12575 and #12598.

Brice




 xserver-xorg-video-mga (1:1.9.100.dfsg.1-1) experimental; urgency=low
 .
   * New upstream release candidate.
   * Fix dual-head on G550, closed: #324500, #356558, #444114.

---End Message---


Bug#372067: marked as done (xserver-xorg-video-mga: Please explicitly say in the package description and man page what the driver is capable of)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Wed, 03 Oct 2007 09:50:03 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in 1:1.9.100.dfsg.1-1
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)

---BeginMessage---
Package: xserver-xorg-video-mga
Version: 1:1.2.1.3.dfsg.1-2
Severity: normal


I have not been able to determine whether this package is *supposed* to
work with DVI output on a Matrox G550 card.  Does regular single-head
DVI operation require special Matrox modules?

It would be splendid if the package description would say whether it is
supposed to provide basic DVI functionality or not.

The strategy of just trying it does not work in my case because xorg
is not working for me.  I get signal out of range even with correctly
specified frequency ranges, and even with a bizarre extremely narrow
range of frequencies, X launches but has strange non-resizing -dpi and
extremely ugly font behavior.  (Perhaps it should be obvious to me
whether this means the card is working.)

The man page is unclear.  It says The second head of dual-head cards
is supported for the G450 and G550 which implies that DVI works
unless there are dual VGA versions of those cards.  But then it says
[t]hat module ... may be necessary to use the DVI (digital) output on
the G550  which implies that it might or might not work, and
doesn't say when it might and when it might not.  When might it?

The xorg web sites don't seem to say (there is a broken link), and the
Matrox forums are hideously complicated on the point due to various
versions of xorg and Matrox modules and people who are overclocking
and using special DRI thingies for gaming.

What's a person who just wants basic functionality to do?

So a package description that simply states whether it is supposed to
work or not (and thus whether the user needs to go on a wild goose
chase getting Matrox's unsupported proprietary closed-source black-box
obviously non-dfsg modules to work) would be great.

A hint on what to do if you need the proprietary driver would be
beyond great, somewhere in the fantastic to superlative range.

(I am unsure whether to downgrade to Sarge xfree86 or earlier, forge
ahead fixing xorg, figure out how to use the proprietary driver,
reinstall etch, or replace my card.  Guidance from the package
description and man page would simplify those choices.)

If the driver is slowly picking away at the closed-source, kind of
working and kind of not but expected to improve and would users please
report bugs -- that sort of thing -- that would be good to mention.

Thanks.

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16myver
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xserver-xorg-video-mga depends on:
ii  libc6 2.3.6-13   GNU C Library: Shared libraries
ii  xserver-xorg-core 1:1.0.2-8  X.Org X server -- core server

xserver-xorg-video-mga recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
Version: 1:1.9.100.dfsg.1-1

These bugs should be fixed in 1.9.100 that I just uploaded (with a typo
in the closers in the changelog...). It contains fixes for upstream
bugs #615, #12575 and #12598.

Brice




 xserver-xorg-video-mga (1:1.9.100.dfsg.1-1) experimental; urgency=low
 .
   * New upstream release candidate.
   * Fix dual-head on G550, closed: #324500, #356558, #444114.

---End Message---


Bug#445097: bitmap program disappeared?!

2007-10-03 Thread Rich Felker
Package: xbase-clients
Version: 1:7.3+2
Severity: normal

The program 'bitmap' from the standard X clients seems to have
disappeared with the split of the xbase-clients package. As far I can
can tell it is gone, not moved to another package. I use this program
frequently and consider its disappearance a major regression; please
include it in one of the split packages.



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



Bug#445100: xserver-xorg: Ctl-Alt-Fx has stopped working after a fresh install

2007-10-03 Thread clayton
Package: xserver-xorg
Version: 1:7.3+2
Severity: normal


I just did a fresh install to a new hard-drive, everything up-to-date to 
the latest testing. Now when I hit Ctl-Alt-F1, instead of getting a 
console, the keyboard and mouse are locked up. This happens at both the 
gdm login prompt and while logged into KDE. If I login through the 
network and kill X, function is restored.

On the same machine using the same xorg.conf but a different hard drive 
with an old install, Ctrl-Alt-F1 works just fine.

-- 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-10-02 05:50 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1669528 2007-09-17 02:56 /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 Rage Mobility P/M AGP 
2x (rev 64)

/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 2985 2007-10-02 06:50 /etc/X11/xorg.conf

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

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/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
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadtype1
Loadvbe
EndSection

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

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

Section Device
Identifier  Rage Mobility
Driver  ati
BusID   PCI:01:00:00
EndSection

Section Monitor
Identifier  LCD
Option  DPMS
HorizSync   28-50
VertRefresh 43-75
EndSection

Section Screen
Identifier  Default Screen
Device  Rage Mobility
Monitor LCD
DefaultDepth24
SubSection Display
Depth   1
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   24
Modes   1024x768 800x600 640x480
EndSubSection
EndSection

Section ServerLayout
Identifier  Default Layout
Screen  Default Screen

Bug#445097: bitmap program disappeared?!

2007-10-03 Thread Timo Aaltonen

On Wed, 3 Oct 2007, Rich Felker wrote:


Package: xbase-clients
Version: 1:7.3+2
Severity: normal

The program 'bitmap' from the standard X clients seems to have
disappeared with the split of the xbase-clients package. As far I can
can tell it is gone, not moved to another package. I use this program
frequently and consider its disappearance a major regression; please
include it in one of the split packages.


Yes, I did the original split, but didn't think that anyone actually used 
bitmap :) (it isn't included in Fedora, for instance)


Anyway, it will be added to x11-apps.

t



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



Bug#356558: marked as done (xserver-xorg: Matrox 550 DVI port doesn't work)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Wed, 03 Oct 2007 09:50:03 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in 1:1.9.100.dfsg.1-1
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)

---BeginMessage---
Package: xserver-xorg
Version: 6.9.0.dfsg.1-4
Severity: normal

I have a Sceptre X20G-Naga II connected to my matrox adaptor.  If I bring it
up attached to the DVI port (DVI-DVI), console works (VGA is handled
differently by the card, I assume), but I get a black screen from X.

Connecting the monitor up VGA-VGA works as expected.


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

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx  1 root root 17 Jan 28 17:04 /etc/X11/X - /usr/bin/X11/Xorg
-rwxr-xr-x  1 root root 1878044 Jan 14 20:40 /usr/bin/X11/Xorg

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

VGA-compatible devices on PCI bus:
:01:00.0 VGA compatible controller: Matrox Graphics, Inc. MGA G550 AGP (rev 
01)

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

Xorg X server configuration file status:
-rw-r--r--  1 root root 2732 Mar 12 12:49 /etc/X11/xorg.conf

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

Section Files
FontPathunix/:7100# local font server
# if the local font server has problems, we can fall back on these
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
FontPath/usr/share/fonts/truetype
FontPath/usr/lib/X11/fonts/CID
FontPath/usr/lib/X11/fonts/Speedo
FontPath/usr/lib/X11/fonts/misc
FontPath/usr/lib/X11/fonts/cyrillic
FontPath/usr/lib/X11/fonts/100dpi
FontPath/usr/lib/X11/fonts/75dpi
FontPath/usr/lib/X11/fonts/Type1  
EndSection

Section Module
LoadGLcore
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadspeedo
Loadtype1
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules  xfree86
Option  XkbModel  pc104
Option  XkbLayout us
Option  XkbOptionsctrl:nocaps
EndSection

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

Section Device
Identifier  Matrox Graphics, Inc. G550
Driver  mga
EndSection

Section Monitor
Identifier  Generic Monitor
HorizSync   24-82
VertRefresh 56-85
Option  DPMS
EndSection

Section Screen
Identifier  Default Screen
Device  Matrox Graphics, Inc. G550
Monitor Generic Monitor
DefaultDepth24
SubSection Display
Depth   1
EndSubSection
SubSection Display
Depth   4
EndSubSection
SubSection Display
Depth   8
EndSubSection
SubSection Display
Depth   15
EndSubSection
SubSection Display
Depth   16
EndSubSection
SubSection Display
Depth   24
Modes   

Re: Prefer nvidia over nv when available

2007-10-03 Thread Free Ekanayaka
Hi David,

|--== David Nusinow writes:

  DN On Mon, Oct 01, 2007 at 11:30:26PM +0200, Free Ekanayaka wrote:
  Hi all,
  
  is there a way to instruct the script(s) that generate the xorg.conf
  file at installation time to prefer nvidia over nv when the first is
  available? (and possibly to mark the proper packages for installation
  when not already installed).

  DN Not currently but it is definitely something I'm planning to do. Since I'm
  DN going to scrap that section of the debconfage soon, adding the feature
  DN there is pretty useless. The solution we currently have is a temporary one
  DN due to changes upstream, but I'll be implementing things upstream over the
  DN next few weeks, and I'll follow it up with this sort of feature so that
  DN nvidia can override nv by default when they're both installed (if the
  DN nvidia developers decide that's what they want anyway).

Thanks. Just a few questions, if you already know the answer. Beside
the regular nvidia-glx package and the relevant kernel module package
would this mechanism also support the various other packages of the
nvidia driver currently available in sid (e.g. legacy-71xx and
legacy-96xx)?

These different nvidia packages conflict with each other, so it might
happen that the correct nvidia package is not installed by the time
the xorg packages run their debconf script. How would this situation
be handled?

Ciao!

Free


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



Bug#445097: bitmap program disappeared?!

2007-10-03 Thread Rich Felker
On Wed, Oct 03, 2007 at 11:50:53AM +0300, Timo Aaltonen wrote:
 Yes, I did the original split, but didn't think that anyone actually used 
 bitmap :) (it isn't included in Fedora, for instance)
 
 Anyway, it will be added to x11-apps.

Thanks! For what it's worth, this program, simple as it is, is
extremely useful for bitmap-font work and similar tasks. It's light
and has a simple interface and lets you work on a highly-zoomed bitmap
while previewing the actual size at the same time.

Glad to see yet another way Debian will be superior to Fedora. :)



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



Bug#445067: upgrade breaks EDID probing with Intel 945GM chipset

2007-10-03 Thread Brice Goglin
forcemerge 437066 445067
thank you



James R. Van Zandt wrote:
 Here's the revised report.  I see the EDID information does appear now, so
 your diagnosis looks right.

 [...]

 (II) intel(0): Not using default mode 1024x768 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1024x768 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1152x864 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1280x960 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1280x1024 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1600x1200 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1792x1344 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1856x1392 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1920x1440 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 832x624 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1280x768 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1280x800 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1152x768 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1152x864 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1400x1050 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1440x900 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1600x1024 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1680x1050 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1920x1200 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 1920x1440 (exceeds panel dimensions)
 (II) intel(0): Not using default mode 2048x1536 (exceeds panel dimensions)
   


Since 832x624 exceeds panel dimensions while 800x600 is ok, I guess it
wrongly detected PanelSize 800x600.

Actually I wrong about the similar bug report, it's #437066. So I
merging with this one and I added a note in the corresponding upstream
bug at https://bugs.freedesktop.org/show_bug.cgi?id=11932

Brice




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



Processed: Re: Bug#445067: upgrade breaks EDID probing with Intel 945GM chipset

2007-10-03 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 forcemerge 437066 445067
Bug#437066: xserver-xorg-video-intel: refuses 1366x768 because detects 1024x768 
panel size
Bug#445067: xorg: upgrade breaks EDID probing with Intel 945GM chipset
Forcibly Merged 437066 445067.

 thank you
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#443936: xserver-xorg-video-mga: windowmaker and 1.9.99 get along terribly

2007-10-03 Thread kls
 kls wrote:
  The previously observed abysmal 2d performance seems to be triggered
  by WindowMaker. This does not seem to be a compositing problem,
  because it is identical regardless of whether I have DRI enabled or
  not. It also appears independent of number of active screens.
 
  All windows take approximately 1 sec / MPixel to draw on my computer
  (1GHz athlon)

Hi Brice --

I finally got around to upgrading my laptop (ATI M6LY)'s install of
sid, and found that this is *not* a problem in the mga driver. It's a
problem in some other random xorg component, presumably
libxcomposite1.

To work around it, I have to disable both the Composite extension and
AIGLX -- it seems that with only one disabled the other caused it to
be re-enabled.

(Any suggestions on tracing down what's actually wrong?)

(e.g.
Section Extensions
Option Composite disable
EndSection
Section ServerFlags
Option  AIGLX no
EndSection
)

So I guess that means this bug should either be moved to a different
package or closed.

Anyway, thanks for your assistance!
 - Robert Jacobs



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



Bug#242216: xserver-xfree86.config hardcodes different defaults for display selection method on different priorities

2007-10-03 Thread Nikita V. Youshchenko

 tags 242216 - patch
 reassign 242216 xserver-xorg
 kthxbye

 On Thu, Apr  8, 2004 at 11:29:46 +0400, Nikita V. Youshchenko wrote:
Could you please explain what you mean?
  
   Sure.
   ...
   I am referring to the large case statement at line 990 of
   xserver-xfree86.config.in[1].
  
   The Simple) and Medium) cases have no auto-answer logic.  Your patch
   should not be applied until they do.
 
  I'm not sure I understand why auto_answer logic is needed there, but
  anyway the attached patch is probably what you wish.

 Hi,

 is this bug still a problem for you with the current xserver-xorg
 package configuration?

Hi.

Unfortunately, too many time has passed since I reported that bug.
I'm currently completely out of context.
I've tried to check the current situation - but I even can't find what is 
modern equivalent of old xserver-xfree86.config file.

Probably this bug should be just closed.

Nikita


pgpiRfhZSh5mt.pgp
Description: PGP signature


[bts-link] source package xorg-server

2007-10-03 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 #413424
#  * https://bugs.freedesktop.org/show_bug.cgi?id=11073
#  * remote status changed: (?) - NEW
usertags 413424 + status-NEW

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

thanks



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

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

user [EMAIL PROTECTED]

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

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

thanks



Re: libpciaccess: Changes to 'refs/tags/libpciaccess-0.8.0+git20071002-1'

2007-10-03 Thread David Nusinow
On Wed, Oct 03, 2007 at 08:13:40AM +0200, Brice Goglin wrote:
 David Nusinow wrote:
  Tag 'libpciaccess-0.8.0+git20071002-1' created by David Nusinow [EMAIL 
  PROTECTED] at 2007-10-03 01:44 +
 
  Tagging upload of libpciaccess-0.8.0+git20071002-1 to experimental.
 
  Changes since libpciaccess-0.8.0+git20070628-1:

 
 0.8.0+git20070628-1 ?
 
 
  Ian Romanick (6):
Bump version to 0.9.0.
Add linux_devmem.h to file list.
Bump version to 0.9.1 (sigh).

 
 0.9.1 ?
 
 :)

Right, good catch. I'll fix that in the next upload.

 - David Nusinow


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



Re: Prefer nvidia over nv when available

2007-10-03 Thread David Nusinow
On Wed, Oct 03, 2007 at 11:08:29AM +0200, Free Ekanayaka wrote:
 Hi David,
 
 |--== David Nusinow writes:
 
   DN On Mon, Oct 01, 2007 at 11:30:26PM +0200, Free Ekanayaka wrote:
   Hi all,
   
   is there a way to instruct the script(s) that generate the xorg.conf
   file at installation time to prefer nvidia over nv when the first is
   available? (and possibly to mark the proper packages for installation
   when not already installed).
 
   DN Not currently but it is definitely something I'm planning to do. Since 
 I'm
   DN going to scrap that section of the debconfage soon, adding the feature
   DN there is pretty useless. The solution we currently have is a temporary 
 one
   DN due to changes upstream, but I'll be implementing things upstream over 
 the
   DN next few weeks, and I'll follow it up with this sort of feature so that
   DN nvidia can override nv by default when they're both installed (if the
   DN nvidia developers decide that's what they want anyway).
 
 Thanks. Just a few questions, if you already know the answer. Beside
 the regular nvidia-glx package and the relevant kernel module package
 would this mechanism also support the various other packages of the
 nvidia driver currently available in sid (e.g. legacy-71xx and
 legacy-96xx)?
 
 These different nvidia packages conflict with each other, so it might
 happen that the correct nvidia package is not installed by the time
 the xorg packages run their debconf script. How would this situation
 be handled?

The idea for the future is that all the drivers will export a symbol table
of the PCI ID's they support. The server will scan them for drivers
supporting the required PCI ID. My plan is to have them export an
additional symbol table consisting of driver names that they override. So
nvidia would export an override table with nv in it.

The notable thing about this is that it exists entirely outside the
packaging system, so it's entirely up to upstream. In the case of the
various nvidia drivers, if the legacy drivers are updated to include these
symbols then they'll be automatically loaded if they're available. If not,
then the server will load something else (nv if available, or an
arch-specific fallback like vesa if not). 

So, if Nvidia decides to update their drivers, they'll get the benefits of
this. The PCI ID symbol table thing already exists upstream in the xserver
master branch, but the code to auto-load the driver based on it doesn't
exist yet, but that's my goal for next week. In the worst-case scenario,
Nvidia won't add the necessary symbols and users will just have to edit
their xorg.confs the same way they did in the past.

 - David Nusinow


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



Processing of xfs_1.0.5-1_i386.changes

2007-10-03 Thread Archive Administrator
xfs_1.0.5-1_i386.changes uploaded successfully to localhost
along with the files:
  xfs_1.0.5-1.dsc
  xfs_1.0.5.orig.tar.gz
  xfs_1.0.5-1.diff.gz
  xfs_1.0.5-1_i386.deb

Greetings,

Your Debian queue daemon


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



xfs: Changes to 'debian-unstable'

2007-10-03 Thread David Nusinow
 configure.ac |4 +-
 debian/changelog |   11 +-
 debian/patches/01_xfs_fixes.diff |   64 +--
 difs/dispatch.c  |   13 +++
 difs/fontinfo.c  |   19 +++
 xfs.man  |   39 +--
 6 files changed, 115 insertions(+), 35 deletions(-)

New commits:
commit cef29096503593e872be3abda0749847b13e9cc2
Author: David Nusinow [EMAIL PROTECTED]
Date:   Wed Oct 3 21:12:22 2007 -0400

* Fix up 01_xfs_fixes.diff. This one needs to go upstream yesterday.

diff --git a/debian/changelog b/debian/changelog
index 0a738da..e1e84b9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,8 +11,9 @@ xfs (1:1.0.5-1) unstable; urgency=high
   * New upstream release. High priority for security fixes.
 + fix for integer overflows in build_range(). CVE-4568
 + Fix for heap overwrite in swap_char2b() CVE-2007-4568
+  * Fix up 01_xfs_fixes.diff. This one needs to go upstream yesterday.
 
- -- David Nusinow [EMAIL PROTECTED]  Wed, 03 Oct 2007 20:26:51 -0400
+ -- David Nusinow [EMAIL PROTECTED]  Wed, 03 Oct 2007 21:11:50 -0400
 
 xfs (1:1.0.4-2) unstable; urgency=high
 
diff --git a/debian/patches/01_xfs_fixes.diff b/debian/patches/01_xfs_fixes.diff
index a8ffb1f..10bbcc6 100644
--- a/debian/patches/01_xfs_fixes.diff
+++ b/debian/patches/01_xfs_fixes.diff
@@ -27,8 +27,8 @@ Not submitted upstream yet.
 
 Index: os/utils.c
 ===
 os/utils.c.orig2007-03-03 01:02:00.0 +0100
-+++ os/utils.c 2007-03-03 01:07:29.0 +0100
+--- os/utils.c.orig2007-10-03 20:34:16.0 -0400
 os/utils.c 2007-10-03 20:34:57.0 -0400
 @@ -3,7 +3,7 @@
   * misc os utilities
   */
@@ -278,9 +278,9 @@ Index: os/utils.c
 +}
 Index: xfs.man
 ===
 xfs.man.orig   2007-03-03 01:02:00.0 +0100
-+++ xfs.man2007-03-03 01:12:48.0 +0100
-@@ -37,206 +37,320 @@
+--- xfs.man.orig   2007-10-03 20:34:16.0 -0400
 xfs.man2007-10-03 21:07:48.0 -0400
+@@ -37,137 +37,236 @@
  .\ suitability of this software for any purpose.  It is provided as is
  .\ without express or implied warranty.
  .\ $Xorg: xfs.man,v 1.4 2001/02/09 02:05:42 xorgcvs Exp $
@@ -323,7 +323,7 @@ Index: xfs.man
 +.BI \-user  username
 +]
  .SH DESCRIPTION
-+.B xfs
+++.B xfs
 +is the X Window System font server.
 +It supplies fonts to X Window System display servers.
 +The server is usually run by a system administrator, and started via
@@ -509,8 +509,6 @@ Index: xfs.man
 -.\ Size in bytes of the font server cache.
 -.IP catalogue (list of string)
 -Ordered list of font path element names.
--Use of the keyword catalogue is very misleading at present,
--the current implementation only supports a single catalogue (all),
 +.TP
 +.BR alternate\-servers  (list of \fIstring\fPs)
 +lists alternate servers for this font server.
@@ -524,9 +522,10 @@ Index: xfs.man
 +.BR catalogue  (list of \fIstring\fPs)
 +declares as ordered list of font path element names from which fonts will
 +be served.
-+Use of the keyword \(oqcatalogue\(cq is very misleading at present: the
-+current implementation only supports a single catalogue (\(oqall\(cq),
- containing all of the specified fonts.
+ The current implementation only supports a single catalogue (all)
+ containing all of the specified fonts. A special directory with
+ symlinks to font paths can be specified using a catalogue:dir
+ entry. See the CATALOGUE DIR section below for details.
 -.IP alternate-servers (list of string)
 -List of alternate servers for this font server.
 -.IP client-limit (cardinal)
@@ -574,9 +573,22 @@ Index: xfs.man
 -.IP error-file (string)
 -Filename of the error file.  All warnings and errors
 -will be logged here.
--.IP no-listen (trans-type)
--Disable a transport  type. For example, TCP/IP connections can
--be disabled with no-listen tcp
++.TP
++.BR deferglyphs  (\fIstring\fP)
++sets the mode for delayed fetching and caching of glyphs.
++.I string
++should be one of \(oqnone\(cq, meaning glyphs deferment is disabled,
++\(oqall\(cq, meaning it is enabled for all fonts, and \(oq16\(cq, meaning
++it is enabled only for 16-bit fonts.
++.TP
++.BR error\-file  (\fIstring\fP)
++indicates the filename of the error file.
++All warnings and errors will be logged here, unless
++.B use\-syslog
++is set to a true value (see below).
+ .IP no-listen (trans-type)
+ Disable a transport  type. For example, TCP/IP connections can
+ be disabled with no-listen tcp
 -.IP port (cardinal)
 -TCP port on which the server will listen for connections.
 -.IP use-syslog (boolean)
@@ -591,20 +603,6 @@ Index: xfs.man
 -.\ Those clients the fontserver will talk to.  Others
 -.\ will be refused for the initial connection.  An empty
 -.\ list means the server will talk to any client.
--.SH EXAMPLE

xfs: Changes to 'upstream-unstable'

2007-10-03 Thread David Nusinow
 configure.ac|4 +++-
 difs/dispatch.c |   13 +
 difs/fontinfo.c |   19 +++
 xfs.man |   39 ---
 4 files changed, 71 insertions(+), 4 deletions(-)

New commits:
commit 0bd59b5938059c7ff5501b928ebe80ecea27f008
Author: Matthieu Herrb [EMAIL PROTECTED]
Date:   Mon Oct 1 21:55:52 2007 +0200

Bump to 1.0.5

diff --git a/configure.ac b/configure.ac
index 6924e10..a4ebb65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ dnl
 dnl Process this file with autoconf to create configure.
 
 AC_PREREQ([2.57])
-AC_INIT(xfs,[1.0.4], 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xfs)
+AC_INIT(xfs,[1.0.5], 
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xfs)
 AM_INIT_AUTOMAKE([dist-bzip2])
 AM_MAINTAINER_MODE
 

commit ec3ca8fd4c599f41e6f977ce912805ac8ac74f32
Author: Matthieu Herrb [EMAIL PROTECTED]
Date:   Mon Oct 1 21:53:41 2007 +0200

Fix for heap overwrite in swap_char2b() CVE-2007-4568.

diff --git a/difs/dispatch.c b/difs/dispatch.c
index f1a0a85..9a6b87c 100644
--- a/difs/dispatch.c
+++ b/difs/dispatch.c
@@ -933,6 +933,13 @@ ProcQueryXExtents(ClientPtr client)
 }
 item_size = (stuff-reqType == FS_QueryXExtents8) ? 1 : 2;
 
+if (stuff-num_ranges 
+((stuff-length  2) - SIZEOF(fsQueryXExtents8Req))/item_size) {
+   int num_ranges = stuff-num_ranges;
+   SendErrToClient(client, FSBadLength, (pointer)num_ranges);
+   return FSBadLength;
+}
+   
 /* get the extents */
 err = QueryExtents(client, cfp, item_size,
   stuff-num_ranges, stuff-range,
@@ -969,6 +976,12 @@ ProcQueryXBitmaps(ClientPtr client)
 assert((stuff-reqType == FS_QueryXBitmaps8) || (stuff-reqType == 
FS_QueryXBitmaps16));
 item_size = (stuff-reqType == FS_QueryXBitmaps8) ? 1 : 2;
 
+if (stuff-num_ranges  
+   ((stuff-length  2) - SIZEOF(fsQueryXBitmaps8Req))/item_size) {
+   int num_ranges = stuff-num_ranges;
+   SendErrToClient(client, FSBadLength, (pointer)num_ranges);
+   return FSBadLength;
+}
 /* get the glyphs */
 err = QueryBitmaps(client, cfp, item_size, stuff-format,
   stuff-num_ranges, stuff-range,

commit 380fb68316f13012ff7cb2ac4addc2626fa2dad0
Author: Matthieu Herrb [EMAIL PROTECTED]
Date:   Mon Oct 1 21:51:40 2007 +0200

fix for integer overflows in build_range(). CVE-4568.

diff --git a/configure.ac b/configure.ac
index 748b8ce..6924e10 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,6 +41,8 @@ case $host_os in
 ;;
 esac
 
+AC_CHECK_HEADERS([stdint.h])
+
 # Checks for pkg-config packages
 PKG_CHECK_MODULES(XFS, libfs xfont xtrans)
 XFS_CFLAGS=$XFS_CFLAGS $OS_CFLAGS
diff --git a/difs/fontinfo.c b/difs/fontinfo.c
index 23893e0..e7e627d 100644
--- a/difs/fontinfo.c
+++ b/difs/fontinfo.c
@@ -62,6 +62,21 @@ in this Software without prior written authorization from 
The Open Group.
 #include   swapreq.h
 #include   swaprep.h
 
+#ifdef HAVE_CONFIG_H
+#include   config.h
+#endif
+#ifdef HAVE_STDINT_H
+#include   stdint.h
+#endif
+#include   limits.h
+#ifndef SIZE_MAX
+# ifdef ULONG_MAX
+#  define SIZE_MAX ULONG_MAX
+# else
+#  define SIZE_MAX UINT_MAX
+# endif
+#endif
+
 void
 CopyCharInfo(
 CharInfoPtr ci,
@@ -181,6 +196,8 @@ build_range(
return new;
}
 
+   if (src_num = SIZE_MAX / sizeof(fsRange) * 2 - 1) 
+   return NULL;
np = new = (fsRange *) fsalloc(sizeof(fsRange) * (src_num + 1) / 2);
if (!np)
return np;
@@ -210,6 +227,8 @@ build_range(
unsigned char  *pp = src;
 
src_num = *num;
+   if (src_num = SIZE_MAX / sizeof(fsRange)) 
+   return NULL;
np = new = (fsRange *) fsalloc(SIZEOF(fsRange) * src_num);
if (!np)
return np;

commit 63596c80ec1c406a35780f45ea43d8004b020869
Author: Ademar de Souza Reis Jr [EMAIL PROTECTED]
Date:   Wed Jun 20 13:31:40 2007 -0300

Document catalogue:dir feature

diff --git a/xfs.man b/xfs.man
index 1a5cd11..049e60a 100644
--- a/xfs.man
+++ b/xfs.man
@@ -124,9 +124,10 @@ Recognized keywords include:
 .\ Size in bytes of the font server cache.
 .IP catalogue (list of string)
 Ordered list of font path element names.
-Use of the keyword catalogue is very misleading at present,
-the current implementation only supports a single catalogue (all),
-containing all of the specified fonts.
+The current implementation only supports a single catalogue (all)
+containing all of the specified fonts. A special directory with
+symlinks to font paths can be specified using a catalogue:dir
+entry. See the CATALOGUE DIR section below for details.
 .IP alternate-servers (list of string)
 List of alternate servers for this font server.
 .IP client-limit (cardinal)
@@ -167,6 +168,38 @@ enabled for all fonts, and 16, meaning it is enabled 
only for
 .\ Those clients the fontserver will talk to.  Others
 .\ will be 

xfs: Changes to 'refs/tags/xfs-1_1.0.5-1'

2007-10-03 Thread David Nusinow
Tag 'xfs-1_1.0.5-1' created by David Nusinow [EMAIL PROTECTED] at 2007-10-04 
01:18 +

Tagging upload of xfs-1_1.0.5-1 to unstable.

Changes since xfs-1_1.0.4-2:
Ademar de Souza Reis Jr (1):
  Document catalogue:dir feature

Brice Goglin (1):
  Restore and update the old debian/local/xfs.options.5

David Nusinow (3):
  Merge branch 'upstream-unstable' into debian-unstable
  * New upstream release. High priority for security fixes.
  * Fix up 01_xfs_fixes.diff. This one needs to go upstream yesterday.

Matthieu Herrb (3):
  fix for integer overflows in build_range(). CVE-4568.
  Fix for heap overwrite in swap_char2b() CVE-2007-4568.
  Bump to 1.0.5

---
 configure.ac |4 +-
 debian/changelog |   17 +
 debian/local/xfs.options.5   |   73 +++
 debian/patches/01_xfs_fixes.diff |   64 ++
 debian/rules |1 
 debian/xfs.install   |1 
 debian/xfs.manpages  |2 +
 difs/dispatch.c  |   13 ++
 difs/fontinfo.c  |   19 ++
 xfs.man  |   39 +++-
 10 files changed, 199 insertions(+), 34 deletions(-)
---


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



xfs_1.0.5-1_i386.changes ACCEPTED

2007-10-03 Thread Debian Installer

Accepted:
xfs_1.0.5-1.diff.gz
  to pool/main/x/xfs/xfs_1.0.5-1.diff.gz
xfs_1.0.5-1.dsc
  to pool/main/x/xfs/xfs_1.0.5-1.dsc
xfs_1.0.5-1_i386.deb
  to pool/main/x/xfs/xfs_1.0.5-1_i386.deb
xfs_1.0.5.orig.tar.gz
  to pool/main/x/xfs/xfs_1.0.5.orig.tar.gz


Override entries for your package:
xfs_1.0.5-1.dsc - source x11
xfs_1.0.5-1_i386.deb - optional x11

Announcing to [EMAIL PROTECTED]
Closing bugs: 364587 


Thank you for your contribution to Debian.


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



Bug#364587: marked as done (manpage for xfs.options(5) mentioned in /etc/X11/fs/xfs.options not available)

2007-10-03 Thread Debian Bug Tracking System
Your message dated Thu, 04 Oct 2007 01:32:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#364587: fixed in xfs 1:1.0.5-1
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)

---BeginMessage---
Package: xfs
Version: 1:1.0.1-4
Severity: minor

The manpage referenced within /etc/X11/fs/xfs.options is not available.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages xfs depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libfs62:1.0.0-3  X11 Font Services library
ii  libxfont1 1:1.0.0-4  X11 font rasterisation library

xfs recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
Source: xfs
Source-Version: 1:1.0.5-1

We believe that the bug you reported is fixed in the latest version of
xfs, which is due to be installed in the Debian FTP archive:

xfs_1.0.5-1.diff.gz
  to pool/main/x/xfs/xfs_1.0.5-1.diff.gz
xfs_1.0.5-1.dsc
  to pool/main/x/xfs/xfs_1.0.5-1.dsc
xfs_1.0.5-1_i386.deb
  to pool/main/x/xfs/xfs_1.0.5-1_i386.deb
xfs_1.0.5.orig.tar.gz
  to pool/main/x/xfs/xfs_1.0.5.orig.tar.gz



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.
David Nusinow [EMAIL PROTECTED] (supplier of updated xfs 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.7
Date: Wed, 03 Oct 2007 21:11:50 -0400
Source: xfs
Binary: xfs
Architecture: source i386
Version: 1:1.0.5-1
Distribution: unstable
Urgency: high
Maintainer: Debian X Strike Force debian-x@lists.debian.org
Changed-By: David Nusinow [EMAIL PROTECTED]
Description: 
 xfs- X font server
Closes: 364587
Changes: 
 xfs (1:1.0.5-1) unstable; urgency=high
 .
   [ Brice Goglin ]
   * Restore and update the old xfs.options.5 manpage which got lost
 during the monolothic/modular transition. It might still help
 since the maintainer scripts still look at the corresponding
 config file. Closes: #364587.
 + Use dh_installman
 .
   [ David Nusinow ]
   * New upstream release. High priority for security fixes.
 + fix for integer overflows in build_range(). CVE-4568
 + Fix for heap overwrite in swap_char2b() CVE-2007-4568
   * Fix up 01_xfs_fixes.diff. This one needs to go upstream yesterday.
Files: 
 82fdfd3e0d75a4e370d097bfdbc9d780 792 x11 optional xfs_1.0.5-1.dsc
 2911ad04042ea0e5aa9dccb75ff2cff0 187556 x11 optional xfs_1.0.5.orig.tar.gz
 a9ddaea3868f62d8263c407c4ae46b84 57348 x11 optional xfs_1.0.5-1.diff.gz
 bfa10b2a5d179e9c9190befb330f6c26 58912 x11 optional xfs_1.0.5-1_i386.deb

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

iD8DBQFHBD8GyLfpNdY0ad8RAjPrAJ9Zi3i3Q/CZAEhtcO2WTWPy+rgvSwCfXkHK
jfm3hti7dDIufsHs02Sjs58=
=P3++
-END PGP SIGNATURE-


---End Message---


Bug#445100: xserver-xorg: Ctl-Alt-Fx has stopped working after a fresh install

2007-10-03 Thread Brice Goglin
clayton wrote:
 Package: xserver-xorg
 Version: 1:7.3+2
 Severity: normal


 I just did a fresh install to a new hard-drive, everything up-to-date to 
 the latest testing. Now when I hit Ctl-Alt-F1, instead of getting a 
 console, the keyboard and mouse are locked up. This happens at both the 
 gdm login prompt and while logged into KDE. If I login through the 
 network and kill X, function is restored.

 On the same machine using the same xorg.conf but a different hard drive 
 with an old install, Ctrl-Alt-F1 works just fine.
   

Can you try with xserver-xorg-video-ati 1:6.7.194-1 current in experimental?

thanks,
Brice




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