View Single Post
 
Old 02-29-2008, 09:22 PM
roisoft's Avatar
roisoft roisoft is offline
 
Join Date: Jan 2008
Location: Spain
Posts: 450
yes, you need add the correct id for your graphics into the info.plist for Geforce.kext, NvdaResman.kext, NVDANV50Hal.kext (8600gt):

when you edit the info.plist youŽll see something like this:
Code:
<string>IOService</string>
			<key>IOPCIPrimaryMatch</key>
			<string>0x00f010de&amp;0xfff0ffff 0x019010de&amp;0xfff00x060010de&amp;0xffe0ffff</string>
			<key>IOProbeScore</key>
			<integer>60000</integer>
			<key>IOProviderClass</key>
			<string>IOPCIDevice</string>
you need add your device id and delete the others:
Code:
<string>IOService</string>
			<key>IOPCIPrimaryMatch</key>
			<string>0x040210de</string>
			<key>IOProbeScore</key>
			<integer>60000</integer>
			<key>IOProviderClass</key>
			<string>IOPCIDevice</string>
download this for the patches

copy the folder "patches" to the root of your leo drive boot with -s
and type

mount -uw /
cd /patches
./patcher cpuid-graphics.txt
Reply With Quote