mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-08-25 14:53:06 +00:00
Add YogaSMC kext
This commit is contained in:
@@ -615,6 +615,16 @@ kexts = [
|
||||
"repo": "BigSurface"
|
||||
}
|
||||
),
|
||||
KextInfo(
|
||||
name = "YogaSMC",
|
||||
description = "Enables support for syncing SMC keys, controlling sensors and managing vendor-specific features",
|
||||
category = "Brand Specific",
|
||||
requires_kexts = ["Lilu", "VirtualSMC"],
|
||||
github_repo = {
|
||||
"owner": "zhen-zen",
|
||||
"repo": "YogaSMC"
|
||||
}
|
||||
),
|
||||
KextInfo(
|
||||
name = "CtlnaAHCIPort",
|
||||
description = "Improves support for certain SATA controllers",
|
||||
|
||||
@@ -1364,4 +1364,6 @@ ChromebookIDs = {
|
||||
ThinkPadTWX30IDs = {
|
||||
"8086-1E55": ("21F317AA", "21F617AA", "21FB17AA"),
|
||||
"8086-1E58": ("500C17AA"),
|
||||
}
|
||||
}
|
||||
|
||||
YogaHIDs = ("INT33D5", "INTC1051", "INTC1054", "LEN0068", "LEN0268", "VPC2004")
|
||||
@@ -282,6 +282,10 @@ class KextMaestro:
|
||||
selected_kexts.append("AlpsHID")
|
||||
elif 78 < idx:
|
||||
selected_kexts.append("VoodooRMI")
|
||||
|
||||
for device_name, device_info in hardware_report.get("System Devices", {}).items():
|
||||
if device_info.get("Bus Type") == "ACPI" and device_info.get("Device") in pci_data.YogaHIDs:
|
||||
selected_kexts.append("YogaSMC")
|
||||
|
||||
if any(patch.checked for patch in acpi_patches if patch.name == "BATP"):
|
||||
selected_kexts.append("ECEnabler")
|
||||
|
||||
Reference in New Issue
Block a user