https://bugzilla.novell.com/show_bug.cgi?id=335445#c6 --- Comment #6 from Boyd Timothy <btimothy@novell.com> 2007-10-26 11:40:12 MST --- Looks like the xgl-settings/gnome-xgl-info script is parsing the hwinfo --gfxcard output incorrectly. I saved off the info from comment #3 and tested the code from the script. It's picking up the second card listed (not the primary): cat hwinfo.txt | awk '/0300 VGA compatible controller/ { dev = gensub(/^([^:]*):.*/, "\\1", "g"); } \ /^ Vendor:/ { vendor[dev] = gensub(/.*pci 0x(....).*/, "\\1", "g"); \ name[dev] = gensub(/^.* "(.*)"$/, "\\1", "g"); } \ /^ Device:/ { device[dev] = gensub(/.*pci 0x(....).*/, "\\1", "g"); \ name[dev] = name[dev] " " gensub(/^.* "(.*)"$/, "\\1", "g"); } \ /^ SubVendor:/ { subvendor[dev] = gensub(/.*pci 0x(....).*/, "\\1", "g"); } \ /^ SubDevice:/ { subdevice[dev] = gensub(/.*pci 0x(....).*/, "\\1", "g"); } \ /^ Revision:/ { revision[dev] = gensub(/.*0x(..).*/, "\\1", "g"); } \ /^Primary display adapter: #/ { dev = gensub(/.*#/, "", "g"); \ print vendor[dev] ":" device[dev] ":" revision[dev] ":" subvendor[dev] ":" \ subdevice[dev] " " name[dev] "\n"; }' 8086:27a6:03:17aa:201a Intel Corporation Device: pci 0x27a6 "Mobile 945GM/GMS/GME, 943/940GML Express Integrated We just need to tweak the awk params to get this to work properly. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.