├── .gitignore ├── EFI ├── BOOT │ ├── .empty │ └── BOOTX64.efi └── CLOVER │ ├── 94360CS2.txt │ ├── CLOVERX64.efi │ ├── OEM │ └── SystemProductName │ │ ├── UEFI │ │ └── config-sample.plist │ │ └── config-sample.plist │ ├── ROM │ └── .empty │ ├── config.plist │ ├── drivers │ └── UEFI │ │ ├── ApfsDriverLoader.efi │ │ ├── AptioMemoryFix.efi │ │ ├── AudioDxe.efi │ │ ├── DataHubDxe.efi │ │ ├── EmuVariableUefi.efi │ │ ├── FSInject.efi │ │ ├── VBoxHfs.efi │ │ └── VirtualSmc.efi │ ├── kexts │ └── Other │ │ ├── .empty │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ │ ├── IntelMausiEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausiEthernet │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ │ ├── USBPorts.kext │ │ └── Contents │ │ │ └── Info.plist │ │ ├── USBPower.kext │ │ └── Contents │ │ │ └── Info.plist │ │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ │ ├── VoodooPS2Controller.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ │ ├── VoodooPS2Mouse.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Mouse │ │ │ └── VoodooPS2Trackpad.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Trackpad │ │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── misc │ └── .empty │ ├── themes │ └── Bootcamp4k │ │ ├── Selection_big.png │ │ ├── background.png │ │ ├── font.png │ │ ├── font_mac_default2.png │ │ ├── icons │ │ ├── cd.icns │ │ ├── func_about.png │ │ ├── func_clover.png │ │ ├── func_help.png │ │ ├── func_options.png │ │ ├── func_reset.png │ │ ├── func_shutdown.png │ │ ├── logo.png │ │ ├── os_cap.icns │ │ ├── os_clover.icns │ │ ├── os_cougar.icns │ │ ├── os_freebsd.icns │ │ ├── os_legacy.icns │ │ ├── os_linux.icns │ │ ├── os_lion.icns │ │ ├── os_mac.icns │ │ ├── os_mav.icns │ │ ├── os_recovery.icns │ │ ├── os_redhat.icns │ │ ├── os_sierra.icns │ │ ├── os_snow.icns │ │ ├── os_ubuntu.icns │ │ ├── os_unknown.icns │ │ ├── os_vista.icns │ │ ├── os_win.icns │ │ ├── os_win10.icns │ │ ├── os_win8.icns │ │ ├── os_yos.icns │ │ ├── pointer.png │ │ ├── tool_shell.png │ │ ├── vol_clover.icns │ │ ├── vol_external.icns │ │ ├── vol_internal.icns │ │ ├── vol_internal_ext3.icns │ │ ├── vol_internal_hfs.icns │ │ ├── vol_internal_ntfs.icns │ │ ├── vol_optical.icns │ │ └── vol_recovery.icns │ │ ├── logo.png │ │ ├── logo_about │ │ └── logo_about_000.png │ │ ├── logo_help │ │ └── logo_help_000.png │ │ ├── logo_options │ │ └── logo_options_000.png │ │ ├── logo_wifi │ │ ├── logo_wifi_000.png │ │ ├── logo_wifi_001.png │ │ ├── logo_wifi_002.png │ │ ├── logo_wifi_003.png │ │ └── logo_wifi_004.png │ │ ├── screenshot.png │ │ ├── scrollbar │ │ ├── bar_end.png │ │ ├── bar_fill.png │ │ ├── bar_start.png │ │ ├── down_button.png │ │ ├── scroll_end.png │ │ ├── scroll_fill.png │ │ ├── scroll_start.png │ │ └── up_button.png │ │ ├── selection_small.png │ │ └── theme.plist │ └── tools │ ├── Shell.inf │ ├── Shell32.efi │ ├── Shell64.efi │ ├── Shell64U.efi │ ├── bdmesg.efi │ ├── libaistat.dylib │ ├── rtcread │ ├── smc │ └── smcread ├── LICENSE ├── README.md └── ScreenShot-10.15.5.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /EFI/BOOT/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/94360CS2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/94360CS2.txt -------------------------------------------------------------------------------- /EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /EFI/CLOVER/ROM/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ACPI 6 | 7 | AutoMerge 8 | 9 | DSDT 10 | 11 | #DropOEM_DSM 12 | 13 | ATI 14 | 15 | Firewire 16 | 17 | HDA 18 | 19 | HDMI 20 | 21 | IDE 22 | 23 | IntelGFX 24 | 25 | LAN 26 | 27 | LPC 28 | 29 | NVidia 30 | 31 | SATA 32 | 33 | SmBUS 34 | 35 | USB 36 | 37 | WIFI 38 | 39 | 40 | #Rtc8Allowed 41 | 42 | #SuspendOverride 43 | 44 | Debug 45 | 46 | Fixes 47 | 48 | AddDTGP 49 | 50 | AddHDMI 51 | 52 | AddIMEI 53 | 54 | AddMCHC 55 | 56 | AddPNLF 57 | 58 | DeleteUnused 59 | 60 | FakeLPC 61 | 62 | FixACST 63 | 64 | FixADP1 65 | 66 | FixAirport 67 | 68 | FixDarwin 69 | 70 | FixDarwin7 71 | 72 | FixDisplay 73 | 74 | FixFirewire 75 | 76 | FixHDA 77 | 78 | FixHPET 79 | 80 | FixIDE 81 | 82 | FixIPIC 83 | 84 | FixIntelGfx 85 | 86 | FixLAN 87 | 88 | FixMutex 89 | 90 | FixRTC 91 | 92 | FixRegions 93 | 94 | FixS3D 95 | 96 | FixSATA 97 | 98 | FixSBUS 99 | 100 | FixShutdown 101 | 102 | FixTMR 103 | 104 | FixUSB 105 | 106 | FixWAK 107 | 108 | 109 | Name 110 | DSDT.aml 111 | Patches 112 | 113 | 114 | Comment 115 | change GFX0 to IGPU 116 | Disabled 117 | 118 | Find 119 | R0ZYMA== 120 | Replace 121 | SUdQVQ== 122 | 123 | 124 | Comment 125 | change HECI to IMEI 126 | Disabled 127 | 128 | Find 129 | SEVDSQ== 130 | Replace 131 | SU1FSQ== 132 | 133 | 134 | Comment 135 | change SAT0 to SATA 136 | Disabled 137 | 138 | Find 139 | U0FUMA== 140 | Replace 141 | U0FUQQ== 142 | 143 | 144 | Comment 145 | change HDAS to HDEF 146 | Disabled 147 | 148 | Find 149 | SERBUw== 150 | Replace 151 | SERFRg== 152 | 153 | 154 | Comment 155 | change EHC1 to EH01 156 | Disabled 157 | 158 | Find 159 | RUhDMQ== 160 | Replace 161 | RUgwMQ== 162 | 163 | 164 | Comment 165 | change EHC2 to EH02 166 | Disabled 167 | 168 | Find 169 | RUhDMg== 170 | Replace 171 | RUgwMg== 172 | 173 | 174 | Comment 175 | change XHCI to XHC 176 | Disabled 177 | 178 | Find 179 | WEhDSQ== 180 | Replace 181 | WEhDXw== 182 | 183 | 184 | Comment 185 | Device RTC BUG 186 | Disabled 187 | 188 | Find 189 | oAqTU1RBUwE= 190 | Replace 191 | oAqRCv8L//8= 192 | 193 | 194 | ReuseFFFF 195 | 196 | 197 | DisableASPM 198 | 199 | DropTables 200 | 201 | 202 | Signature 203 | DMAR 204 | 205 | 206 | FixHeaders 207 | 208 | FixMCFG 209 | 210 | HaltEnabler 211 | 212 | SSDT 213 | 214 | #C3Latency 215 | 0x03E7 216 | #DoubleFirstState 217 | 218 | #DropOem 219 | 220 | #EnableC2 221 | 222 | #EnableC4 223 | 224 | #EnableC6 225 | 226 | #EnableC7 227 | 228 | #MaxMultiplier 229 | 12 230 | #MinMultiplier 231 | 8 232 | #NoDynamicExtract 233 | 234 | #NoOemTableId 235 | 236 | #PLimitDict 237 | 1 238 | #PluginType 239 | 0 240 | #UnderVoltStep 241 | 1 242 | #UseSystemIO 243 | 244 | Generate 245 | 246 | #APLF 247 | 248 | #APSN 249 | 250 | #PluginType 251 | 252 | CStates 253 | 254 | PStates 255 | 256 | PluginType 257 | 258 | 259 | 260 | 261 | Boot 262 | 263 | Arguments 264 | darkwake=0 -v 265 | Debug 266 | 267 | DisableCloverHotkeys 268 | 269 | Legacy 270 | PBR 271 | NeverDoRecovery 272 | 273 | NeverHibernate 274 | 275 | RtcHibernateAware 276 | 277 | SignatureFixup 278 | 279 | SkipHibernateTimeout 280 | 281 | StrictHibernate 282 | 283 | Timeout 284 | 10 285 | 286 | CPU 287 | 288 | HWPEnable 289 | 290 | 291 | Devices 292 | 293 | #AddProperties 294 | 295 | 296 | Device 297 | IntelGFX 298 | Disabled 299 | 300 | Key 301 | framebuffer-patch-enable 302 | Value 303 | AQAAAA== 304 | 305 | 306 | Device 307 | IntelGFX 308 | Disabled 309 | 310 | Key 311 | framebuffer-stolenmem 312 | Value 313 | AAAwAQ== 314 | 315 | 316 | Device 317 | IntelGFX 318 | Disabled 319 | 320 | Key 321 | framebuffer-fbmem 322 | Value 323 | AACQAA== 324 | 325 | 326 | Device 327 | IntelGFX 328 | Disabled 329 | 330 | Key 331 | framebuffer-unifiedmem 332 | Value 333 | AAAAgA== 334 | 335 | 336 | Audio 337 | 338 | AFGLowPowerState 339 | 340 | ResetHDA 341 | 342 | 343 | LANInjection 344 | 345 | Properties 346 | 347 | PciRoot(0x0)/Pci(0x1f,0x3) 348 | 349 | device-id 350 | cKEAAA== 351 | layout-id 352 | HAAAAA== 353 | 354 | PciRoot(0x0)/Pci(0x2,0x0) 355 | 356 | AAPL,ig-platform-id 357 | BwCbPg== 358 | device-id 359 | mz4AAA== 360 | enable-hdmi20 361 | AQAAAA== 362 | framebuffer-con0-busid 363 | AgAAAA== 364 | framebuffer-con0-enable 365 | AQAAAA== 366 | framebuffer-con0-flags 367 | xwMAAA== 368 | framebuffer-con0-index 369 | AgAAAA== 370 | framebuffer-con0-pipe 371 | EgAAAA== 372 | framebuffer-con0-type 373 | AAgAAA== 374 | framebuffer-con1-busid 375 | BgAAAA== 376 | framebuffer-con1-enable 377 | AQAAAA== 378 | framebuffer-con1-flags 379 | xwMAAA== 380 | framebuffer-con1-index 381 | /////w== 382 | framebuffer-con1-pipe 383 | EgAAAA== 384 | framebuffer-con1-type 385 | EAAAAA== 386 | framebuffer-con2-busid 387 | AQAAAA== 388 | framebuffer-con2-enable 389 | AQAAAA== 390 | framebuffer-con2-flags 391 | xwMAAA== 392 | framebuffer-con2-index 393 | AQAAAA== 394 | framebuffer-con2-pipe 395 | EgAAAA== 396 | framebuffer-con2-type 397 | AAQAAA== 398 | framebuffer-con3-busid 399 | AAAAAA== 400 | framebuffer-con3-enable 401 | AQAAAA== 402 | framebuffer-con3-flags 403 | IAAAAA== 404 | framebuffer-con3-index 405 | /////w== 406 | framebuffer-con3-pipe 407 | AAAAAA== 408 | framebuffer-con3-type 409 | AQAAAA== 410 | framebuffer-patch-enable 411 | AQAAAA== 412 | framebuffer-unifiedmem 413 | AAAAgA== 414 | 415 | 416 | USB 417 | 418 | AddClockID 419 | 420 | FixOwnership 421 | 422 | HighCurrent 423 | 424 | Inject 425 | 426 | 427 | UseIntelHDMI 428 | 429 | 430 | GUI 431 | 432 | Language 433 | en:0 434 | Scan 435 | 436 | ShowOptimus 437 | 438 | Theme 439 | Bootcamp4k 440 | 441 | Graphics 442 | 443 | Inject 444 | 445 | Intel 446 | 447 | 448 | 449 | KernelAndKextPatches 450 | 451 | AppleIntelCPUPM 452 | 453 | Debug 454 | 455 | DellSMBIOSPatch 456 | 457 | KernelCpu 458 | 459 | KernelLapic 460 | 461 | KernelPm 462 | 463 | KernelXCPM 464 | 465 | 466 | RtVariables 467 | 468 | BooterConfig 469 | 0x28 470 | CsrActiveConfig 471 | 0x3E7 472 | MLB 473 | C02032109R5DC771H 474 | ROM 475 | dfvnkq4i 476 | 477 | SMBIOS 478 | 479 | BiosReleaseDate 480 | 09/17/2018 481 | BiosVendor 482 | Apple Inc. 483 | BiosVersion 484 | IM181.88Z.F000.B00.1809171524 485 | Board-ID 486 | Mac-4B682C642B45593E 487 | BoardManufacturer 488 | Apple Inc. 489 | BoardSerialNumber 490 | C07916902QXKXPGFB 491 | BoardType 492 | 10 493 | BoardVersion 494 | 1.0 495 | ChassisAssetTag 496 | iMac-Aluminum 497 | ChassisManufacturer 498 | Apple Inc. 499 | ChassisType 500 | 0x09 501 | EfiVersion 502 | 220.207.27.0.0 503 | Family 504 | Mac mini 505 | FirmwareFeatures 506 | 0xFC0FE137 507 | FirmwareFeaturesMask 508 | 0xFF1FFF3F 509 | LocationInChassis 510 | Part Component 511 | Manufacturer 512 | Apple Inc. 513 | Mobile 514 | 515 | PlatformFeature 516 | 0x00 517 | ProductName 518 | Macmini8,1 519 | SerialNumber 520 | C07YL2YLJYVX 521 | SmUUID 522 | 86F54ADF-1F85-40C4-B38C-2BDCC1A77059 523 | Version 524 | 1.0 525 | 526 | SystemParameters 527 | 528 | InjectKexts 529 | Detect 530 | InjectSystemID 531 | 532 | 533 | 534 | -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/AudioDxe.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/DataHubDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/DataHubDxe.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/EmuVariableUefi.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/EmuVariableUefi.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/VBoxHfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/VBoxHfs.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/drivers/UEFI/VirtualSmc.efi -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18B75 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.4.1d1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.4.1d1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 15E60 37 | DTSDKName 38 | macosx10.11 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | IntelMausi 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.IntelMausiEthernet 49 | Driver_Version 50 | 2.4.1d1 51 | IOClass 52 | IntelMausi 53 | IOPCIMatch 54 | 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 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOPCIDevice 59 | enableCSO6 60 | 61 | enableTSO4 62 | 63 | enableTSO6 64 | 65 | maxIntrRate 66 | 7000 67 | 68 | 69 | NSHumanReadableCopyright 70 | Copyright © 2014 Laura Müller. All rights reserved. 71 | OSBundleLibraries 72 | 73 | com.apple.iokit.IONetworkingFamily 74 | 1.5.0 75 | com.apple.iokit.IOPCIFamily 76 | 1.7 77 | com.apple.kpi.bsd 78 | 8.10.0 79 | com.apple.kpi.iokit 80 | 8.10.0 81 | com.apple.kpi.libkern 82 | 8.10.0 83 | com.apple.kpi.mach 84 | 8.10.0 85 | 86 | OSBundleRequired 87 | Network-Root 88 | 89 | 90 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.4.5 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.5 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | IOKit 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2020 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.1.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | 12.0.0 80 | com.apple.kpi.dsep 81 | 12.0.0 82 | com.apple.kpi.iokit 83 | 12.0.0 84 | com.apple.kpi.libkern 85 | 12.0.0 86 | com.apple.kpi.mach 87 | 12.0.0 88 | com.apple.kpi.unsupported 89 | 12.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.1.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | 12.0.0 75 | com.apple.kpi.dsep 76 | 12.0.0 77 | com.apple.kpi.iokit 78 | 12.0.0 79 | com.apple.kpi.libkern 80 | 12.0.0 81 | com.apple.kpi.mach 82 | 12.0.0 83 | com.apple.kpi.unsupported 84 | 12.0.0 85 | 86 | OSBundleRequired 87 | Root 88 | 89 | 90 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | 1.0 Copyright © 2018 Headsoft. All rights reserved. 9 | CFBundleIdentifier 10 | com.Headsoft.USBPorts 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBPorts 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | Macmini8,1-XHC 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBMergeNub 29 | IOClass 30 | AppleUSBMergeNub 31 | IONameMatch 32 | XHC 33 | IOProbeScore 34 | 5000 35 | IOProviderClass 36 | AppleUSBXHCIPCI 37 | IOProviderMergeProperties 38 | 39 | kUSBSleepPortCurrentLimit 40 | 2100 41 | kUSBSleepPowerSupply 42 | 3600 43 | kUSBWakePortCurrentLimit 44 | 2100 45 | kUSBWakePowerSupply 46 | 5200 47 | port-count 48 | 49 | FAAAAA== 50 | 51 | ports 52 | 53 | HS01 54 | 55 | UsbConnector 56 | 10 57 | port 58 | 59 | AQAAAA== 60 | 61 | 62 | HS02 63 | 64 | UsbConnector 65 | 10 66 | port 67 | 68 | AgAAAA== 69 | 70 | 71 | HS03 72 | 73 | DevSpeed 74 | 1 75 | Speed 76 | 0 77 | UsbConnector 78 | 3 79 | port 80 | 81 | AwAAAA== 82 | 83 | 84 | HS04 85 | 86 | DevSpeed 87 | 1 88 | Speed 89 | 0 90 | UsbConnector 91 | 3 92 | port 93 | 94 | BAAAAA== 95 | 96 | 97 | HS05 98 | 99 | DevSpeed 100 | 1 101 | Speed 102 | 0 103 | UsbConnector 104 | 0 105 | port 106 | 107 | BQAAAA== 108 | 109 | 110 | HS06 111 | 112 | UsbConnector 113 | 0 114 | port 115 | 116 | BgAAAA== 117 | 118 | 119 | HS07 120 | 121 | UsbConnector 122 | 0 123 | port 124 | 125 | BwAAAA== 126 | 127 | 128 | HS14 129 | 130 | DevSpeed 131 | 1 132 | Speed 133 | 0 134 | UsbConnector 135 | 255 136 | port 137 | 138 | DgAAAA== 139 | 140 | 141 | SS01 142 | 143 | UsbConnector 144 | 10 145 | port 146 | 147 | EQAAAA== 148 | 149 | 150 | SS02 151 | 152 | UsbConnector 153 | 10 154 | port 155 | 156 | EgAAAA== 157 | 158 | 159 | SS03 160 | 161 | UsbConnector 162 | 3 163 | port 164 | 165 | EwAAAA== 166 | 167 | 168 | SS04 169 | 170 | UsbConnector 171 | 3 172 | port 173 | 174 | FAAAAA== 175 | 176 | 177 | 178 | 179 | model 180 | Macmini8,1 181 | 182 | 183 | OSBundleRequired 184 | Root 185 | 186 | 187 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBPower.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.dynamix.IOKitPersonalitiesPatch 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | IOKitPatches 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities_x86_64 22 | 23 | iMac19,1 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AppleUSBHostMergeProperties 27 | IOClass 28 | AppleUSBHostMergeProperties 29 | IOProviderClass 30 | AppleBusPowerController 31 | IOProviderMergeProperties 32 | 33 | kUSBSleepPortCurrentLimit 34 | 2100 35 | kUSBSleepPowerSupply 36 | 5100 37 | kUSBWakePortCurrentLimit 38 | 2100 39 | kUSBWakePowerSupply 40 | 5100 41 | 42 | model 43 | iMac19,1 44 | 45 | 46 | OSBundleRequired 47 | Root 48 | 49 | 50 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.1.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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.kpi.bsd 395 | 12.0.0 396 | com.apple.kpi.dsep 397 | 12.0.0 398 | com.apple.kpi.iokit 399 | 12.0.0 400 | com.apple.kpi.libkern 401 | 12.0.0 402 | com.apple.kpi.mach 403 | 12.0.0 404 | com.apple.kpi.unsupported 405 | 12.0.0 406 | 407 | OSBundleRequired 408 | Root 409 | 410 | 411 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 1.9.2, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.9.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.9.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | ACPI PS/2 Nub 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Controller 49 | FindMouseDelay 50 | 100 51 | IOClass 52 | AppleACPIPS2Nub 53 | IONameMatch 54 | 55 | PNP0303 56 | PNP030B 57 | PNP0320 58 | 59 | IOProviderClass 60 | IOACPIPlatformDevice 61 | MouseNameMatch 62 | 63 | PNP0F03 64 | PNP0F0B 65 | PNP0F0E 66 | PNP0F13 67 | 68 | 69 | ApplePS2Controller 70 | 71 | CFBundleIdentifier 72 | org.rehabman.voodoo.driver.PS2Controller 73 | IOClass 74 | ApplePS2Controller 75 | IONameMatch 76 | ps2controller 77 | IOProviderClass 78 | IOPlatformDevice 79 | Platform Profile 80 | 81 | Default 82 | 83 | MouseWakeFirst 84 | 85 | WakeDelay 86 | 10 87 | 88 | HPQOEM 89 | 90 | 1411 91 | ProBook 92 | 1619 93 | ProBook 94 | 161C 95 | ProBook 96 | 164F 97 | ProBook 98 | 167C 99 | ProBook 100 | 167E 101 | ProBook 102 | 1680 103 | ProBook 104 | 179B 105 | ProBook 106 | 179C 107 | ProBook 108 | 17A9 109 | ProBook 110 | 17F0 111 | ProBook 112 | 17F3 113 | ProBook 114 | 17F6 115 | ProBook 116 | 1942 117 | ProBook 118 | 1949 119 | ProBook 120 | 198F 121 | ProBook 122 | ProBook 123 | 124 | WakeDelay 125 | 0 126 | 127 | ProBook-102 128 | ProBook 129 | ProBook-87 130 | ProBook 131 | 132 | 133 | RM,deliverNotifications 134 | 135 | 136 | 137 | OSBundleCompatibleVersion 138 | 1.9.2 139 | OSBundleLibraries 140 | 141 | com.apple.iokit.IOACPIFamily 142 | 1.0.0d1 143 | com.apple.kpi.bsd 144 | 8.0.0 145 | com.apple.kpi.iokit 146 | 8.0.0 147 | com.apple.kpi.libkern 148 | 8.0.0 149 | com.apple.kpi.mach 150 | 8.0.0 151 | com.apple.kpi.unsupported 152 | 8.0.0 153 | 154 | OSBundleRequired 155 | Console 156 | Source Code 157 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 158 | 159 | 160 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleExecutable 8 | VoodooPS2Keyboard 9 | CFBundleGetInfoString 10 | 1.9.2, Copyright Apple Computer, Inc. 2000-2003, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Keyboard 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Keyboard 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.9.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.9.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | ApplePS2Keyboard 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Keyboard 49 | IOClass 50 | ApplePS2Keyboard 51 | IOProviderClass 52 | ApplePS2KeyboardDevice 53 | Platform Profile 54 | 55 | DELL 56 | 57 | Dell-Keys 58 | 59 | Breakless PS2 60 | 61 | e005 62 | e006 63 | 64 | Function Keys Special 65 | 66 | ;The following 12 items map Fn+fkeys to fkeys 67 | e020=3b 68 | e02e=3c 69 | e030=3d 70 | e022=3e 71 | ;Fn+f5 macro 72 | ;Fn+f6 macro 73 | ;Fn+f7 macro 74 | ;Fn+f8 macro 75 | ;Fn+f9 macro 76 | ;Fn+f10 no code 77 | e005=57 78 | e006=58 79 | ;The following 12 items map fkeys to Fn+fkeys 80 | 3b=e020 81 | 3c=e02e 82 | 3d=e030 83 | 3e=e022 84 | ;Fn+f5 macro 85 | ;Fn+f6 macro 86 | ;Fn+f7 macro 87 | ;Fn+f8 macro 88 | ;Fn+f9 macro 89 | ;Fn+f10 no code 90 | 57=e005 91 | 58=e006 92 | 93 | Function Keys Standard 94 | 95 | ;The following 12 items map Fn+fkeys to Fn+fkeys 96 | e020=e020 97 | e02e=e02e 98 | e030=e030 99 | e022=e022 100 | ;Fn+f5 macro 101 | ;Fn+f6 macro 102 | ;Fn+f7 macro 103 | ;Fn+f8 macro 104 | ;Fn+f9 macro 105 | ;Fn+f10 no code 106 | e005=e005 107 | e006=e006 108 | ;The following 12 items map fkeys to fkeys 109 | 3b=3b 110 | 3c=3c 111 | 3d=3d 112 | 3e=3e 113 | 3f=3f 114 | 40=40 115 | 41=41 116 | 42=42 117 | 43=43 118 | 44=44 119 | 57=57 120 | 58=58 121 | 122 | 123 | HSW-LPT 124 | Dell-Keys 125 | SNB-CPT 126 | 127 | ActionSwipeDown 128 | 63 d, 63 u 129 | ActionSwipeUp 130 | 61 d, 61 u 131 | Breakless PS2 132 | 133 | e01e;Touchpad Fn+f3 is breakless 134 | e06e;REVIEW: temporary for case that macro inversion does not work... 135 | 136 | Custom ADB Map 137 | 138 | e009=83;Dell Support to Launchpad 139 | e0f1=71;Call brightens up w RKA1 for special mode (was =90) 140 | e0f2=6b;Call brightens down w RKA2 for special mode (was =91) 141 | e06e=70;Map vidmirror key for special mode default is adb90 142 | 143 | Custom PS2 Map 144 | 145 | e01e=e037;Map tp disable to Fn+f3 146 | e037=e01e;Prevent PrntScr from triggering tp disable 147 | 148 | Function Keys Special 149 | 150 | ;The following 12 items map Fn+fkeys to fkeys 151 | e06e=3b 152 | e008=3c 153 | e01e=3d 154 | e005=3e 155 | e006=3f 156 | e00c=40 157 | ;Fn+f7 no dedicated macro 158 | e010=42 159 | e022=43 160 | e019=44 161 | e02e=57 162 | e030=58 163 | ;The following 12 items map fkeys to Fn+fkeys 164 | 3b=e06e;Map vidmirror key to f1 165 | 3c=e0f0;Map radio toggle action from EC query to f2 166 | 3d=e037;Map touchpad toggle button to f3 167 | 3e=e0f2;Map acpi RKA2 to f4 brightness down 168 | 3f=e0f1;Map acpi RKA1 to f5 brightness up 169 | 40=e0f3;Map acpi RKA3 to f6 keyboard backlight 170 | ;Fn+f7 no macro 171 | 42=e010 172 | 43=e022 173 | 44=e019 174 | 57=e02e 175 | 58=e030 176 | 177 | Function Keys Standard 178 | 179 | ;The following 12 items map Fn+fkeys to Fn+fkeys 180 | e06e=e06e;Fn+f1 macro translated 181 | e008=e008;Fn+f2 regular scancode and EC query call q8c 182 | e01e=e037;Fn+f3 regular scancode and EC controls LED 183 | e005=e005;Fn+f4 no ps2scancode and EC query call q81 184 | e006=e006;Fn+f5 no ps2scancode and EC query call q80 185 | e00c=e00c;Fn+f6 no ps2scancode and EC query call q8a 186 | ;Fn+f7 no macro just regular f key 187 | e010=e010; Fn+f8 regular scancode 188 | e022=e022; Fn+f9 regular scancode 189 | e019=e019;Fn+f10 regular scancode 190 | e02e=e02e;Fn+f11 regular scancode 191 | e030=e030;Fn+f12 regular scancode 192 | ;Fn+f13 is mute dedicated button that always produces e020 regardless of Fn 193 | ;The following 12 items map fkeys to fkeys 194 | 3b=3b 195 | 3c=3c 196 | 3d=3d 197 | 3e=3e 198 | 3f=3f 199 | 40=40 200 | 41=41 201 | 42=42 202 | 43=43 203 | 44=44 204 | 57=57 205 | 58=58 206 | 207 | Macro Inversion 208 | 209 | ;This section maps ps2 codes (packet format) received quickly (macros) into fake ps2 codes (packet format) 210 | ;Fn+F1 211 | 212 | //8CbgAAAAACWwEZ 213 | 214 | 215 | //8C7gAAAAAC2wGZ 216 | 217 | 218 | //8C7gAAAAABmQLb 219 | 220 | 221 | MaximumMacroTime 222 | 35000000 223 | Note-Author 224 | TimeWalker aka TimeWalker75a 225 | Note-Comment 226 | Keyboard Profile for DELL SandyBridge SecureCore Tiano based laptops (Vostro 3450 & 3750, Inspiron N4110, XPS L502x & L702x & L511z) 227 | 228 | WN09 229 | 230 | Breakless PS2 231 | 232 | e01b 233 | e008 234 | e01e 235 | e005 236 | e06e 237 | e006 238 | 239 | Custom ADB Map 240 | 241 | e01b=70 242 | e06e=83 243 | 244 | Custom PS2 Map 245 | 246 | 56=2b 247 | 29=56 248 | 2b=29 249 | e01e=e037 250 | e037=e01e 251 | 252 | 253 | WN09a 254 | 255 | Breakless PS2 256 | 257 | e01b 258 | e008 259 | e01e 260 | e005 261 | e06e 262 | e006 263 | 264 | Custom ADB Map 265 | 266 | e01b=70 267 | e06e=83 268 | 269 | Custom PS2 Map 270 | 271 | e01e=e037 272 | e037=e01e 273 | 274 | 275 | 276 | Default 277 | 278 | ActionSwipeDown 279 | 3b d, 37 d, 7d d, 7d u, 37 u, 3b u 280 | ActionSwipeLeft 281 | 3b d, 37 d, 7b d, 7b u, 37 u, 3b u 282 | ActionSwipeRight 283 | 3b d, 37 d, 7c d, 7c u, 37 u, 3b u 284 | ActionSwipeUp 285 | 3b d, 37 d, 7e d, 7e u, 37 u, 3b u 286 | Breakless PS2 287 | 288 | ;Items must be strings in the form of breaklessscan (in hex) 289 | 290 | Custom ADB Map 291 | 292 | ;Items must be strings in the form of scanfrom=adbto (in hex) 293 | 294 | Custom PS2 Map 295 | 296 | ;Items must be strings in the form of scanfrom=scanto (in hex) 297 | e027=0;disable discrete fnkeys toggle 298 | e028=0;disable discrete trackpad toggle 299 | 300 | HIDF12EjectDelay 301 | 250 302 | LogScanCodes 303 | 0 304 | Make Application key into Apple Fn key 305 | 306 | Make Application key into right windows 307 | 308 | Make right modifier keys into Hangul and Hanja 309 | 310 | SleepPressTime 311 | 0 312 | Swap capslock and left control 313 | 314 | Swap command and option 315 | 316 | Use ISO layout keyboard 317 | 318 | alt_handler_id 319 | 3 320 | 321 | HPQOEM 322 | 323 | 1411 324 | ProBook-102;ProBook 4520s 325 | 1619 326 | ProBook-87;ProBook 6560b 327 | 161C 328 | ProBook-87;ProBook 8460p 329 | 164F 330 | ProBook-87;ProBook 5330m 331 | 167C 332 | ProBook-102;ProBook 4530s 333 | 167E 334 | ProBook-102;ProBook 4330s 335 | 1680 336 | ProBook-102;ProBook 4230s 337 | 179B 338 | ProBook-87;ProBook 6470b 339 | 179C 340 | ProBook-87;ProBook 6470b 341 | 17A9 342 | ProBook-87;ProBook 8570b 343 | 17F0 344 | ProBook-102;ProBook 4340s 345 | 17F3 346 | ProBook-102;ProBook 4440s 347 | 17F6 348 | ProBook-102;ProBook 4540s 349 | 1942 350 | ProBook-87;ProBook 450s G1 351 | 1949 352 | ProBook-87;ProBook 450s G1 353 | 1962 354 | Haswell-Envy;HP Envy 15-j063cl 355 | 1963 356 | Haswell-Envy;HP Envy 15-j063cl 357 | 1965 358 | Haswell-Envy;HP Envy 17t-j100 359 | 1966 360 | Haswell-Envy;HP Envy 17t-j000 361 | 198F 362 | ProBook-87;ProBook 450s G0 363 | Haswell-Envy 364 | 365 | Custom ADB Map 366 | 367 | e019=42;next 368 | e010=4d;previous 369 | 370 | Custom PS2 Map 371 | 372 | e045=e037 373 | e0ab=0;bogus Fn+F2/F3 374 | 375 | 376 | ProBook-102 377 | 378 | Custom PS2 Map 379 | 380 | e005=0 381 | 382 | Function Keys Special 383 | 384 | ;The following 12 items map Fn+fkeys to fkeys 385 | e05f=3b 386 | e012=3c 387 | e017=3d 388 | e06e=3e 389 | e00a=3f 390 | e009=40 391 | e020=41 392 | e02e=42 393 | e030=43 394 | e010=44 395 | e022=57 396 | e019=58 397 | ;The following 12 items map fkeys to Fn+fkeys 398 | 3b=e05f 399 | 3c=e012 400 | 3d=e017 401 | 3e=e06e 402 | 3f=e00a 403 | 40=e009 404 | 41=e020 405 | 42=e02e 406 | 43=e030 407 | 44=e010 408 | 57=e022 409 | 58=e019 410 | 411 | Function Keys Standard 412 | 413 | ;The following 12 items map Fn+fkeys to Fn+fkeys 414 | e05f=e05f 415 | e012=e012 416 | e017=e017 417 | e06e=e06e 418 | e00a=e00a 419 | e009=e009 420 | e020=e020 421 | e02e=e02e 422 | e030=e030 423 | e010=e010 424 | e022=e022 425 | e019=e019 426 | ;The following 12 items map fkeys to fkeys 427 | 3b=3b 428 | 3c=3c 429 | 3d=3d 430 | 3e=3e 431 | 3f=3f 432 | 40=40 433 | 41=41 434 | 42=42 435 | 43=43 436 | 44=44 437 | 57=57 438 | 58=58 439 | 440 | SleepPressTime 441 | 3000 442 | 443 | ProBook-87 444 | 445 | Custom ADB Map 446 | 447 | 46=4d;scroll => Previous-track 448 | e045=34;pause => Play-Pause 449 | e052=42;insert => Next-track 450 | e046=92;break => Eject 451 | 452 | Custom PS2 Map 453 | 454 | e005=0 455 | 456 | Function Keys Special 457 | 458 | ;The following 8 items map Fn+fkeys to fkeys 459 | e05f=3d 460 | e06e=3e 461 | e02e=40 462 | e030=41 463 | e009=42 464 | e012=43 465 | e017=44 466 | e033=57 467 | ;The following 8 items map fkeys to Fn+fkeys 468 | 3d=e05f 469 | 3e=e06e 470 | 40=e02e 471 | 41=e030 472 | 42=e037 473 | 43=e012 474 | 44=e017 475 | 476 | Function Keys Standard 477 | 478 | ;The following 8 items map Fn+fkeys to Fn+fkeys 479 | e05f=e05f 480 | e06e=e06e 481 | e02e=e02e 482 | e030=e030 483 | e009=e009 484 | e012=e012 485 | e017=e017 486 | e033=e033 487 | ;The following 8 items map fkeys to fkeys 488 | 3d=3d 489 | 3e=3e 490 | 40=40 491 | 41=41 492 | 42=42 493 | 43=43 494 | 44=44 495 | 496 | SleepPressTime 497 | 3000 498 | 499 | 500 | Intel 501 | 502 | CALPELLA 503 | SamsungKeys 504 | SamsungKeys 505 | 506 | Breakless PS2 507 | 508 | e003 509 | e002 510 | e004 511 | e020 512 | ;e031 513 | e033 514 | e006 515 | e077 516 | e079 517 | e008 518 | e009 519 | 520 | Custom ADB Map 521 | 522 | e002=70 523 | e006=80 524 | e008=71 (was =90) 525 | e009=6b (was =91) 526 | 527 | Function Keys Special 528 | 529 | ;The following 12 items map Fn+fkeys to fkeys 530 | ;fn+f1 no code 531 | e003=3c 532 | ;fn+f3 weird code 533 | e002=3e 534 | e004=3f 535 | e020=40 536 | e031=41 537 | e033=42 538 | e006=43 539 | ;fn+f10 weird code 540 | ;fn+f11 no code 541 | ;fn+f12 scrolllock 542 | ;The following 12 items map fkeys to Fn+fkeys 543 | ;fn+f1 no code 544 | 3c=e003 545 | ;fn+f3 weird code 546 | 3e=e002 547 | 3f=e004 548 | 40=e020 549 | 41=e031 550 | 42=e033 551 | 43=e006 552 | ;fn+f10 weird code 553 | ;fn+f11 no code 554 | ;fn+f12 scrolllock 555 | 556 | Function Keys Standard 557 | 558 | ;The following 12 items map Fn+fkeys to Fn+fkeys 559 | ;fn+f1 no code 560 | e003=e003 561 | ;fn+f3 weird code 562 | e002=e002 563 | e004=e004 564 | e020=e020 565 | e031=e031 566 | e033=e033 567 | e006=e006 568 | ;fn+f10 weird code 569 | ;fn+f11 no code 570 | ;fn+f12 scrolllock 571 | ;The following 12 items map fkeys to fkeys 572 | 3b=3b 573 | 3c=3c 574 | 3d=3d 575 | 3e=3e 576 | 3f=3f 577 | 40=40 578 | 41=41 579 | 42=42 580 | 43=43 581 | 44=44 582 | 57=57 583 | 58=58 584 | 585 | 586 | 587 | SECCSD 588 | 589 | LH43STAR 590 | SamsungKeys 591 | SamsungKeys 592 | 593 | Breakless PS2 594 | 595 | e020 596 | e02e 597 | e030 598 | 599 | 600 | 601 | 602 | 603 | 604 | OSBundleLibraries 605 | 606 | com.apple.iokit.IOHIDSystem 607 | 1.1 608 | com.apple.kpi.bsd 609 | 8.0.0 610 | com.apple.kpi.iokit 611 | 8.0.0 612 | com.apple.kpi.libkern 613 | 8.0.0 614 | com.apple.kpi.mach 615 | 8.0.0 616 | com.apple.kpi.unsupported 617 | 8.0.0 618 | org.rehabman.voodoo.driver.PS2Controller 619 | 1.9.2 620 | 621 | OSBundleRequired 622 | Console 623 | Source Code 624 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 625 | 626 | 627 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 1.9.2, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.9.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.9.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | ApplePS2Mouse 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Mouse 49 | HIDPointerAccelerationType 50 | HIDTrackpadAcceleration 51 | HIDScrollAccelerationType 52 | HIDTrackpadScrollAcceleration 53 | IOClass 54 | ApplePS2Mouse 55 | IOProviderClass 56 | ApplePS2MouseDevice 57 | Platform Profile 58 | 59 | Default 60 | 61 | ActLikeTrackpad 62 | 63 | ButtonCount 64 | 3 65 | Darwin 16+ 66 | 67 | ApplePreferenceCapability 68 | 69 | ApplePreferenceIdentifier 70 | com.apple.AppleMultitouchTrackpad 71 | MT Built-in 72 | 73 | MTHIDDevice 74 | 75 | SupportsGestureScrolling 76 | 77 | TrackpadEmbedded 78 | 79 | TrackpadFourFingerGestures 80 | 81 | TrackpadSecondaryClickCorners 82 | 83 | TrackpadThreeFingerDrag 84 | 85 | 86 | DefaultResolution 87 | 240 88 | DisableDevice 89 | 90 | DisableLEDUpdating 91 | 92 | FakeMiddleButton 93 | 94 | ForceDefaultResolution 95 | 96 | ForceSetResolution 97 | 98 | MiddleClickTime 99 | 100000000 100 | MouseCount 101 | 0 102 | MouseYInverter 103 | 1 104 | ProcessBluetoothMouseStopsTrackpad 105 | 106 | ProcessUSBMouseStopsTrackpad 107 | 108 | QuietTimeAfterTyping 109 | 500000000 110 | ResolutionMode 111 | 3 112 | ScrollResolution 113 | 5 114 | ScrollYInverter 115 | 1 116 | TrackpadScroll 117 | 118 | WakeDelay 119 | 1000 120 | 121 | HPQOEM 122 | 123 | 1411 124 | ProBook 125 | 1619 126 | ProBook 127 | 161C 128 | ProBook 129 | 164F 130 | ProBook 131 | 167C 132 | ProBook 133 | 167E 134 | ProBook 135 | 1680 136 | ProBook 137 | 179B 138 | ProBook 139 | 179C 140 | ProBook 141 | 17A9 142 | ProBook 143 | 17F0 144 | ProBook 145 | 17F3 146 | ProBook 147 | 17F6 148 | ProBook 149 | 1942 150 | ProBook 151 | 1949 152 | ProBook 153 | 198F 154 | ProBook 155 | ProBook 156 | 157 | ActLikeTrackpad 158 | 159 | DisableDevice 160 | 161 | 162 | ProBook-102 163 | ProBook 164 | ProBook-87 165 | ProBook 166 | 167 | 168 | ProductID 169 | 547 170 | RM,deliverNotifications 171 | 172 | USBMouseStopsTrackpad 173 | 0 174 | VendorID 175 | 1452 176 | 177 | 178 | OSBundleLibraries 179 | 180 | com.apple.iokit.IOHIDFamily 181 | 1.0.0b1 182 | com.apple.kpi.iokit 183 | 9.0.0 184 | com.apple.kpi.libkern 185 | 9.0.0 186 | com.apple.kpi.mach 187 | 9.0.0 188 | org.rehabman.voodoo.driver.PS2Controller 189 | 1.9.2 190 | 191 | OSBundleRequired 192 | Console 193 | Source Code 194 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 195 | 196 | 197 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleExecutable 8 | VoodooPS2Trackpad 9 | CFBundleGetInfoString 10 | 1.9.2, Copyright Apple Computer, Inc. 2002-2003, mackerintel 2008, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Trackpad 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Trackpad 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.9.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.9.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | ALPS GlidePoint 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Trackpad 49 | IOClass 50 | ApplePS2ALPSGlidePoint 51 | IOProbeScore 52 | 1500 53 | IOProviderClass 54 | ApplePS2MouseDevice 55 | Platform Profile 56 | 57 | Default 58 | 59 | DisableDevice 60 | 61 | 62 | HPQOEM 63 | 64 | 1411 65 | ProBook 66 | 1619 67 | ProBook 68 | 161C 69 | ProBook 70 | 164F 71 | ProBook 72 | 167C 73 | ProBook 74 | 167E 75 | ProBook 76 | 1680 77 | ProBook 78 | 179B 79 | ProBook 80 | 179C 81 | ProBook 82 | 17A9 83 | ProBook 84 | 17F0 85 | ProBook 86 | 17F3 87 | ProBook 88 | 17F6 89 | ProBook 90 | 1942 91 | ProBook 92 | 1949 93 | ProBook 94 | 198F 95 | ProBook 96 | ProBook 97 | 98 | DisableDevice 99 | 100 | 101 | ProBook-102 102 | ProBook 103 | ProBook-87 104 | ProBook 105 | 106 | 107 | 108 | Sentelic FSP 109 | 110 | CFBundleIdentifier 111 | org.rehabman.voodoo.driver.PS2Trackpad 112 | IOClass 113 | ApplePS2SentelicFSP 114 | IOProbeScore 115 | 5500 116 | IOProviderClass 117 | ApplePS2MouseDevice 118 | Platform Profile 119 | 120 | Default 121 | 122 | DisableDevice 123 | 124 | 125 | HPQOEM 126 | 127 | 1411 128 | ProBook 129 | 1619 130 | ProBook 131 | 161C 132 | ProBook 133 | 164F 134 | ProBook 135 | 167C 136 | ProBook 137 | 167E 138 | ProBook 139 | 1680 140 | ProBook 141 | 179B 142 | ProBook 143 | 179C 144 | ProBook 145 | 17A9 146 | ProBook 147 | 17F0 148 | ProBook 149 | 17F3 150 | ProBook 151 | 17F6 152 | ProBook 153 | 1942 154 | ProBook 155 | 1949 156 | ProBook 157 | 198F 158 | ProBook 159 | ProBook 160 | 161 | DisableDevice 162 | 163 | 164 | ProBook-102 165 | ProBook 166 | ProBook-87 167 | ProBook 168 | 169 | 170 | 171 | Synaptics TouchPad 172 | 173 | CFBundleIdentifier 174 | org.rehabman.voodoo.driver.PS2Trackpad 175 | HIDPointerAccelerationTable 176 | 177 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 178 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 179 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 180 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 181 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 182 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 183 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 184 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 185 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 186 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 187 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 188 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 189 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 190 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 191 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 192 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 193 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 194 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 195 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 196 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA== 197 | 198 | HIDPointerAccelerationType 199 | HIDTrackpadAcceleration 200 | HIDScrollAccelerationTable 201 | 202 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 203 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 204 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 205 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 206 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 207 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 208 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 209 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 210 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 211 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 212 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 213 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 214 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 215 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 216 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 217 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 218 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 219 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 220 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 221 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 222 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 223 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 224 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 225 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 226 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 227 | AAF8JGg= 228 | 229 | HIDScrollAccelerationType 230 | HIDTrackpadScrollAcceleration 231 | IOClass 232 | ApplePS2SynapticsTouchPad 233 | IOProbeScore 234 | 6000 235 | IOProviderClass 236 | ApplePS2MouseDevice 237 | Platform Profile 238 | 239 | Default 240 | 241 | BogusDeltaThreshX 242 | 0 243 | BogusDeltaThreshY 244 | 0 245 | ButtonCount 246 | 3 247 | CenterX 248 | 3000 249 | CenterY 250 | 3000 251 | CircularScrollDivisor 252 | 0 253 | CircularScrollTrigger 254 | 0 255 | ClickPadClickTime 256 | 300000000 257 | ClickPadTrackBoth 258 | 259 | Darwin 16+ 260 | 261 | ApplePreferenceCapability 262 | 263 | ApplePreferenceIdentifier 264 | com.apple.AppleMultitouchTrackpad 265 | MT Built-in 266 | 267 | MTHIDDevice 268 | 269 | SupportsGestureScrolling 270 | 271 | TrackpadEmbedded 272 | 273 | TrackpadFourFingerGestures 274 | 275 | TrackpadSecondaryClickCorners 276 | 277 | TrackpadThreeFingerDrag 278 | 279 | 280 | DisableDevice 281 | 282 | DisableLEDUpdating 283 | 284 | DisableZoneBottom 285 | 4200 286 | DisableZoneControl 287 | 0 288 | DisableZoneLeft 289 | 0 290 | DisableZoneRight 291 | 1700 292 | DisableZoneTop 293 | 99999 294 | DivisorX 295 | 5 296 | DivisorY 297 | 5 298 | DoubleTapThresholdX 299 | 150 300 | DoubleTapThresholdY 301 | 150 302 | DragExitDelayTime 303 | 1000000000 304 | DragLockTempMask 305 | 1048592 306 | DynamicEWMode 307 | 308 | EdgeBottom 309 | 1700 310 | EdgeLeft 311 | 1700 312 | EdgeRight 313 | 5200 314 | EdgeTop 315 | 4200 316 | FakeMiddleButton 317 | 318 | FingerChangeIgnoreDeltas 319 | 3 320 | FingerZ 321 | 30 322 | HorizontalScrollDivisor 323 | 0 324 | ImmediateClick 325 | 326 | MaxDragTime 327 | 180000000 328 | MaxTapTime 329 | 130000000 330 | MiddleClickTime 331 | 100000000 332 | MomentumScrollDivisor 333 | 100 334 | MomentumScrollMultiplier 335 | 98 336 | MomentumScrollSamplesMin 337 | 3 338 | MomentumScrollThreshY 339 | 18 340 | MomentumScrollTimer 341 | 10000000 342 | MouseCount 343 | 0 344 | MouseMiddleScroll 345 | 346 | MouseMultiplierX 347 | 20 348 | MouseMultiplierY 349 | 20 350 | MouseScrollMultiplierX 351 | 20 352 | MouseScrollMultiplierY 353 | 20 354 | MultiFingerHorizontalDivisor 355 | 13 356 | MultiFingerVerticalDivisor 357 | 13 358 | MultiFingerWLimit 359 | 9 360 | ProcessBluetoothMouseStopsTrackpad 361 | 362 | ProcessUSBMouseStopsTrackpad 363 | 364 | QuietTimeAfterTyping 365 | 500000000 366 | Resolution 367 | 400 368 | RightClickZoneBottom 369 | 0 370 | RightClickZoneLeft 371 | 3800 372 | RightClickZoneRight 373 | 99999 374 | RightClickZoneTop 375 | 2000 376 | ScrollDeltaThreshX 377 | 0 378 | ScrollDeltaThreshY 379 | 0 380 | ScrollResolution 381 | 400 382 | SkipPassThrough 383 | 384 | SmoothInput 385 | 386 | StickyHorizontalScrolling 387 | 388 | StickyMultiFingerScrolling 389 | 390 | StickyVerticalScrolling 391 | 392 | SwapDoubleTriple 393 | 394 | SwipeDeltaX 395 | 800 396 | SwipeDeltaY 397 | 800 398 | TapThresholdX 399 | 75 400 | TapThresholdY 401 | 75 402 | USBMouseStopsTrackpad 403 | 0 404 | UnitsPerMMX 405 | 50 406 | UnitsPerMMY 407 | 50 408 | UnsmoothInput 409 | 410 | UseHighRate 411 | 412 | VerticalScrollDivisor 413 | 0 414 | WakeDelay 415 | 1000 416 | ZLimit 417 | 115 418 | ZoneBottom 419 | 0 420 | ZoneLeft 421 | 1700 422 | ZoneRight 423 | 5200 424 | ZoneTop 425 | 99999 426 | 427 | HPQOEM 428 | 429 | 1411 430 | ProBook 431 | 1619 432 | ProBook 433 | 161C 434 | ProBook 435 | 164F 436 | ProBook 437 | 167C 438 | ProBook 439 | 167E 440 | ProBook 441 | 1680 442 | ProBook 443 | 179B 444 | ProBook 445 | 179C 446 | ProBook 447 | 17A9 448 | ProBook 449 | 17F0 450 | ProBook 451 | 17F3 452 | ProBook 453 | 17F6 454 | ProBook 455 | 1942 456 | ProBook 457 | 1949 458 | ProBook 459 | 198F 460 | ProBook 461 | ProBook 462 | 463 | FingerZ 464 | 40 465 | 466 | ProBook-102 467 | ProBook 468 | ProBook-87 469 | ProBook 470 | 471 | LENOVO 472 | 473 | T420 474 | Thinkpad_TrackPad 475 | T460 476 | Thinkpad_ClickPad 477 | T560 478 | Thinkpad_ClickPad 479 | Thinkpad_ClickPad 480 | 481 | BogusDeltaThreshX 482 | 100 483 | BogusDeltaThreshY 484 | 100 485 | Clicking 486 | 487 | DragLockTempMask 488 | 262148 489 | DynamicEWMode 490 | 491 | EdgeBottom 492 | 0 493 | FakeMiddleButton 494 | 495 | FingerZ 496 | 30 497 | HWResetOnStart 498 | 499 | MaxTapTime 500 | 100000000 501 | MouseMultiplierX 502 | 2 503 | MouseMultiplierY 504 | 2 505 | MouseScrollMultiplierX 506 | 2 507 | MouseScrollMultiplierY 508 | 2 509 | PalmNoAction When Typing 510 | 511 | ScrollResolution 512 | 800 513 | SmoothInput 514 | 515 | Thinkpad 516 | 517 | UnsmoothInput 518 | 519 | 520 | Thinkpad_TrackPad 521 | 522 | BogusDeltaThreshX 523 | 800 524 | BogusDeltaThreshY 525 | 800 526 | Clicking 527 | 528 | DivisorX 529 | 1 530 | DivisorY 531 | 1 532 | DragLockTempMask 533 | 262148 534 | DynamicEWMode 535 | 536 | FakeMiddleButton 537 | 538 | FingerZ 539 | 47 540 | HWResetOnStart 541 | 542 | MaxTapTime 543 | 100000000 544 | MomentumScrollThreshY 545 | 16 546 | MouseMultiplierX 547 | 8 548 | MouseMultiplierY 549 | 8 550 | MouseScrollMultiplierX 551 | 2 552 | MouseScrollMultiplierY 553 | 2 554 | MultiFingerHorizontalDivisor 555 | 4 556 | MultiFingerVerticalDivisor 557 | 4 558 | PalmNoAction When Typing 559 | 560 | Resolution 561 | 3200 562 | ScrollDeltaThreshX 563 | 10 564 | ScrollDeltaThreshY 565 | 10 566 | ScrollResolution 567 | 800 568 | SmoothInput 569 | 570 | Thinkpad 571 | 572 | UnsmoothInput 573 | 574 | 575 | X1CG3 576 | Thinkpad_ClickPad 577 | 578 | 579 | ProductID 580 | 547 581 | RM,deliverNotifications 582 | 583 | VendorID 584 | 1452 585 | 586 | 587 | OSBundleLibraries 588 | 589 | com.apple.iokit.IOHIDSystem 590 | 1.0.0b1 591 | com.apple.kpi.iokit 592 | 9.0.0 593 | com.apple.kpi.libkern 594 | 9.0.0 595 | com.apple.kpi.mach 596 | 9.0.0 597 | org.rehabman.voodoo.driver.PS2Controller 598 | 1.9.2 599 | 600 | OSBundleRequired 601 | Console 602 | Source Code 603 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 604 | 605 | 606 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.4.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/CLOVER/misc/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/Selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/Selection_big.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/background.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/font.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/font_mac_default2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/font_mac_default2.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/cd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/cd.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/func_about.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/func_clover.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/func_help.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/func_options.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/func_reset.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/func_shutdown.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/logo.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_cap.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_clover.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_cougar.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_freebsd.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_legacy.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_linux.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_lion.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_mac.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_mav.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_recovery.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_redhat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_redhat.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_sierra.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_snow.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_unknown.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_vista.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_win.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_win10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_win10.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_win8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_win8.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/os_yos.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/pointer.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/tool_shell.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_clover.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_external.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_optical.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/icons/vol_recovery.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_about/logo_about_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_about/logo_about_000.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_help/logo_help_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_help/logo_help_000.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_options/logo_options_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_options/logo_options_000.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_000.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_001.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_002.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_003.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/logo_wifi/logo_wifi_004.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/screenshot.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/bar_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/bar_end.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/bar_fill.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/bar_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/bar_start.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/down_button.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/scroll_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/scroll_end.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/scroll_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/scroll_fill.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/scroll_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/scroll_start.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/scrollbar/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/scrollbar/up_button.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/themes/Bootcamp4k/selection_small.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Bootcamp4k/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | lihaoyun6 7 | Description 8 | mac_default2 9 | Theme 10 | 11 | Anime 12 | 13 | 14 | DistanceFromScreenEdgeX% 15 | 57 16 | DistanceFromScreenEdgeY% 17 | 44 18 | Frames 19 | 1 20 | ID 21 | 2 22 | NudgeX 23 | -3 24 | NudgeY 25 | -1 26 | Path 27 | logo_about 28 | ScreenEdgeX 29 | right 30 | ScreenEdgeY 31 | top 32 | 33 | 34 | DistanceFromScreenEdgeX% 35 | 57 36 | DistanceFromScreenEdgeY% 37 | 44 38 | Frames 39 | 1 40 | ID 41 | 3 42 | NudgeX 43 | 2 44 | NudgeY 45 | 1 46 | Path 47 | logo_help 48 | ScreenEdgeX 49 | right 50 | ScreenEdgeY 51 | top 52 | 53 | 54 | DistanceFromScreenEdgeX% 55 | 57 56 | DistanceFromScreenEdgeY% 57 | 44 58 | Frames 59 | 1 60 | ID 61 | 4 62 | NudgeX 63 | 2 64 | NudgeY 65 | 1 66 | Path 67 | logo_options 68 | ScreenEdgeX 69 | right 70 | ScreenEdgeY 71 | top 72 | 73 | 74 | DistanceFromScreenEdgeX% 75 | 44 76 | DistanceFromScreenEdgeY% 77 | 72 78 | FrameTime 79 | 1800 80 | Frames 81 | 5 82 | ID 83 | 1 84 | NudgeX 85 | 2 86 | NudgeY 87 | 1 88 | Path 89 | logo_wifi 90 | ScreenEdgeX 91 | right 92 | ScreenEdgeY 93 | top 94 | 95 | 96 | Background 97 | 98 | Dark 99 | 100 | Path 101 | background.png 102 | Type 103 | Tile 104 | 105 | Badges 106 | 107 | Inline 108 | 109 | Show 110 | 111 | Swap 112 | 113 | 114 | Banner 115 | logo.png 116 | BootCampStyle 117 | 118 | Components 119 | 120 | Banner 121 | 122 | Functions 123 | 124 | Help 125 | 126 | Label 127 | 128 | MenuTitle 129 | 130 | MenuTitleImage 131 | 132 | Revision 133 | 134 | 135 | Font 136 | 137 | CharWidth 138 | 25 139 | Path 140 | font.png 141 | Proportional 142 | 143 | Type 144 | Load 145 | 146 | Layout 147 | 148 | BannerOffset 149 | -10 150 | ButtonOffset 151 | -35 152 | SelectionBigWidth 153 | 247 154 | TileXSpace 155 | 160 156 | Vertical 157 | 158 | 159 | Origination 160 | 161 | DesignHeight 162 | 2160 163 | DesignWidth 164 | 3840 165 | 166 | Selection 167 | 168 | Big 169 | Selection_big.png 170 | ChangeNonSelectedGrey 171 | 172 | Color 173 | 0xf8f8f872 174 | OnTop 175 | 176 | Small 177 | selection_small.png 178 | 179 | 180 | Year 181 | 2017/2 182 | 183 | 184 | -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell.inf: -------------------------------------------------------------------------------- 1 | ## @file 2 | # Component description file for EFI Shell module. 3 | # 4 | # This is a binary module containing multiple binary shell applications. 5 | # All .efi file tagged with "ToolCode="DUMMY"" in following file list are raw EFI application 6 | # file, and they are can be run in shell environment. 7 | # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
8 | # 9 | # This program and the accompanying materials 10 | # are licensed and made available under the terms and conditions of the BSD License 11 | # which accompanies this distribution. The full text of the license may be found at 12 | # http://opensource.org/licenses/bsd-license.php 13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15 | # 16 | # 17 | ## 18 | 19 | [Defines] 20 | INF_VERSION = 0x00010005 21 | BASE_NAME = Shell_Full 22 | FILE_GUID = c57ad6b8-0515-40a8-9d21-551652854e37 23 | MODULE_TYPE = UEFI_APPLICATION 24 | VERSION_STRING = 1.1 25 | 26 | # 27 | # The following information is for reference only and not required by the build tools. 28 | # 29 | # VALID_ARCHITECTURES = IA32 X64 30 | # 31 | 32 | [Binaries.Ia32] 33 | PE32|Shell32.efi|* 34 | 35 | [Binaries.X64] 36 | PE32|Shell64U.efi|* 37 | 38 | -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/libaistat.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/libaistat.dylib -------------------------------------------------------------------------------- /EFI/CLOVER/tools/rtcread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/rtcread -------------------------------------------------------------------------------- /EFI/CLOVER/tools/smc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/smc -------------------------------------------------------------------------------- /EFI/CLOVER/tools/smcread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/EFI/CLOVER/tools/smcread -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hackintosh-DeskMini310 2 | 3 | MacOS 10.15.5 Catalina on ASRock DeskMini 310/com with UHD(4k), QQ 交流群: `580456695` 4 | 本驱动兼容 10.14.X 版本 5 | 6 | ![ScreenShot-10.15.5](ScreenShot-10.15.5.png "ScreenShot 10.15.5") 7 | 8 | ### 本驱动可以完美支持 MacOS 系统, 目前无任何问题发现. 9 |
10 | 11 | 12 | ## 硬件配置 13 | 14 | - `CPU`: Intel I7-9900T es 15 | - `内存`: 十栓 DDR4 2400 8Gx2 16 | - `硬盘`: WD SN750 512G 17 | - `显卡`: 集成显卡 18 | - `网卡`: BCM94360CS2 19 | - `显示器`: KOIOS K2718UD 20 |
21 | 22 | 23 | ## 黑苹果状态 24 | 25 | 黑苹果兼容所有 8/9 代 Intel CPU, 可随意更换 CPU. 网卡使用苹果官方拆机网卡+加转接板实现免驱. 所有 USB 端口已经做了补丁. 配合超低价 4K 显示器, 默认支持 Retina 模式. 显示完美. 26 | 27 | - 睡眠完美 28 | - 网络完美 29 | - 声音自动切换耳机与喇叭完美 30 | - 显示 DP 输出完美, HDMI 未测试, VGA 不支持 31 | - USB完美 32 | - 其他: 统统完美 33 |
34 | 35 | 36 | ## BIOS 配置 版本: P4.1 37 | 38 | BIOS 配置使用默认配置, 只需要对下面三个部分进行调整. 以 P4.1 版本的出厂 BIOS 为例: 39 | 40 | - `USB Configuration` => `XHCI Hand-off` => `Enabled` 41 | - `Onboard HD Audio` => `Enabled` 42 | - `Security boot` => `Disabled` 43 | 44 |
45 | 46 | 47 | ## Clover 版本: 5119 48 | 49 | CLOVER 版本 5119 50 |
51 | 52 | 53 | ## 网卡: `BCM94352z` 54 | 55 | 完美支持 `BCM94352z` 网卡, 需要添加额外三驱动文件: 56 | 57 | - `AirportBrcmFixup.kext` 58 | - `BrcmFirmwareData.kext` 59 | - `BrcmPatchRAM2.kext` 60 | 61 | > 将上述上个文件放置到 `/EFI/CLOVER/kexts/Other/` 目录下. 更换网卡, 重启即可. 62 | 63 |
64 | 65 | ## 使用方式 66 | 67 | 下载 EFI 目录, 替换自己硬盘 `EFI` 分区中的同名目录即可. 68 |
69 | 70 | 71 | ## 可能的睡眠问题 72 | 73 | - 工具修复 74 | 75 | 打开 Hackintool 工具, 在 `Power|电源` 菜单下. 有红色的选项, 点击下部的 `螺丝刀` 修复按钮, 输入密码, 进行修复即可. 76 | 77 | - 手动修复 78 | 79 | ```bash 80 | pmset -g 81 | ``` 82 | > 如果 `proximitywake` 选项配置值为: `1`, 修改成 `0`, 如果 `hibernatemode` 选项配置值为: `1`, 改成 `0`. 83 | 84 | ```bash 85 | pmset -a hibernatemode 0 86 | pmset -a proximitywake 0 87 | ``` 88 |
89 | 90 | 91 | ## 视频教程 92 | 93 | 全套视频教程可以网盘下载: 94 | 95 | 链接: [https://pan.baidu.com/s/1XC9T6pXPFoYHzk_v-OLoBg](https://pan.baidu.com/s/1XC9T6pXPFoYHzk_v-OLoBg) 提取码: `c64g` 96 | -------------------------------------------------------------------------------- /ScreenShot-10.15.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leogitpro/Hackintosh-DeskMini310/2de1ac38e06e4b944597a4ef1c03144fbee8df82/ScreenShot-10.15.5.png --------------------------------------------------------------------------------