Hi Eric, can you post them using these instructions: If you have a switchable graphics laptop, please submit your laptop's DSDT.dsl and SSDT tables as an attachment to this bug report:
https://bugs.launchpad.net/bugs/752542 To compile your DSDT and SSDTs information, install if you haven't already the acpidump and iasl tools: sudo apt-get install acpidump iasl or sudo yum install pmtools iasl Then run the following commands on a bash terminal: mkdir ~/acpiinfo ; cd ~/acpiinfo sudo acpidump > acpidump.txt # enter password sudo acpixtract acpidump.txt ls *.dat | while read i; do iasl -d "${i}"; done && name=`sudo dmidecode -s system-product-name` mkdir "${name}" && cp *.dsl "${name}"/ && tar czf "${name}.tar.gz" "${name}"/ && ls -l "$( pwd )/${name}".tar.gz This will create a tar.gz file that you can attach to the bug report. Finally, for posting the information in the bug report, you can check the laptop and graphics card model identifiers with these commands: sudo dmidecode -s system-product-name && sudo dmidecode -s system-version lspci -vnnn | perl -lne 'print if /^\d+\:.+(\[\S+\:\S+\])/' | grep VGA This information will allow the full development of hybrid graphics features for Linux. Thanks for your help! On Tue, Jun 21, 2011 at 7:19 AM, Eric Appleman <[email protected]> wrote: > Trying to take everything full circle > http://forum.notebookreview.com/hp-pavilion-notebooks/587339-data-collection-necessary-understand-fix-dynamic-graphics-61xx-series.html > > I've already posted the necessary DSDTs on the list earlier this week, but I > believe there's a need for individuals well-versed in the techniques and > tools for graphics switching to guide the volunteers with BACON laptops on > NBF. It's kind of hard for me to lead this effort yet not have a laptop with > any sort of hybrid graphics. I know my way around the command line, but > that's about it. > > Thanks in advance. > > - Eric > > _______________________________________________ > Mailing list: https://launchpad.net/~hybrid-graphics-linux > Post to : [email protected] > Unsubscribe : https://launchpad.net/~hybrid-graphics-linux > More help : https://help.launchpad.net/ListHelp > _______________________________________________ Mailing list: https://launchpad.net/~hybrid-graphics-linux Post to : [email protected] Unsubscribe : https://launchpad.net/~hybrid-graphics-linux More help : https://help.launchpad.net/ListHelp

