On Mon, Jul 12, 2004 at 06:53:28AM +0200, Michał J. Gajda wrote: > W liście z pon, 12-07-2004, godz. 05:26, Branden Robinson pisze: > > > Please run the following commands from a shell prompt to gather and deliver > > some more information to us: > > > > $ /usr/share/bug/xlibmesa-dri > /tmp/output 3>&1 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Sorry, I think it doesn't exist. > > $ mailx -s "Re: Bug#257190" 257190@bugs.debian.org < /tmp/output Damn, I screwed up and got the sense of a test backwards in xfree86's debian/rules file. Thanks for catching this; I have fixed in in our Subversion repository. I have attached the script in question. -- G. Branden Robinson | There's nothing an agnostic can't Debian GNU/Linux | do if he doesn't know whether he branden@debian.org | believes in it or not. http://people.debian.org/~branden/ | -- Graham Chapman
#!/bin/sh
# $Id: xlibmesa-dri.bug 1517 2004-06-06 17:18:03Z branden $
PATH="/sbin:/usr/bin/X11:$PATH"
if which lspci >/dev/null 2>&1; then
printf "VGA-compatible devices on PCI bus:\n" >&3
LC_ALL=C lspci | grep 'VGA compatible controller:' >&3
LC_ALL=C lspci -n | grep 'Class 0300:' >&3
else
printf "The lspci command was not found; not including PCI data.\n" >&3
fi
printf "\n" >&3
XFREE86_LOGS=$(ls -dt /var/log/XFree86.*.log 2>/dev/null)
if [ -n "$XFREE86_LOGS" ]; then
printf "XFree86 X server log files on system:\n" >&3
ls -dlrt /var/log/XFree86.*.log >&3 2>/dev/null
printf "\n" >&3
for LOG in $XFREE86_LOGS; do
if [ -f "$LOG" ]; then
printf "Contents of most recent XFree86 X server log file\n" >&3
printf "%s:\n" "$LOG" >&3
cat "$LOG" >&3
# the log files are large; only show the most recent
break
fi
done
else
printf "No XFree86 X server log files found.\n" >&3
fi
printf "\n" >&3
if which glxinfo >/dev/null 2>&1; then
printf "GL-library linkage of glxinfo executable:\n" >&3
ldd $(which glxinfo) | grep libGL >&3 2>/dev/null
printf "\n" >&3
printf "glxinfo reports:\n" >&3
LIBGL_DEBUG=verbose glxinfo >&3 2>&1
else
printf "The glxinfo command was not found; " >&3
printf "not including GLX extension information.\n" >&3
fi
# vim:set ai et sts=4 sw=4 tw=0:
Attachment:
signature.asc
Description: Digital signature