All Activity
- Past hour
-
Chris Compton joined the community
-
I disabled HPET, now it no longer appears in IORegistry but into boot log I have (AppleHPET) HPET: probeHPET() failed, instead HPE0 appears with IRQs 0-8-11 in IOInterruptSpecifiers, but I still don't have HDEF working. In ACPI Patch I only have "change Method(GPRW,2,N) to XPRW, pair with SSDT-GPRW.aml". Boot-args: debug=0x100 alcid=7 npci=0x2000 agdpmod=pikera -v alcid=7 works with VT-D disabled
- Today
-
范天龙 joined the community
-
[Pre Release] macOS Sequoia 15.2
cankiulascmnfye replied to fabiosun's topic in New Releases and Updates
1.9 didn't work for me. 1.6 did. I actually prefer v1.6 handles the process. I am not a fan of clicking an icon without getting feedback of what is happening in the background. -
daemon17 started following VoodooPS2 - touchpad not work after update.
-
Hello! I need help. After upgrading to version higher than VoodooPS2 2.3.5 my trackpad does not work. My IOReg in attach Laptop.ioreg.zip
-
Flawless upgrade from Ventura to Sequoia 15.2 on my hp Folio G1 All my stuff is there so happy. Everything works
-
DVD97498 joined the community
-
Edit the SSDT-HPET_RTC_TIMR-fix Table according to your DSDT! Remove old sound settings from the bootloader - HPET Table and patches.
-
@cankiulascmnfye I have sentinel 1.9 working fine on Sequoia but 15.1.1. Clicking the lock icon adds the profile to System Settings, installing the profile disables Gatekeeper as expected. Maybe 15.2 changes something related to this.
-
[Pre Release] macOS Sequoia 15.2
cankiulascmnfye replied to fabiosun's topic in New Releases and Updates
I've noticed in the Sentinel app that the method to install config profiles has changed in v.1.9: it's supposed to install and enable the configuration profile to disable gatekeeper automatically once you click on the lock – but it doesn't work. So just use v1.6 and install/enable the config profile manually to disable gatekeeper. -
I tried again and I saw that it doesn't deactivate HPET but creates HPE0. In IORegistry I have both HPET and HPE0 This is my ORIGINAL RTC-TMR-HPET from DSDT: Device (RTC) { Name (_HID, EisaId ("PNP0B00") /* AT Real-Time Clock */) // _HID: Hardware ID Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x01, // Alignment 0x02, // Length ) IO (Decode16, 0x0074, // Range Minimum 0x0074, // Range Maximum 0x01, // Alignment 0x04, // Length ) IRQNoFlags () {8} }) } Device (TMR) { Name (_HID, EisaId ("PNP0100") /* PC-class System Timer */) // _HID: Hardware ID Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings { IO (Decode16, 0x0040, // Range Minimum 0x0040, // Range Maximum 0x01, // Alignment 0x04, // Length ) IO (Decode16, 0x0050, // Range Minimum 0x0050, // Range Maximum 0x01, // Alignment 0x04, // Length ) IRQNoFlags () {0} }) } Device (HPET) { Name (_HID, EisaId ("PNP0103") /* HPET System Timer */) // _HID: Hardware ID OperationRegion (HPTC, SystemMemory, 0xFED1F404, 0x04) Field (HPTC, DWordAcc, NoLock, Preserve) { HPTS, 2, , 5, HPTE, 1, Offset (0x04) } Method (_STA, 0, NotSerialized) // _STA: Status { If (HPTE) { Return (0x0F) } Else { Return (0x00) } } Name (CRS0, ResourceTemplate () { Memory32Fixed (ReadWrite, 0xFED00000, // Address Base 0x00000400, // Address Length ) }) Name (CRS1, ResourceTemplate () { Memory32Fixed (ReadWrite, 0xFED01000, // Address Base 0x00000400, // Address Length ) }) Name (CRS2, ResourceTemplate () { Memory32Fixed (ReadWrite, 0xFED02000, // Address Base 0x00000400, // Address Length ) }) Name (CRS3, ResourceTemplate () { Memory32Fixed (ReadWrite, 0xFED03000, // Address Base 0x00000400, // Address Length ) }) Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings { Switch (ToInteger (HPTS)) { Case (0x00) { Return (CRS0) /* \_SB_.PCI0.LPC0.HPET.CRS0 */ } Case (0x01) { Return (CRS1) /* \_SB_.PCI0.LPC0.HPET.CRS1 */ } Case (0x02) { Return (CRS2) /* \_SB_.PCI0.LPC0.HPET.CRS2 */ } Case (0x03) { Return (CRS3) /* \_SB_.PCI0.LPC0.HPET.CRS3 */ } } Return (CRS0) /* \_SB_.PCI0.LPC0.HPET.CRS0 */ } } This is SSDT-HPET_RTC_TIMR-fix.aml: DefinitionBlock ("", "SSDT", 2, "OCLT", "HRTfix", 0x00000000) { External (_SB_.PCI0.LPC0, DeviceObj) External (_SB_.PCI0.LPC0.RTC_, DeviceObj) External (_SB_.PCI0.LPC0.TMR_, DeviceObj) External (HPTE, IntObj) Scope (\) { If (_OSI ("Darwin")) { HPTE = Zero } } Scope (_SB.PCI0.LPC0.RTC) { Method (_STA, 0, NotSerialized) // _STA: Status { If (_OSI ("Darwin")) { Return (Zero) } Else { Return (0x0F) } } } Scope (_SB.PCI0.LPC0.TMR) { Method (_STA, 0, NotSerialized) // _STA: Status { If (_OSI ("Darwin")) { Return (Zero) } Else { Return (0x0F) } } } Scope (_SB.PCI0.LPC0) { Device (HPE0) { Name (_HID, EisaId ("PNP0103") /* HPET System Timer */) // _HID: Hardware ID Name (_UID, Zero) // _UID: Unique ID Name (BUF0, ResourceTemplate () { IRQNoFlags () {0,8} Memory32Fixed (ReadWrite, 0xFED00000, // Address Base 0x00000400, // Address Length ) }) Method (_STA, 0, NotSerialized) // _STA: Status { If (_OSI ("Darwin")) { Return (0x0F) } Else { Return (Zero) } } Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings { Return (BUF0) /* \_SB_.PCI0.LPC0.HPE0.BUF0 */ } } Device (RTC0) { Name (_HID, EisaId ("PNP0B00") /* AT Real-Time Clock */) // _HID: Hardware ID Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x01, // Alignment 0x02, // Length ) IO (Decode16, 0x0074, // Range Minimum 0x0074, // Range Maximum 0x01, // Alignment 0x04, // Length ) }) Method (_STA, 0, NotSerialized) // _STA: Status { If (_OSI ("Darwin")) { Return (0x0F) } Else { Return (Zero) } } } Device (TMR0) { Name (_HID, EisaId ("PNP0100") /* PC-class System Timer */) // _HID: Hardware ID Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings { IO (Decode16, 0x0040, // Range Minimum 0x0040, // Range Maximum 0x01, // Alignment 0x04, // Length ) IO (Decode16, 0x0050, // Range Minimum 0x0050, // Range Maximum 0x01, // Alignment 0x04, // Length ) }) Method (_STA, 0, NotSerialized) // _STA: Status { If (_OSI ("Darwin")) { Return (0x0F) } Else { Return (Zero) } } } } }
-
banggiachuyennha changed their profile photo
-
Andrei Cirjan joined the community
-
banggiachuyennha joined the community
-
Have you edited the SSDT-HPET_RTC_TIMR-fix Table according to your DSDT? Have you checked if this table is loaded when macOS starts? If a table does not load, it usually means that it has errors or conflicts with the DSDT.
-
I followed the guide but without success. I managed to get the sound card to work by disabling VT-D in the bios but with VT-D disabled (I tried all combinations with DisableIOMapper, dart=0, etc...) Ventura freezes a few seconds after starting.
-
good88edcomm joined the community
-
diablosoy joined the community
-
Casey Building Consultants joined the community
-
Lucy48 joined the community
-
Fillers joined the community
-
m1g2 started following Wannabe Hacker
-
kckustomac started following Max.1974
-
kckustomac started following Ludox
-
Vedansh Craft changed their profile photo
-
Lenovo Thinkpad E570 | i5-7200U | macOS Sonoma
vidihaldoko replied to yusufklncc's topic in New Users Lounge
Hai Yusuf, your laptop using USB C or not because my laptop still USB 3 & a CD Rom this thinkpad make me confuse in my region E570 with i5 7200 with CD Rom & no USB C and there is E580 with i5 7200 with USB C & no CD ROM Regards, Vidi -
Bartłomiej Puciłowski changed their profile photo
-
rr88miami changed their profile photo
- Yesterday
-
datafeedexpert started following Information on disabling individual SIP arguments on macOS
-
Information on disabling individual SIP arguments on macOS
deeveedee replied to johnnyjackhammer's topic in New Users Lounge
@eSaF You're not alone (as per Khronokernel's first sentence in his article ) : Developers and users don’t understand what System Integrity Protection really is. -
Nono Huerta changed their profile photo
-
eSaF started following Information on disabling individual SIP arguments on macOS
-
Information on disabling individual SIP arguments on macOS
eSaF replied to johnnyjackhammer's topic in New Users Lounge
Quite an interesting read although I have to be quite honest and reveal that 99% went over my head. I would hazard a bet the article is more akin to developers and way above my pay grade. -
Information on disabling individual SIP arguments on macOS
deeveedee replied to johnnyjackhammer's topic in New Users Lounge
A good reference: https://khronokernel.com/macos/2022/12/09/SIP.html -
@izzat Your config.plist is consistent with the config.plist in the EFI that I posted here (which does not enable Broadcom Wi-Fi in Sonoma and Sequoia). Read this post to learn how to enable Broadcom Wi-Fi in Sonoma and Sequoia.
-
Hi @deeveedee I attached my config.plist for your reference config.plist
-
-
damangameappk changed their profile photo
-
I Need Trip changed their profile photo
-
Booming Acres changed their profile photo
-
Simple Health Services changed their profile photo
-
deepsoutheb changed their profile photo
-
Upgraded from Ventura 13.7.1 -> 13.7.2 and also Safari 18.1.1 -> 18.2. The upgrade was flawless via OTA, but patching with OCLP 2.2.0 (which has fixes for Safari 18.2) did not go well. Safari 18.2 crashed when visiting websites. My attempt to revert root patches with OCLP 2.2.0 borked my Ventura volume, such that I can no longer apply root patches (even after attempting manual mount and bless). Fortunately, I experimented with a test volume, so I'm going to trash the test volume and remain on Ventura 13.7.1 patched with OCLP 0.6.8 for now. EDIT: Before I had trashed the test volume, user RK78 here suggested using the Safari 18.1.1 installer to downgrade Safari 18.2 to 18.1.1. This worked! After downgrading Safari from 18.2 -> 18.1.1, I was able to apply OCLP post-install patches with OCLP 2.2.0. I am now running Ventura 13.7.2 with Safari 18.1.1, booting with OC 1.0.3 and patched with OCLP 2.2.0.
-
Zane Welton started following Apps
- Last week
-
@Uddipan Das While I would welcome your use of my EFI (attached to the first post in this thread), it would be a great learning experience to figure out what's wrong with your EFI. If you want to use my EFI, start with the OC103-EFI-R01 attached here. I have tested this EFI with Catalina through Sequoia. Change the config.plist DeviceProperties for PciRoot(0x0)/Pci(0x2,0x0) to match your DeviceProperties add your Intel Bluetooth kexts (to both the config.plist and the OC / Kexts folder) If you are certain of your USB port mapping, replace my USBPorts.kext with your own USB mapping solution (adding it to both the config.plist and OC / Kexts folder) Add your PlatformInfo > Generic info to config.plist If you want to use your EFI (and figure out what is wrong), try the following. You shouldn't need AMFIPass.kext unless you are using Open Core Legacy Patcher (not needed for Intel Wi-Fi). Maybe that was left-over from your use of OCLP. In your config.plist, set Misc > Security > SecureBootModel = Disabled to install and/or upgrade macOS Sonoma and newer Good luck! Looking forward to hearing about your progress.
-
I don't know how true this is but the rumor is, the lure of big bucks from Tim and crew was too good a thing to turn down. So as much as he berated the said outfit in the past and it's practices, money talks and BS walks, specially when there is a chance to fill your boots. If true, I can't really say I blame him as in this capitalistic world, one has to sometimes swallow pride and take the cheese. Great loss to the Hack community though.
- 141 replies
-
- mac app store
- NullEthernet
-
(and 1 more)
Tagged with:
-
Mac App Store access with NullEthernet.kext
deeveedee replied to RehabMan's topic in LAN and Wireless
What could possibly be greener than our hackintosh community?- 141 replies
-
- 3
-
- mac app store
- NullEthernet
-
(and 1 more)
Tagged with:
-
Hi, I have an HP ProDesk G5 Mini with an i7-9900T CPU, 16GB RAM, Intel Wi-Fi, UHD 630 graphics, and a 256GB WD NVMe SSD. It's similar to the EliteDesk G4 mentioned above by @deeveedee I'm having trouble during the boot process. This mini PC goes to a white screen with a clock error message saying "Enter to Reboot" in-between restart during booting with Sequoia, eventually getting stuck in a boot loop. @deeveedee, could you kindly share an EFI folder that works with Sonoma or Sequoia? I am attaching my config.plist for your reference. Thank you so much. config.plist
-
- 170 replies
-
- 11
-
Smooth upgrade to Sequoia 15.2 (release) on my old Ivybridge (OCLP 2.2) 😊 ioregistryexplorer is my best friend 😂 On this machine, I actually use SMBIOS MacPro6,1 late 2013. But others board-id (tested) are working: MacPro7,1 and iMacPro1,1. Thanks to Santa 😇 mathieu@Mac-Pro-de-mathieu ~ % ioreg -l | grep -i board-id | "board-id" = <"Mac-F60DEB81FF30ACF6"> | "IOPropertyMatch" = ({"board-id"="Mac-F60DEB81FF30ACF6"},{"board-id"="Mac-7BA5B2D9E42DDD94"},{"board-id"="Mac-27AD2F918AE68F61"})
-
@izzat I'm glad you are enjoying your hack! Please post your OC config.plist after removing the private PlatformInfo. I assume that you are applying post-install patches to Sequoia with Open Core Legacy Patcher (OCLP), correct? As you know, Broadcom Wi-Fi with Fenvi T919 is not part of the solution that I provided, since I don't use OCLP on my EliteDesk 800 G4/G5 Minis. OCLP post-install patches are required for working Broadcom Wi-Fi after Ventura (i.e., Broadcom Wi-Fi does not work in macOS Sonoma and Sequoia unless you apply post-install patches with Open Core Legacy Patcher). If you are not applying OCLP post-install patches (which are required for working Wi-Fi), then that would be the problem, but I won't know until I look at your config.plist. EDIT: @izzat If you don't know about OCLP, see this thread.