You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
Project note: the app is now branded as `OpCore-OneClick`. Legacy repo/update coordinates and the persisted app-data path remain unchanged for continuity.
4
4
5
+
## 3.2.8 - 2026-04-03
6
+
7
+
### Fix Broadcom Wi-Fi planning/generation drift
8
+
- Stop auto-injecting `itlwm.kext` into modern laptops unless the detected Wi-Fi chipset is actually Intel. Broadcom laptops were incorrectly inheriting the Intel Wi-Fi path before.
9
+
- Add a conservative Broadcom Wi-Fi policy: supported BCM4352/BCM43602 paths now pull in `AirportBrcmFixup.kext` on Ventura and older, while BCM4360 stays on the native-style pre-Sonoma path.
10
+
- Sonoma and newer now report Broadcom Wi-Fi honestly in compatibility analysis instead of implying a clean native route where OCLP/root patches or a card swap are the real next step.
11
+
- Add `AirportBrcmFixup.kext` to the app kext registries so the generated Broadcom Wi-Fi path is fetchable and visible in resource planning.
? 'This Broadcom Wi-Fi path is no longer a clean native route on newer macOS targets. Expect OCLP/root patches or a replacement card if wireless matters.'
289
+
: 'Broadcom Wi-Fi support on this card family is conditional. Confirm the exact card model, verify whether AirportBrcmFixup is enough, and treat Bluetooth as a separate check.',
? 'Newer macOS targets dropped this Broadcom path as a clean native route. Wireless may need OCLP/root patches or a replacement card even if the rest of the machine is bootable.'
449
+
: 'This Broadcom Wi-Fi family is only conditionally supported. Expect card-model-specific validation before you trust wireless or Bluetooth behavior.',
'Broadcom Wi-Fi path detected. Sonoma and newer removed this as a clean native wireless route, so EFI planning can continue but wireless now depends on OCLP/root patches or a replacement card.',
547
+
`Broadcom Wi-Fi detected (${broadcomWifiPolicy.chipset}). Sonoma and newer are not a clean native path for this card family.`,
'Legacy Broadcom Wi-Fi path detected. The rest of the machine may still boot, but this wireless card family tops out around Catalina and should not be treated as a normal modern macOS path.',
554
+
`Broadcom Wi-Fi detected (${broadcomWifiPolicy.chipset}). This older card family tops out around Catalina and is not a normal ${profile.targetOS} wireless path.`,
'Broadcom Wi-Fi path detected, but the exact chipset support is not modeled cleanly in the generator yet. Planning can continue, but wireless should stay an explicit manual-validation item.',
561
+
`Broadcom Wi-Fi detected (${broadcomWifiPolicy.chipset}), but the exact support path is not modeled yet.`,
summary: 'Broadcom BCM4331/BCM43224-class Wi-Fi is a Catalina-and-older legacy path that still needs AirportBrcmFixup.',
80
+
};
81
+
}
82
+
return{
83
+
...policyBase,
84
+
supportClass: 'legacy_unsupported_on_target',
85
+
autoKexts: [],
86
+
summary: 'Broadcom BCM4331/BCM43224-class Wi-Fi tops out around Catalina and should not be treated as a normal Big Sur-or-newer path.',
87
+
};
88
+
}
89
+
90
+
return{
91
+
...policyBase,
92
+
supportClass: 'unknown_broadcom',
93
+
autoKexts: [],
94
+
summary: 'Detected a Broadcom Wi-Fi chipset that this generator does not classify cleanly yet. Do not assume a working native wireless path without manual verification.',
0 commit comments