
04-18-2008, 12:53 AM
|
Tiger
|
|
Join Date: Jan 2008
Location: USA
Posts: 396
|
|
try this
Introduce your device ID on
GEFORCE.KEXT
NVDARESMAN.KEXT
NVDANV40Hal.kext
This means to open a terminal:
sudo -s
(type your password)
sudo chown -R root:wheel /System/Library/Extensions/GeForce.kext
sudo chmod -R 755 /System/Library/Extensions/GeForce.kext
sudo chown -R root:wheel /System/Library/Extensions/NVDARESMAN.KEXT
sudo chmod -R 755 /System/Library/Extensions/NVDARESMAN.KEXT
sudo chown -R root:wheel /System/Library/Extensions/NVDANV40Hal.kext
sudo chmod -R 755 /System/Library/Extensions/NVDANV40Hal.kext
Now it's time to edit the vendor ID (in my case it means to delete all the already written and include mine 0x00f910de)
nano /System/Library/Extensions/GeForce.kext/Contents/Info.plist
search the IOPCIMatch line and type yours:
<key>IOPCIMatch</key>
<string>0x00f910de</string>
Press ctrl+o
Press enter
Press ctrl+x
nano /System/Library/Extensions/NVDARESMAN.KEXT/Contents/Info.plist
<key>IOPCIMatch</key>
<string>0x00f910de</string>
Press ctrl+o
Press enter
Press ctrl+x
nano /System/Library/Extensions/NVDANV40Hal.kext/Contents/Info.plist
<key>IOPCIMatch</key>
<string>0x00f910de</string>
Press ctrl+o
Press enter
Press ctrl+x
Once edited:
sudo rm -f /System/Library/Extensions.mkext
sudo rm -f /System/Library/Extensions.kextcache
sudo rm -f /System&Library/Extensions/AGPart.kext
diskutil repairpermissions /
reboot
|