Contribute
Register

Help, disable System Integrity Protection (SIP) on 10.11.4 clover install

Status
Not open for further replies.
Joined
Aug 8, 2012
Messages
2
Motherboard
OSX Lion
CPU
1156 i7
Graphics
6870 HD
Mac
  1. 0
Classic Mac
  1. 0
Mobile Phone
  1. 0
On a real Mac:

1. Reboot and hold CMD + R
2. Utilities - Terminal
3. enter 'csrutil disable'
4. reboot

How over 10.11.4 clover installation?
Thanks in advance.
 
To disable or enable SIP add the settings to Clover's config.plist.

Clover Configurator > Rt Variables > BooterConfig and CsrActiveConfig

Relevant user options for SIP are as follows:
csr-active-config 0x0 = SIP Enabled (Default)
csr-active-config 0x3 = SIP Partially Disabled (Loads unsigned kexts)
csr-active-config 0x67 = SIP Disabled completely

Code:
<key>RtVariables</key>
    <dict>
        <key>CsrActiveConfig</key>
        <string>0x3</string>
        <key>BooterConfig</key>
        <string>0x28</string>
    </dict>
 
Works Perfect!!! Thanks a lot.
 
Status
Not open for further replies.
Back
Top