Jump to content
178 posts in this topic

Recommended Posts

9 hours ago, eSaF said:

Yea I will use terminal this time.

Are you mad? get rid of my drones!!!! You sound just like the wife.........CRAZY!!!!! :hysterical:

 

Since you seem to be bored: https://github.com/5T33Z0/OC-Little-Translated/tree/main/U_USB_Multi_installer

  • Like 5
  • Thanks 1

@jsl: you could try adding RestrictEvents.kext and boot-args: revpatch=f16c and revblock=media. Revpatch f16c is meant for Ivy Bridge, though. But for me it solved the Firefox insta-crashes.

 

Just in case you want/need to Disable Gatekeeper in Sequoia: https://github.com/5T33Z0/OC-Little-Translated/blob/main/14_OCLP_Wintel/Guides/Disable_Gatekeeper.md

  • Like 3
32 minutes ago, cankiulascmnfye said:

@jsl: you could try adding RestrictEvents.kext and boot-args: revpatch=f16c and revblock=media. Revpatch f16c is meant for Ivy Bridge, though. But for me it solved the Firefox insta-crashes.

 

Just in case you want/need to Disable Gatekeeper in Sequoia: https://github.com/5T33Z0/OC-Little-Translated/blob/main/14_OCLP_Wintel/Guides/Disable_Gatekeeper.md

Thanks for your advice, but unfortunately it did not fix this issue in my hackintosh by Clover 5160 or OC 1.0.3 even after Disable Gatekeeper ! 

Screenshot 2024-12-20 at 14.18.49.png

Edited by jsl
1 hour ago, cankiulascmnfye said:

@jsl: you could try adding RestrictEvents.kext and boot-args: revpatch=f16c and revblock=media. Revpatch f16c is meant for Ivy Bridge, though. But for me it solved the Firefox insta-crashes.

 

Just in case you want/need to Disable Gatekeeper in Sequoia: https://github.com/5T33Z0/OC-Little-Translated/blob/main/14_OCLP_Wintel/Guides/Disable_Gatekeeper.md


Hi @cankiulascmnfye Since macOS 15.1.1, I'm using the old method instead of profile: spctl --global-disable without any problems. It seems that Terminal command is coming back, just my opinion.

  • Like 5

The question is a little off topic, is it possible to configure macOS so that when the power button of the computer is pressed, there would not be an instant shutdown, but how does it happen when it turns off in the menu?

@ANTIKO If you whant the menue Button

 

defaults write com.apple.loginwindow PowerButtonSleepsSystem -bool yes

 

Then press PowerButton and Command key ⬇︎

 

image.png.266503553d8967bb2679c64e4f44adbc.png

  • Like 3
13 hours ago, chris1111 said:

@ANTIKO If you whant the menue Button

 

defaults write com.apple.loginwindow PowerButtonSleepsSystem -bool yes

 

Then press PowerButton and Command key ⬇︎

 

image.png.266503553d8967bb2679c64e4f44adbc.png

Still doesn't appear))

  • Like 1
17 hours ago, jsl said:

At 15.3 beta only Safari is working in my B85M-G hackintosh and both Firefox and Google Chrome crashed on open ! 

No such an issue in X299 hackintosh which does not need OCLP patching.

 

I'm just guessing here but the last time I had a problem with Firefox crashing on opening was because of AMFI.  Using the AMFIPass.kext solved the problem for me.

  • Like 2
19 hours ago, ANTIKO said:

The question is a little off topic, is it possible to configure macOS so that when the power button of the computer is pressed, there would not be an instant shutdown, but how does it happen when it turns off in the menu?

Inject devices PWRB and SLPB into _SB

Quote

Scope (\_SB)
    {
        Device (PWRB)
        {
            Name (_HID, EisaId ("PNP0C0C") /* Power Button Device */)  // _HID: Hardware ID
            Method (_STA, 0, NotSerialized)  // _STA: Status
            {
                If (_OSI ("Darwin"))
                {
                    Return (0x0B)
                }
                Else
                {
                    Return (Zero)
                }
            }
        }
    }

    Scope (\_SB)
    {
        Device (SLPB)
        {
            Name (_HID, EisaId ("PNP0C0E") /* Sleep Button Device */)  // _HID: Hardware ID
            Method (_STA, 0, NotSerialized)  // _STA: Status
            {
                If (_OSI ("Darwin"))
                {
                    Return (0x0B)
                }
                Else
                {
                    Return (Zero)
                }
            }
        }
    }

To avoid conflict use these rename ACPI patches

Quote

            <dict>
                <key>Base</key>
                <string></string>
                <key>BaseSkip</key>
                <integer>0</integer>
                <key>Comment</key>
                <string>SLPB to XLPB</string>
                <key>Count</key>
                <integer>0</integer>
                <key>Enabled</key>
                <true/>
                <key>Find</key>
                <data>U0xQQg==</data>
                <key>Limit</key>
                <integer>0</integer>
                <key>Mask</key>
                <data></data>
                <key>OemTableId</key>
                <data></data>
                <key>Replace</key>
                <data>WExQQg==</data>
                <key>ReplaceMask</key>
                <data></data>
                <key>Skip</key>
                <integer>0</integer>
                <key>TableLength</key>
                <integer>0</integer>
                <key>TableSignature</key>
                <data></data>
            </dict>
            <dict>
                <key>Base</key>
                <string></string>
                <key>BaseSkip</key>
                <integer>0</integer>
                <key>Comment</key>
                <string>PWRB to XWRB</string>
                <key>Count</key>
                <integer>0</integer>
                <key>Enabled</key>
                <true/>
                <key>Find</key>
                <data>UFdSQg==</data>
                <key>Limit</key>
                <integer>0</integer>
                <key>Mask</key>
                <data></data>
                <key>OemTableId</key>
                <data></data>
                <key>Replace</key>
                <data>WFdSQg==</data>
                <key>ReplaceMask</key>
                <data></data>
                <key>Skip</key>
                <integer>0</integer>
                <key>TableLength</key>
                <integer>0</integer>
                <key>TableSignature</key>
                <data></data>
            </dict>

 

  • Like 2
  • Thanks 1
  • Haha 1
On 12/21/2024 at 1:44 AM, mnfesq said:

 

I'm just guessing here but the last time I had a problem with Firefox crashing on opening was because of AMFI.  Using the AMFIPass.kext solved the problem for me.

Thanks for your advice but I have applied AMFIPass.kext 1.4.1 already with boot-args "amfi=0x80".

Only after re-installation of 15.3 beta fixed this issue now !

  • Like 1
  • 2 weeks later...
1 hour ago, ANTIKO said:

This is good, but I would like to read the opinion of people who have tested this method here.

I think it's not possible for now. They are not forum members. These comments were shared in a Turkish forum. However, I am attaching a config.plist for your review.

config-21.plist

  • Like 1
Guest
This topic is now closed to further replies.
×
×
  • Create New...