mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-01-27 10:19:49 +00:00
Add null ethernet when only USB network adapters detected
This commit is contained in:
@@ -3282,7 +3282,7 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "WMIS", 0x00000000)
|
||||
else:
|
||||
selected_patches.append("PLUG")
|
||||
|
||||
if not hardware_report.get("Network"):
|
||||
if all(network_props.get("Bus Type") == "USB" for network_props in hardware_report.get("Network", {}).values()):
|
||||
selected_patches.append("RMNE")
|
||||
|
||||
if hardware_report.get("Motherboard").get("Chipset") in ("C610/X99", "Wellsburg", "X299"):
|
||||
|
||||
@@ -296,7 +296,7 @@ class KextMaestro:
|
||||
elif device_id in pci_data.IntelX500IDs:
|
||||
selected_kexts.append("IntelLucy")
|
||||
|
||||
if not hardware_report.get("Network"):
|
||||
if all(network_props.get("Bus Type") == "USB" for network_props in hardware_report.get("Network", {}).values()):
|
||||
selected_kexts.append("NullEthernet")
|
||||
|
||||
for bluetooth_name, bluetooth_props in hardware_report.get("Bluetooth", {}).items():
|
||||
|
||||
Reference in New Issue
Block a user