Contribute
Register

How to disable Inject ATI in multibeast/Clover

Status
Not open for further replies.
Joined
Feb 25, 2015
Messages
31
Mac
  1. 0
Classic Mac
  1. 0
Mobile Phone
  1. 0
I did numerous Google searches and in this forum but can't find the answer. I used Multibeast with Clover (El Capitan) and selected "Inject ATI" to try out a new graphics card I bought (390X) that wouldn't work but the card still doesn't boot, and now I can't boot with my 280X that worked before I selected "inject ATI". I'm now booted with my Yosemite SSD and I need to remove Inject ATI.

Under multi beast there's no selection to "remove inject ATI". I Mounted the EL Cap SSD and its EFI partition and opened up the Config.plist with TextWrangler. What do I need to change to remove "Inject ATi"

Its my first time using Clover, Many thanks!
 
Post Config. Or download Clover Configurator from Community Software Mount EFI Partition. Open your Config.plist Go to Graphics section and Un-tick inject ATI.
 
Change true to false
Code:
<key>Graphics</key>    <dict>
        <key>Inject</key>
        <dict>
            <key>ATI</key>
            <false/>
            <key>Intel</key>
            <false/>
            <key>NVidia</key>
            <false/>
        </dict>
        <key>NvidiaSingle</key>
        <false/>
</dict>
 
Thank you both! I had no idea there was a clover Utility! Makes it nice and easy!
 
Hey i have the same Problem. every time it enables on boot itsself. in the correct clover is
JSON:
    <key>Graphics</key>
    <dict>
        <key>#Connectors</key>
        <array/>
        <key>#DualLink</key>
        <integer>0</integer>
        <key>#FBName</key>
        <string>Makakakakala</string>
        <key>#Inject</key>
        <dict>
            <key>ATI</key>
            <false/>
            <key>Intel</key>
            <false/>
            <key>NVidia</key>
            <false/>
        </dict>
        <key>#LoadVBios</key>
        <false/>
        <key>#NVCAP</key>
        <string>04000000000003000C0000000000000A00000000</string>
        <key>#NvidiaGeneric</key>
        <true/>
        <key>#NvidiaNoEFI</key>
        <false/>
        <key>#NvidiaSingle</key>
        <false/>
        <key>#PatchVBios</key>
        <false/>
        <key>#PatchVBiosBytes</key>
        <array>
            <dict>
                <key>Find</key>
                <data>gAeoAqAF</data>
                <key>Replace</key>
                <data>gAeoAjgE</data>
            </dict>
        </array>
        <key>#RadeonDeInit</key>
        <true/>
        <key>#VRAM</key>
        <integer>1024</integer>
        <key>#VideoPorts</key>
        <integer>2</integer>
        <key>#display-cfg</key>
        <string>03010300FFFF0001</string>
        <key>#ig-platform-id</key>
        <string>0x01620005</string>
        <key>EDID</key>
        <dict>
            <key>#Custom</key>
            <data>AP///////wAGECGSAAAAAAASAQOAIRV4CunVmVlTjigmUFQAAAABAQEBAQEBAQEBAQEBAQEB3iGgcFCEHzAgIFYAS88QAAAY3iGgcFCEHzAgIFYAS88QAAAAAAAA/gBXNjU3RwAxNTRXUDEKAAAA/gAjMz1IZYSq/wIBCiAgAJo=</data>
            <key>#HorizontalSyncPulseWidth</key>
            <string>0x11</string>
            <key>#Inject</key>
            <true/>
            <key>#ProductID</key>
            <string>0x9221</string>
            <key>#VendorID</key>
            <string>0x1006</string>
            <key>#VideoInputSignal</key>
            <string>0xA1</string>
        </dict>
        <key>Inject</key>
        <dict>
            <key>ATI</key>
            <false/>
            <key>Intel</key>
            <false/>
        </dict>
    </dict>
 
Status
Not open for further replies.
Back
Top