Got hing almost working perfectly, except my JMicron controller (AHCI, not IDE) is shown as unknown AHCI controller. I know from a former Kalyway-install, it can be shown as JMicron, but how do I do that?
(see below for current config)
EDIT:
Finally did my homework.....edited AppleAHCIPort.kext and put the JMicroncode in it. Works like charm.
For the interested, here's the code:
CODE
<key>JMicronAHCI</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleAHCIPort</string>
<key>Chipset Name</key>
<string>JMB36x AHCI</string>
<key>IOClass</key>
<string>AppleAHCI</string>
<key>IOPCIPrimaryMatch</key>
<string>0x2368197b 0x2363197b</string>
<key>IOProbeScore</key>
<integer>2000</integer>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>Vendor Name</key>
<string>JMicron</string>
</dict>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleAHCIPort</string>
<key>Chipset Name</key>
<string>JMB36x AHCI</string>
<key>IOClass</key>
<string>AppleAHCI</string>
<key>IOPCIPrimaryMatch</key>
<string>0x2368197b 0x2363197b</string>
<key>IOProbeScore</key>
<integer>2000</integer>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>Vendor Name</key>
<string>JMicron</string>
</dict>
Put it in AppleAHCIPort.kext, just beneath tje GenericAHCI key
