diff --git a/Scripts/datasets/pci_data.py b/Scripts/datasets/pci_data.py index 2ec4bfe..75ebb72 100755 --- a/Scripts/datasets/pci_data.py +++ b/Scripts/datasets/pci_data.py @@ -548,6 +548,45 @@ NetworkIDs = [ "1186-8168", "10EC-2502", "10EC-2600", + # AppleIGB.kext + "8086-034A", + "8086-0438", + "8086-043C", + "8086-0440", + "8086-10A7", + "8086-10A9", + "8086-10C9", + "8086-10D6", + "8086-10E6", + "8086-10E7", + "8086-10E8", + "8086-150A", + "8086-150D", + "8086-150E", + "8086-150F", + "8086-1510", + "8086-1511", + "8086-1516", + "8086-1518", + "8086-1521", + "8086-1522", + "8086-1523", + "8086-1524", + "8086-1526", + "8086-1527", + "8086-1533", + "8086-1534", + "8086-1535", + "8086-1536", + "8086-1537", + "8086-1538", + "8086-1539", + "8086-1546", + "8086-157B", + "8086-157C", + "8086-1F40", + "8086-1F41", + "8086-1F45", # RtWlanU.kext, RtWlanU1827.kext and RT2870USBWirelessDriver.kext "0409-0408", "0411-0242", diff --git a/Scripts/gathering_files.py b/Scripts/gathering_files.py index 213bad6..100e86b 100755 --- a/Scripts/gathering_files.py +++ b/Scripts/gathering_files.py @@ -107,6 +107,11 @@ class gatheringFiles: "id": 826491527, "url": "https://github.com/dortania/OpenCore-Legacy-Patcher/raw/76516394fddb7ce4526ccbcc5b806795c30e9a89/payloads/Kexts/Acidanthera/AMFIPass-v1.4.1-RELEASE.zip" }, + { + "product_name": "AppleIGB", + "id": 736194363, + "url": "https://github.com/lzhoang2801/lzhoang2801.github.io/raw/main/public/extra-files/AppleIGB-v5.11.4.zip" + }, { "product_name": "AppleIGC", "id": 138279923, diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index cb40659..9f96ba4 100755 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -642,6 +642,8 @@ class KextMaestro: kexts.append("RealtekRTL8100") elif 177 <= idx <= 180: kexts.append("RealtekRTL8111") + elif 181 <= idx <= 218: + kexts.append("AppleIGB") if bluetooth and macos_version > 20 and not wifi_pci in ["14E4-43A0", "14E4-43A3", "14E4-43BA"]: kexts.append("BlueToolFixup")