├── .github └── no-response.yml ├── .gitignore ├── Clover EFI (10.15) └── EFI │ ├── BOOT │ └── BOOTX64.efi │ └── CLOVER │ ├── ACPI │ └── origin │ │ └── DSDT-0.aml │ ├── CLOVERX64.efi │ ├── OEM │ └── SystemProductName │ │ ├── UEFI │ │ └── config-sample.plist │ │ └── config-sample.plist │ ├── config.plist │ ├── doc │ ├── HowToFixDsdt.txt │ ├── HowToInstallOSX.txt │ ├── UEFI boot with Clover.rtf │ ├── bcfg.txt │ └── boot1f32-install.sh │ ├── drivers │ └── UEFI │ │ ├── ApfsDriverLoader-64.efi │ │ ├── AppleImageCodec-64.efi │ │ ├── AppleKeyAggregator-64.efi │ │ ├── AppleUITheme-64.efi │ │ ├── AptioMemoryFix-64.efi │ │ ├── DataHubDxe-64.efi │ │ ├── FSInject-64.efi │ │ ├── FirmwareVolume-64.efi │ │ ├── PartitionDxe-64.efi │ │ ├── SMCHelper-64.efi │ │ └── VBoxHfs-64.efi │ ├── kexts │ └── Other │ │ ├── AHCI_Intel_Generic_SATA.kext │ │ └── Contents │ │ │ └── Info.plist │ │ ├── AppleIntelE1000e.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleIntelE1000e │ │ │ └── Resources │ │ │ └── InfoPlist.strings │ │ ├── AppleUSBXHCIPCI.kext │ │ └── Contents │ │ │ └── Info.plist │ │ ├── AtherosE2200Ethernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AtherosE2200Ethernet │ │ │ └── Resources │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── FakeSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FakeSMC │ │ ├── GenericUSBXHCI.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── GenericUSBXHCI │ │ ├── NullCPUPowerManagement.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── NullCPUPowerManagement │ │ │ └── Resources │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── VoodooHDA.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooHDA │ │ └── VoodooTSCSync.kext │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooTSCSync │ │ └── Resources │ │ └── English.lproj │ │ └── InfoPlist.strings │ ├── themes │ ├── embedded │ │ ├── screenshot.png │ │ └── theme.plist │ ├── logo_main.png │ ├── pointer-metal.png │ └── random │ │ └── theme.plist │ └── tools │ ├── Shell32.efi │ ├── Shell64.efi │ ├── Shell64U.efi │ └── bdmesg.efi ├── OpenCore EFI (10.15-11) └── EFI │ ├── BOOT │ └── BOOTx64.efi │ └── OC │ ├── ACPI │ ├── SSDT-EC-DESKTOP.aml │ ├── SSDT-GPU-SPOOF.aml │ ├── SSDT-HPET.aml │ └── SSDT-PLUG-DRTNIA.aml │ ├── Drivers │ ├── HfsPlusLegacy.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── IntelMausiEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausiEthernet │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NullCPUPowerManagement.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── NullCPUPowerManagement │ │ │ └── Resources │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── USBMap.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ ├── VoodooTSCSync.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooTSCSync │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Tools │ └── OpenShell.efi │ └── config.plist └── README.md /.github/no-response.yml: -------------------------------------------------------------------------------- 1 | # Configuration for probot-no-response - https://github.com/probot/no-response 2 | 3 | # Number of days of inactivity before an Issue is closed for lack of response 4 | daysUntilClose: 7 5 | # Label requiring a response 6 | responseRequiredLabel: more-information-needed 7 | # Comment to post when closing an Issue for lack of response. Set to `false` to disable 8 | closeComment: > 9 | This issue has been automatically closed because there has been no responsefrom the original author. 10 | With only the information that is currently in the issue, I don't have enough information 11 | to take action. Please reach out if you have or find the answers I need so 12 | that I can investigate further. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/ACPI/origin/DSDT-0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/ACPI/origin/DSDT-0.aml -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/OEM/SystemProductName/UEFI/config-sample.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | #DisableDrivers 6 | 7 | CsmVideoDxe 8 | VBoxExt4 9 | 10 | ACPI 11 | 12 | #DropMCFG 13 | 14 | #PatchAPIC 15 | 16 | #ResetAddress 17 | 0x64 18 | #ResetValue 19 | 0xFE 20 | #SortedOrder 21 | 22 | SSDT-3.aml 23 | SSDT-1.aml 24 | SSDT-2.aml 25 | 26 | #smartUPS 27 | 28 | DSDT 29 | 30 | #DropOEM_DSM 31 | 32 | ATI 33 | 34 | Firewire 35 | 36 | HDA 37 | 38 | HDMI 39 | 40 | IDE 41 | 42 | IntelGFX 43 | 44 | LAN 45 | 46 | LPC 47 | 48 | NVidia 49 | 50 | SATA 51 | 52 | SmBUS 53 | 54 | USB 55 | 56 | WIFI 57 | 58 | 59 | #Patches 60 | 61 | 62 | Comment 63 | Remove battery device from desktop 64 | Find 65 | W4IeQkFUMQhfSElEDEHQDAoIX1VJRAEUCF9TVEEApAA= 66 | Replace 67 | 68 | 69 | 70 | Comment 71 | Add _SUN property for GIGE 72 | Find 73 | UFhTWAhfQURSAAhfUFJXEgYC 74 | Replace 75 | UFhTWAhfQURSAAhfU1VOCgQIX1BSVxIGAg== 76 | 77 | 78 | Comment 79 | Rename GFX0 to IGPU 80 | Find 81 | R0ZYMA== 82 | Replace 83 | SUdQVQ== 84 | 85 | 86 | Comment 87 | Rename HDEF to AZAL 88 | Find 89 | SERFRg== 90 | Replace 91 | QVpBTA== 92 | 93 | 94 | #Rtc8Allowed 95 | 96 | #SuspendOverride 97 | 98 | Debug 99 | 100 | Fixes 101 | 102 | AddDTGP_0001 103 | 104 | AddHDMI_8000000 105 | 106 | AddIMEI_80000 107 | 108 | AddMCHC_0008 109 | 110 | AddPNLF_1000000 111 | 112 | DeleteUnused_400000 113 | 114 | FIX_ACST_4000000 115 | 116 | FIX_ADP1_800000 117 | 118 | FIX_INTELGFX_100000 119 | 120 | FIX_RTC_20000 121 | 122 | FIX_S3D_2000000 123 | 124 | FIX_TMR_40000 125 | 126 | FIX_WAK_200000 127 | 128 | FakeLPC_0020 129 | 130 | FixAirport_4000 131 | 132 | FixDarwin_0002 133 | 134 | FixDarwin7_10000 135 | 136 | FixDisplay_0100 137 | 138 | FixFirewire_0800 139 | 140 | FixHDA_8000 141 | 142 | FixHPET_0010 143 | 144 | FixHeaders_20000000 145 | 146 | FixIDE_0200 147 | 148 | FixIPIC_0040 149 | 150 | FixLAN_2000 151 | 152 | FixRegions_10000000 153 | 154 | FixSATA_0400 155 | 156 | FixSBUS_0080 157 | 158 | FixShutdown_0004 159 | 160 | FixUSB_1000 161 | 162 | 163 | Name 164 | DSDT.aml 165 | ReuseFFFF 166 | 167 | 168 | DisableASPM 169 | 170 | DropTables 171 | 172 | 173 | Signature 174 | DMAR 175 | 176 | 177 | Signature 178 | SSDT 179 | TableId 180 | CpuPm 181 | 182 | 183 | #Length 184 | 720 185 | Signature 186 | SSDT 187 | TableId 188 | Cpu0Ist 189 | 190 | 191 | HaltEnabler 192 | 193 | SSDT 194 | 195 | #C3Latency 196 | 0x03E7 197 | #DoubleFirstState 198 | 199 | #DropOem 200 | 201 | #EnableC2 202 | 203 | #EnableC4 204 | 205 | #EnableC6 206 | 207 | #EnableC7 208 | 209 | #MaxMultiplier 210 | 12 211 | #MinMultiplier 212 | 8 213 | #PLimitDict 214 | 1 215 | #PluginType 216 | 0 217 | #UnderVoltStep 218 | 1 219 | #UseSystemIO 220 | 221 | Generate 222 | 223 | CStates 224 | 225 | PStates 226 | 227 | 228 | 229 | 230 | Boot 231 | 232 | ##Arguments 233 | kext-dev-mode=1 rootless=0 234 | #Arguments 235 | -v arch=x86_64 slide=0 darkwake=0 236 | #LegacyBiosDefaultEntry 237 | 0 238 | #XMPDetection 239 | -1 240 | Debug 241 | 242 | DefaultLoader 243 | boot.efi 244 | DefaultVolume 245 | LastBootedVolume 246 | DisableCloverHotkeys 247 | 248 | Fast 249 | 250 | Legacy 251 | PBR 252 | NeverDoRecovery 253 | 254 | NeverHibernate 255 | 256 | SkipHibernateTimeout 257 | 258 | StrictHibernate 259 | 260 | RtcHibernateAware 261 | 262 | Timeout 263 | 5 264 | 265 | BootGraphics 266 | 267 | #DefaultBackgroundColor 268 | 0xF0F0F0 269 | EFILoginHiDPI 270 | 1 271 | UIScale 272 | 1 273 | 274 | CPU 275 | 276 | #BusSpeedkHz 277 | 133330 278 | #FrequencyMHz 279 | 3140 280 | #HWPEnable 281 | 282 | #HWPValue 283 | 0x30002a01 284 | #QPI 285 | 4800 286 | #SavingMode 287 | 7 288 | #TDP 289 | 95 290 | #TurboDisable 291 | 292 | #Type 293 | 0x0201 294 | #UseARTFrequency 295 | 296 | 297 | Devices 298 | 299 | #AddProperties 300 | 301 | 302 | Device 303 | NVidia 304 | Key 305 | AAPL,HasPanel 306 | Value 307 | AQAAAA== 308 | 309 | 310 | Device 311 | NVidia 312 | Key 313 | AAPL,Haslid 314 | Value 315 | AQAAAA== 316 | 317 | 318 | #FakeID 319 | 320 | #ATI 321 | 0x67501002 322 | #IMEI 323 | 0x1e208086 324 | #IntelGFX 325 | 0x01268086 326 | #LAN 327 | 0x100E8086 328 | #NVidia 329 | 0x11de10de 330 | #SATA 331 | 0x25628086 332 | #WIFI 333 | 0x431214e4 334 | #XHCI 335 | 0x0 336 | 337 | #ForceHPET 338 | 339 | #Inject 340 | 341 | #Properties 342 | 7a00000001000000010000006e0000000200000002010c00d041030a0000000001010600001b7fff040028000000500069006e0043006f006e00660069006700750072006100740069006f006e00730000000800000001080100180000006c00610079006f00750074002d00690064000000080000000c000000 343 | #SetIntelBacklight 344 | 345 | #SetIntelMaxBacklight 346 | 347 | #IntelMaxValue 348 | 1808 349 | Audio 350 | 351 | #Inject 352 | 0x0887 353 | ResetHDA 354 | 355 | 356 | NoDefaultProperties 357 | 358 | USB 359 | 360 | AddClockID 361 | 362 | FixOwnership 363 | 364 | HighCurrent 365 | 366 | Inject 367 | 368 | 369 | UseIntelHDMI 370 | 371 | 372 | GUI 373 | 374 | #ConsoleMode 375 | 0 376 | #Custom 377 | 378 | Entries 379 | 380 | 381 | AddArguments 382 | -v 383 | Arguments 384 | Kernel=mach_kernel 385 | Disabled 386 | 387 | Hidden 388 | 389 | Hotkey 390 | M 391 | InjectKexts 392 | 393 | NoCaches 394 | 395 | Path 396 | \EFI\BOOT\BOOTX64.efi 397 | Title 398 | MyCustomEntry 399 | Type 400 | OSXRecovery 401 | Volume 402 | D68F1885-571C-4441-8DD5-F14803EFEF54 403 | 404 | 405 | Hidden 406 | 407 | InjectKexts 408 | 409 | NoCaches 410 | 411 | SubEntries 412 | 413 | 414 | AddArguments 415 | -v 416 | Title 417 | Boot OS X 10.8.5 (12F36) Mountain Lion in Verbose Mode 418 | 419 | 420 | Title 421 | OS X 10.8.5 (12F36) Mountain Lion 422 | Type 423 | OSX 424 | Volume 425 | 454794AC-760D-46E8-8F77-D6EB23D2FD32 426 | 427 | 428 | Legacy 429 | 430 | 431 | Disabled 432 | 433 | Hidden 434 | 435 | Hotkey 436 | L 437 | Title 438 | MyLegacyEntry 439 | Type 440 | Windows 441 | Volume 442 | 89433CD3-21F2-4D3C-95FC-722C48066D3A 443 | 444 | 445 | Tool 446 | 447 | 448 | Arguments 449 | -b 450 | Disabled 451 | 452 | Hidden 453 | 454 | Hotkey 455 | S 456 | Path 457 | \EFI\CLOVER\TOOLS\Shell64-v1.efi 458 | Title 459 | MyCustomShell 460 | Volume 461 | D68F1885-571C-4441-8DD5-F14803EFEF54 462 | 463 | 464 | 465 | #CustomIcons 466 | 467 | #Hide 468 | 469 | Windows 470 | BOOTX64.EFI 471 | 472 | #Language 473 | ru:0 474 | #Mouse 475 | 476 | Enabled 477 | 478 | Mirror 479 | 480 | Speed 481 | 2 482 | 483 | #Scan 484 | 485 | Entries 486 | 487 | Legacy 488 | 489 | Tool 490 | 491 | 492 | #TextOnly 493 | 494 | ScreenResolution 495 | 1280x1024 496 | ShowOptimus 497 | 498 | Theme 499 | metal 500 | 501 | Graphics 502 | 503 | #Connectors 504 | 505 | #DualLink 506 | 0 507 | #FBName 508 | Makakakakala 509 | #Inject 510 | 511 | ATI 512 | 513 | Intel 514 | 515 | NVidia 516 | 517 | 518 | #LoadVBios 519 | 520 | #NVCAP 521 | 04000000000003000C0000000000000A00000000 522 | #NvidiaGeneric 523 | 524 | #NvidiaNoEFI 525 | 526 | #NvidiaSingle 527 | 528 | #PatchVBios 529 | 530 | #PatchVBiosBytes 531 | 532 | 533 | Find 534 | gAeoAqAF 535 | Replace 536 | gAeoAjgE 537 | 538 | 539 | #VRAM 540 | 1024 541 | #VideoPorts 542 | 2 543 | #display-cfg 544 | 03010300FFFF0001 545 | #ig-platform-id 546 | 0x01620005 547 | EDID 548 | 549 | #Custom 550 | AP///////wAGECGSAAAAAAASAQOAIRV4CunVmVlTjigmUFQAAAABAQEBAQEBAQEBAQEBAQEB3iGgcFCEHzAgIFYAS88QAAAY3iGgcFCEHzAgIFYAS88QAAAAAAAA/gBXNjU3RwAxNTRXUDEKAAAA/gAjMz1IZYSq/wIBCiAgAJo= 551 | #Inject 552 | 553 | #ProductID 554 | 0x9221 555 | #VendorID 556 | 0x1006 557 | 558 | 559 | KernelAndKextPatches 560 | 561 | #ATIConnectorsController 562 | 6000 563 | #ATIConnectorsData 564 | 000400000403000000010000210302040400000014020000000100000000040310000000100000000001000000000001 565 | #ATIConnectorsPatch 566 | 040000001402000000010000000004040004000004030000000100001102010500000000000000000000000000000000 567 | #BootPatches 568 | 569 | 570 | Comment 571 | Example 572 | Disabled 573 | 574 | Find 575 | RXh0ZXJuYWw= 576 | MatchOS 577 | All 578 | Replace 579 | SW50ZXJuYWw= 580 | 581 | 582 | #FakeCPUID 583 | 0x010676 584 | #KextsToPatch 585 | 586 | 587 | Disabled 588 | 589 | Find 590 | SGVhZHBob25lcwA= 591 | Name 592 | VoodooHDA 593 | Replace 594 | VGVsZXBob25lcwA= 595 | 596 | 597 | Comment 598 | Patch_to_not_load_this_driver 599 | Find 600 | 0x04020000 601 | InfoPlistPatch 602 | 603 | Name 604 | AppleHDAController 605 | Replace 606 | 0x44220000 607 | 608 | 609 | Comment 610 | Make all drives to be internal 611 | Find 612 | RXh0ZXJuYWw= 613 | Name 614 | AppleAHCIPort 615 | Replace 616 | SW50ZXJuYWw= 617 | 618 | 619 | Comment 620 | TRIM function for non-Apple SSDs 621 | Find 622 | QVBQTEUgU1NEAA== 623 | Name 624 | IOAHCIBlockStorage 625 | Replace 626 | AAAAAAAAAAAAAA== 627 | 628 | 629 | Comment 630 | ATI Connector patch new way 631 | Disabled 632 | 633 | Find 634 | AAQAAAQDAAAAAQAAIQMCBAQAAAAUAgAAAAEAAAAABAMQAAAAEAAAAAABAAAAAAAB 635 | MatchOS 636 | 10.9,10.10,10.11 637 | Name 638 | AMD6000Controller 639 | Replace 640 | BAAAABQCAAAAAQAAAAAEBAAEAAAEAwAAAAEAABECAQUAAAAAAAAAAAAAAAAAAAAA 641 | 642 | 643 | AppleIntelCPUPM 644 | 645 | AppleRTC 646 | 647 | AsusAICPUPM 648 | 649 | Debug 650 | 651 | DellSMBIOSPatch 652 | 653 | KernelCpu 654 | 655 | KernelIvyXCPM 656 | 657 | KernelLapic 658 | 659 | KernelPm 660 | 661 | 662 | RtVariables 663 | 664 | BooterConfig 665 | 0x28 666 | CsrActiveConfig 667 | 0x3E7 668 | MLB 669 | C02032109R5DC771H 670 | ROM 671 | UseMacAddr0 672 | 673 | SMBIOS 674 | 675 | #BiosReleaseDate 676 | 05/03/10 677 | #BiosVendor 678 | Apple Inc. 679 | #BiosVersion 680 | MB11.88Z.0061.B03.0809221748 681 | #Board-ID 682 | Mac-F4208CC8 683 | #BoardManufacturer 684 | Apple Inc. 685 | #BoardSerialNumber 686 | C02032101R5DC771H 687 | #BoardType 688 | 10 689 | #BoardVersion 690 | Proto1 691 | #ChassisAssetTag 692 | LatitudeD420 693 | #ChassisManufacturer 694 | Apple Inc. 695 | #ChassisType 696 | 16 697 | #Family 698 | MacBook 699 | #FirmwareFeatures 700 | 0xC0001403 701 | #FirmwareFeaturesMask 702 | 0xFFFFFFFF 703 | #LocationInChassis 704 | MLB 705 | #Memory 706 | 707 | Channels 708 | 2 709 | Modules 710 | 711 | 712 | Frequency 713 | 1333 714 | Part 715 | C0001403 716 | Serial 717 | 00001001 718 | Size 719 | 4096 720 | Slot 721 | 0 722 | Type 723 | DDR3 724 | Vendor 725 | Kingston 726 | 727 | 728 | Frequency 729 | 1333 730 | Part 731 | C0001404 732 | Serial 733 | 00001002 734 | Size 735 | 4096 736 | Slot 737 | 2 738 | Type 739 | DDR3 740 | Vendor 741 | Kingston 742 | 743 | 744 | SlotCount 745 | 4 746 | 747 | #Mobile 748 | 749 | #PlatformFeature 750 | 0x03 751 | #ProductName 752 | MacBook1,1 753 | #SerialNumber 754 | 4H629LYAU9C 755 | #Slots 756 | 757 | 758 | Device 759 | ATI 760 | ID 761 | 1 762 | Name 763 | PCIe Slot 0 764 | Type 765 | 16 766 | 767 | 768 | Device 769 | WIFI 770 | ID 771 | 0 772 | Name 773 | Airport 774 | Type 775 | 1 776 | 777 | 778 | #SmUUID 779 | 00000000-0000-1000-8000-010203040506 780 | #Trust 781 | 782 | #Version 783 | 1.0 784 | Manufacturer 785 | Apple Inc. 786 | 787 | SystemParameters 788 | 789 | #BacklightLevel 790 | 0x0501 791 | #CustomUUID 792 | 511CE201-1000-4000-9999-010203040506 793 | #NvidiaWeb 794 | 795 | InjectKexts 796 | Detect 797 | InjectSystemID 798 | 799 | 800 | 801 | 802 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/OEM/SystemProductName/config-sample.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | #DisableDrivers 6 | 7 | CsmVideoDxe 8 | VBoxExt4 9 | 10 | ACPI 11 | 12 | #DropMCFG 13 | 14 | #PatchAPIC 15 | 16 | #ResetAddress 17 | 0x64 18 | #ResetValue 19 | 0xFE 20 | #SortedOrder 21 | 22 | SSDT-3.aml 23 | SSDT-1.aml 24 | SSDT-2.aml 25 | 26 | #smartUPS 27 | 28 | DSDT 29 | 30 | #DropOEM_DSM 31 | 32 | ATI 33 | 34 | Firewire 35 | 36 | HDA 37 | 38 | HDMI 39 | 40 | IDE 41 | 42 | IntelGFX 43 | 44 | LAN 45 | 46 | LPC 47 | 48 | NVidia 49 | 50 | SATA 51 | 52 | SmBUS 53 | 54 | USB 55 | 56 | WIFI 57 | 58 | 59 | #Patches 60 | 61 | 62 | Comment 63 | Remove battery device from desktop 64 | Find 65 | W4IeQkFUMQhfSElEDEHQDAoIX1VJRAEUCF9TVEEApAA= 66 | Replace 67 | 68 | 69 | 70 | Comment 71 | Add _SUN property for GIGE 72 | Find 73 | UFhTWAhfQURSAAhfUFJXEgYC 74 | Replace 75 | UFhTWAhfQURSAAhfU1VOCgQIX1BSVxIGAg== 76 | 77 | 78 | Comment 79 | Rename GFX0 to IGPU 80 | Find 81 | R0ZYMA== 82 | Replace 83 | SUdQVQ== 84 | 85 | 86 | Comment 87 | Rename HDEF to AZAL 88 | Find 89 | SERFRg== 90 | Replace 91 | QVpBTA== 92 | 93 | 94 | #Rtc8Allowed 95 | 96 | #SuspendOverride 97 | 98 | Debug 99 | 100 | Fixes 101 | 102 | AddDTGP_0001 103 | 104 | AddHDMI_8000000 105 | 106 | AddIMEI_80000 107 | 108 | AddMCHC_0008 109 | 110 | AddPNLF_1000000 111 | 112 | DeleteUnused_400000 113 | 114 | FIX_ACST_4000000 115 | 116 | FIX_ADP1_800000 117 | 118 | FIX_INTELGFX_100000 119 | 120 | FIX_RTC_20000 121 | 122 | FIX_S3D_2000000 123 | 124 | FIX_TMR_40000 125 | 126 | FIX_WAK_200000 127 | 128 | FakeLPC_0020 129 | 130 | FixAirport_4000 131 | 132 | FixDarwin_0002 133 | 134 | FixDarwin7_10000 135 | 136 | FixDisplay_0100 137 | 138 | FixFirewire_0800 139 | 140 | FixHDA_8000 141 | 142 | FixHPET_0010 143 | 144 | FixHeaders_20000000 145 | 146 | FixIDE_0200 147 | 148 | FixIPIC_0040 149 | 150 | FixLAN_2000 151 | 152 | FixRegions_10000000 153 | 154 | FixSATA_0400 155 | 156 | FixSBUS_0080 157 | 158 | FixShutdown_0004 159 | 160 | FixUSB_1000 161 | 162 | 163 | Name 164 | DSDT.aml 165 | ReuseFFFF 166 | 167 | 168 | DisableASPM 169 | 170 | DropTables 171 | 172 | 173 | Signature 174 | DMAR 175 | 176 | 177 | Signature 178 | SSDT 179 | TableId 180 | CpuPm 181 | 182 | 183 | #Length 184 | 720 185 | Signature 186 | SSDT 187 | TableId 188 | Cpu0Ist 189 | 190 | 191 | HaltEnabler 192 | 193 | SSDT 194 | 195 | #C3Latency 196 | 0x03E7 197 | #DoubleFirstState 198 | 199 | #DropOem 200 | 201 | #EnableC2 202 | 203 | #EnableC4 204 | 205 | #EnableC6 206 | 207 | #EnableC7 208 | 209 | #MaxMultiplier 210 | 12 211 | #MinMultiplier 212 | 8 213 | #PLimitDict 214 | 1 215 | #PluginType 216 | 0 217 | #UnderVoltStep 218 | 1 219 | #UseSystemIO 220 | 221 | Generate 222 | 223 | CStates 224 | 225 | PStates 226 | 227 | 228 | 229 | 230 | Boot 231 | 232 | ##Arguments 233 | kext-dev-mode=1 rootless=0 234 | #Arguments 235 | -v arch=x86_64 slide=0 darkwake=0 236 | #LegacyBiosDefaultEntry 237 | 0 238 | #XMPDetection 239 | -1 240 | Debug 241 | 242 | DefaultLoader 243 | boot.efi 244 | DefaultVolume 245 | LastBootedVolume 246 | DisableCloverHotkeys 247 | 248 | Fast 249 | 250 | Legacy 251 | PBR 252 | NeverDoRecovery 253 | 254 | NeverHibernate 255 | 256 | SkipHibernateTimeout 257 | 258 | StrictHibernate 259 | 260 | RtcHibernateAware 261 | 262 | Timeout 263 | 5 264 | 265 | BootGraphics 266 | 267 | #DefaultBackgroundColor 268 | 0xF0F0F0 269 | EFILoginHiDPI 270 | 1 271 | UIScale 272 | 1 273 | 274 | CPU 275 | 276 | #BusSpeedkHz 277 | 133330 278 | #FrequencyMHz 279 | 3140 280 | #HWPEnable 281 | 282 | #HWPValue 283 | 0x30002a01 284 | #QPI 285 | 4800 286 | #SavingMode 287 | 7 288 | #TDP 289 | 95 290 | #TurboDisable 291 | 292 | #Type 293 | 0x0201 294 | #UseARTFrequency 295 | 296 | 297 | Devices 298 | 299 | #AddProperties 300 | 301 | 302 | Device 303 | NVidia 304 | Key 305 | AAPL,HasPanel 306 | Value 307 | AQAAAA== 308 | 309 | 310 | Device 311 | NVidia 312 | Key 313 | AAPL,Haslid 314 | Value 315 | AQAAAA== 316 | 317 | 318 | #FakeID 319 | 320 | #ATI 321 | 0x67501002 322 | #IMEI 323 | 0x1e208086 324 | #IntelGFX 325 | 0x01268086 326 | #LAN 327 | 0x100E8086 328 | #NVidia 329 | 0x11de10de 330 | #SATA 331 | 0x25628086 332 | #WIFI 333 | 0x431214e4 334 | #XHCI 335 | 0x0 336 | 337 | #ForceHPET 338 | 339 | #Inject 340 | 341 | #Properties 342 | 7a00000001000000010000006e0000000200000002010c00d041030a0000000001010600001b7fff040028000000500069006e0043006f006e00660069006700750072006100740069006f006e00730000000800000001080100180000006c00610079006f00750074002d00690064000000080000000c000000 343 | #SetIntelBacklight 344 | 345 | #SetIntelMaxBacklight 346 | 347 | #IntelMaxValue 348 | 1808 349 | Audio 350 | 351 | #Inject 352 | 0x0887 353 | ResetHDA 354 | 355 | 356 | NoDefaultProperties 357 | 358 | USB 359 | 360 | AddClockID 361 | 362 | FixOwnership 363 | 364 | HighCurrent 365 | 366 | Inject 367 | 368 | 369 | UseIntelHDMI 370 | 371 | 372 | GUI 373 | 374 | #ConsoleMode 375 | 0 376 | #Custom 377 | 378 | Entries 379 | 380 | 381 | AddArguments 382 | -v 383 | Arguments 384 | Kernel=mach_kernel 385 | Disabled 386 | 387 | Hidden 388 | 389 | Hotkey 390 | M 391 | InjectKexts 392 | 393 | NoCaches 394 | 395 | Path 396 | \EFI\BOOT\BOOTX64.efi 397 | Title 398 | MyCustomEntry 399 | Type 400 | OSXRecovery 401 | Volume 402 | D68F1885-571C-4441-8DD5-F14803EFEF54 403 | 404 | 405 | Hidden 406 | 407 | InjectKexts 408 | 409 | NoCaches 410 | 411 | SubEntries 412 | 413 | 414 | AddArguments 415 | -v 416 | Title 417 | Boot OS X 10.8.5 (12F36) Mountain Lion in Verbose Mode 418 | 419 | 420 | Title 421 | OS X 10.8.5 (12F36) Mountain Lion 422 | Type 423 | OSX 424 | Volume 425 | 454794AC-760D-46E8-8F77-D6EB23D2FD32 426 | 427 | 428 | Legacy 429 | 430 | 431 | Disabled 432 | 433 | Hidden 434 | 435 | Hotkey 436 | L 437 | Title 438 | MyLegacyEntry 439 | Type 440 | Windows 441 | Volume 442 | 89433CD3-21F2-4D3C-95FC-722C48066D3A 443 | 444 | 445 | Tool 446 | 447 | 448 | Arguments 449 | -b 450 | Disabled 451 | 452 | Hidden 453 | 454 | Hotkey 455 | S 456 | Path 457 | \EFI\CLOVER\TOOLS\Shell64-v1.efi 458 | Title 459 | MyCustomShell 460 | Volume 461 | D68F1885-571C-4441-8DD5-F14803EFEF54 462 | 463 | 464 | 465 | #CustomIcons 466 | 467 | #Hide 468 | 469 | Windows 470 | BOOTX64.EFI 471 | 472 | #Language 473 | ru:0 474 | #Mouse 475 | 476 | Enabled 477 | 478 | Mirror 479 | 480 | Speed 481 | 2 482 | 483 | #Scan 484 | 485 | Entries 486 | 487 | Legacy 488 | 489 | Tool 490 | 491 | 492 | #TextOnly 493 | 494 | ScreenResolution 495 | 1280x1024 496 | ShowOptimus 497 | 498 | Theme 499 | metal 500 | 501 | Graphics 502 | 503 | #Connectors 504 | 505 | #DualLink 506 | 0 507 | #FBName 508 | Makakakakala 509 | #Inject 510 | 511 | ATI 512 | 513 | Intel 514 | 515 | NVidia 516 | 517 | 518 | #LoadVBios 519 | 520 | #NVCAP 521 | 04000000000003000C0000000000000A00000000 522 | #NvidiaGeneric 523 | 524 | #NvidiaNoEFI 525 | 526 | #NvidiaSingle 527 | 528 | #PatchVBios 529 | 530 | #PatchVBiosBytes 531 | 532 | 533 | Find 534 | gAeoAqAF 535 | Replace 536 | gAeoAjgE 537 | 538 | 539 | #VRAM 540 | 1024 541 | #VideoPorts 542 | 2 543 | #display-cfg 544 | 03010300FFFF0001 545 | #ig-platform-id 546 | 0x01620005 547 | EDID 548 | 549 | #Custom 550 | AP///////wAGECGSAAAAAAASAQOAIRV4CunVmVlTjigmUFQAAAABAQEBAQEBAQEBAQEBAQEB3iGgcFCEHzAgIFYAS88QAAAY3iGgcFCEHzAgIFYAS88QAAAAAAAA/gBXNjU3RwAxNTRXUDEKAAAA/gAjMz1IZYSq/wIBCiAgAJo= 551 | #Inject 552 | 553 | #ProductID 554 | 0x9221 555 | #VendorID 556 | 0x1006 557 | 558 | 559 | KernelAndKextPatches 560 | 561 | #ATIConnectorsController 562 | 6000 563 | #ATIConnectorsData 564 | 000400000403000000010000210302040400000014020000000100000000040310000000100000000001000000000001 565 | #ATIConnectorsPatch 566 | 040000001402000000010000000004040004000004030000000100001102010500000000000000000000000000000000 567 | #BootPatches 568 | 569 | 570 | Comment 571 | Example 572 | Disabled 573 | 574 | Find 575 | RXh0ZXJuYWw= 576 | MatchOS 577 | All 578 | Replace 579 | SW50ZXJuYWw= 580 | 581 | 582 | #FakeCPUID 583 | 0x010676 584 | #KextsToPatch 585 | 586 | 587 | Disabled 588 | 589 | Find 590 | SGVhZHBob25lcwA= 591 | Name 592 | VoodooHDA 593 | Replace 594 | VGVsZXBob25lcwA= 595 | 596 | 597 | Comment 598 | Patch_to_not_load_this_driver 599 | Find 600 | 0x04020000 601 | InfoPlistPatch 602 | 603 | Name 604 | AppleHDAController 605 | Replace 606 | 0x44220000 607 | 608 | 609 | Comment 610 | Make all drives to be internal 611 | Find 612 | RXh0ZXJuYWw= 613 | Name 614 | AppleAHCIPort 615 | Replace 616 | SW50ZXJuYWw= 617 | 618 | 619 | Comment 620 | TRIM function for non-Apple SSDs 621 | Find 622 | QVBQTEUgU1NEAA== 623 | Name 624 | IOAHCIBlockStorage 625 | Replace 626 | AAAAAAAAAAAAAA== 627 | 628 | 629 | Comment 630 | ATI Connector patch new way 631 | Disabled 632 | 633 | Find 634 | AAQAAAQDAAAAAQAAIQMCBAQAAAAUAgAAAAEAAAAABAMQAAAAEAAAAAABAAAAAAAB 635 | MatchOS 636 | 10.9,10.10,10.11 637 | Name 638 | AMD6000Controller 639 | Replace 640 | BAAAABQCAAAAAQAAAAAEBAAEAAAEAwAAAAEAABECAQUAAAAAAAAAAAAAAAAAAAAA 641 | 642 | 643 | AppleIntelCPUPM 644 | 645 | AppleRTC 646 | 647 | AsusAICPUPM 648 | 649 | Debug 650 | 651 | DellSMBIOSPatch 652 | 653 | KernelCpu 654 | 655 | KernelIvyXCPM 656 | 657 | KernelLapic 658 | 659 | KernelPm 660 | 661 | 662 | RtVariables 663 | 664 | BooterConfig 665 | 0x28 666 | CsrActiveConfig 667 | 0x3E7 668 | MLB 669 | C02032109R5DC771H 670 | ROM 671 | UseMacAddr0 672 | 673 | SMBIOS 674 | 675 | #BiosReleaseDate 676 | 05/03/10 677 | #BiosVendor 678 | Apple Inc. 679 | #BiosVersion 680 | MB11.88Z.0061.B03.0809221748 681 | #Board-ID 682 | Mac-F4208CC8 683 | #BoardManufacturer 684 | Apple Inc. 685 | #BoardSerialNumber 686 | C02032101R5DC771H 687 | #BoardType 688 | 10 689 | #BoardVersion 690 | Proto1 691 | #ChassisAssetTag 692 | LatitudeD420 693 | #ChassisManufacturer 694 | Apple Inc. 695 | #ChassisType 696 | 16 697 | #Family 698 | MacBook 699 | #FirmwareFeatures 700 | 0xC0001403 701 | #FirmwareFeaturesMask 702 | 0xFFFFFFFF 703 | #LocationInChassis 704 | MLB 705 | #Memory 706 | 707 | Channels 708 | 2 709 | Modules 710 | 711 | 712 | Frequency 713 | 1333 714 | Part 715 | C0001403 716 | Serial 717 | 00001001 718 | Size 719 | 4096 720 | Slot 721 | 0 722 | Type 723 | DDR3 724 | Vendor 725 | Kingston 726 | 727 | 728 | Frequency 729 | 1333 730 | Part 731 | C0001404 732 | Serial 733 | 00001002 734 | Size 735 | 4096 736 | Slot 737 | 2 738 | Type 739 | DDR3 740 | Vendor 741 | Kingston 742 | 743 | 744 | SlotCount 745 | 4 746 | 747 | #Mobile 748 | 749 | #PlatformFeature 750 | 0x03 751 | #ProductName 752 | MacBook1,1 753 | #SerialNumber 754 | 4H629LYAU9C 755 | #Slots 756 | 757 | 758 | Device 759 | ATI 760 | ID 761 | 1 762 | Name 763 | PCIe Slot 0 764 | Type 765 | 16 766 | 767 | 768 | Device 769 | WIFI 770 | ID 771 | 0 772 | Name 773 | Airport 774 | Type 775 | 1 776 | 777 | 778 | #SmUUID 779 | 00000000-0000-1000-8000-010203040506 780 | #Trust 781 | 782 | #Version 783 | 1.0 784 | Manufacturer 785 | Apple Inc. 786 | 787 | SystemParameters 788 | 789 | #BacklightLevel 790 | 0x0501 791 | #CustomUUID 792 | 511CE201-1000-4000-9999-010203040506 793 | #NvidiaWeb 794 | 795 | InjectKexts 796 | Detect 797 | InjectSystemID 798 | 799 | 800 | 801 | 802 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ACPI 6 | 7 | SSDT 8 | 9 | DropOem 10 | 11 | Generate 12 | 13 | CStates 14 | 15 | PStates 16 | 17 | 18 | 19 | DSDT 20 | 21 | Patches 22 | 23 | 24 | Find 25 | RUhDMQ== 26 | Replace 27 | RUgwMQ== 28 | Disabled 29 | 30 | Comment 31 | change EHC1 to EH01 32 | 33 | 34 | Find 35 | RUhDMg== 36 | Replace 37 | RUgwMg== 38 | Disabled 39 | 40 | Comment 41 | change EHC2 to EH02 42 | 43 | 44 | Find 45 | RVVTQg== 46 | Replace 47 | RUgwMQ== 48 | Disabled 49 | 50 | Comment 51 | change EUSB to EH01 52 | 53 | 54 | Find 55 | VVNCRQ== 56 | Replace 57 | RUgwMg== 58 | Disabled 59 | 60 | Comment 61 | change USBE to EH02 62 | 63 | 64 | Find 65 | SEVDSQ== 66 | Replace 67 | SU1FSQ== 68 | Disabled 69 | 70 | Comment 71 | change HECI to IMEI 72 | 73 | 74 | DropOEM_DSM 75 | 76 | Name 77 | DSDT.aml 78 | Debug 79 | 80 | ReuseFFFF 81 | 82 | 83 | HaltEnabler 84 | 85 | DropTables 86 | 87 | 88 | Signature 89 | MATS 90 | 91 | 92 | TableId 93 | CpuPm 94 | Signature 95 | SSDT 96 | 97 | 98 | TableId 99 | Cpu0Ist 100 | Signature 101 | SSDT 102 | 103 | 104 | 105 | Boot 106 | 107 | Legacy 108 | PBR 109 | Secure 110 | 111 | Log 112 | 113 | Arguments 114 | dart=0 npci=0x2000 kext-dev-mode=1 rootless=0 115 | XMPDetection 116 | 117 | Timeout 118 | -1 119 | DefaultVolume 120 | MAC 121 | 122 | GUI 123 | 124 | Mouse 125 | 126 | Speed 127 | 8 128 | Enabled 129 | 130 | 131 | Hide 132 | 133 | Windows 134 | \EFI\BOOT\BOOTX64.EFI 135 | 136 | Language 137 | en:0 138 | Scan 139 | 140 | Entries 141 | 142 | Tool 143 | 144 | Legacy 145 | 146 | 147 | ScreenResolution 148 | 1920x1080 149 | 150 | Devices 151 | 152 | USB 153 | 154 | FixOwnership 155 | 156 | AddClockID 157 | 158 | 159 | Audio 160 | 161 | AFGLowPowerState 162 | 163 | ResetHDA 164 | 165 | 166 | FakeID 167 | 168 | ATI 169 | 0x0 170 | NVidia 171 | 0x0 172 | IMEI 173 | 0x0 174 | LAN 175 | 0x0 176 | SATA 177 | 0x0 178 | IntelGFX 179 | 0x12345678 180 | XHCI 181 | 0x0 182 | WIFI 183 | 0x0 184 | 185 | 186 | DisableDrivers 187 | 188 | Nothing 189 | 190 | Graphics 191 | 192 | Inject 193 | 194 | ATI 195 | 196 | Intel 197 | 198 | NVidia 199 | 200 | 201 | 202 | KernelAndKextPatches 203 | 204 | AppleRTC 205 | 206 | KernelPm 207 | 208 | KernelLapic 209 | 210 | KextsToPatch 211 | 212 | 213 | Find 214 | RXh0ZXJuYWw= 215 | Name 216 | AppleAHCIPort 217 | Replace 218 | SW50ZXJuYWw= 219 | Disabled 220 | 221 | Comment 222 | External icons patch 223 | InfoPlistPatch 224 | 225 | 226 | 227 | Find 228 | g32MEA== 229 | Name 230 | AppleUSBXHCIPCI 231 | Replace 232 | g32MGw== 233 | Disabled 234 | 235 | Comment 236 | Change 15 port limit to 24 in XHCI kext 10.13 237 | InfoPlistPatch 238 | 239 | 240 | 241 | Find 242 | g/sPD4MDBQAA 243 | Name 244 | com.apple.driver.usb.AppleUSBXHCI 245 | Replace 246 | g/sPkJCQkJCQ 247 | Disabled 248 | 249 | Comment 250 | USB 10.13.4+ by PMHeart 251 | InfoPlistPatch 252 | 253 | 254 | 255 | KernelXCPM 256 | 257 | #FakeCPUID 258 | 0x010676 259 | AppleIntelCPUPM 260 | 261 | KernelCpu 262 | 263 | 264 | RtVariables 265 | 266 | BooterConfig 267 | 0x28 268 | CsrActiveConfig 269 | 0x3 270 | 271 | SMBIOS 272 | 273 | FirmwareFeatures 274 | 0xE00FE137 275 | Board-ID 276 | 277 | FirmwareFeaturesMask 278 | 0xFF1FFF3F 279 | BoardVersion 280 | 1.0 281 | Manufacturer 282 | Apple Inc. 283 | ChassisType 284 | 0x0D 285 | BiosVersion 286 | IM142.88Z.0130.B00.1804091831 287 | BoardManufacturer 288 | Apple Inc. 289 | ChassisAssetTag 290 | iMac-Aluminum 291 | PlatformFeature 292 | 0x01 293 | Family 294 | iMac 295 | ChassisManufacturer 296 | Apple Inc. 297 | BoardSerialNumber 298 | 299 | BiosVendor 300 | Apple Inc. 301 | ProductName 302 | iMac14,2 303 | SmUUID 304 | 305 | Mobile 306 | 307 | BoardType 308 | 10 309 | SerialNumber 310 | 311 | LocationInChassis 312 | Part Component 313 | BiosReleaseDate 314 | 04/09/2018 315 | Version 316 | 1.0 317 | 318 | SystemParameters 319 | 320 | InjectKexts 321 | Detect 322 | InjectSystemID 323 | 324 | 325 | 326 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/doc/HowToFixDsdt.txt: -------------------------------------------------------------------------------- 1 | 2 | ========================================================================================================================== 3 | 4 | How to Fix DSDT using Clover (since rev. 479) 5 | ---------------------------------------------------------------- 6 | 7 | 8 | New setting in /EFI/config.plist: 9 | 10 | ACPI: 11 | FixDsdtMask 12 | 0xFFFF 13 | 14 | Suggest to remove /EFI/ACPI/patched/dsdt.aml if get kernel panic. 15 | All mask values are as below. Some patches need Method DTGP (0x0001) to work fine. 16 | 17 | Definition of 0x00FF: 18 | 0000 0000 0000 0001 = 0x0001 = FIX_DTGP 19 | 0000 0000 0000 0010 = 0x0002 = FIX_WARNING 20 | 0000 0000 0000 0100 = 0x0004 = FIX_SHUTDOWN 21 | 0000 0000 0000 1000 = 0x0008 = FIX_MCHC 22 | 0000 0000 0001 0000 = 0x0010 = FIX_HPET 23 | 0000 0000 0010 0000 = 0x0020 = FIX_LPC 24 | 0000 0000 0100 0000 = 0x0040 = FIX_IPIC 25 | 0000 0000 1000 0000 = 0x0080 = FIX_SBUS 26 | 27 | Definition of 0xFF00: 28 | 0000 0001 0000 0000 = 0x0100 = FIX_DISPLAY 29 | 0000 0010 0000 0000 = 0x0200 = FIX_IDE 30 | 0000 0100 0000 0000 = 0x0400 = FIX_SATA 31 | 0000 1000 0000 0000 = 0x0800 = FIX_FIREWIRE 32 | 0001 0000 0000 0000 = 0x1000 = FIX_USB 33 | 0010 0000 0000 0000 = 0x2000 = FIX_LAN 34 | 0100 0000 0000 0000 = 0x4000 = FIX_WIFI 35 | 1000 0000 0000 0000 = 0x8000 = FIX_HDA 36 | 37 | 38 | How to use dsdt fix: 39 | -------------------- 40 | 41 | 0000 0000 1111 1111 = 0x00FF = Fix all of bit(0) ~ bit(7). 42 | 1111 1111 0000 0000 = 0xFF00 = Fix all of bit(8) ~ bit(15). Need to be 0xFF01 with method DTGP first. 43 | 44 | You can fix dsdt for single function. Need method DTGP to work without dsdt.aml. 45 | 46 | 0000 0000 0000 1001 = 0x0009 = DTGP + MCHC 47 | 0000 0000 0010 0001 = 0x0021 = DTGP + LPC 48 | 0000 0000 1000 0001 = 0x0081 = DTGP + SBUS 49 | 0000 0001 0000 0001 = 0x0101 = DTGP + DISPLAY 50 | 0000 0010 0000 0001 = 0x0201 = DTGP + IDE 51 | 0000 0100 0000 0001 = 0x0401 = DTGP + SATA 52 | 0000 1000 0000 0001 = 0x0801 = DTGP + FIREWIRE 53 | 0001 0000 0000 0001 = 0x1001 = DTGP + USB 54 | 0010 0000 0000 0001 = 0x2001 = DTGP + LAN 55 | 0100 0000 0000 0001 = 0x4001 = DTGP + WIFI 56 | 1000 0000 0000 0001 = 0x8001 = DTGP + HDA 57 | 58 | Or fix dsdt for multi functions. Need method DTGP to work without dsdt.aml. 59 | 60 | 0000 0101 0000 0001 = 0x0501 = DTGP + DISPLAY + SATA 61 | 0011 0001 0000 0001 = 0x3101 = DTGP + DISPLAY + USB + LAN 62 | 1011 0101 0000 0001 = 0xB501 = DTGP + DISPLAY + SATA + USB + LAN + HDA 63 | 64 | ========================================================================================================================== 65 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/doc/HowToInstallOSX.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | ========================================================================================================================== 4 | 5 | How to install InstallESD.dmg to GPT with 10.7.x and 10.8.x. (since rev. 480) 6 | ---------------------------------------------------------------- 7 | 8 | 9 | First, you need to Restore InstallESD.dmg to disk by using Disk Utility. 10 | 11 | Then, follow the stage 1 and stage 2 to install 10.7.x or 10.8.x to GPT, and auto-create the Recovery HD used for iCloud. 12 | 13 | 14 | Stage 1 15 | --------- 16 | 17 | 1.Remove kernelcache in InstallESD.dmg/Library/Preferences/SystemConfiguration/com.apple.Boot.plist. 18 | Kernel Cache remove this line. 19 | xxxxxxxxxxxxx remove this line. 20 | 21 | 2.Copy BaseSystem.dmg/System/Library/Extensions to partition of InstallESD.dmg and add other kexts (FakeSMC.kext). 22 | 23 | 3.Clover select to "Boot Mac OS X with extra kexts (skips cache)", and follow the installation with restart first time. 24 | 25 | 26 | Stage 2 27 | --------- 28 | 29 | 1.Remove kernelcache in target partition's /OS X Install Data/com.apple.Boot.plist. 30 | Kernel Cache remove this line. 31 | xxxxxxxxxxxxx remove this line. 32 | ( 10.7.x is /Mac OS X Install Data/com.apple.Boot.plist ) 33 | 34 | 2.Copy InstallESD.dmg/System/Library/CoreServices and /mach_kernel to target partition's / . 35 | 36 | 3.Copy BaseSystem.dmg/System/Library/Extensions to target partition's / and add other kexts (FakeSMC.kext). 37 | 38 | 4.Boot to "OS X Install" with "Boot Mac OS X with extra kexts (skips cache)" and finish the installation. 39 | (10.7.x is "Mac OS X Install") 40 | 41 | ========================================================================================================================== 42 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/doc/UEFI boot with Clover.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf360 2 | {\fonttbl\f0\froman\fcharset0 Times-Roman;\f1\fmodern\fcharset0 CourierNewPSMT;\f2\fmodern\fcharset0 Courier; 3 | \f3\fnil\fcharset0 LucidaGrande;} 4 | {\colortbl;\red255\green255\blue255;\red26\green26\blue26;\red253\green209\blue195;\red48\green75\blue109; 5 | \red248\green252\blue253;\red255\green255\blue255;} 6 | \paperw11900\paperh16840\margl1440\margr1440\vieww15340\viewh12400\viewkind0 7 | \deftab720 8 | \pard\pardeftab720\sl320\ql\qnatural 9 | 10 | \f0\b\fs32 \cf0 UEFI boot with Clover 11 | \b0\fs26 \ 12 | \pard\pardeftab720\sl380\ql\qnatural 13 | \cf0 by Dmazar\ 14 | \ 15 | As a general procedure, it would be good to get standard Clover working first (BIOS MBR -> boot0->boot1->boot->CloverX64.efi) and then try direct UEFI (UEFI -> CloverX64.efi). I think this is a good path, since if you manage to get standard Clover working, then you know that things are set up properly (Clover config, SMBIOS, DSDT) and any issues that may arise in UEFI boot and UEFI specific. I'll try to summarize here what I know so far.\ 16 | \ 17 | For UEFI boot, I would recommend to first try it from FAT32 formatted USB stick.\ 18 | \ 19 | \pard\pardeftab720\sl380\ql\qnatural 20 | 21 | \b \cf0 1. FAT32 USB stick: 22 | \b0 \ 23 | I have mine formatted in Windows. Ordinary MBR with FAT32 partition. Now, if I understood correctly from Applelife.ru, Troj80 says {\field{\*\fldinst{HYPERLINK "http://translate.googleusercontent.com/translate_c?hl=hr&rurl=translate.google.com&sl=ru&tl=en&u=http://applelife.ru/threads/clover.32052/page-277&usg=ALkJrhiPS1lblaqIqyMzBlyocfjOebKkrA#post-289584"}}{\fldrslt \cf2 \ul \ulc2 here}} that EFI partition (which is also usually FAT32) has to be formatted with the cluster size with the value between 1K and 8K in order to be usable from UEFI. Maybe the same thing should be done with the USB stick? I did not try formatting it in OSX - will have to try. Something like:\ 24 | \pard\pardeftab720\sl380\ql\qnatural 25 | 26 | \f1 \cf0 > newfs_msdos -F32 -b 1024 -v USBStick /dev/diskHsH 27 | \f0 \ 28 | where /dev/diskHsH is partition on the stick.\ 29 | \ 30 | My USB stick formatted in Windows looks like this:\ 31 | \pard\pardeftab720\sl380\ql\qnatural 32 | 33 | \b \cf0 \cb3 CODE\ 34 | \pard\pardeftab720\sl380\ql\qnatural 35 | 36 | \f2\b0 \cf4 \cb5 > diskutil list\ 37 | /dev/disk4\ 38 | \'a0\'a0 #:\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0 TYPE NAME\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0SIZE\'a0\'a0\'a0\'a0\'a0\'a0 IDENTIFIER\ 39 | \'a0\'a0 0:\'a0\'a0\'a0\'a0 FDisk_partition_scheme\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0*4.0 GB\'a0\'a0\'a0\'a0 disk4\ 40 | \'a0\'a0 1:\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0 DOS_FAT_32 DUET\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a04.0 GB\'a0\'a0\'a0\'a0 disk4s1\ 41 | > newfs_msdos -N disk4s1\ 42 | 512 bytes per physical sector\ 43 | /dev/rdisk4s1: 7816248 sectors in 977031 FAT32 clusters (4096 bytes/cluster)\ 44 | bps=512 spc=8 res=32 nft=2 mid=0xf8 spt=32 hds=255 hid=2 drv=0x80 bsec=7831550 bspf=7634 rdcl=2 infs=1 bkbs=6\ 45 | \pard\pardeftab720\sl380\ql\qnatural 46 | 47 | \f0 \cf0 \cb1 \ 48 | \pard\pardeftab720\sl380\ql\qnatural 49 | 50 | \b \cf0 2. Standard Clover install 51 | \b0 \ 52 | This is BIOS MBR -> boot0 -> boot1xxx -> boot ->CloverX64.efi boot.\ 53 | You may skip this step and go directly to UEFI boot, but in case of any issues please go back and do this prior to asking help for UEFI boot. This is to eliminate problems with Clover installation and set up. I can try to help with UEFI boot, but It's easier and more likely to get help on standard Clover setup - ask for help in {\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2304"}}{\fldrslt \cf2 \ul \ulc2 Clover thread}}.\ 54 | \ 55 | Take the Clover installer from {\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2304"}}{\fldrslt \cf2 \ul \ulc2 here}} and set it up on FAT32 USB stick. Then edit /EFI/config.plist to suit your needs, put DSDT (and SSDTs) in /EFI/ACPI/patched folder and leave /EFI/Drivers64 empty. Do classic boot from that USB stick. When this works, move to UEFi boot.\ 56 | \ 57 | 58 | \b 3. UEFI boot 59 | \b0 \ 60 | That USB stick should have standard Clover installation. The same stick with the same Clover files from step 2. can be used here, except some additional drivers and (U)EFI shell are needed :\ 61 | \pard\pardeftab720\sl380\ql\qnatural 62 | 63 | \b \cf0 \cb3 CODE\ 64 | \pard\pardeftab720\sl380\ql\qnatural 65 | 66 | \f2\b0 \cf4 \cb5 /EFI\ 67 | \'a0\'a0config.pist (or in OEM folder)\ 68 | \'a0\'a0/ACPI (or in OEM folder)\ 69 | \'a0\'a0\'a0\'a0...\ 70 | \'a0\'a0/BOOT\ 71 | \'a0\'a0\'a0\'a0BootX64.efi\ 72 | \'a0\'a0\'a0\'a0CloverX64.efi\ 73 | \'a0\'a0/DRIVERS64\ 74 | \'a0\'a0\'a0\'a0HFSPlusX64.efi (or VBoxHfs.efi)\ 75 | \'a0\'a0\'a0\'a0OsxFatBinaryDrv.efi\ 76 | \'a0\'a0\'a0\'a0OsxAptioFixDrv.efi - this one only for Aptio boards\ 77 | ...\ 78 | \pard\pardeftab720\sl380\ql\qnatural 79 | 80 | \f0 \cf0 \cb1 \ 81 | /EFI/BOOT/BootX64.efi can be:\ 82 | - copied CloverX64.efi, but if it hangs ({\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2428&st=220"}}{\fldrslt \cf2 \ul \ulc2 see here}}), then it should be shell\ 83 | - in case of UEFI v2.3 this can be UEFI Shell (also known as edk2 shell, shell2): {\field{\*\fldinst{HYPERLINK "https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2/ShellBinPkg/UefiShell/X64/"}}{\fldrslt \cf2 \ul \ulc2 here}}\ 84 | - in case of older UEFIs, this should be older EFI shell (also known as edk1 shell or it's port to GCC called GccShell): {\field{\*\fldinst{HYPERLINK "http://sourceforge.net/projects/efi-shell/files/"}}{\fldrslt \cf2 \ul \ulc2 here}}\ 85 | \ 86 | Drivers64:\ 87 | - HFSPlusX64.efi (or VBoxHfs.efi) for HFS+ support\ 88 | - OsxFatBinaryDrv.efi for multi architecture (FatBin) binaries like boot.efi\ 89 | - OsxAptioFixDrv.efi (this one only for Aptio boards)\ 90 | \ 91 | Modify Clover's /EFI/config.plist:\ 92 | - to be able to boot Mountain Lion add slide=0 to boot-args. this option will be ignored by other version of OSX, but will (oh, may) enable ML booting. for example:\ 93 | \pard\pardeftab720\sl380\ql\qnatural 94 | 95 | \f1 \cf0 boot-args\ 96 | -v arch=x86_64 slide=0\ 97 | \pard\pardeftab720\sl380\ql\qnatural 98 | 99 | \f0 \cf0 \ 100 | Booting from that USB stick on my board goes like this:\ 101 | - power on\ 102 | - pressing F8 during POST screen shows boot options (like drive selection)\ 103 | - if USB stick is FAT32 and contains /efi/boot/bootx64.efi, then option "UEFI: The name of the stick" will appear as a boot option\ 104 | - selecting that option starts /efi/boot/bootx64.efi - which is shell or Clover\ 105 | \ 106 | On Aptio boards you can also put shell to the root folder as ShellX64.efi, and then can start it from UEFI Setup screen/Exit/Start shell (or something similar).\ 107 | \ 108 | If bootx64.efi is a shell, then shell will start and prompt will appear. Use the commands in 4. below to start Clover. Unless you know what you are doing and why, there is no need to load any drivers before starting Clover - Clover will load drivers from /efi/drivers64 folder when it starts.\ 109 | \ 110 | \pard\pardeftab720\sl380\ql\qnatural 111 | 112 | \b \cf0 4. (U)EFI Shell 113 | \b0 \ 114 | EFI shell (old shell) user guide and command manual: {\field{\*\fldinst{HYPERLINK "http://sourceforge.net/projects/efi-shell/files/documents/"}}{\fldrslt \cf2 \ul \ulc2 here}}\ 115 | \pard\pardeftab720\sl380\ql\qnatural 116 | 117 | \f1 \cf0 > help -b 118 | \f0 \ 119 | list shell commands\ 120 | 121 | \f1 > help -b\ 122 | > help -b -v 123 | \f0 \ 124 | prints command help. in the shell2 use later version.\ 125 | 126 | \f1 > ver 127 | \f0 \ 128 | will print UEFI version\ 129 | 130 | \f1 > map fs* 131 | \f0 \ 132 | will list current shell file system/volume/partition mappings\ 133 | 134 | \f1 > fs0:\ 135 | > fs1:\ 136 | > fsXX: 137 | \f0 \ 138 | changes the current volume\ 139 | 140 | \f1 > ls 141 | \f0 \ 142 | lists files in the current directory\ 143 | 144 | \f1 > cd \\efi\\boot 145 | \f0 \ 146 | changes the current directory\ 147 | 148 | \f1 > cloverx64.efi 149 | \f0 \ 150 | starts clover\ 151 | \ 152 | So, find and start Clover and try to boot OSX. When you get that working, then you can install Clover to a hard disk.\ 153 | \ 154 | \pard\pardeftab720\sl380\ql\qnatural 155 | 156 | \b \cf0 5. Install to HDD EFI partition 157 | \b0 \ 158 | By default, UEFI can only access FAT partitions, for example EFI partition(s), so the only option is to install it to EFI partition.\ 159 | \ 160 | My EFI partition created by SnowLeo installation is FAT16. Clover works from there, but sometimes I have problems with certain files - they get short XXXX~1.yyy names. I need to try to reformat it to FAT32 as Troj80 suggested and see if this helps.\ 161 | \ 162 | Installation requires copying /EFI folder from USB stick to EFI partition and adding CloverX64.efi as a boot option.\ 163 | \ 164 | \pard\pardeftab720\sl380\ql\qnatural 165 | \cf0 \ul \ulc0 5.1.1 copying from the shell\ulnone \ 166 | Use:\ 167 | \pard\pardeftab720\sl380\ql\qnatural 168 | 169 | \f1 \cf0 > map fs*\ 170 | > fs0:\ 171 | > ls\ 172 | > fs1:\ 173 | ...\ 174 | \pard\pardeftab720\sl380\ql\qnatural 175 | 176 | \f0 \cf0 to identify USB volume (for example fs1) and EFI volume (for example fs0). Use:\ 177 | \pard\pardeftab720\sl380\ql\qnatural 178 | 179 | \f1 \cf0 > fs0:\ 180 | > cd \\EFI\ 181 | > cp -r fs1:\\EFI\\* .\ 182 | > ls\ 183 | \pard\pardeftab720\sl380\ql\qnatural 184 | 185 | \f0 \cf0 \ 186 | \pard\pardeftab720\sl380\ql\qnatural 187 | \cf0 \ul \ulc0 5.1.2 copying from OSX\ulnone \ 188 | - open terminal\ 189 | - mount EFI partition\ 190 | \pard\pardeftab720\sl380\ql\qnatural 191 | 192 | \f1 \cf0 > diskuti list 193 | \f0 \ 194 | to identify EFI partition, and\ 195 | 196 | \f1 > mkdir /Volumes/efi\ 197 | > sudo mount -t msdos /dev/diskXs1 /Volumes/efi 198 | \f0 \ 199 | to mount it (where /dev/diskXs1 is EFI partition device).\ 200 | - it should appear in Finder as EFI volume\ 201 | - then use Finder to copy whole /EFI folder to EFI volume\ 202 | - check it from terminal:\ 203 | 204 | \f1 > ls /Volumes/efi/EFI/* 205 | \f0 \ 206 | this should list ACPI, BOOT and other Clover folders.\ 207 | \ 208 | \pard\pardeftab720\sl380\ql\qnatural 209 | \cf0 \ul \ulc0 5.2 Add Clover as a boot option\ulnone \ 210 | On Aptio, it's not enough to rename Cloverx64.efi on HDD to BootX64.efi to enable it to start ({\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2428&st=100&p=18177&#entry18177"}}{\fldrslt \cf2 \ul \ulc2 see here}}). But it seems that's what you need to do on Gigabyte Hybrid EFI. Standard procedure for adding an OS boot option in UEFI is to add boot option variable to NVRAM - that's what is needed on Aptio.\ 211 | \ 212 | Boot options can be managed with 213 | \f1 bcfg 214 | \f0 command in a shell. But, this command is available only in UEFI shell (shell2) and since shell2 requires UEFI 2.3 or newer, users with older UEFI have a problem. If you are the "lucky" one with older UEFI where shell2 does not work, try with my modified shell2 from {\field{\*\fldinst{HYPERLINK "http://dl.dropbox.com/u/17629062/Shell2.zip"}}{\fldrslt \cf2 \ul \ulc2 here}}. This is not fully working port, but bcfg works and I'm using it only for boot options manipulation with bcfg.\ 215 | \ 216 | Users of UEFI 2.3 or newer can put shell2 to FAT32 USB stick as /efi/boot/bootx64.efi and just use this one. Since I need old shell for normal use and moded shell2 for bcfg, I have old shell set as /efi/boot/bootx64.efi and moded shell2 as /shellx64.efi (in the root of USB) - in this way I can press F8 during POST and choose "UEFI: stick name" to load older shell or press Del to enter UEFI Setup screens and then select Exit/Start shell to load moded shell2. Actually, I have both shells copied to HDD EFI partition and added as separate boot options, but that can be done later.\ 217 | \ 218 | Boot into shell2 (real one or moded) and find Cloverx64.efi on HDD EFI partition with some combination of the following commands:\ 219 | \pard\pardeftab720\sl380\ql\qnatural 220 | 221 | \f1 \cf0 > map fs*\ 222 | > fs0: (or fs1: or fs2: ...)\ 223 | > ls\ 224 | > cd \\efi\\boot\ 225 | > ls\ 226 | \pard\pardeftab720\sl380\ql\qnatural 227 | 228 | \f0 \cf0 \ 229 | And then:\ 230 | \pard\pardeftab720\sl380\ql\qnatural 231 | 232 | \f1 \cf0 > help bcfg -b -v 233 | \f0 \ 234 | and try to understand help from the screen\ 235 | 236 | \f1 > bcfg boot dump 237 | \f0 \ 238 | to list current boot options\ 239 | 240 | \f1 > bcfg boot add N cloverx64.efi "OSX through Clover" 241 | \f0 \ 242 | to add cloverx64.efi from the current dir as a boot option labeled "OSX through Clover". N should be boot option number: 0 if you wan it to be the first, 1 to be the second ...\ 243 | 244 | \f1 > bcfg boot dump 245 | \f0 \ 246 | to check if it is added\ 247 | 248 | \f1 > reset 249 | \f0 \ 250 | to reset the system and to try to load Clover from HDD\ 251 | \ 252 | When it is added, reset the system and press F8 during POST (or whatever key is needed to get selection of boot options) and "OSX through Clover" should be there. Select it and try if it works.\ 253 | \ 254 | \pard\pardeftab720\sl380\ql\qnatural 255 | 256 | \b \cf0 6. Troubleshooting 257 | \b0 \ 258 | - If you can not boot through UEFI and did not try to set it up as standard Clover boot, please try standard BIOS MBR Clover setup first. Maybe the issue is in the Clover setup and not UEFI boot.\ 259 | - When asking for help, please copy UEFIDump.nsh script to your FAT32 USB, boot into shell, choose FAT32 volume with fs0: or fs1: or ... , execute UEFIDump.nsh > dump.txt and post it here.\ 260 | \ 261 | - If you can boot into OSX but have some issues, search for latest version of DarwinDumper {\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2447"}}{\fldrslt \cf2 \ul \ulc2 here}} (usually the last post) and post it's logs here if it will be needed.\ 262 | \pard\pardeftab720\sl280\qr 263 | 264 | \f3\fs22 \cf2 \cb6 \ 265 | } -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/doc/bcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/doc/bcfg.txt -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/doc/boot1f32-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # boot1f32-install.sh 4 | # 5 | # Created by mackerintel on 2/2/09. 6 | # Copyright 2009 mackerintel. All rights reserved. 7 | 8 | if [[ x$1 == x ]]; then 9 | echo Usage: $0 disknumber; 10 | exit 0; 11 | fi 12 | 13 | if [[ `dd if=/dev/disk${1}s1 count=8 bs=1 skip=82 | uuencode -m -|head -n 2|tail -n 1` != "RkFUMzIgICA=" ]]; then 14 | echo "/dev/disk${1}s1" "isn't" a FAT32 partition; 15 | exit 1; 16 | fi 17 | 18 | if [ ! -f boot1f32 ]; then 19 | echo "boot1f32 not found"; 20 | exit 1; 21 | fi 22 | 23 | dd if=/dev/disk${1}s1 count=1 bs=512 of=/tmp/origbs 24 | cp boot1f32 /tmp/newbs 25 | dd if=/tmp/origbs of=/tmp/newbs skip=3 seek=3 bs=1 count=87 conv=notrunc 26 | dd of=/dev/disk${1}s1 count=1 bs=512 if=/tmp/newbs 27 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AppleImageCodec-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AppleImageCodec-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AppleKeyAggregator-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AppleKeyAggregator-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AppleUITheme-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AppleUITheme-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AptioMemoryFix-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/AptioMemoryFix-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/DataHubDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/DataHubDxe-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/FSInject-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/FSInject-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/FirmwareVolume-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/FirmwareVolume-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/PartitionDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/PartitionDxe-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/SMCHelper-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/SMCHelper-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/VBoxHfs-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/drivers/UEFI/VBoxHfs-64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AHCI_Intel_Generic_SATA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.tonymacx86.AHCI_Intel_Generic_SATA 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AHCI Intel Generic SATA 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 0.2 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.5 21 | IOKitPersonalities 22 | 23 | AppleAHCIDiskDriver 24 | 25 | CFBundleIdentifier 26 | com.apple.iokit.IOAHCIBlockStorage 27 | IOClass 28 | AppleAHCIDiskDriver 29 | IOProbeScore 30 | 1000 31 | IOProviderClass 32 | IOAHCIDevice 33 | Protocol Characteristics 34 | 35 | Physical Interconnect 36 | SATA 37 | Physical Interconnect Location 38 | Internal 39 | 40 | 41 | Intel 9 Series Chipset 42 | 43 | CFBundleIdentifier 44 | com.apple.driver.AppleAHCIPort 45 | Chipset Name 46 | 9 Series Chipset 47 | IOClass 48 | AppleAHCI 49 | IOPCIClassMatch 50 | 0x01060100&0xffffff00 51 | IOPCIPrimaryMatch 52 | 0x8c828086 0x8c838086 0x9c838086 53 | IOProbeScore 54 | 11000 55 | IOProviderClass 56 | IOPCIDevice 57 | Vendor Name 58 | Intel 59 | 60 | Intel x79 Series Chipset 61 | 62 | CFBundleIdentifier 63 | com.apple.driver.AppleAHCIPort 64 | Chipset Name 65 | C600/X79 Series Chipset 66 | IOClass 67 | AppleAHCI 68 | IOPCIClassMatch 69 | 0x01060100&0xffffff00 70 | IOPCIPrimaryMatch 71 | 0x1d028086 72 | IOProbeScore 73 | 11000 74 | IOProviderClass 75 | IOPCIDevice 76 | Vendor Name 77 | Intel 78 | 79 | Intel x99 Series Chipset 80 | 81 | CFBundleIdentifier 82 | com.apple.driver.AppleAHCIPort 83 | Chipset Name 84 | C610/X99 Series Chipset 85 | IOClass 86 | AppleAHCI 87 | IOPCIClassMatch 88 | 0x01060100&0xffffff00 89 | IOPCIPrimaryMatch 90 | 0x8d028086 0x8d628086 91 | IOProbeScore 92 | 11000 93 | IOProviderClass 94 | IOPCIDevice 95 | Vendor Name 96 | Intel 97 | 98 | 99 | NSHumanReadableCopyright 100 | MacMan @ tonymacx86.com 101 | OSBundleRequired 102 | Local-Root 103 | 104 | 105 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 10K549 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | AppleIntelE1000e 11 | CFBundleIdentifier 12 | com.insanelymac.driver.AppleIntelE1000e 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AppleIntelE1000e 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 3.3.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 3.3.3 25 | DTCompiler 26 | 27 | DTPlatformBuild 28 | 10M2518 29 | DTPlatformVersion 30 | PG 31 | DTSDKBuild 32 | 10M2518 33 | DTSDKName 34 | macosx10.6 35 | DTXcode 36 | 0400 37 | DTXcodeBuild 38 | 10M2518 39 | IOKitPersonalities 40 | 41 | e1000e 42 | 43 | CFBundleIdentifier 44 | com.insanelymac.driver.AppleIntelE1000e 45 | E1000_CTRL_TFCE 46 | 47 | E1000_DEFAULT_RXD 48 | 256 49 | E1000_DEFAULT_TXD 50 | 256 51 | IOClass 52 | AppleIntelE1000e 53 | IOPCIMatch 54 | 0x153b8086 0x15598086 0x155a8086 0x15a08086 0x15a18086 0x15a28086 0x15a38086 0x10968086 0x10988086 0x10ba8086 0x10bb8086 0x10cc8086 0x10cd8086 0x10ce8086 0x10de8086 0x10df8086 0x15258086 0x15018086 0x10498086 0x104a8086 0x104b8086 0x104c8086 0x104d8086 0x10c48086 0x10c58086 0x10bd8086 0x10bf8086 0x10c08086 0x10c28086 0x10c38086 0x10cb8086 0x10e58086 0x10f58086 0x294c8086 0x105e8086 0x105f8086 0x10608086 0x10a48086 0x10a58086 0x10bc8086 0x10d58086 0x10d98086 0x10da8086 0x107d8086 0x107e8086 0x107f8086 0x10b98086 0x108b8086 0x108c8086 0x109a8086 0x10d38086 0x10ea8086 0x10eb8086 0x10ef8086 0x10f08086 0x15028086 0x15038086 0x150c8086 0x156f8086 0x15708086 0x15b78086 0x15b88086 0x15b98086 0x15D78086 0x15D88086 0x15E38086 0x15D68086 55 | IOProviderClass 56 | IOPCIDevice 57 | NETIF_F_TSO 58 | 59 | 60 | 61 | OSBundleLibraries 62 | 63 | com.apple.iokit.IONetworkingFamily 64 | 1.5.0 65 | com.apple.iokit.IOPCIFamily 66 | 1.7 67 | com.apple.kpi.bsd 68 | 8.10.0 69 | com.apple.kpi.iokit 70 | 8.10.0 71 | com.apple.kpi.libkern 72 | 8.10.0 73 | com.apple.kpi.mach 74 | 8.10.0 75 | 76 | OSBundleRequired 77 | Network-Root 78 | 79 | 80 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/MacOS/AppleIntelE1000e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/MacOS/AppleIntelE1000e -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/Resources/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/Resources/InfoPlist.strings -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AppleUSBXHCIPCI.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Version 0.9.2, Copyright 2018, RehabMan (GPLv2) 7 | CFBundleIdentifier 8 | org.rehabman.injector.XHCI.unsupported 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | XHCI-unsupported 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 0.9.2 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.9.2 21 | IOKitPersonalities 22 | 23 | AppleUSBXHCILPTH 9-series 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.usb.AppleUSBXHCIPCI 27 | IOClass 28 | AppleUSBXHCILPTH 29 | IOPCIPauseCompatible 30 | 31 | IOPCIPrimaryMatch 32 | 0x8cb18086 33 | IOPCITunnelCompatible 34 | 35 | IOProbeScore 36 | 900 37 | IOProviderClass 38 | IOPCIDevice 39 | 40 | AppleUSBXHCILPTH X99 41 | 42 | CFBundleIdentifier 43 | com.apple.driver.usb.AppleUSBXHCIPCI 44 | alternate:IOClass 45 | AppleUSBXHCILPTHB 46 | IOClass 47 | AppleUSBXHCILPTH 48 | IOPCIPauseCompatible 49 | 50 | IOPCIPrimaryMatch 51 | 0x8d318086 52 | IOPCITunnelCompatible 53 | 54 | IOProbeScore 55 | 900 56 | IOProviderClass 57 | IOPCIDevice 58 | 59 | AppleUSBXHCISPT 200-X299 60 | 61 | CFBundleIdentifier 62 | com.apple.driver.usb.AppleUSBXHCIPCI 63 | IOClass 64 | AppleUSBXHCISPT 65 | IOPCIPauseCompatible 66 | 67 | IOPCIPrimaryMatch 68 | 0xa2af8086 69 | IOPCITunnelCompatible 70 | 71 | IOProbeScore 72 | 900 73 | IOProviderClass 74 | IOPCIDevice 75 | 76 | AppleUSBXHCISPT 300 77 | 78 | CFBundleIdentifier 79 | com.apple.driver.usb.AppleUSBXHCIPCI 80 | IOClass 81 | AppleUSBXHCISPT 82 | IOPCIPauseCompatible 83 | 84 | IOPCIPrimaryMatch 85 | 0x9ded8086 0xa36d8086 86 | IOPCITunnelCompatible 87 | 88 | IOProbeScore 89 | 900 90 | IOProviderClass 91 | IOPCIDevice 92 | 93 | 94 | OSBundleRequired 95 | Root 96 | 97 | 98 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AtherosE2200Ethernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 14E46 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | AtherosE2200Ethernet 11 | CFBundleIdentifier 12 | com.insanelymac.AtherosE2200Ethernet 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AtherosE2200Ethernet 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.0.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 2.0.1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 5B1008 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 12F37 33 | DTSDKName 34 | macosx10.8 35 | DTXcode 36 | 0511 37 | DTXcodeBuild 38 | 5B1008 39 | IOKitPersonalities 40 | 41 | AtherosE2200 42 | 43 | CFBundleIdentifier 44 | com.insanelymac.AtherosE2200Ethernet 45 | Driver_Version 46 | 2.0.1 47 | IOClass 48 | AtherosE2200 49 | IOPCIMatch 50 | 0x10901969 0x10911969 0x10A01969 0x10A11969 0xE0911969 51 | IOProbeScore 52 | 1000 53 | IOProviderClass 54 | IOPCIDevice 55 | enableCSO6 56 | 57 | enableTSO4 58 | 59 | enableTSO6 60 | 61 | maxIntrRate 62 | 5000 63 | 64 | 65 | NSHumanReadableCopyright 66 | Copyright © 2014 Laura Müller. All rights reserved. 67 | OSBundleLibraries 68 | 69 | com.apple.iokit.IONetworkingFamily 70 | 1.5.0 71 | com.apple.iokit.IOPCIFamily 72 | 1.7 73 | com.apple.kpi.bsd 74 | 8.10.0 75 | com.apple.kpi.iokit 76 | 8.10.0 77 | com.apple.kpi.libkern 78 | 8.10.0 79 | com.apple.kpi.mach 80 | 8.10.0 81 | 82 | OSBundleRequired 83 | Network-Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AtherosE2200Ethernet.kext/Contents/MacOS/AtherosE2200Ethernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AtherosE2200Ethernet.kext/Contents/MacOS/AtherosE2200Ethernet -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AtherosE2200Ethernet.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/AtherosE2200Ethernet.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17B35a 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | FakeSMC 11 | CFBundleIdentifier 12 | org.netkas.driver.FakeSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FakeSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 6.26-322-g1b20eab7.1765 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1765 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | FakeSMC 46 | 47 | CFBundleIdentifier 48 | org.netkas.driver.FakeSMC 49 | Configuration 50 | 51 | Clover 52 | 53 | BEMB 54 | 55 | BEMB 56 | flag 57 | 58 | EPCI 59 | 60 | EPCI 61 | ui32 62 | 63 | RBr 64 | 65 | RBr 66 | ch8* 67 | 68 | REV 69 | 70 | REV 71 | {rev 72 | 73 | RPlt 74 | 75 | RPlt 76 | ch8* 77 | 78 | 79 | ExceptionKeys 80 | 81 | CLKH 82 | 1 83 | CLKT 84 | 1 85 | MSDW 86 | 1 87 | NATJ 88 | 1 89 | NATi 90 | 1 91 | NTOK 92 | 1 93 | WKTP 94 | 0 95 | 96 | Keys 97 | 98 | $Adr 99 | 100 | ui32 101 | 102 | AAADAA== 103 | 104 | 105 | $Num 106 | 107 | ui8 108 | 109 | AQ== 110 | 111 | 112 | ACID 113 | 114 | ch8* 115 | 116 | hfwETdgSevQ= 117 | 118 | 119 | ALI0 120 | 121 | {ali 122 | 123 | BwECAA== 124 | 125 | 126 | ALRV 127 | 128 | ui16 129 | 130 | AAE= 131 | 132 | 133 | ALV0 134 | 135 | {alv 136 | 137 | ARAGdQEgALYO4A== 138 | 139 | 140 | FNum 141 | 142 | ui8 143 | 144 | AA== 145 | 146 | 147 | LsNM 148 | 149 | ui8 150 | 151 | AQ== 152 | 153 | 154 | LsbV 155 | 156 | {rev 157 | 158 | AQQKAAY= 159 | 160 | 161 | MSLD 162 | 163 | ui8 164 | 165 | AA== 166 | 167 | 168 | MSSD 169 | 170 | si8 171 | 172 | BQ== 173 | 174 | 175 | MSSP 176 | 177 | si8 178 | 179 | BQ== 180 | 181 | 182 | NATJ 183 | 184 | ui8 185 | 186 | AA== 187 | 188 | 189 | OSK0 190 | 191 | ch8* 192 | 193 | b3VyaGFyZHdvcmtieXRoZXNld29y 194 | ZHNndWFyZGVkcGw= 195 | 196 | 197 | OSK1 198 | 199 | ch8* 200 | 201 | ZWFzZWRvbnRzdGVhbChjKUFwcGxl 202 | Q29tcHV0ZXJJbmM= 203 | 204 | 205 | REV 206 | 207 | {rev 208 | 209 | ATAPAAAD 210 | 211 | 212 | RMde 213 | 214 | char 215 | 216 | QQ== 217 | 218 | 219 | RVBF 220 | 221 | {rev 222 | 223 | ATAPAAAD 224 | 225 | 226 | RVUF 227 | 228 | {rev 229 | 230 | ATAPAAAD 231 | 232 | 233 | 234 | Types 235 | 236 | BEMB 237 | flag 238 | CLKC 239 | {clc 240 | CLKH 241 | {clh 242 | CLKT 243 | ui32 244 | CLWK 245 | ui32 246 | EPCI 247 | flag 248 | LSSS 249 | {lso 250 | MSDS 251 | ui8 252 | MSDW 253 | flag 254 | MSPS 255 | {msp 256 | RPlt 257 | ch8* 258 | 259 | debug 260 | 261 | smc-compatible 262 | smc-napa 263 | trace 264 | 265 | 266 | IOClass 267 | FakeSMC 268 | IOMatchCategory 269 | FakeSMC 270 | IOProviderClass 271 | AppleACPIPlatformExpert 272 | IOResourceMatch 273 | FakeSMCKeyStore 274 | RM,Build 275 | Release-rehabman 276 | RM,Version 277 | FakeSMC 1765 278 | 279 | FakeSMCKeyStore 280 | 281 | CFBundleIdentifier 282 | org.netkas.driver.FakeSMC 283 | IOClass 284 | FakeSMCKeyStore 285 | IOMatchCategory 286 | FakeSMCKeyStore 287 | IOProviderClass 288 | IOResources 289 | IOResourceMatch 290 | IOKit 291 | IOUserClientClass 292 | FakeSMCKeyStoreUserClient 293 | 294 | 295 | NSHumanReadableCopyright 296 | Copyright © 2017 netkas. All rights reserved. 297 | OSBundleCompatibleVersion 298 | 1429 299 | OSBundleLibraries 300 | 301 | com.apple.iokit.IOACPIFamily 302 | 1.0.0d1 303 | com.apple.kpi.bsd 304 | 10.6 305 | com.apple.kpi.iokit 306 | 10.6 307 | com.apple.kpi.libkern 308 | 10.6 309 | com.apple.kpi.mach 310 | 10.6 311 | com.apple.kpi.unsupported 312 | 10.6 313 | 314 | OSBundleRequired 315 | Root 316 | Source Code 317 | "https://github.com/RehabMan/OS-X-FakeSMC-kozlek.git" 318 | 319 | 320 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/GenericUSBXHCI.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 15C50 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | GenericUSBXHCI 11 | CFBundleIdentifier 12 | net.osx86.kexts.GenericUSBXHCI 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | GenericUSBXHCI 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.11 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.11 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 7C68 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0720 41 | DTXcodeBuild 42 | 7C68 43 | IOKitPersonalities 44 | 45 | GenericUSBXHCI 46 | 47 | #IOPCIPrimaryMatch 48 | 0x01941033 49 | ASMediaEDLTAFix 50 | 51 | CFBundleIdentifier 52 | net.osx86.kexts.GenericUSBXHCI 53 | DeviceBlacklist 54 | 55 | 1b73 56 | 0 57 | 8086 58 | 0 59 | 60 | DeviceWhitelist 61 | 62 | 1b73_1000 63 | 0 64 | 65 | IOClass 66 | GenericUSBXHCI 67 | IOPCIClassMatch 68 | 0x0c033000 69 | IOPCIPauseCompatible 70 | 71 | IOPCITunnelCompatible 72 | 73 | IOProbeScore 74 | 1 75 | IOProviderClass 76 | IOPCIDevice 77 | IOUserClientClass 78 | IOUSBControllerUserClient 79 | IntelDoze 80 | 81 | RM,Build 82 | Universal-RehabMan 83 | RM,Version 84 | GenericUSBXHCI 1.2.11 85 | 86 | 87 | NSHumanReadableCopyright 88 | Copyright © 2012-2014 Zenith432. All rights reserved. 89 | OSBundleCompatibleVersion 90 | 1.0.0 91 | OSBundleLibraries 92 | 93 | com.apple.iokit.IOPCIFamily 94 | 2.6 95 | com.apple.iokit.IOUSBFamily 96 | 5.0.0a1 97 | com.apple.kpi.iokit 98 | 10.6 99 | com.apple.kpi.libkern 100 | 10.6 101 | com.apple.kpi.mach 102 | 10.6 103 | com.apple.kpi.unsupported 104 | 10.6 105 | 106 | OSBundleRequired 107 | Root 108 | 109 | 110 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/GenericUSBXHCI.kext/Contents/MacOS/GenericUSBXHCI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/GenericUSBXHCI.kext/Contents/MacOS/GenericUSBXHCI -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/NullCPUPowerManagement.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | NullCPUPowerManagement 9 | CFBundleIdentifier 10 | org.tgwbd.driver.NullCPUPowerManagement 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | NullCPUPowerManagement 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.0d2 21 | CFBundleShortVersionString 22 | 1.0.0d2 23 | IOKitPersonalities 24 | 25 | IntelCPUPowerManagement 26 | 27 | CFBundleIdentifier 28 | org.tgwbd.driver.NullCPUPowerManagement 29 | IOClass 30 | NullCPUPowerManagement 31 | IOMatchCategory 32 | AppleIntelCPUPowerManagement 33 | IOProbeScore 34 | 100 35 | IOProviderClass 36 | IOResources 37 | IOResourceMatch 38 | IOKit 39 | 40 | 41 | OSBundleLibraries 42 | 43 | com.apple.kpi.iokit 44 | 8.0.0 45 | com.apple.kpi.libkern 46 | 8.0.0 47 | com.apple.kpi.unsupported 48 | 8.0.0 49 | 50 | OSBundleRequired 51 | Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/NullCPUPowerManagement.kext/Contents/MacOS/NullCPUPowerManagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/NullCPUPowerManagement.kext/Contents/MacOS/NullCPUPowerManagement -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/NullCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/NullCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 11G63 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | VoodooHDA 11 | CFBundleIdentifier 12 | org.voodoo.driver.VoodooHDA 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooHDA 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.9.0d10 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 2.9.0d10 25 | DTCompiler 26 | 27 | DTPlatformBuild 28 | 4F1003 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 11G63 33 | DTSDKName 34 | 35 | DTXcode 36 | 0441 37 | DTXcodeBuild 38 | 4F1003 39 | IOKitPersonalities 40 | 41 | VoodooHDA 42 | 43 | AllowMSI 44 | 45 | Boost 46 | 1 47 | CFBundleIdentifier 48 | org.voodoo.driver.VoodooHDA 49 | DisableInputMonitor 50 | 51 | IOClass 52 | VoodooHDADevice 53 | IOMatchCategory 54 | VoodooHDADevice 55 | IOPCIClassMatch 56 | 0x04020000&0xfffe0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOUserClientClass 60 | VoodooHDAUserClient 61 | InhibitCache 62 | 63 | MixerValues 64 | 65 | PCM 66 | 90 67 | Rec 68 | 90 69 | iGain 70 | 90 71 | iMix 72 | 90 73 | 74 | NodesToPatch 75 | 76 | 77 | Caps 78 | 0x373e 79 | Codec 80 | 4 81 | Comment 82 | Example of possible values 83 | Config 84 | 0x90a70120 85 | Conns 86 | 12,13,24 87 | Control 88 | 20 89 | DAC 90 | 2 91 | Enable 92 | 1 93 | Node 94 | 12 95 | Select 96 | 13 97 | SwitchCh 98 | 0 99 | Type 100 | 4 101 | 102 | 103 | Codec 104 | 2 105 | Comment 106 | To disable back sound on ALC codec set enable=0 107 | Enable 108 | 1 109 | Node 110 | 11 111 | 112 | 113 | Noise 114 | 0 115 | Vectorize 116 | 117 | VoodooHDAEnableHalfMicVolumeFix 118 | 119 | VoodooHDAEnableHalfVolumeFix 120 | 121 | VoodooHDAEnableMuteFix 122 | 123 | VoodooHDAEnableVolumeChangeFix 124 | 125 | VoodooHDAVerboseLevel 126 | 0 127 | 128 | 129 | OSBundleLibraries 130 | 131 | com.apple.iokit.IOAudioFamily 132 | 1.1fc9 133 | com.apple.iokit.IOPCIFamily 134 | 2.1 135 | com.apple.kpi.iokit 136 | 9.0.0 137 | com.apple.kpi.libkern 138 | 9.0.0 139 | com.apple.kpi.mach 140 | 9.0.0 141 | com.apple.kpi.unsupported 142 | 9.0.0 143 | 144 | 145 | 146 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooTSCSync.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 11D50 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | VoodooTSCSync 11 | CFBundleGetInfoString 12 | © 2009 Cosmo1t 13 | CFBundleIdentifier 14 | org.voodoo.driver.VoodooTSCSync 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | VoodooTSCSync 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.1 25 | CFBundleShortVersionString 26 | 1.1 27 | DTCompiler 28 | 29 | DTPlatformBuild 30 | 4E109 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 10K549 35 | DTSDKName 36 | macosx10.6 37 | DTXcode 38 | 0430 39 | DTXcodeBuild 40 | 4E109 41 | IOKitPersonalities 42 | 43 | VoodooTSCSync 44 | 45 | CFBundleIdentifier 46 | org.voodoo.driver.VoodooTSCSync 47 | IOClass 48 | org_voodoo_driver_VoodooTSCSync 49 | IOMatchCategory 50 | VoodooTSCSync 51 | IOPropertyMatch 52 | 53 | IOCPUNumber 54 | 7 55 | 56 | IOProviderClass 57 | AppleACPICPU 58 | 59 | 60 | OSBundleLibraries 61 | 62 | com.apple.kpi.iokit 63 | 7.0 64 | com.apple.kpi.libkern 65 | 8.0d0 66 | com.apple.kpi.unsupported 67 | 8.0b1 68 | 69 | OSBundleRequired 70 | Root 71 | 72 | 73 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooTSCSync.kext/Contents/MacOS/VoodooTSCSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooTSCSync.kext/Contents/MacOS/VoodooTSCSync -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooTSCSync.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/kexts/Other/VoodooTSCSync.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/themes/embedded/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/themes/embedded/screenshot.png -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/themes/embedded/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | blackosx, clovy 7 | Description 8 | Embedded Theme 9 | Year 10 | 2018 11 | 12 | 13 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/themes/logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/themes/logo_main.png -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/themes/pointer-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/themes/pointer-metal.png -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/themes/random/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | Slice 7 | Description 8 | random choose a theme from others 9 | Year 10 | 2014 11 | 12 | 13 | -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /Clover EFI (10.15)/EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/Clover EFI (10.15)/EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-EC-DESKTOP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-EC-DESKTOP.aml -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-GPU-SPOOF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-GPU-SPOOF.aml -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-HPET.aml -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-PLUG-DRTNIA.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/ACPI/SSDT-PLUG-DRTNIA.aml -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Drivers/HfsPlusLegacy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Drivers/HfsPlusLegacy.efi -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/IntelMausiEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G6030 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | IntelMausiEthernet 11 | CFBundleIdentifier 12 | com.insanelymac.IntelMausiEthernet 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IntelMausiEthernet 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.5.3d3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.5.3d3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 15E60 37 | DTSDKName 38 | macosx10.11 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | IOKitPersonalities 44 | 45 | IntelMausi 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.IntelMausiEthernet 49 | Driver Parameters 50 | 51 | enableCSO6 52 | 53 | enableWakeOnAddrMatch 54 | 55 | enableWakeS5 56 | 57 | maxIntrRate10 58 | 3000 59 | maxIntrRate100 60 | 5000 61 | maxIntrRate1000 62 | 8000 63 | rxAbsTime10 64 | 0 65 | rxAbsTime100 66 | 0 67 | rxAbsTime1000 68 | 10 69 | rxDelayTime10 70 | 0 71 | rxDelayTime100 72 | 0 73 | rxDelayTime1000 74 | 0 75 | 76 | Driver_Version 77 | 2.5.3d3 78 | IOClass 79 | IntelMausi 80 | IOPCIMatch 81 | 0x10EA8086 0x10EB8086 0x10EF8086 0x10F08086 0x15028086 0x15038086 0x153A8086 0x153B8086 0x155A8086 0x15598086 0x15A08086 0x15A18086 0x15A28086 0x15A38086 0x156F8086 0x15708086 0x15B78086 0x15B88086 0x15D78086 0x15D88086 0x15E38086 0x15D68086 0x15BD8086 0x15BE8086 0x15BB8086 0x15BC8086 0x15DF8086 0x15E08086 0x15E18086 0x15E28086 0x15B98086 0x0D4E8086 0x0D4F8086 0x0D4C8086 0x0D4D8086 0x0D538086 0x0D558086 82 | IOProbeScore 83 | 1000 84 | IOProviderClass 85 | IOPCIDevice 86 | 87 | 88 | NSHumanReadableCopyright 89 | Copyright © 2014 Laura Müller. All rights reserved. 90 | OSBundleLibraries 91 | 92 | com.apple.iokit.IONetworkingFamily 93 | 1.5.0 94 | com.apple.iokit.IOPCIFamily 95 | 1.7 96 | com.apple.kpi.bsd 97 | 8.10.0 98 | com.apple.kpi.iokit 99 | 8.10.0 100 | com.apple.kpi.libkern 101 | 8.10.0 102 | com.apple.kpi.mach 103 | 8.10.0 104 | 105 | OSBundleRequired 106 | Network-Root 107 | 108 | 109 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G6030 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.5.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.5.8 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18B71 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOBSD 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2020 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kernel.6.0 66 | 7.9.9 67 | com.apple.kpi.bsd 68 | 8.0.0 69 | com.apple.kpi.iokit 70 | 8.0.0 71 | com.apple.kpi.libkern 72 | 8.0.0 73 | com.apple.kpi.mach 74 | 8.0.0 75 | com.apple.kpi.unsupported 76 | 8.0.0 77 | 78 | OSBundleLibraries_x86_64 79 | 80 | com.apple.kpi.bsd 81 | 10.0.0 82 | com.apple.kpi.dsep 83 | 10.0.0 84 | com.apple.kpi.iokit 85 | 10.0.0 86 | com.apple.kpi.libkern 87 | 10.0.0 88 | com.apple.kpi.mach 89 | 10.0.0 90 | com.apple.kpi.unsupported 91 | 10.0.0 92 | 93 | OSBundleRequired 94 | Root 95 | 96 | 97 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/NullCPUPowerManagement.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | NullCPUPowerManagement 9 | CFBundleIdentifier 10 | org.tgwbd.driver.NullCPUPowerManagement 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | NullCPUPowerManagement 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0.0d2 21 | CFBundleShortVersionString 22 | 1.0.0d2 23 | IOKitPersonalities 24 | 25 | IntelCPUPowerManagement 26 | 27 | CFBundleIdentifier 28 | org.tgwbd.driver.NullCPUPowerManagement 29 | IOClass 30 | NullCPUPowerManagement 31 | IOMatchCategory 32 | AppleIntelCPUPowerManagement 33 | IOProbeScore 34 | 100 35 | IOProviderClass 36 | IOResources 37 | IOResourceMatch 38 | IOKit 39 | 40 | 41 | OSBundleLibraries 42 | 43 | com.apple.kpi.iokit 44 | 8.0.0 45 | com.apple.kpi.libkern 46 | 8.0.0 47 | com.apple.kpi.unsupported 48 | 8.0.0 49 | 50 | OSBundleRequired 51 | Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/NullCPUPowerManagement.kext/Contents/MacOS/NullCPUPowerManagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/NullCPUPowerManagement.kext/Contents/MacOS/NullCPUPowerManagement -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/NullCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/NullCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G6030 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.8 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 14D125 37 | DTSDKName 38 | macosx10.10 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | IOKitPersonalities 44 | 45 | as.vit9696.SMCProcessor 46 | 47 | CFBundleIdentifier 48 | as.vit9696.SMCProcessor 49 | IOClass 50 | SMCProcessor 51 | IOMatchCategory 52 | SMCProcessor 53 | IONameMatch 54 | processor 55 | IOPropertyMatch 56 | 57 | processor-index 58 | 0 59 | 60 | IOProviderClass 61 | IOACPIPlatformDevice 62 | IOResourceMatch 63 | ACPI 64 | 65 | 66 | NSHumanReadableCopyright 67 | Copyright © 2018 vit9696. All rights reserved. 68 | OSBundleCompatibleVersion 69 | 1.0 70 | OSBundleLibraries 71 | 72 | as.vit9696.Lilu 73 | 1.2.0 74 | as.vit9696.VirtualSMC 75 | 1.0.0 76 | com.apple.iokit.IOACPIFamily 77 | 1.0.0d1 78 | com.apple.kpi.bsd 79 | 11.0.0 80 | com.apple.kpi.dsep 81 | 11.0.0 82 | com.apple.kpi.iokit 83 | 11.0.0 84 | com.apple.kpi.libkern 85 | 11.0.0 86 | com.apple.kpi.mach 87 | 11.0.0 88 | com.apple.kpi.unsupported 89 | 11.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G6030 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.8 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 14D125 37 | DTSDKName 38 | macosx10.10 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | IOKitPersonalities 44 | 45 | ru.joedm.SMCSuperIO 46 | 47 | CFBundleIdentifier 48 | ru.joedm.SMCSuperIO 49 | IOClass 50 | SMCSuperIO 51 | IOMatchCategory 52 | SMCSuperIO 53 | IOPCIClassMatch 54 | 0x06010000&0xffff0000 55 | IOProviderClass 56 | IOPCIDevice 57 | IOResourceMatch 58 | ACPI 59 | 60 | 61 | NSHumanReadableCopyright 62 | Copyright © 2018 joedm. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 10.0.0 75 | com.apple.kpi.dsep 76 | 10.0.0 77 | com.apple.kpi.iokit 78 | 10.0.0 79 | com.apple.kpi.libkern 80 | 10.0.0 81 | com.apple.kpi.mach 82 | 10.0.0 83 | com.apple.kpi.unsupported 84 | 10.0.0 85 | 86 | OSBundleRequired 87 | Root 88 | 89 | 90 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/USBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | v1.0 9 | CFBundleIdentifier 10 | com.corpnewt.USBMap 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBMap 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | MacPro6,1-EH01 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBMergeNub 29 | IOClass 30 | AppleUSBMergeNub 31 | IONameMatch 32 | EH01 33 | IOProviderClass 34 | AppleUSBEHCIPCI 35 | IOProviderMergeProperties 36 | 37 | kUSBMuxEnabled 38 | 39 | port-count 40 | 41 | AQAAAA== 42 | 43 | ports 44 | 45 | PR11 46 | 47 | UsbConnector 48 | 0 49 | port 50 | 51 | AQAAAA== 52 | 53 | 54 | 55 | 56 | model 57 | MacPro6,1 58 | 59 | MacPro6,1-EH02 60 | 61 | CFBundleIdentifier 62 | com.apple.driver.AppleUSBMergeNub 63 | IOClass 64 | AppleUSBMergeNub 65 | IONameMatch 66 | EH02 67 | IOProviderClass 68 | AppleUSBEHCIPCI 69 | IOProviderMergeProperties 70 | 71 | kUSBMuxEnabled 72 | 73 | port-count 74 | 75 | AQAAAA== 76 | 77 | ports 78 | 79 | PR21 80 | 81 | UsbConnector 82 | 0 83 | port 84 | 85 | AQAAAA== 86 | 87 | 88 | 89 | 90 | model 91 | MacPro6,1 92 | 93 | 94 | OSBundleRequired 95 | Root 96 | 97 | 98 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G6030 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VirtualSMC 11 | CFBundleIdentifier 12 | as.vit9696.VirtualSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VirtualSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.8 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 14D125 37 | DTSDKName 38 | macosx10.10 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | IOKitPersonalities 44 | 45 | as.vit9696.VirtualSMC 46 | 47 | CFBundleIdentifier 48 | as.vit9696.VirtualSMC 49 | IOClass 50 | VirtualSMC 51 | IODeviceMemory 52 | 53 | 54 | 55 | address 56 | 768 57 | length 58 | 32 59 | 60 | 61 | 62 | 63 | address 64 | 4277141504 65 | length 66 | 65536 67 | 68 | 69 | 70 | IOInterruptControllers 71 | 72 | io-apic-0 73 | 74 | IOInterruptSpecifiers 75 | 76 | 77 | BgAAAAAAAAA= 78 | 79 | 80 | IOMatchCategory 81 | IOACPIPlatformDevice 82 | IOName 83 | SMC 84 | IOProbeScore 85 | 60000 86 | IOProviderClass 87 | AppleACPIPlatformExpert 88 | Keystore 89 | 90 | Generic 91 | 92 | 93 | attr 94 | 95 | iA== 96 | 97 | comment 98 | Total fan number, this should be put to a plugin 99 | name 100 | 101 | Rk51bQ== 102 | 103 | type 104 | 105 | dWk4IA== 106 | 107 | value 108 | 109 | AA== 110 | 111 | 112 | 113 | attr 114 | 115 | gA== 116 | 117 | comment 118 | CPU plimit 119 | name 120 | 121 | TVNUYw== 122 | 123 | type 124 | 125 | dWk4IA== 126 | 127 | value 128 | 129 | AA== 130 | 131 | 132 | 133 | attr 134 | 135 | gA== 136 | 137 | comment 138 | FAN plimit (supposedly) 139 | name 140 | 141 | TVNUZg== 142 | 143 | type 144 | 145 | dWk4IA== 146 | 147 | value 148 | 149 | AA== 150 | 151 | 152 | 153 | attr 154 | 155 | gA== 156 | 157 | comment 158 | Memory plimit 159 | name 160 | 161 | TVNUbQ== 162 | 163 | type 164 | 165 | dWk4IA== 166 | 167 | value 168 | 169 | AA== 170 | 171 | 172 | 173 | attr 174 | 175 | gA== 176 | 177 | comment 178 | This should be 1 on laptops, and is overriden by sensors 179 | name 180 | 181 | QkFUUA== 182 | 183 | type 184 | 185 | ZmxhZw== 186 | 187 | value 188 | 189 | AA== 190 | 191 | 192 | 193 | attr 194 | 195 | gA== 196 | 197 | comment 198 | Only MacPros have custom illumination controllers 199 | name 200 | 201 | THNOTQ== 202 | 203 | type 204 | 205 | dWk4IA== 206 | 207 | value 208 | 209 | AA== 210 | 211 | 212 | 213 | GenericDesktopV1 214 | 215 | GenericDesktopV2 216 | 217 | GenericLaptopV1 218 | 219 | GenericLaptopV2 220 | 221 | GenericV1 222 | 223 | 224 | attr 225 | 226 | gA== 227 | 228 | comment 229 | GPU plimit 230 | name 231 | 232 | TVNUZw== 233 | 234 | type 235 | 236 | dWk4IA== 237 | 238 | value 239 | 240 | AA== 241 | 242 | 243 | 244 | GenericV2 245 | 246 | 247 | attr 248 | 249 | gA== 250 | 251 | comment 252 | E plimit (???) 253 | name 254 | 255 | TVNUZQ== 256 | 257 | type 258 | 259 | dWk4IA== 260 | 261 | value 262 | 263 | AA== 264 | 265 | 266 | 267 | attr 268 | 269 | gA== 270 | 271 | comment 272 | I plimit (???) 273 | name 274 | 275 | TVNUaQ== 276 | 277 | type 278 | 279 | dWk4IA== 280 | 281 | value 282 | 283 | AA== 284 | 285 | 286 | 287 | attr 288 | 289 | gA== 290 | 291 | comment 292 | J plimit (???) 293 | name 294 | 295 | TVNUag== 296 | 297 | type 298 | 299 | dWk4IA== 300 | 301 | value 302 | 303 | AA== 304 | 305 | 306 | 307 | 308 | ModelInfo 309 | 310 | GenericV1 311 | 312 | branch 313 | 314 | ajUyAAAAAAA= 315 | 316 | hwname 317 | 318 | c21jLXBpa2V0b24A 319 | 320 | platform 321 | 322 | ajUyAAAAAAA= 323 | 324 | rev 325 | 326 | AXQPAAAE 327 | 328 | revfb 329 | 330 | AXQPAAAE 331 | 332 | revfu 333 | 334 | AXQPAAAE 335 | 336 | 337 | GenericV2 338 | 339 | branch 340 | 341 | ajUyAAAAAAA= 342 | 343 | hwname 344 | 345 | c21jLWh1cm9ucml2ZXIA 346 | 347 | platform 348 | 349 | ajUyAAAAAAA= 350 | 351 | rev 352 | 353 | AigPAAAH 354 | 355 | revfb 356 | 357 | AigPAAAH 358 | 359 | revfu 360 | 361 | AigPAAAH 362 | 363 | 364 | GenericV3 365 | 366 | hwname 367 | 368 | c21jLWh1cm9ucml2ZXIA 369 | 370 | platform 371 | 372 | ajUyAAAAAAA= 373 | 374 | 375 | 376 | _STA 377 | 11 378 | name 379 | 380 | QVBQMDAwMQA= 381 | 382 | 383 | 384 | NSHumanReadableCopyright 385 | Copyright © 2017 vit9696. All rights reserved. 386 | OSBundleCompatibleVersion 387 | 1.0 388 | OSBundleLibraries 389 | 390 | as.vit9696.Lilu 391 | 1.2.0 392 | com.apple.iokit.IOACPIFamily 393 | 1.0.0d1 394 | com.apple.kernel.6.0 395 | 7.9.9 396 | com.apple.kpi.bsd 397 | 8.0.0 398 | com.apple.kpi.iokit 399 | 8.0.0 400 | com.apple.kpi.libkern 401 | 8.0.0 402 | com.apple.kpi.mach 403 | 8.0.0 404 | com.apple.kpi.unsupported 405 | 8.0.0 406 | 407 | OSBundleLibraries_x86_64 408 | 409 | as.vit9696.Lilu 410 | 1.2.0 411 | com.apple.iokit.IOACPIFamily 412 | 1.0.0d1 413 | com.apple.kpi.bsd 414 | 10.0.0 415 | com.apple.kpi.iokit 416 | 10.0.0 417 | com.apple.kpi.libkern 418 | 10.0.0 419 | com.apple.kpi.mach 420 | 10.0.0 421 | com.apple.kpi.unsupported 422 | 10.0.0 423 | 424 | OSBundleRequired 425 | Root 426 | 427 | 428 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/VoodooTSCSync.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | VoodooTSCSync 11 | CFBundleGetInfoString 12 | 1.5.0, Copyright © 2009 Cosmo1t, 2018 RehabMan. GPLv2. 13 | CFBundleIdentifier 14 | org.rehabman.driver.VoodooTSCSync 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | VoodooTSCSync 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 1.5.0 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1.5.0 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 9F2000 35 | DTPlatformVersion 36 | GM 37 | DTSDKBuild 38 | 17E189 39 | DTSDKName 40 | macosx10.13 41 | DTXcode 42 | 0941 43 | DTXcodeBuild 44 | 9F2000 45 | IOKitPersonalities 46 | 47 | VoodooTSCSync 48 | 49 | CFBundleIdentifier 50 | org.rehabman.driver.VoodooTSCSync 51 | IOClass 52 | VoodooTSCSync 53 | IOMatchCategory 54 | VoodooTSCSync 55 | IOProviderClass 56 | AppleACPICPU 57 | 58 | 59 | OSBundleLibraries 60 | 61 | com.apple.kpi.iokit 62 | 7.0 63 | com.apple.kpi.libkern 64 | 8.0d0 65 | com.apple.kpi.unsupported 66 | 8.0b1 67 | 68 | OSBundleRequired 69 | Root 70 | Source Code 71 | https://github.com/RehabMan/VoodooTSCSync 72 | 73 | 74 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/VoodooTSCSync.kext/Contents/MacOS/VoodooTSCSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/VoodooTSCSync.kext/Contents/MacOS/VoodooTSCSync -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G6030 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.5.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.5.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 15E60 37 | DTSDKName 38 | macosx10.11 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 10.0.0 88 | com.apple.kpi.dsep 89 | 10.0.0 90 | com.apple.kpi.iokit 91 | 10.0.0 92 | com.apple.kpi.libkern 93 | 10.0.0 94 | com.apple.kpi.mach 95 | 10.0.0 96 | com.apple.kpi.unsupported 97 | 10.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepool/Hackintosh-HP-Z420-OpenCore/1a89df5b4ee731319ef5dc0306da493e3e8712aa/OpenCore EFI (10.15-11)/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /OpenCore EFI (10.15-11)/EFI/OC/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ACPI 6 | 7 | Add 8 | 9 | 10 | Comment 11 | SSDT-EC-DESKTOP.aml 12 | Path 13 | SSDT-EC-DESKTOP.aml 14 | Enabled 15 | 16 | 17 | 18 | Comment 19 | SSDT-GPU-SPOOF.aml 20 | Path 21 | SSDT-GPU-SPOOF.aml 22 | Enabled 23 | 24 | 25 | 26 | Comment 27 | SSDT-HPET.aml 28 | Path 29 | SSDT-HPET.aml 30 | Enabled 31 | 32 | 33 | 34 | Comment 35 | SSDT-PLUG-DRTNIA.aml 36 | Path 37 | SSDT-PLUG-DRTNIA.aml 38 | Enabled 39 | 40 | 41 | 42 | Patch 43 | 44 | 45 | Comment 46 | Change EUSB to EH01 47 | Count 48 | 0 49 | Enabled 50 | 51 | Find 52 | RVVTQg== 53 | Limit 54 | 0 55 | Mask 56 | 57 | OemTableId 58 | 59 | Replace 60 | RUgwMQ== 61 | ReplaceMask 62 | 63 | Skip 64 | 0 65 | TableLength 66 | 0 67 | TableSignature 68 | 69 | Base 70 | 71 | BaseSkip 72 | 0 73 | 74 | 75 | Comment 76 | Change USBE to EH02 77 | Count 78 | 0 79 | Enabled 80 | 81 | Find 82 | VVNCRQ== 83 | Limit 84 | 0 85 | Mask 86 | 87 | OemTableId 88 | 89 | Replace 90 | RUgwMg== 91 | ReplaceMask 92 | 93 | Skip 94 | 0 95 | TableLength 96 | 0 97 | TableSignature 98 | 99 | Base 100 | 101 | BaseSkip 102 | 0 103 | 104 | 105 | Comment 106 | HPET _CRS to XCRS Rename 107 | Count 108 | 0 109 | Enabled 110 | 111 | Find 112 | X0NSUwCKQw== 113 | Limit 114 | 0 115 | Mask 116 | 117 | OemTableId 118 | AAAAAA== 119 | Replace 120 | WENSUwCKQw== 121 | ReplaceMask 122 | 123 | Skip 124 | 0 125 | TableLength 126 | 0 127 | TableSignature 128 | AAAAAA== 129 | Base 130 | 131 | BaseSkip 132 | 0 133 | 134 | 135 | Comment 136 | Rename EC0 to EC (USB Power) 137 | Count 138 | 0 139 | Enabled 140 | 141 | Find 142 | Q0MwXw== 143 | Limit 144 | 0 145 | Mask 146 | 147 | OemTableId 148 | AAAAAA== 149 | Replace 150 | RUNfXw== 151 | ReplaceMask 152 | 153 | Skip 154 | 0 155 | TableLength 156 | 0 157 | TableSignature 158 | RFNEVA== 159 | Base 160 | 161 | BaseSkip 162 | 0 163 | 164 | 165 | Comment 166 | XHC1 to SHCI 167 | Count 168 | 0 169 | Enabled 170 | 171 | Find 172 | WEhDMQ== 173 | Limit 174 | 0 175 | Mask 176 | 177 | OemTableId 178 | AAAAAA== 179 | Replace 180 | U0hDSQ== 181 | ReplaceMask 182 | 183 | Skip 184 | 0 185 | TableLength 186 | 0 187 | TableSignature 188 | 189 | Base 190 | 191 | BaseSkip 192 | 0 193 | 194 | 195 | Comment 196 | EHC1 to EH01 197 | Count 198 | 0 199 | Enabled 200 | 201 | Find 202 | RUhDMQ== 203 | Limit 204 | 0 205 | Mask 206 | 207 | OemTableId 208 | AAAAAA== 209 | Replace 210 | RUgwMQ== 211 | ReplaceMask 212 | 213 | Skip 214 | 0 215 | TableLength 216 | 0 217 | TableSignature 218 | 219 | Base 220 | 221 | BaseSkip 222 | 0 223 | 224 | 225 | Base 226 | 227 | BaseSkip 228 | 0 229 | Comment 230 | TMR IRQ 0 Fix 231 | Count 232 | 0 233 | Enabled 234 | 235 | Find 236 | IgEAeQA= 237 | Limit 238 | 0 239 | Mask 240 | 241 | OemTableId 242 | 243 | Replace 244 | IgAAeQA= 245 | ReplaceMask 246 | 247 | Skip 248 | 0 249 | TableLength 250 | 0 251 | TableSignature 252 | 253 | 254 | 255 | Base 256 | 257 | BaseSkip 258 | 0 259 | Comment 260 | RTC0 IRQ 8 Fix 261 | Count 262 | 0 263 | Enabled 264 | 265 | Find 266 | IgABeQA= 267 | Limit 268 | 0 269 | Mask 270 | 271 | OemTableId 272 | 273 | Replace 274 | IgAAeQA= 275 | ReplaceMask 276 | 277 | Skip 278 | 0 279 | TableLength 280 | 0 281 | TableSignature 282 | 283 | 284 | 285 | Base 286 | 287 | BaseSkip 288 | 0 289 | Comment 290 | PIC IRQ 2 FIX 291 | Count 292 | 0 293 | Enabled 294 | 295 | Find 296 | IgQAeQA= 297 | Limit 298 | 0 299 | Mask 300 | 301 | OemTableId 302 | 303 | Replace 304 | IgAAeQA= 305 | ReplaceMask 306 | 307 | Skip 308 | 0 309 | TableLength 310 | 0 311 | TableSignature 312 | 313 | 314 | 315 | Quirks 316 | 317 | FadtEnableReset 318 | 319 | NormalizeHeaders 320 | 321 | RebaseRegions 322 | 323 | ResetHwSig 324 | 325 | ResetLogoStatus 326 | 327 | SyncTableIds 328 | 329 | 330 | Delete 331 | 332 | 333 | Booter 334 | 335 | MmioWhitelist 336 | 337 | 338 | Address 339 | 4275159040 340 | Comment 341 | Haswell: SB_RCBA is a 0x4 page memory region, containing SPI_BASE at 0x3800 (SPI_BASE_ADDRESS) 342 | Enabled 343 | 344 | 345 | 346 | Address 347 | 4278190080 348 | Comment 349 | Generic: PCI root is a 0x1000 page memory region used by some firmwares 350 | Enabled 351 | 352 | 353 | 354 | Quirks 355 | 356 | AvoidRuntimeDefrag 357 | 358 | DevirtualiseMmio 359 | 360 | DisableSingleUser 361 | 362 | DisableVariableWrite 363 | 364 | DiscardHibernateMap 365 | 366 | EnableSafeModeSlide 367 | 368 | EnableWriteUnprotector 369 | 370 | ForceExitBootServices 371 | 372 | ProtectMemoryRegions 373 | 374 | ProtectSecureBoot 375 | 376 | ProtectUefiServices 377 | 378 | ProvideCustomSlide 379 | 380 | ProvideMaxSlide 381 | 0 382 | RebuildAppleMemoryMap 383 | 384 | SetupVirtualMap 385 | 386 | SignalAppleOS 387 | 388 | SyncRuntimePermissions 389 | 390 | AllowRelocationBlock 391 | 392 | ForceBooterSignature 393 | 394 | ResizeAppleGpuBars 395 | -1 396 | 397 | Patch 398 | 399 | 400 | DeviceProperties 401 | 402 | Add 403 | 404 | Delete 405 | 406 | 407 | Kernel 408 | 409 | Add 410 | 411 | 412 | Comment 413 | 414 | MaxKernel 415 | 416 | PlistPath 417 | Contents/Info.plist 418 | Enabled 419 | 420 | MinKernel 421 | 422 | ExecutablePath 423 | Contents/MacOS/Lilu 424 | BundlePath 425 | Lilu.kext 426 | Arch 427 | x86_64 428 | 429 | 430 | Comment 431 | 432 | MaxKernel 433 | 434 | PlistPath 435 | Contents/Info.plist 436 | Enabled 437 | 438 | MinKernel 439 | 440 | ExecutablePath 441 | Contents/MacOS/VirtualSMC 442 | BundlePath 443 | VirtualSMC.kext 444 | Arch 445 | x86_64 446 | 447 | 448 | Comment 449 | 450 | MaxKernel 451 | 452 | PlistPath 453 | Contents/Info.plist 454 | Enabled 455 | 456 | MinKernel 457 | 458 | ExecutablePath 459 | Contents/MacOS/VoodooTSCSync 460 | BundlePath 461 | VoodooTSCSync.kext 462 | Arch 463 | x86_64 464 | 465 | 466 | Comment 467 | 468 | MaxKernel 469 | 470 | PlistPath 471 | Contents/Info.plist 472 | Enabled 473 | 474 | MinKernel 475 | 476 | ExecutablePath 477 | Contents/MacOS/WhateverGreen 478 | BundlePath 479 | WhateverGreen.kext 480 | Arch 481 | x86_64 482 | 483 | 484 | Comment 485 | 486 | MaxKernel 487 | 488 | PlistPath 489 | Contents/Info.plist 490 | Enabled 491 | 492 | MinKernel 493 | 494 | ExecutablePath 495 | Contents/MacOS/IntelMausiEthernet 496 | BundlePath 497 | IntelMausiEthernet.kext 498 | Arch 499 | x86_64 500 | 501 | 502 | Comment 503 | 504 | MaxKernel 505 | 506 | PlistPath 507 | Contents/Info.plist 508 | Enabled 509 | 510 | MinKernel 511 | 512 | ExecutablePath 513 | Contents/MacOS/NullCPUPowerManagement 514 | BundlePath 515 | NullCPUPowerManagement.kext 516 | Arch 517 | x86_64 518 | 519 | 520 | Comment 521 | 522 | Enabled 523 | 524 | MaxKernel 525 | 526 | MinKernel 527 | 528 | BundlePath 529 | USBMap.kext 530 | ExecutablePath 531 | 532 | PlistPath 533 | Contents/Info.plist 534 | Arch 535 | x86_64 536 | 537 | 538 | Comment 539 | 540 | MaxKernel 541 | 542 | PlistPath 543 | Contents/Info.plist 544 | Enabled 545 | 546 | MinKernel 547 | 548 | ExecutablePath 549 | Contents/MacOS/AppleALC 550 | BundlePath 551 | AppleALC.kext 552 | 553 | 554 | Comment 555 | 556 | MaxKernel 557 | 558 | PlistPath 559 | Contents/Info.plist 560 | Enabled 561 | 562 | MinKernel 563 | 564 | ExecutablePath 565 | Contents/MacOS/SMCProcessor 566 | BundlePath 567 | SMCProcessor.kext 568 | 569 | 570 | Comment 571 | 572 | MaxKernel 573 | 574 | PlistPath 575 | Contents/Info.plist 576 | Enabled 577 | 578 | MinKernel 579 | 580 | ExecutablePath 581 | Contents/MacOS/SMCSuperIO 582 | BundlePath 583 | SMCSuperIO.kext 584 | 585 | 586 | Block 587 | 588 | Emulate 589 | 590 | Cpuid1Data 591 | 592 | Cpuid1Mask 593 | 594 | DummyPowerManagement 595 | 596 | MaxKernel 597 | 598 | MinKernel 599 | 600 | 601 | Patch 602 | 603 | Quirks 604 | 605 | AppleCpuPmCfgLock 606 | 607 | AppleXcpmCfgLock 608 | 609 | AppleXcpmExtraMsrs 610 | 611 | AppleXcpmForceBoost 612 | 613 | CustomSMBIOSGuid 614 | 615 | DisableIoMapper 616 | 617 | DisableRtcChecksum 618 | 619 | ExternalDiskIcons 620 | 621 | IncreasePciBarSize 622 | 623 | LapicKernelPanic 624 | 625 | PanicNoKextDump 626 | 627 | PowerTimeoutKernelPanic 628 | 629 | ThirdPartyDrives 630 | 631 | XhciPortLimit 632 | 633 | DisableLinkeditJettison 634 | 635 | ExtendBTFeatureFlags 636 | 637 | ForceSecureBootScheme 638 | 639 | LegacyCommpage 640 | 641 | SetApfsTrimTimeout 642 | -1 643 | ProvideCurrentCpuInfo 644 | 645 | 646 | Force 647 | 648 | Scheme 649 | 650 | FuzzyMatch 651 | 652 | KernelArch 653 | x86_64 654 | KernelCache 655 | Auto 656 | CustomKernel 657 | 658 | 659 | 660 | Misc 661 | 662 | BlessOverride 663 | 664 | Boot 665 | 666 | ConsoleAttributes 667 | 0 668 | HibernateMode 669 | None 670 | HideAuxiliary 671 | 672 | PickerAttributes 673 | 17 674 | PickerAudioAssist 675 | 676 | PickerMode 677 | External 678 | PollAppleHotKeys 679 | 680 | ShowPicker 681 | 682 | TakeoffDelay 683 | 0 684 | Timeout 685 | 3 686 | PickerVariant 687 | Auto 688 | LauncherOption 689 | Full 690 | LauncherPath 691 | Default 692 | 693 | Debug 694 | 695 | AppleDebug 696 | 697 | ApplePanic 698 | 699 | DisableWatchDog 700 | 701 | DisplayDelay 702 | 0 703 | DisplayLevel 704 | 2147483650 705 | SerialInit 706 | 707 | SysReport 708 | 709 | Target 710 | 67 711 | 712 | Entries 713 | 714 | 715 | Arguments 716 | 717 | Auxiliary 718 | 719 | Comment 720 | Not signed for security reasons 721 | Enabled 722 | 723 | Name 724 | CustomOS 725 | Path 726 | PciRoot(0x0)/Pci(0x1,0x1)/Pci(0x0,0x0)/NVMe(0x1,11-22-33-44-55-66-77-88)/HD(1,GPT,00000000-0000-0000-0000-000000000000,0x800,0x64000)/\EFI\BOOT\BOOTX64.EFI 727 | TextMode 728 | 729 | Flavour 730 | Auto 731 | 732 | 733 | Security 734 | 735 | AllowNvramReset 736 | 737 | AllowSetDefault 738 | 739 | AuthRestart 740 | 741 | ExposeSensitiveData 742 | 6 743 | HaltLevel 744 | 2147483648 745 | ScanPolicy 746 | 0 747 | Vault 748 | Optional 749 | SecureBootModel 750 | Disabled 751 | ApECID 752 | 0 753 | BlacklistAppleUpdate 754 | 755 | DmgLoading 756 | Signed 757 | EnablePassword 758 | 759 | PasswordHash 760 | 761 | PasswordSalt 762 | 763 | AllowToggleSip 764 | 765 | 766 | Tools 767 | 768 | 769 | Comment 770 | OpenShell.efi 771 | Name 772 | OpenShell.efi 773 | Enabled 774 | 775 | Arguments 776 | 777 | Path 778 | OpenShell.efi 779 | Auxiliary 780 | 781 | RealPath 782 | 783 | TextMode 784 | 785 | Flavour 786 | OpenShell:UEFIShell:Shell 787 | 788 | 789 | 790 | NVRAM 791 | 792 | Add 793 | 794 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 795 | 796 | DefaultBackgroundColor 797 | AAAAAA== 798 | 799 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 800 | 801 | rtc-blacklist 802 | 803 | 804 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 805 | 806 | SystemAudioVolume 807 | Rg== 808 | boot-args 809 | -v debug=0x100 keepsyms=1 npci=0x2000 slide=8 alcid=12 810 | run-efi-updater 811 | No 812 | csr-active-config 813 | AAAAAA== 814 | prev-lang:kbd 815 | en-GB:0 816 | ForceDisplayRotationInEFI 817 | 0 818 | 819 | 820 | Delete 821 | 822 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 823 | 824 | UIScale 825 | DefaultBackgroundColor 826 | 827 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 828 | 829 | rtc-blacklist 830 | 831 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 832 | 833 | boot-args 834 | 835 | 836 | LegacyEnable 837 | 838 | LegacyOverwrite 839 | 840 | LegacySchema 841 | 842 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 843 | 844 | EFILoginHiDPI 845 | EFIBluetoothDelay 846 | LocationServicesEnabled 847 | SystemAudioVolume 848 | SystemAudioVolumeDB 849 | SystemAudioVolumeSaved 850 | bluetoothActiveControllerInfo 851 | bluetoothInternalControllerInfo 852 | flagstate 853 | fmm-computer-name 854 | nvda_drv 855 | prev-lang:kbd 856 | 857 | 8BE4DF61-93CA-11D2-AA0D-00E098032B8C 858 | 859 | Boot0080 860 | Boot0081 861 | Boot0082 862 | BootNext 863 | BootOrder 864 | 865 | 866 | WriteFlash 867 | 868 | 869 | PlatformInfo 870 | 871 | Automatic 872 | 873 | Generic 874 | 875 | MLB 876 | 877 | ROM 878 | 879 | SpoofVendor 880 | 881 | SystemProductName 882 | MacPro6,1 883 | SystemSerialNumber 884 | 885 | SystemUUID 886 | 887 | MaxBIOSVersion 888 | 889 | ProcessorType 890 | 0 891 | SystemMemoryStatus 892 | Auto 893 | AdviseFeatures 894 | 895 | 896 | UpdateDataHub 897 | 898 | UpdateNVRAM 899 | 900 | UpdateSMBIOS 901 | 902 | UpdateSMBIOSMode 903 | Create 904 | CustomMemory 905 | 906 | UseRawUuidEncoding 907 | 908 | 909 | UEFI 910 | 911 | APFS 912 | 913 | EnableJumpstart 914 | 915 | GlobalConnect 916 | 917 | HideVerbose 918 | 919 | JumpstartHotPlug 920 | 921 | MinDate 922 | 0 923 | MinVersion 924 | 0 925 | 926 | Audio 927 | 928 | AudioCodec 929 | 0 930 | AudioDevice 931 | PciRoot(0x0)/Pci(0x1b,0x0) 932 | AudioOut 933 | 0 934 | AudioSupport 935 | 936 | MinimumVolume 937 | 20 938 | PlayChime 939 | Auto 940 | VolumeAmplifier 941 | 0 942 | SetupDelay 943 | 0 944 | ResetTrafficClass 945 | 946 | 947 | ConnectDrivers 948 | 949 | Drivers 950 | 951 | 952 | Enabled 953 | 954 | Path 955 | HfsPlusLegacy.efi 956 | Arguments 957 | 958 | Comment 959 | HfsPlusLegacy.efi 960 | 961 | 962 | Enabled 963 | 964 | Path 965 | OpenRuntime.efi 966 | Arguments 967 | 968 | Comment 969 | OpenRuntime.efi 970 | 971 | 972 | Input 973 | 974 | KeyFiltering 975 | 976 | KeyForgetThreshold 977 | 5 978 | KeySupport 979 | 980 | KeySupportMode 981 | Auto 982 | KeySwap 983 | 984 | PointerSupport 985 | 986 | PointerSupportMode 987 | ASUS 988 | TimerResolution 989 | 50000 990 | 991 | Output 992 | 993 | ClearScreenOnModeSwitch 994 | 995 | ConsoleMode 996 | 997 | DirectGopRendering 998 | 999 | IgnoreTextInGraphics 1000 | 1001 | ProvideConsoleGop 1002 | 1003 | ReconnectOnResChange 1004 | 1005 | ReplaceTabWithSpace 1006 | 1007 | Resolution 1008 | Max 1009 | SanitiseClearScreen 1010 | 1011 | TextRenderer 1012 | BuiltinGraphics 1013 | UgaPassThrough 1014 | 1015 | ForceResolution 1016 | 1017 | GopPassThrough 1018 | Disabled 1019 | 1020 | ProtocolOverrides 1021 | 1022 | AppleAudio 1023 | 1024 | AppleBootPolicy 1025 | 1026 | AppleDebugLog 1027 | 1028 | AppleFramebufferInfo 1029 | 1030 | AppleImageConversion 1031 | 1032 | AppleKeyMap 1033 | 1034 | AppleRtcRam 1035 | 1036 | AppleSmcIo 1037 | 1038 | AppleUserInterfaceTheme 1039 | 1040 | DataHub 1041 | 1042 | DeviceProperties 1043 | 1044 | FirmwareVolume 1045 | 1046 | HashServices 1047 | 1048 | OSInfo 1049 | 1050 | UnicodeCollation 1051 | 1052 | AppleSecureBoot 1053 | 1054 | AppleImg4Verification 1055 | 1056 | AppleEg2Info 1057 | 1058 | 1059 | Quirks 1060 | 1061 | ExitBootServicesDelay 1062 | 0 1063 | IgnoreInvalidFlexRatio 1064 | 1065 | ReleaseUsbOwnership 1066 | 1067 | RequestBootVarRouting 1068 | 1069 | TscSyncTimeout 1070 | 0 1071 | UnblockFsConnect 1072 | 1073 | DisableSecurityPolicy 1074 | 1075 | ActivateHpetSupport 1076 | 1077 | EnableVectorAcceleration 1078 | 1079 | ForgeUefiSupport 1080 | 1081 | ReloadOptionRoms 1082 | 1083 | ResizeGpuBars 1084 | -1 1085 | ForceOcWriteFlash 1086 | 1087 | 1088 | ReservedMemory 1089 | 1090 | AppleInput 1091 | 1092 | AppleEvent 1093 | Builtin 1094 | CustomDelays 1095 | 1096 | KeyInitialDelay 1097 | 0 1098 | KeySubsequentDelay 1099 | 5 1100 | PointerSpeedDiv 1101 | 1 1102 | PointerSpeedMul 1103 | 1 1104 | GraphicsInputMirroring 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hackintosh-HP-Z420-OpenCore 2 | ### Do not just copy this EFI and expect it to work 3 | Hackintosh EFI for HP Z420 Workstation - Tested on Catalina and Big Sur 4 | # Setup 5 | This EFI is setup for debugging, it uses the debug version of OpenCore, and has logging/verbose enabled. 6 | ### Required BIOS Settings 7 | Version 3.96 (Latest) 8 | SATA Mode - AHCI 9 | Enable Legacy ACPI CPU Tables 10 | ### Create USB Installer 11 | https://dortania.github.io/OpenCore-Install-Guide/installer-guide/ - Follow this guide to add macOS to the USB. 12 | Mount the EFI Partition. 13 | Copy the EFI files from the release zip file into your EFI partition. 14 | You will need to generate a MacPro6,1 SMBIOS using [GenSMBIOS](https://github.com/corpnewt/GenSMBIOS). 15 | For any GPU other than the NVidia Quadro K4000 you can remove the SSDT-GPU-SPOOF.aml, unless it is natively unsupported. In this case, you will have to edit the SSDT 16 | Follow [This Guide](https://dortania.github.io/Getting-Started-With-ACPI/Universal/spoof.html) to edit it. Do not change the Device ID, but you need to change the Model and PCIe Root. (Explained in the guide) 17 | Boot the USB installer and install macOS. 18 | ### Post Install 19 | https://dortania.github.io/OpenCore-Post-Install/ - Steps are outlined in this guide. 20 | Mount your drives EFI partition and copy the contents of your USB installer's EFI partition to your drives EFI Partition. 21 | Convert fron the debug version of opencore to the release version, cleanup logging etc. Follow [This Guide](https://dortania.github.io/OpenCore-Post-Install/cosmetic/verbose.html#macos-decluttering). 22 | Follow any other steps you would like to complete your hackintosh. 23 | ### Audio 24 | I have now managed to get Audio fully working with AppleALC. This means that audio will work on MacOS versions above 11.3. 25 | Credit to @BillDH2k for finding the IRQ conflicts issue and a solution. 26 | ### Important when Updating to OC 0.6.6 27 | If you have previously installed this with OpenCore 0.6.5 or older and update to OpenCore 0.6.6, there are a few thing you will need to do. (If are are doing a fresh installation ignore this) 28 | As bootstrap has been removed you will not be able to boot OC 0.6.6 without resetting your NVRAM as it will try to boot bootstap. 29 | Before you first boot with 0.6.6, reset your NVRAM from the opencore boot picker(If the option doesn't show up, press the spacebar), then for the first time you will have to boot the `EFI/BOOT/BOOTx64.efi` option - after firdt boot it should be back to normal. See [this page for more info](https://dortania.github.io/OpenCore-Post-Install/multiboot/bootstrap.html#updating-bootstrap-in-0-6-6) 30 | If you use OpenCanopy (Graphical boot picker) you will also have to update your Resources folder, which can be done from [here](https://github.com/acidanthera/OcBinaryData). 31 | # My System 32 | Intel Xeon E5-1650 v2 CPU 33 | Nvidia Quadro K4000 GPU 34 | 32GB ECC DDR3 35 | # Issues 36 | USB3 - The Z420 uses a Texas Instruments USB 3 Controller which is unsupported in MacOS - I have solved this by using [This PCIe expansion card](https://www.amazon.co.uk/gp/product/B00JEVLEFQ/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&psc=1) which can fix the two front pannel USB3 ports and give two extra USB3 ports in the rear. The Unsupported USB 3.0 controller means that your Install USB must be connected to a USB 2.0 port. If it is connected to a USB 3.0 port you will get the error `Still waiting for root device` 37 | DRM - My GPU is incompatable so DRM will never work for me, most GPU's have support, see [this page]() 38 | Sleep doesn't work - you need to disable it inside of macOS. 39 | If you have any other issues, feel free to open a GitHub issue and I will do my best to help! 40 | --------------------------------------------------------------------------------