[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#258339: /usr/X11R6/bin/X: ATI DRI? Fails



On Sat, Jul 10, 2004 at 04:43:14PM -0500, Branden Robinson wrote:
> Hmm, if you'd reported this bug against xlibmesa-dri, a lot of useful
> information would have been automatically gathered.

...except it wouldn't have, thanks to stupdity on my part (which will be
fixed in the next package release).

I am attaching a shell script called "xlibmesa-dri.bug"; please use it as
follows to send more information to this bug report.

$ ./xlibmesa-dri.bug > /tmp/output 3>&1
$ mailx -s "Re: Bug#258339" 258339@bugs.debian.org < /tmp/output

If you do not have a "mailx" command on your system, you can get by
installing the "mailx" Debian package; for example, with the "aptitude
install mailx" or "apt-get install mailx" commands as root.  Alternatively,
you can also use a mail command that is compatible with mailx's
command-line syntax, such as "mutt".

Thank you, and I apologize for the confusion.

-- 
G. Branden Robinson                |
Debian GNU/Linux                   |      If encryption is outlawed, only
branden@debian.org                 |      outlaws will @goH7Ok=<q4fDj]Kz?.
http://people.debian.org/~branden/ |
#!/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


Reply to: