Jump to content
154 posts in this topic

Recommended Posts

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
3 hours ago, ANTIKO said:

Has anyone tried to start an AirportItlwm using this manual?

https://github.com/OpenIntelWireless/itlwm/issues/1009#issuecomment-2370919270

 

This is the method I use from day 1 of Sequoia. It works!

config.plist

Edited by Stefanalmare
  • Like 2
  • Thanks 1
13 hours ago, Stefanalmare said:

 

Это метод, который я использую с первого дня Sequoia. Он работает!

config.plist 59,88 кБ · 0 загрузок

 

Это метод, который я использую с первого дня Sequoia. Он работает!

Can I see the screenshots? What and how? Which manual was followed? exactly 15.3?

Edited by ANTIKO
16 hours ago, Stefanalmare said:

 

Just read the tutorial in the link. And, you don't need to believe me. I'm not going to send screenshots.

Did I write that I don't believe? Or maybe the crown will fall off your head if you just don't show the screenshots?

1 hour ago, ANTIKO said:

Did I write that I don't believe? Or maybe the crown will fall off your head if you just don't show the screenshots?

 

You have the tutorial, you have my config and it is not enough. After that, you are sarcastic. Please, starting from now, consider I'm invisible for you here. 

16 hours ago, Stefanalmare said:

 

You have the tutorial, you have my config and it is not enough. After that, you are sarcastic. Please, starting from now, consider I'm invisible for you here. 

Thank you for your reply, if it was difficult for you to do it, I will do it.

And for the future, don't pretend to be the ultimate truth. The crown is not eternal.

Spoiler

image.thumb.png.4475f159e6c176976693fc4043db1456.png

 

Edited by ANTIKO

Depends that what is your gpu model card. I think if you use old cards already contain in config.plist from Kext. New models will need add. 

I prefer use WEG and BRG0 ssdt. But people will going improve and get better and better  

  • Like 2

PS: I removed Whatevergreen.kext and DeviceProperties refers to Gpu, left agdpmod=pikera on Boot args and my SSDT BRG0. 

 

Recognize like shows grep command

 

RX 6900 XT Gigabyte Aorus 16GB

 

My base clock from BIOS is 85 MHz not 100 mhz because prevents  Raptor Lake issues  

 

See my score 251 k from Geekbench 6

 

 

Spoiler

CapturadeTela2025-01-06as00_31_26.thumb.png.71aa3a68205d93cfdc9dadba3e732b82.png

 

 

Whatevergreen kext not so bad too  248 k

 

Spoiler

CapturadeTela2025-01-06s00_39_48.thumb.png.e99d64159ddfa584edd65d2a457b38cf.png

 

 

Edited by Max.1974
  • Like 3
On 12/30/2024 at 1:07 PM, Stefanalmare said:

 

This is the method I use from day 1 of Sequoia. It works!

config.plist 59.88 kB · 21 downloads

 

Wow, that's interesting. So just to be clear that I got these instructions straight: https://github.com/OpenIntelWireless/itlwm/issues/1009#issuecomment-2370919270

 

Faking an Intel Wifi-card as a Broadcom card and applying root patches for modern wifi with OCLP allows Intel cards to use AirportItlmw.kext in Sequoia?!? Wicked cool.

  • Like 3

@Stefanalmare I've got AirportItlwm working in Sequoia as well!

 

Bildschirmfoto2025-01-06um17_52_26.thumb.png.f4f3a0b5c263ec51fd30d0da9dc03098.png

 

  • For macOS Sequoia, inject the AirportItlwm.kext for Ventura (Iv'e renamed it, since I also have Sonoma installed)
  • Make sure to get the Min/MaxKernel Settings right!

 

Bildschirmfoto2025-01-06um17_58_53.png.2f2b9269a69f9b534e4e9ce33c505f42.png

 

 

Bildschirmfoto2025-01-06um17_59_26.thumb.png.40cba38c96a14f98747e3adc4e6ee494.png

 

Bildschirmfoto2025-01-06um17_30_27.png.d63de32122a4a17095eb93b37047901c.png

Bildschirmfoto2025-01-06um17_31_04.png.5c0df04d8aaa7e9eb28c3312c0d92f0a.png

  • Like 5
7 minutes ago, eSaF said:

Well done on getting this to work!!!

Would be interested to know if all Apple Services are available as with Broadcom Cards.

i.e F/Time, AirDrop, Hand Off etc.

 

I don't have any iDevices so I can't test most of this.

  • Like 1

@eSaF The chances that Apple Services work with AirportItlwm are higher than with Itlwm, since itlwm inject the card as an Ethernet Adapter!

 

Added the guide to OCLP Wintel section: https://github.com/5T33Z0/OC-Little-Translated/blob/main/14_OCLP_Wintel/Enable_Features/AirportItllwm_Sequoia.md

Edited by cankiulascmnfye
  • Like 2
Guest
This topic is now closed to further replies.
×
×
  • Create New...