Contribute
Register

!!!!!SOLVED!!!!! Orange Icon

Joined
Dec 15, 2010
Messages
23
Motherboard
Gigabyte Z590 AORUS MASTER
CPU
i9-11770K
Graphics
RX 580
Mac
  1. MacBook Pro
Mobile Phone
  1. iOS
Hello guys!
I've had problems with orange hot-pluggable disk icons in the past.
I solved it thanks to a post by the great Miliuco. (Https://www.tonymacx86.com/threads/solved-sata-hot-plug-patch-not-working-in-big-sur.304869/page-6)
I have been using the same patch for all operating systems ever since.
Today, however, with Ventura 13.3 it no longer works.
Is there someone who can help me? Many thanks in advance.

Disabling Hotplug in the BIOS will fix this problem.
 
Many thanks VioletDragon, but I need to be able to plug and unplug my drives.
If I disable it from the bios I no longer have a working hot plug.

Can anyone else help me?
 
Many thanks VioletDragon, but I need to be able to plug and unplug my drives.
If I disable it from the bios I no longer have a working hot plug.

Can anyone else help me?

I would suggest setting the SATA Port for macOS boot drive to Hotplug -> Disabled.

Give this a try,

Code:
<dict>
                <key>Arch</key>
                <string>x86_64</string>
                <key>Base</key>
                <string></string>
                <key>Comment</key>
                <string>Enables SATA Hot Plugging (Big Sur+)</string>
                <key>Count</key>
                <integer>1</integer>
                <key>Enabled</key>
                <true/>
                <key>Find</key>
                <data>QGACAA==</data>
                <key>Identifier</key>
                <string>com.apple.driver.AppleAHCIPort</string>
                <key>Limit</key>
                <integer>0</integer>
                <key>Mask</key>
                <data></data>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string>20.0.0</string>
                <key>Replace</key>
                <data>AAAAAA==</data>
                <key>ReplaceMask</key>
                <data></data>
                <key>Skip</key>
                <integer>0</integer>
            </dict>
 
If I may add, this is what worked for me in Big Sur and still working in Ventura.
As you have ascertained the port in the BIOS must be enabled to recognise when a disk is plugged in or removed at will.
The entry into the config.plist must be exactly as the attached example.

The 'macOS Programs' (Orange) disk shown in the other pic is hot plugged and is connected/disconnected at will.
As far as the correct colour to be shown as a hot plugged disk should be automatic as an orange icon but if I am not mistaken the patch to correct this was added to OpenCore, if not there is a correction patch available.

Try my example and see if you get the desired results. Good luck.
 

Attachments

  • Screenshot 2023-05-12 at 17.41.21.png
    Screenshot 2023-05-12 at 17.41.21.png
    133.2 KB · Views: 43
  • Screenshot 2023-05-12 at 17.43.47.png
    Screenshot 2023-05-12 at 17.43.47.png
    103.7 KB · Views: 38
Thank you Violet Dragon!
Thank you Esafeddie!
I have both patches, the hotplug patch works fine for me.
The patch to change icons from orange to internal disk doesn't work.

I attach image.

Ps sorry for my bad English. :confused::confused:
 

Attachments

  • Screenshot 2023-05-12 alle 23.21.54.png
    Screenshot 2023-05-12 alle 23.21.54.png
    1.3 MB · Views: 36
Thank you Violet Dragon!
Thank you Esafeddie!
I have both patches, the hotplug patch works fine for me.
The patch to change icons from orange to internal disk doesn't work.

I attach image.

Ps sorry for my bad English. :confused::confused:

Interesting, Attach config.plist.
 
My EFi
 

Attachments

  • EFI.zip
    4 MB · Views: 41
this patch:
Code:
<dict>
                <key>Arch</key>
                <string>Any</string>
                <key>Base</key>
                <string></string>
                <key>Comment</key>
                <string>Patch Hot Plug</string>
                <key>Count</key>
                <integer>1</integer>
                <key>Enabled</key>
                <true/>
                <key>Find</key>
                <data>QGACAA==</data>
                <key>Identifier</key>
                <string>com.apple.driver.AppleAHCIPort</string>
                <key>Replace</key>
                <data>AAAAAA==</data>
            </dict>
is not in the correct format, example of the one above in your config.plist:

Code:
<dict>
                <key>Arch</key>
                <string>Any</string>
                <key>Base</key>
                <string></string>
                <key>Comment</key>
                <string>AQC 107 Monterey 12.3 Patch - (DisableIoMapper=False)</string>
                <key>Count</key>
                <integer>1</integer>
                <key>Enabled</key>
                <true/>
                <key>Find</key>
                <data>D4RFAwAA</data>
                <key>Identifier</key>
                <string>com.apple.driver.AppleEthernetAquantiaAqtion</string>
                <key>Limit</key>
                <integer>0</integer>
                <key>Mask</key>
                <data></data>
                <key>MaxKernel</key>
                <string></string>
                <key>MinKernel</key>
                <string>21.4.0</string>
                <key>Replace</key>
                <data>Zg8fRAAA</data>
                <key>ReplaceMask</key>
                <data></data>
                <key>Skip</key>
                <integer>0</integer>
            </dict>
 
Back
Top