
08-30-2009, 09:00 AM
|
Jaguar
|
|
Join Date: Jul 2009
Posts: 58
|
|
Quote:
Originally Posted by Renira
|
It's because Snow Leopard keeps his Extensions.mkext in another place, before with leopard, it was in /System/Library/ , now it's in System/Library/Caches/com.apple.kext.caches/Startup/
Kext utility is looking for it in the wrong place .... maybe because is not Snow leopard compatible
Why don't you do this manually with your terminal ? just put the the kexts you want to add in /System/Library/Extensions/ you can also label them to recognize them later if you change something, then repair permissions with
Code:
sudo chown -R root:wheel /Volumes/YourSnowVolume/System/Library/Extensions/*
sudo chmod -R 755 /Volumes/YourSnowVolume/System/Library/Extensions/*
after that you can create Extensions.mkext with kextcache like this:
Code:
kextcache -v 1 -t -l -m /System/Library/Caches/com.apple.kext.caches/Startup/Extensions.mkext /System/Library/Extensions
Last edited by lancelotu; 08-30-2009 at 09:15 AM.
|