Jump to content
23 posts in this topic

Recommended Posts

56 minutes ago, LockDown said:

Anyone here not getting incremental update of Tahoe after updating to 15.6?

There is no issue on 15.5

 

@LockDown Just my opinion: incremental update of Tahoe from macOS Sequoia 15.5 or 15.6 don't exist because Tahoe is a new OS.

  • Like 2
  • Haha 2
1 hour ago, LockDown said:

@Matgen84 it does. enable the beta and you will get incremental. But not in 15.6

 

 

 

15.5

 

 

15.6

 

 

@LockDown Thanks.  Something is changing or corrected between 15.5 and 15.6 ? 

Sorry for bad English.

Edited by Matgen84
  • Like 1

### **Forcing Aquantia Ethernet (AQC107/AQC113) on macOS 15 (Sequoia)**

Since macOS 15 (Sequoia) is still in early development, Apple may have changed kernel structures, but the general approach remains similar. Here’s how to patch Aquantia support **without OpenCore's Kernel Patches**:

 

---

 

## **Method 1: Direct Kernel Patching (Recommended)**

This modifies the kernel to bypass Aquantia's device ID checks.

 

### **Steps:**

1. **Disable SIP & Authenticated Root**

   - Boot into **Recovery Mode** (`Cmd + R` at startup).

   - Open Terminal and run:

     ```bash

     csrutil disable

     csrutil authenticated-root disable

     ```

   - Reboot.

 

2. **Mount the System Volume as Read-Write**

   ```bash

   sudo mount -uw /Volumes/YourMacOSVolume

   ```

 

3. **Locate & Backup the Kernel**

   - The kernel is now in a **Kernel Collection (KC)** in macOS 15.

   - Find it at:

     ```bash

     /System/Library/KernelCollections/BootKernelExtensions.kc

     ```

   - Make a backup:

     ```bash

     sudo cp /System/Library/KernelCollections/BootKernelExtensions.kc ~/BootKernelExtensions.kc.backup

     ```

 

4. **Hex-Edit the Kernel Collection**

   - Use a hex editor (e.g., **Hex Fiend**, `xxd`).

   - **Search for:**

     ```

     81 FB 91 55 00 00  # Checks for AQC107 (0x5591)

     ```

   - **Replace with:**

     ```

     81 FB 90 55 00 00  # Bypasses the check (changes 0x5591 → 0x5590)

     ```

   - Save changes.

 

5. **Rebuild the Kernel Cache & Create a Snapshot**

   ```bash

   sudo kmutil install --update-all

   sudo kcditto

   sudo bless --folder /Volumes/YourMacOSVolume/System/Library/CoreServices --bootefi --create-snapshot

   ```

   - Reboot.

  • 2 weeks later...

Smooth OTA upgrade to Sequoia 15.6 on my HackBookPro6,2.  

 

Broadcom Bluetooth stopped working (in Sonoma 14.7.7 and newer macOS).  To fix Bluetooth, I needed to add BluetoolFixup boot-arg -btlfxboardid.  See details here.

 

EDIT: The cause of this problem was not a change in macOS, it was a change in BluetoolFixup.kext.  Auto board-id patching was removed from BluetoolFixup.kext in version 2.7.0.

Edited by deeveedee
  • 2 weeks later...
×
×
  • Create New...