├── .editorconfig ├── .gitignore ├── EFI ├── BOOT │ ├── .empty │ └── BOOTX64.efi └── CLOVER │ ├── CLOVERX64.efi │ ├── config.plist │ ├── drivers │ └── UEFI │ │ ├── ApfsDriverLoader.efi │ │ ├── AptioMemoryFix.efi │ │ ├── AudioDxe.efi │ │ ├── DataHubDxe.efi │ │ ├── EmuVariableUefi.efi │ │ ├── FSInject.efi │ │ ├── HFSPlus.efi │ │ ├── MemoryAllocation.efi │ │ ├── NvmExpressDxe.efi │ │ ├── OsxAptioFix3Drv.efi │ │ ├── PartitionDxe.efi │ │ ├── SMCHelper.efi │ │ ├── VBoxHfs.efi │ │ ├── VirtualSmc.efi │ │ └── apfs.efi │ ├── kexts │ └── Other │ │ ├── .empty │ │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportBrcmFixup │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ │ ├── IntelMausiEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausiEthernet │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ │ ├── NoTouchID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── NoTouchID │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── USBInjectAll │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ └── tools │ ├── Shell32.efi │ ├── Shell64.efi │ ├── Shell64U.efi │ └── bdmesg.efi ├── LICENSE ├── README.md ├── asserts └── optiplex-9020-micro-technical-spec-sheet.pdf └── screenshots ├── 9020m.jpg ├── BCM943224.jpg ├── about-10.14.3.png ├── about-10.14.5.png ├── about-10.15.4.png ├── about-2.png ├── about.png ├── bluetooth-reset.png ├── fb-patcher.png ├── geekbench.png ├── hackintool.png ├── intel-power-gadget.png ├── neofetch-2020-q2.png └── neofetch.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/.gitignore -------------------------------------------------------------------------------- /EFI/BOOT/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/config.plist -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/AudioDxe.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/DataHubDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/DataHubDxe.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/EmuVariableUefi.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/EmuVariableUefi.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/MemoryAllocation.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/MemoryAllocation.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/NvmExpressDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/NvmExpressDxe.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/OsxAptioFix3Drv.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/OsxAptioFix3Drv.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/PartitionDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/PartitionDxe.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/SMCHelper.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/SMCHelper.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/VBoxHfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/VBoxHfs.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/VirtualSmc.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/apfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/apfs.efi -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/README.md -------------------------------------------------------------------------------- /asserts/optiplex-9020-micro-technical-spec-sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/asserts/optiplex-9020-micro-technical-spec-sheet.pdf -------------------------------------------------------------------------------- /screenshots/9020m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/9020m.jpg -------------------------------------------------------------------------------- /screenshots/BCM943224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/BCM943224.jpg -------------------------------------------------------------------------------- /screenshots/about-10.14.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/about-10.14.3.png -------------------------------------------------------------------------------- /screenshots/about-10.14.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/about-10.14.5.png -------------------------------------------------------------------------------- /screenshots/about-10.15.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/about-10.15.4.png -------------------------------------------------------------------------------- /screenshots/about-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/about-2.png -------------------------------------------------------------------------------- /screenshots/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/about.png -------------------------------------------------------------------------------- /screenshots/bluetooth-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/bluetooth-reset.png -------------------------------------------------------------------------------- /screenshots/fb-patcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/fb-patcher.png -------------------------------------------------------------------------------- /screenshots/geekbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/geekbench.png -------------------------------------------------------------------------------- /screenshots/hackintool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/hackintool.png -------------------------------------------------------------------------------- /screenshots/intel-power-gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/intel-power-gadget.png -------------------------------------------------------------------------------- /screenshots/neofetch-2020-q2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/neofetch-2020-q2.png -------------------------------------------------------------------------------- /screenshots/neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingcheng/dell-optiplex-9020m-hackintosh/HEAD/screenshots/neofetch.png --------------------------------------------------------------------------------