Contribute
Register

Bug in process... and iobluetoothHCIController

Status
Not open for further replies.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EthernetBuiltIn</key>
<string>Yes</string>
<key>GraphicsEnabler</key>
<string>Yes</string>
<key>IGPEnabler</key>
<string>Yes</string>
<key>Kernel Flags</key>
<string></string>
<key>Legacy Logo</key>
<string>Yes</string>
<key>Timeout</key>
<string>2</string>
<key>HDEFLayoutID</key>
<string>01000000</string>
<key>HDAEnabler</key>
<string>Yes</string>
</dict>
</plist>
 
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EthernetBuiltIn</key>
<string>Yes</string>
<key>GraphicsEnabler</key>
<string>Yes</string>
<key>IGPEnabler</key>
<string>Yes</string>
<key>Kernel Flags</key>
<string></string>
<key>Legacy Logo</key>
<string>Yes</string>
<key>Timeout</key>
<string>2</string>
<key>HDEFLayoutID</key>
<string>01000000</string>
<key>HDAEnabler</key>
<string>Yes</string>
</dict>
</plist>

Make the changes as below,

<key>Kernel Flags</key>
<string>kext-dev-mode=1 -no-zp</string>

Add the below lines (Only Bolded lines) after HDA Enabler's string value,

<key>HDAEnabler</key>
<string>Yes</string>
<key>UseKernelCache</key>
<string>No</string>


If you are not using integrated graphics then disable chimera's injection.
<key>IGPEnabler</key>
<string>No</string>

GTX760 have native support, disable the Chimera's graphics injection.

<key>GraphicsEnabler</key>
<string>No</string>

Save the file and reboot OS X.
 
Now it booted up correctly. Soundcard works. Sweet! Thank you very much for taking the time to help me!!

May I ask what the problem was and how you solved it?

Thanks again.
 
Now it booted up correctly. Soundcard works. Sweet! Thank you very much for taking the time to help me!!

Good to hear.. Enjoy your Yosemite

May I ask what the problem was and how you solved it?

You had made wrong selections on Multibeast. I just given suggestions to edit the configuration file (org.chameleon.boot.plist) correctly for your hardwares/configuration.

The flag "kext-dev-mode=1" is required to load unsigned kexts on Yosemite, so we added the flag to the file.
"-no-zp" is required to overcome the deadbeef error, so we added the flag too.

As you are using GTX760, the card have native driver support from Yosemite, so need of Chimera's injection (GraphicsEnabler). So we disabled it and also disabled the integrated graphics injection (IGPEnabler).

For some reasons kernel caches will prevent the normal booting, so we disabled it too (UseKernelCache=No).

I think you got all the points now.

Good Luck..!
 
Status
Not open for further replies.
Back
Top