├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── analyze.yml │ ├── build.yml │ └── uncrustify.yml ├── .gitignore ├── .shellcheckrc ├── AppleModels ├── DataBase.md ├── DataBase │ ├── MacBook │ │ ├── MB101.yaml │ │ ├── MB11.yaml │ │ ├── MB21.yaml │ │ ├── MB31.yaml │ │ ├── MB41.yaml │ │ ├── MB51.yaml │ │ ├── MB52.yaml │ │ ├── MB61.yaml │ │ ├── MB71.yaml │ │ ├── MB81.yaml │ │ └── MB91.yaml │ ├── MacBookAir │ │ ├── MBA11.yaml │ │ ├── MBA21.yaml │ │ ├── MBA31.yaml │ │ ├── MBA32.yaml │ │ ├── MBA41.yaml │ │ ├── MBA42.yaml │ │ ├── MBA51.yaml │ │ ├── MBA52.yaml │ │ ├── MBA61.yaml │ │ ├── MBA62.yaml │ │ ├── MBA71.yaml │ │ ├── MBA72.yaml │ │ ├── MBA81.yaml │ │ ├── MBA82.yaml │ │ └── MBA91.yaml │ ├── MacBookPro │ │ ├── MBP101.yaml │ │ ├── MBP102.yaml │ │ ├── MBP11.yaml │ │ ├── MBP111.yaml │ │ ├── MBP112.yaml │ │ ├── MBP113.yaml │ │ ├── MBP114.yaml │ │ ├── MBP115.yaml │ │ ├── MBP12.yaml │ │ ├── MBP121.yaml │ │ ├── MBP131.yaml │ │ ├── MBP132.yaml │ │ ├── MBP133.yaml │ │ ├── MBP141.yaml │ │ ├── MBP142.yaml │ │ ├── MBP143.yaml │ │ ├── MBP151.yaml │ │ ├── MBP152.yaml │ │ ├── MBP153.yaml │ │ ├── MBP154.yaml │ │ ├── MBP161.yaml │ │ ├── MBP162.yaml │ │ ├── MBP163.yaml │ │ ├── MBP164.yaml │ │ ├── MBP21.yaml │ │ ├── MBP22.yaml │ │ ├── MBP31.yaml │ │ ├── MBP41.yaml │ │ ├── MBP51.yaml │ │ ├── MBP52.yaml │ │ ├── MBP53.yaml │ │ ├── MBP54.yaml │ │ ├── MBP55.yaml │ │ ├── MBP61.yaml │ │ ├── MBP62.yaml │ │ ├── MBP71.yaml │ │ ├── MBP81.yaml │ │ ├── MBP82.yaml │ │ ├── MBP83.yaml │ │ ├── MBP91.yaml │ │ └── MBP92.yaml │ ├── MacPro │ │ ├── MP11.yaml │ │ ├── MP21.yaml │ │ ├── MP31.yaml │ │ ├── MP41.yaml │ │ ├── MP51.yaml │ │ ├── MP61.yaml │ │ └── MP71.yaml │ ├── Macmini │ │ ├── MM11.yaml │ │ ├── MM21.yaml │ │ ├── MM31.yaml │ │ ├── MM41.yaml │ │ ├── MM51.yaml │ │ ├── MM52.yaml │ │ ├── MM53.yaml │ │ ├── MM61.yaml │ │ ├── MM62.yaml │ │ ├── MM71.yaml │ │ └── MM81.yaml │ ├── Xserve │ │ ├── XS11.yaml │ │ ├── XS21.yaml │ │ └── XS31.yaml │ ├── iMac │ │ ├── IM101.yaml │ │ ├── IM111.yaml │ │ ├── IM112.yaml │ │ ├── IM113.yaml │ │ ├── IM121.yaml │ │ ├── IM122.yaml │ │ ├── IM131.yaml │ │ ├── IM132.yaml │ │ ├── IM133.yaml │ │ ├── IM141.yaml │ │ ├── IM142.yaml │ │ ├── IM143.yaml │ │ ├── IM144.yaml │ │ ├── IM151.yaml │ │ ├── IM161.yaml │ │ ├── IM162.yaml │ │ ├── IM171.yaml │ │ ├── IM181.yaml │ │ ├── IM182.yaml │ │ ├── IM183.yaml │ │ ├── IM191.yaml │ │ ├── IM192.yaml │ │ ├── IM201.yaml │ │ ├── IM202.yaml │ │ ├── IM41.yaml │ │ ├── IM42.yaml │ │ ├── IM51.yaml │ │ ├── IM52.yaml │ │ ├── IM61.yaml │ │ ├── IM71.yaml │ │ ├── IM81.yaml │ │ └── IM91.yaml │ └── iMacPro │ │ └── IMP11.yaml ├── Products.zjson ├── README.md ├── update_generated.py └── update_products.py ├── Application ├── BootKicker │ ├── BootKicker.c │ └── BootKicker.inf ├── Bootstrap │ ├── Bootstrap.c │ └── Bootstrap.inf ├── ChipTune │ ├── ChipTune.c │ └── ChipTune.inf ├── CleanNvram │ ├── CleanNvram.c │ └── CleanNvram.inf ├── ControlMsrE2 │ ├── ControlMsrE2.c │ ├── ControlMsrE2.h │ ├── ControlMsrE2.inf │ ├── ControlMsrE2Clover.inf │ ├── ControlMsrE2Hii.c │ ├── ControlMsrE2UI.c │ └── VerifyMsrE2.c ├── CsrUtil │ ├── CsrUtil.c │ └── CsrUtil.inf ├── FontTester │ ├── FontTester.c │ └── FontTester.inf ├── GopPerf │ ├── GopPerf.c │ └── GopPerf.inf ├── GopStop │ ├── Examples │ │ ├── Step10.png │ │ └── Step3.png │ ├── GopStop.c │ ├── GopStop.inf │ └── README.md ├── KeyTester │ ├── KeyTester.c │ └── KeyTester.inf ├── ListPartitions │ ├── ListPartitions.c │ └── ListPartitions.inf ├── MmapDump │ ├── MmapDump.c │ └── MmapDump.inf ├── OpenControl │ ├── OpenControl.c │ └── OpenControl.inf ├── OpenCore │ ├── OpenCore.c │ └── OpenCore.inf ├── PavpProvision │ ├── PavpProvision.c │ ├── PavpProvision.inf │ └── PavpProvisionData.c ├── ResetSystem │ ├── ResetSystem.c │ └── ResetSystem.inf ├── RtcRw │ ├── RtcRw.c │ └── RtcRw.inf ├── TpmInfo │ ├── TpmInfo.c │ └── TpmInfo.inf └── VerifyMemOpt │ ├── VerifyMemOpt.c │ └── VerifyMemOpt.inf ├── Changelog.md ├── Debug ├── GdbSyms │ ├── Bin │ │ ├── Ia32_GCC5 │ │ │ └── GdbSyms.debug │ │ ├── Ia32_XCODE5 │ │ │ └── GdbSyms.dll │ │ ├── X64_CLANGDWARF │ │ │ └── GdbSyms.debug │ │ ├── X64_CLANGPDB │ │ │ ├── GdbSyms.dll │ │ │ └── GdbSyms.pdb │ │ ├── X64_GCC5 │ │ │ └── GdbSyms.debug │ │ └── X64_XCODE5 │ │ │ └── GdbSyms.dll │ ├── GdbSyms.c │ └── GdbSyms.inf ├── README.md ├── Scripts │ ├── common_uefi.py │ ├── gdb_uefi.py │ ├── lldb_uefi.py │ └── x86_64_target_definition.py └── efidebug.tool ├── Dockerfiles └── oc-dev │ └── Dockerfile ├── Docs ├── AcpiSamples │ └── Source │ │ ├── SSDT-ALS0.dsl │ │ ├── SSDT-AWAC-DISABLE.dsl │ │ ├── SSDT-BRG0.dsl │ │ ├── SSDT-EC-USBX.dsl │ │ ├── SSDT-EC.dsl │ │ ├── SSDT-EHCx-DISABLE.dsl │ │ ├── SSDT-HV-DEV-WS2022.dsl │ │ ├── SSDT-HV-DEV.dsl │ │ ├── SSDT-HV-PLUG.dsl │ │ ├── SSDT-HV-VMBUS.dsl │ │ ├── SSDT-IMEI.dsl │ │ ├── SSDT-PLUG-ALT.dsl │ │ ├── SSDT-PLUG.dsl │ │ ├── SSDT-PMC.dsl │ │ ├── SSDT-PNLF.dsl │ │ ├── SSDT-RTC0-RANGE.dsl │ │ ├── SSDT-RTC0.dsl │ │ ├── SSDT-SBUS-MCHC.dsl │ │ └── SSDT-UNC.dsl ├── BuildDocs.tool ├── Configuration.md5 ├── Configuration.pdf ├── Configuration.tex ├── Differences │ ├── Differences.pdf │ ├── Differences.tex │ └── PreviousConfiguration.tex ├── Errata │ ├── Errata.pdf │ └── Errata.tex ├── FORUMS.md ├── Flavours.md ├── Kexts.md ├── Libraries.md ├── Logos │ ├── Logo.pdf │ ├── Logo.png │ ├── Logo.sketch │ ├── LogoApprox.svg │ ├── OpenCore_with_text_Large.png │ ├── OpenCore_with_text_Small.png │ └── README.md ├── Sample.plist └── SampleCustom.plist ├── Doxyfile ├── Include ├── AMI │ └── Protocol │ │ ├── AmiKeycode.h │ │ ├── AmiPointer.h │ │ ├── AmiSoftKbd.h │ │ └── AmiSoftKbdRestore.h ├── Acidanthera │ ├── Guid │ │ ├── OcSmBios.h │ │ └── OcVariable.h │ ├── Library │ │ ├── OcAcpiLib.h │ │ ├── OcAfterBootCompatLib.h │ │ ├── OcApfsLib.h │ │ ├── OcAppleBootPolicyLib.h │ │ ├── OcAppleChunklistLib.h │ │ ├── OcAppleDiskImageLib.h │ │ ├── OcAppleEventLib.h │ │ ├── OcAppleImageConversionLib.h │ │ ├── OcAppleImg4Lib.h │ │ ├── OcAppleKernelLib.h │ │ ├── OcAppleKeyMapLib.h │ │ ├── OcAppleKeysLib.h │ │ ├── OcAppleRamDiskLib.h │ │ ├── OcAppleSecureBootLib.h │ │ ├── OcAppleUserInterfaceThemeLib.h │ │ ├── OcAudioLib.h │ │ ├── OcBlitLib.h │ │ ├── OcBootManagementLib.h │ │ ├── OcBootServicesTableLib.h │ │ ├── OcCompressionLib.h │ │ ├── OcConfigurationLib.h │ │ ├── OcConsoleLib.h │ │ ├── OcCpuLib.h │ │ ├── OcCryptoLib.h │ │ ├── OcDataHubLib.h │ │ ├── OcDebugLogLib.h │ │ ├── OcDeviceMiscLib.h │ │ ├── OcDevicePathLib.h │ │ ├── OcDevicePropertyLib.h │ │ ├── OcDeviceTreeLib.h │ │ ├── OcDirectResetLib.h │ │ ├── OcDriverConnectionLib.h │ │ ├── OcFileLib.h │ │ ├── OcFirmwarePasswordLib.h │ │ ├── OcFirmwareVolumeLib.h │ │ ├── OcFlexArrayLib.h │ │ ├── OcHashServicesLib.h │ │ ├── OcHdaDevicesLib.h │ │ ├── OcHeciLib.h │ │ ├── OcInputLib.h │ │ ├── OcLegacyThunkLib.h │ │ ├── OcLogAggregatorLib.h │ │ ├── OcMacInfoLib.h │ │ ├── OcMachoLib.h │ │ ├── OcMainLib.h │ │ ├── OcMemoryLib.h │ │ ├── OcMiscLib.h │ │ ├── OcMp3Lib.h │ │ ├── OcOSInfoLib.h │ │ ├── OcPciIoLib.h │ │ ├── OcPeCoffExtLib.h │ │ ├── OcPngLib.h │ │ ├── OcRngLib.h │ │ ├── OcRtcLib.h │ │ ├── OcSerializeLib.h │ │ ├── OcSmbiosLib.h │ │ ├── OcSmcLib.h │ │ ├── OcStorageLib.h │ │ ├── OcStringLib.h │ │ ├── OcTemplateLib.h │ │ ├── OcTimerLib.h │ │ ├── OcTypingLib.h │ │ ├── OcUnicodeCollationEngGenericLib.h │ │ ├── OcVariableLib.h │ │ ├── OcVirtualFsLib.h │ │ ├── OcWaveLib.h │ │ └── OcXmlLib.h │ └── Protocol │ │ ├── AudioDecode.h │ │ ├── AudioIo.h │ │ ├── HdaCodecInfo.h │ │ ├── HdaControllerInfo.h │ │ ├── HdaIo.h │ │ ├── OcAfterBootCompat.h │ │ ├── OcAudio.h │ │ ├── OcBootEntry.h │ │ ├── OcBootstrap.h │ │ ├── OcFirmwareRuntime.h │ │ ├── OcForceResolution.h │ │ ├── OcInterface.h │ │ ├── OcLog.h │ │ └── OcVariableRuntime.h ├── Apple │ ├── AArch64 │ │ └── AppleCpuType.h │ ├── AppleMacEfi.h │ ├── AppleMacEfi │ │ └── AppleMacEfiSpec.h │ ├── Arm │ │ └── AppleCpuType.h │ ├── Ebc │ │ └── AppleCpuType.h │ ├── Guid │ │ ├── AppleApfsInfo.h │ │ ├── AppleBless.h │ │ ├── AppleCertificate.h │ │ ├── AppleDataHub.h │ │ ├── AppleDevicePath.h │ │ ├── AppleFile.h │ │ ├── AppleFirmwareVolume.h │ │ ├── AppleHfsInfo.h │ │ ├── AppleHob.h │ │ ├── AppleOSLoaded.h │ │ ├── ApplePlatformInfo.h │ │ ├── AppleTDMApprovedGuid.h │ │ ├── AppleTscFrequency.h │ │ ├── AppleVariable.h │ │ └── BiosId.h │ ├── Ia32 │ │ └── AppleCpuType.h │ ├── IndustryStandard │ │ ├── Apfs.h │ │ ├── Apm.h │ │ ├── AppleBootArgs.h │ │ ├── AppleChunklist.h │ │ ├── AppleCompressedBinaryImage.h │ │ ├── AppleCsrConfig.h │ │ ├── AppleDiskImage.h │ │ ├── AppleDiskLabel.h │ │ ├── AppleEfiBootRtInfo.h │ │ ├── AppleFatBinaryImage.h │ │ ├── AppleFeatures.h │ │ ├── AppleHibernate.h │ │ ├── AppleHid.h │ │ ├── AppleIcon.h │ │ ├── AppleIntelCpuInfo.h │ │ ├── AppleKmodInfo.h │ │ ├── AppleKxldState.h │ │ ├── AppleMachoImage.h │ │ ├── AppleMkext.h │ │ ├── AppleNec.h │ │ ├── ApplePerfData.h │ │ ├── AppleProvisioning.h │ │ ├── AppleRtc.h │ │ ├── AppleSmBios.h │ │ └── AppleSmc.h │ ├── Library │ │ ├── AppleCpuExtensionsLib.h │ │ ├── AppleDataHubLib.h │ │ ├── AppleEventLib.h │ │ ├── AppleInterruptLib.h │ │ ├── AppleSmbiosLib.h │ │ └── BiosIdLib.h │ ├── Protocol │ │ ├── ApfsEfiBootRecordInfo.h │ │ ├── ApfsEncryptedPartition.h │ │ ├── ApfsUnsupportedBds.h │ │ ├── Apple80211.h │ │ ├── AppleBeepGen.h │ │ ├── AppleBootPolicy.h │ │ ├── AppleDebugLog.h │ │ ├── AppleDeviceControl.h │ │ ├── AppleDiag.h │ │ ├── AppleDiagLed.h │ │ ├── AppleDiskImage.h │ │ ├── AppleDmgBoot.h │ │ ├── AppleEg2Info.h │ │ ├── AppleEvent.h │ │ ├── AppleFirmwarePassword.h │ │ ├── AppleFramebufferInfo.h │ │ ├── AppleGraphicsDriver.h │ │ ├── AppleGraphicsPolicy.h │ │ ├── AppleHda.h │ │ ├── AppleImageConversion.h │ │ ├── AppleImg4Verification.h │ │ ├── AppleKeyMapAggregator.h │ │ ├── AppleKeyMapDatabase.h │ │ ├── AppleLoadImage.h │ │ ├── ApplePartitionInfo.h │ │ ├── ApplePlatformInfoDatabase.h │ │ ├── AppleRamDisk.h │ │ ├── AppleRemovableMedia.h │ │ ├── AppleRtcRam.h │ │ ├── AppleSecureBoot.h │ │ ├── AppleSingleFile.h │ │ ├── AppleSmcIo.h │ │ ├── AppleSystemInfo.h │ │ ├── AppleUserInterface.h │ │ ├── AppleVoiceOver.h │ │ ├── DevicePathPropertyDatabase.h │ │ ├── KeyboardInfo.h │ │ ├── OSInfo.h │ │ └── UserInterfaceTheme.h │ └── X64 │ │ └── AppleCpuType.h ├── Duet │ ├── EfiFlashMap.h │ ├── EfiImageFormat.h │ ├── EfiLdrHandoff.h │ ├── FlashLayout.h │ ├── Guid │ │ ├── AcpiDescription.h │ │ ├── DxeCoreFileName.h │ │ ├── FlashMapHob.h │ │ ├── LdrMemoryDescriptor.h │ │ ├── PciExpressBaseAddress.h │ │ └── PciOptionRomTable.h │ └── Library │ │ └── DuetBdsLib.h ├── Generic │ ├── IndustryStandard │ │ ├── Edid.h │ │ ├── Riff.h │ │ └── UsbHid.h │ └── stdbool.h ├── Grub2 │ ├── Guid │ │ └── ShimLock.h │ └── ShimVars.h ├── Intel │ ├── Guid │ │ ├── BlockIoVendor.h │ │ └── DataHubRecords.h │ ├── IndustryStandard │ │ ├── CpuId.h │ │ ├── GenericIch.h │ │ ├── HdaRegisters.h │ │ ├── HdaVerbs.h │ │ ├── HeciClientMsg.h │ │ ├── HeciMsg.h │ │ ├── MkhiMsgs.h │ │ ├── ProcessorInfo.h │ │ ├── PttPtpRegs.h │ │ └── VirtualMemory.h │ └── Protocol │ │ ├── ConsoleControl.h │ │ ├── CpuIo.h │ │ ├── DataHub.h │ │ ├── FirmwareVolume.h │ │ ├── FrameworkMpService.h │ │ ├── Heci.h │ │ ├── Heci2.h │ │ ├── HotPlugDevice.h │ │ ├── LegacyBios.h │ │ ├── LegacyRegion.h │ │ └── VgaMiniPort.h ├── Microsoft │ ├── Guid │ │ └── MicrosoftVariable.h │ └── MicrosoftWindows.h ├── Nvidia │ └── IndustryStandard │ │ └── McpMemoryController.h └── VMware │ └── Protocol │ ├── VMwareDebug.h │ ├── VMwareHda.h │ └── VMwareMac.h ├── LICENSE.txt ├── Legacy ├── BinDrivers │ ├── HfsPlus.inf │ ├── OpenUsbKbDxe.inf │ └── README.md ├── BootLoader │ ├── Makefile │ ├── boot0.nasm │ └── boot1f32.nasm ├── BootPlatform │ ├── AcpiResetDxe │ │ ├── Reset.c │ │ └── Reset.inf │ ├── BdsDxe │ │ ├── Bds.h │ │ ├── BdsDxe.inf │ │ ├── BdsDxe.uni │ │ ├── BdsDxeExtra.uni │ │ └── BdsEntry.c │ ├── BiosVideo │ │ ├── AtomBios.h │ │ ├── BiosVideo.c │ │ ├── BiosVideo.h │ │ ├── BiosVideo.inf │ │ ├── ComponentName.c │ │ ├── VesaBiosExtensions.h │ │ └── VideoBiosPatch.c │ ├── BlockIoDxe │ │ ├── BiosBlkIo.c │ │ ├── BiosBlkIo.h │ │ ├── BiosInt13.c │ │ ├── BlockIoDxe.inf │ │ ├── BlockIoDxe.uni │ │ ├── BlockIoDxeExtra.uni │ │ ├── ComponentName.c │ │ └── Edd.h │ ├── CpuDxe │ │ ├── CpuDxe.c │ │ ├── CpuDxe.h │ │ ├── CpuDxe.inf │ │ ├── Ia32 │ │ │ └── CpuInterrupt.nasm │ │ └── X64 │ │ │ └── CpuInterrupt.nasm │ ├── DxeIpl │ │ ├── DxeInit.c │ │ ├── DxeIpl.h │ │ ├── DxeIpl.inf │ │ ├── HobGeneration.c │ │ ├── HobGeneration.h │ │ ├── Ia32 │ │ │ ├── Canary.nasm │ │ │ ├── EnterDxeCore.c │ │ │ ├── GS.nasm │ │ │ ├── Paging.c │ │ │ └── VirtualMemory.h │ │ ├── LegacyTable.c │ │ ├── LegacyTable.h │ │ └── X64 │ │ │ ├── Canary.nasm │ │ │ ├── EnterDxeCore.c │ │ │ ├── GS.nasm │ │ │ ├── Paging.c │ │ │ └── VirtualMemory.h │ ├── EfiLdr │ │ ├── EfiLdr.h │ │ ├── EfiLdr.inf │ │ ├── EfiLdrHandoff.h │ │ ├── EfiLoader.c │ │ ├── Ia32 │ │ │ ├── Canary.nasm │ │ │ └── GS.nasm │ │ ├── LzmaDecompress.h │ │ ├── PeLoader.c │ │ ├── Support.c │ │ ├── Support.h │ │ └── X64 │ │ │ ├── Canary.nasm │ │ │ └── GS.nasm │ ├── GraphicsConsoleDxe │ │ ├── ComponentName.c │ │ ├── GraphicsConsole.c │ │ ├── GraphicsConsole.h │ │ ├── GraphicsConsoleDxe.inf │ │ ├── GraphicsConsoleDxe.uni │ │ ├── GraphicsConsoleDxeExtra.uni │ │ └── LaffStd.c │ ├── LegacyRegion2Dxe │ │ ├── LegacyRegion2.c │ │ ├── LegacyRegion2.h │ │ └── LegacyRegion2Dxe.inf │ ├── PciBusNoEnumerationDxe │ │ ├── ComponentName.c │ │ ├── PciBus.c │ │ ├── PciBus.h │ │ ├── PciBusNoEnumeration.inf │ │ ├── PciCommand.c │ │ ├── PciCommand.h │ │ ├── PciDeviceSupport.c │ │ ├── PciDeviceSupport.h │ │ ├── PciEnumerator.c │ │ ├── PciEnumerator.h │ │ ├── PciEnumeratorSupport.c │ │ ├── PciEnumeratorSupport.h │ │ ├── PciIo.c │ │ ├── PciIo.h │ │ ├── PciPowerManagement.c │ │ └── PciPowerManagement.h │ ├── PciRootBridgeDxe │ │ ├── DeviceIo.c │ │ ├── DeviceIo.h │ │ ├── PcatIo.c │ │ ├── PcatPciRootBridge.c │ │ ├── PcatPciRootBridge.h │ │ ├── PcatPciRootBridgeDevicePath.c │ │ ├── PcatPciRootBridgeIo.c │ │ └── PciRootBridgeNoEnumeration.inf │ └── SmbiosGenDxe │ │ ├── SmbiosGen.c │ │ ├── SmbiosGen.h │ │ ├── SmbiosGen.inf │ │ └── SmbiosGenStrings.uni ├── BootSector │ ├── Makefile │ ├── efi32.nasm │ ├── efi64.nasm │ └── start.nasm └── README.md ├── Library ├── DuetBdsLib │ ├── BdsConnect.c │ ├── BdsConsole.c │ ├── BdsMisc.c │ ├── BdsPlatform.c │ ├── BdsPlatform.h │ ├── DuetBdsLib.inf │ └── PlatformData.c ├── DuetTimerLib │ ├── DuetTimerLib.inf │ └── X86TimerLib.c ├── OcAcpiLib │ ├── AcpiDump.c │ ├── AcpiParser.c │ ├── AcpiParser.h │ ├── OcAcpiLib.c │ └── OcAcpiLib.inf ├── OcAfterBootCompatLib │ ├── BootCompatInternal.h │ ├── CustomSlide.c │ ├── KernelSupport.c │ ├── OcAfterBootCompatLib.c │ ├── OcAfterBootCompatLib.inf │ ├── RelocationBlock.c │ ├── RelocationCallGate.h │ ├── RelocationCallGate.nasm │ └── ServiceOverrides.c ├── OcApfsLib │ ├── OcApfsConnect.c │ ├── OcApfsFusion.c │ ├── OcApfsInternal.h │ ├── OcApfsIo.c │ ├── OcApfsLib.c │ └── OcApfsLib.inf ├── OcAppleBootPolicyLib │ ├── OcAppleBootPolicyLib.c │ └── OcAppleBootPolicyLib.inf ├── OcAppleChunklistLib │ ├── OcAppleChunklistLib.c │ └── OcAppleChunklistLib.inf ├── OcAppleDiskImageLib │ ├── OcAppleDiskImageBlockIo.c │ ├── OcAppleDiskImageLib.c │ ├── OcAppleDiskImageLib.inf │ ├── OcAppleDiskImageLibInternal.c │ └── OcAppleDiskImageLibInternal.h ├── OcAppleEventLib │ ├── AppleEventInternal.h │ ├── AppleKeyMap.c │ ├── EventQueue.c │ ├── KeyHandler.c │ ├── OcAppleEventLib.c │ ├── OcAppleEventLib.inf │ └── PointerHandler.c ├── OcAppleImageConversionLib │ ├── OcAppleImageConversionLib.c │ └── OcAppleImageConversionLib.inf ├── OcAppleImg4Lib │ ├── OcAppleImg4Lib.c │ ├── OcAppleImg4Lib.inf │ ├── libDER │ │ ├── DER_CertCrl.c │ │ ├── DER_CertCrl.h │ │ ├── DER_Decode.c │ │ ├── DER_Decode.h │ │ ├── DER_Digest.c │ │ ├── DER_Digest.h │ │ ├── DER_Encode.c │ │ ├── DER_Encode.h │ │ ├── DER_Keys.c │ │ ├── DER_Keys.h │ │ ├── asn1Types.h │ │ ├── libDER.h │ │ ├── oids.c │ │ └── oids.h │ ├── libDERImg4 │ │ ├── DER_Img4Manifest.c │ │ ├── DER_Img4Manifest.h │ │ ├── Img4oids.c │ │ ├── Img4oids.h │ │ ├── libDERImg4.h │ │ └── libDERImg4_config.h │ └── libDER_config.h ├── OcAppleKernelLib │ ├── CachelessContext.c │ ├── CachelessInternal.h │ ├── CommonPatches.c │ ├── CpuidPatches.c │ ├── KernelCollection.c │ ├── KernelReader.c │ ├── KernelVersion.c │ ├── KextPatcher.c │ ├── KxldState.c │ ├── LegacyBcopy.h │ ├── LegacyBcopy.nasm │ ├── Link.c │ ├── MkextContext.c │ ├── MkextInternal.h │ ├── OcAppleKernelLib.inf │ ├── PrelinkedContext.c │ ├── PrelinkedInternal.h │ ├── PrelinkedKext.c │ └── Vtables.c ├── OcAppleKeyMapLib │ ├── OcAppleKeyMapLib.c │ ├── OcAppleKeyMapLib.inf │ └── UpDownDetection.c ├── OcAppleKeysLib │ ├── OcAppleKeysLib.c │ └── OcAppleKeysLib.inf ├── OcAppleRamDiskLib │ ├── OcAppleRamDiskLib.c │ └── OcAppleRamDiskLib.inf ├── OcAppleSecureBootLib │ ├── OcAppleSecureBootLib.c │ └── OcAppleSecureBootLib.inf ├── OcAppleUserInterfaceThemeLib │ ├── OcAppleUserInterfaceThemeLib.c │ └── OcAppleUserInterfaceThemeLib.inf ├── OcApplicationEntryPoint │ ├── ApplicationEntryPoint.c │ ├── CanaryDummy.c │ ├── Ia32 │ │ ├── Canary.nasm │ │ └── GS.nasm │ ├── UefiApplicationEntryPoint.inf │ ├── UefiApplicationEntryPoint.uni │ └── X64 │ │ ├── Canary.nasm │ │ └── GS.nasm ├── OcAudioLib │ ├── OcAudio.c │ ├── OcAudioDump.c │ ├── OcAudioGenBeep.c │ ├── OcAudioInternal.h │ ├── OcAudioLib.c │ ├── OcAudioLib.inf │ └── OcAudioVoiceOver.c ├── OcBlitLib │ ├── BlitBufferToVideo.c │ ├── BlitInternal.h │ ├── BlitVideoToBuffer.c │ ├── OcBlitLib.c │ └── OcBlitLib.inf ├── OcBootManagementLib │ ├── AppleHibernate.c │ ├── ApplePanic.c │ ├── AppleRecovery.c │ ├── BootArguments.c │ ├── BootAudio.c │ ├── BootEntryInfo.c │ ├── BootEntryManagement.c │ ├── BootEntryProtocol.c │ ├── BootManagementInternal.h │ ├── BuiltinPicker.c │ ├── DefaultEntryChoice.c │ ├── DmgBootSupport.c │ ├── HotKeySupport.c │ ├── ImageLoader.c │ ├── OcBootManagementLib.c │ ├── OcBootManagementLib.inf │ └── PolicyManagement.c ├── OcBootServicesTableLib │ ├── OcBootServicesTableLib.c │ ├── OcBootServicesTableLib.inf │ ├── UefiBootServicesTableLib.c │ └── UefiBootServicesTableLib.inf ├── OcCompilerIntrinsicsLib │ ├── MsvcMath32.c │ ├── OcCompilerIntrinsicsLib.c │ └── OcCompilerIntrinsicsLib.inf ├── OcCompressionLib │ ├── OcCompressionLib.c │ ├── OcCompressionLib.inf │ ├── lzss │ │ ├── lzss.c │ │ └── lzss.h │ ├── lzvn │ │ ├── lzvn.c │ │ └── lzvn.h │ └── zlib │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── diff │ │ ├── README.md │ │ ├── inflate.c.diff │ │ ├── zconf.h.diff │ │ ├── zutil.c.diff │ │ └── zutil.h.diff │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zlib_uefi.c │ │ ├── zutil.c │ │ └── zutil.h ├── OcConfigurationLib │ ├── CheckSchema.py │ ├── OcConfigurationLib.c │ └── OcConfigurationLib.inf ├── OcConsoleControlEntryModeLib │ ├── OcConsoleControlEntryModeGenericLib.inf │ ├── OcConsoleControlEntryModeLib.c │ └── OcConsoleControlEntryModeLocalLib.inf ├── OcConsoleLib │ ├── ConsoleControl.c │ ├── ConsoleFont.c │ ├── ConsoleFontLoader.c │ ├── ConsoleGop.c │ ├── ConsoleGopInternal.h │ ├── Eg2Info.c │ ├── FramebufferInfo.c │ ├── GopInfoDump.c │ ├── GopPassThrough.c │ ├── GopUtils.c │ ├── OcConsoleLib.c │ ├── OcConsoleLib.inf │ ├── OcConsoleLibInternal.h │ ├── ResolutionParsing.c │ ├── TextOutputBuiltin.c │ ├── TextOutputNull.c │ ├── TextOutputSystem.c │ └── UgaPassThrough.c ├── OcCpuLib │ ├── AppleCpuSupport.c │ ├── FrequencyDetect.c │ ├── Ia32 │ │ ├── Atomic.nasm │ │ ├── MeasureTicks.c │ │ └── Microcode.nasm │ ├── OcCpuInternals.h │ ├── OcCpuLib.c │ ├── OcCpuLib.inf │ └── X64 │ │ ├── Atomic.nasm │ │ ├── MeasureTicks.nasm │ │ └── Microcode.nasm ├── OcCryptoLib │ ├── Aes.c │ ├── BigNumLib.h │ ├── BigNumLibInternal.h │ ├── BigNumMontgomery.c │ ├── BigNumPrimitives.c │ ├── ChaCha.c │ ├── Cpu32 │ │ └── BigNumWordMul64.c │ ├── Cpu64 │ │ └── BigNumWordMul64.c │ ├── CryptoInternal.h │ ├── Md5.c │ ├── OcCryptoLib.inf │ ├── PasswordHash.c │ ├── RsaDigitalSign.c │ ├── SecureMem.c │ ├── Sha1.c │ ├── Sha2.c │ ├── Sha2Internal.h │ ├── Sha512AccelDummy.c │ └── X64 │ │ └── Sha512Avx.nasm ├── OcDataHubLib │ ├── DataHub.c │ ├── DataHub.h │ ├── OcDataHubLib.c │ └── OcDataHubLib.inf ├── OcDebugLibNull │ ├── OcDebugLibNull.c │ └── OcDebugLibNull.inf ├── OcDebugLibProtocol │ ├── DebugHelp.c │ ├── DebugPrint.c │ ├── OcDebugLibProtocol.c │ └── OcDebugLibProtocol.inf ├── OcDebugLibSerial │ ├── OcDebugLibSerial.c │ └── OcDebugLibSerial.inf ├── OcDebugLogLibOc2Clover │ ├── DebugHelp.c │ ├── DebugPrint.c │ ├── OcAppleLog.c │ ├── OcDebugLogLibOc2Clover.inf │ └── OcLog.c ├── OcDeviceMiscLib │ ├── ActivateHpetSupport.c │ ├── CpuInfoDump.c │ ├── ForgeUefi.c │ ├── HandleParsingMin.c │ ├── HandleParsingMin.h │ ├── OcDeviceMiscLib.inf │ ├── PciExtInternal.h │ ├── PciInfoDump.c │ ├── ReleaseUsbOwnership.c │ ├── ReloadOptionRoms.c │ ├── ResetAudioTrafficClass.c │ └── SetResizableBar.c ├── OcDevicePathLib │ ├── ExpandDevicePath.c │ ├── OcDevicePathLib.c │ └── OcDevicePathLib.inf ├── OcDevicePropertyLib │ ├── OcDevicePropertyLib.c │ └── OcDevicePropertyLib.inf ├── OcDeviceTreeLib │ ├── OcDeviceTreeLib.c │ └── OcDeviceTreeLib.inf ├── OcDirectResetLib │ ├── DirectReset.c │ └── OcDirectResetLib.inf ├── OcDriverConnectionLib │ ├── DriverDisconnection.c │ ├── OcDriverConnectionLib.c │ └── OcDriverConnectionLib.inf ├── OcDriverEntryPoint │ ├── CanaryDummy.c │ ├── DriverEntryPoint.c │ ├── Ia32 │ │ ├── Canary.nasm │ │ └── GS.nasm │ ├── UefiDriverEntryPoint.inf │ ├── UefiDriverEntryPoint.uni │ └── X64 │ │ ├── Canary.nasm │ │ └── GS.nasm ├── OcDxeCoreEntryPoint │ ├── CanaryDummy.c │ ├── DxeCoreEntryPoint.c │ ├── DxeCoreEntryPoint.inf │ ├── DxeCoreEntryPoint.uni │ ├── Ia32 │ │ ├── Canary.nasm │ │ └── GS.nasm │ └── X64 │ │ ├── Canary.nasm │ │ └── GS.nasm ├── OcFileLib │ ├── DiskMisc.c │ ├── FileMisc.c │ ├── FileProtocol.c │ ├── FirmwareFile.c │ ├── GetFileInfo.c │ ├── GetVolumeLabel.c │ ├── LocateFileSystem.c │ ├── OcFileLib.inf │ ├── OpenFile.c │ └── ReadFile.c ├── OcFirmwarePasswordLib │ ├── AppleFwPasswordInternal.h │ ├── OcFirmwarePasswordLib.c │ └── OcFirmwarePasswordLib.inf ├── OcFirmwareVolumeLib │ ├── FvOnFv2Thunk.c │ ├── OcFirmwareVolumeLib.c │ ├── OcFirmwareVolumeLib.inf │ └── OcFirmwareVolumeLibInternal.h ├── OcFlexArrayLib │ ├── AsciiStringBuffer.c │ ├── FlexArray.c │ ├── FlexString.c │ └── OcFlexArrayLib.inf ├── OcGuardLib │ ├── OcGuardLib.inf │ ├── Ubsan.c │ ├── Ubsan.h │ └── UbsanPrintf.c ├── OcHashServicesLib │ ├── OcHashServicesLib.c │ ├── OcHashServicesLib.inf │ └── OcHashServicesLibInternal.h ├── OcHdaDevicesLib │ ├── OcHdaDevicesInternal.h │ ├── OcHdaDevicesLib.c │ └── OcHdaDevicesLib.inf ├── OcHeciLib │ ├── OcHeciLib.c │ └── OcHeciLib.inf ├── OcHiiDatabaseLib │ ├── ConfigKeywordHandler.c │ ├── ConfigRouting.c │ ├── Database.c │ ├── Font.c │ ├── HiiDatabase.h │ ├── HiiDatabaseEntry.c │ ├── Image.c │ ├── ImageEx.c │ ├── OcHiiDatabaseLocalLib.inf │ └── String.c ├── OcInputLib │ ├── Keycode │ │ ├── AIK.c │ │ ├── AIK.h │ │ ├── AIKData.c │ │ ├── AIKData.h │ │ ├── AIKMap.c │ │ ├── AIKShim.c │ │ ├── AIKShim.h │ │ ├── AIKSource.c │ │ ├── AIKSource.h │ │ ├── AIKTarget.c │ │ ├── AIKTarget.h │ │ ├── AIKTranslate.c │ │ ├── AIKTranslate.h │ │ ├── AppleHid.txt │ │ └── README.md │ ├── OcInputLib.inf │ ├── Pointer │ │ ├── AIM.c │ │ └── AIM.h │ └── Timer │ │ └── AIT.c ├── OcLegacyThunkLib │ ├── OcLegacyThunkLib.c │ └── OcLegacyThunkLib.inf ├── OcLogAggregatorLib │ ├── OcAppleLog.c │ ├── OcLog.c │ ├── OcLogAggregatorLib.inf │ └── OcLogInternal.h ├── OcLogAggregatorLibNull │ ├── OcLogAggregatorLibNull.c │ └── OcLogAggregatorLibNull.inf ├── OcMacInfoLib │ ├── AutoGenerated.c │ ├── MacInfoInternal.h │ ├── OcMacInfoLib.c │ └── OcMacInfoLib.inf ├── OcMachoLib │ ├── CxxSymbols.c │ ├── CxxSymbolsX.h │ ├── Header.c │ ├── HeaderX.h │ ├── Macho32.c │ ├── Macho64.c │ ├── MachoFat.c │ ├── MachoX.h │ ├── OcMachoLib.inf │ ├── OcMachoLibInternal.h │ ├── Relocations.c │ ├── Symbols.c │ └── SymbolsX.h ├── OcMainLib │ ├── OcMainLib.inf │ ├── OcMainLibClover.inf │ ├── OpenCoreAcpi.c │ ├── OpenCoreDevProps.c │ ├── OpenCoreKernel.c │ ├── OpenCoreKernelPatch.c │ ├── OpenCoreMisc.c │ ├── OpenCoreNvram.c │ ├── OpenCorePlatform.c │ ├── OpenCoreUefi.c │ ├── OpenCoreUefiAudio.c │ ├── OpenCoreUefiInOut.c │ └── OpenCoreVault.c ├── OcMemoryLib │ ├── LegacyRegionLock.c │ ├── LegacyRegionUnLock.c │ ├── MemoryAlloc.c │ ├── MemoryAttributes.c │ ├── MemoryDebug.c │ ├── MemoryMap.c │ ├── OcMemoryLib.inf │ ├── UmmMalloc.c │ └── VirtualMemory.c ├── OcMiscLib │ ├── ConsoleUtils.c │ ├── DataPatcher.c │ ├── ImageRunner.c │ ├── OcMiscLib.inf │ ├── PlatformInfo.c │ └── ProtocolSupport.c ├── OcMp3Lib │ ├── OcMp3Lib.c │ ├── OcMp3Lib.inf │ └── helix │ │ ├── README.md │ │ ├── assembly.h │ │ ├── bitstream.c │ │ ├── buffers.c │ │ ├── coder.h │ │ ├── dct32.c │ │ ├── dequant.c │ │ ├── dqchan.c │ │ ├── huffman.c │ │ ├── hufftabs.c │ │ ├── imdct.c │ │ ├── mp3common.h │ │ ├── mp3compat.h │ │ ├── mp3dec.c │ │ ├── mp3dec.h │ │ ├── mp3tabs.c │ │ ├── polyphase.c │ │ ├── scalfact.c │ │ ├── statname.h │ │ ├── stproc.c │ │ ├── subband.c │ │ └── trigtabs.c ├── OcOSInfoLib │ ├── OcOSInfoLib.c │ └── OcOSInfoLib.inf ├── OcPciIoLib │ ├── OcPciIoLib.c │ ├── OcPciIoLib.inf │ ├── OcPciIoU.c │ └── OcPciIoU.h ├── OcPeCoffExtLib │ ├── BasePeCoffLib2Internals.h │ ├── OcPeCoffExtInternal.h │ ├── OcPeCoffExtLib.c │ ├── OcPeCoffExtLib.inf │ └── OcPeCoffFixupInit.c ├── OcPeiCoreEntryPoint │ ├── CanaryDummy.c │ ├── Ia32 │ │ ├── Canary.nasm │ │ └── GS.nasm │ ├── PeiCoreEntryPoint.c │ ├── PeiCoreEntryPoint.inf │ ├── PeiCoreEntryPoint.uni │ └── X64 │ │ ├── Canary.nasm │ │ └── GS.nasm ├── OcPeimEntryPoint │ ├── CanaryDummy.c │ ├── Ia32 │ │ ├── Canary.nasm │ │ └── GS.nasm │ ├── PeimEntryPoint.c │ ├── PeimEntryPoint.inf │ ├── PeimEntryPoint.uni │ └── X64 │ │ ├── Canary.nasm │ │ └── GS.nasm ├── OcPngLib │ ├── OcPng.c │ ├── OcPngLib.inf │ ├── lodepng.c │ └── lodepng.h ├── OcResetSystemLib │ ├── OcResetSystemLib.c │ └── OcResetSystemLib.inf ├── OcRngLib │ ├── Ia32 │ │ └── RngDelay.nasm │ ├── OcRngInternals.h │ ├── OcRngLib.c │ ├── OcRngLib.inf │ └── X64 │ │ └── RngDelay.nasm ├── OcRtcLib │ ├── AppleRtcRam.c │ ├── OcRtcLib.c │ ├── OcRtcLib.inf │ └── OcRtcLibInternal.h ├── OcSerializeLib │ ├── OcSerializeLib.c │ └── OcSerializeLib.inf ├── OcSmbiosLib │ ├── DebugSmbios.c │ ├── DebugSmbios.h │ ├── OcSmbiosLib.inf │ ├── SmbiosDump.c │ ├── SmbiosInternal.c │ ├── SmbiosInternal.h │ └── SmbiosPatch.c ├── OcSmcLib │ ├── OcSmcLib.c │ ├── OcSmcLib.inf │ └── OcSmcLibInternal.h ├── OcStorageLib │ ├── OcStorageLib.c │ └── OcStorageLib.inf ├── OcStringLib │ ├── OcAsciiLib.c │ ├── OcStringLib.inf │ └── OcUnicodeLib.c ├── OcTemplateLib │ ├── OcTemplateLib.c │ └── OcTemplateLib.inf ├── OcTimerLib │ ├── OcTimerLib.c │ └── OcTimerLib.inf ├── OcTypingLib │ ├── OcTypingLib.c │ └── OcTypingLib.inf ├── OcUnicodeCollationEngLib │ ├── OcUnicodeCollationEngCommon.c │ ├── OcUnicodeCollationEngGeneric.c │ ├── OcUnicodeCollationEngGenericLib.inf │ ├── OcUnicodeCollationEngInternal.h │ ├── OcUnicodeCollationEngLocal.c │ └── OcUnicodeCollationEngLocalLib.inf ├── OcVariableLib │ ├── LegacyNvramSupport.c │ ├── LegacyNvramWrapper.c │ ├── OcVariableLib.c │ ├── OcVariableLib.inf │ ├── Shim.c │ ├── Sip.c │ └── VariableManagement.c ├── OcVariableRuntimeLib │ ├── OcVariableRuntimeLib.c │ └── OcVariableRuntimeLib.inf ├── OcVirtualFsLib │ ├── OcVirtualFsLib.inf │ ├── VirtualDir.c │ ├── VirtualFile.c │ ├── VirtualFs.c │ ├── VirtualFsInternal.h │ └── VirtualVolume.c ├── OcWaveLib │ ├── OcWaveLib.c │ └── OcWaveLib.inf └── OcXmlLib │ ├── OcXmlLib.c │ └── OcXmlLib.inf ├── OpenCoreFromClover.h ├── OpenCorePkg.dec ├── OpenCorePkg.dsc ├── OpenCorePkg.fdf ├── OpenCorePkg.xcodeproj └── project.pbxproj ├── OpenDuetPkg.dec ├── OpenDuetPkg.dsc ├── OpenDuetPkg.fdf ├── OpenDuetPkgDefines.fdf.inc ├── Patches ├── 0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch ├── 0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch ├── 0003-MdeModulePkg-AtaAtapiPassThru-Reduce-timeout.patch └── 0005-ShellPkg-Devices-shell-command-support-misaligned-de.patch ├── Platform ├── CrScreenshotDxe │ ├── CrScreenshotDxe.c │ ├── CrScreenshotDxe.inf │ ├── LICENSE │ └── README.md ├── OpenCanopy │ ├── BitmapFont.c │ ├── Blending.c │ ├── Blending.h │ ├── BmfFile.h │ ├── BmfLib.h │ ├── GuiApp.c │ ├── GuiApp.h │ ├── GuiIo.h │ ├── Images.c │ ├── Input │ │ ├── InputSimAbsPtr.c │ │ └── InputSimTextIn.c │ ├── OcBootstrap.c │ ├── OpenCanopy.c │ ├── OpenCanopy.h │ ├── OpenCanopy.inf │ ├── Output │ │ └── OutputStGop.c │ └── Views │ │ ├── BootPicker.c │ │ ├── BootPicker.h │ │ ├── Common.c │ │ ├── Common.h │ │ └── Password.c ├── OpenLegacyBoot │ ├── BiosDisk.c │ ├── LegacyBootInternal.h │ ├── LegacyBootSupport.c │ ├── OpenLegacyBoot.c │ └── OpenLegacyBoot.inf ├── OpenLinuxBoot │ ├── Autodetect.c │ ├── GrubCfg.c │ ├── GrubEnv.c │ ├── GrubVars.c │ ├── LinuxBootInternal.h │ ├── LoaderEntry.c │ ├── OpenLinuxBoot.c │ ├── OpenLinuxBoot.inf │ └── VersionCompare.c ├── OpenNtfsDxe │ ├── Compression.c │ ├── Data.c │ ├── Disc.c │ ├── Driver.h │ ├── Helper.h │ ├── Index.c │ ├── Info.c │ ├── NTFS.c │ ├── NTFS.h │ ├── Open.c │ ├── OpenNtfsDxe.inf │ └── Position.c ├── OpenPartitionDxe │ ├── Apm.c │ ├── ComponentName.c │ ├── ElTorito.c │ ├── Gpt.c │ ├── Mbr.c │ ├── Partition.c │ ├── Partition.h │ ├── PartitionDxe.inf │ ├── PartitionDxe.uni │ ├── PartitionDxeExtra.uni │ └── Udf.c ├── OpenRuntime │ ├── OpenRuntime.c │ ├── OpenRuntime.inf │ ├── OpenRuntimePrivate.h │ └── UefiRuntimeServices.c ├── OpenUsbKbDxe │ ├── AppleKey.c │ ├── AppleKey.h │ ├── ComponentName.c │ ├── EfiKey.c │ ├── EfiKey.h │ ├── KeyBoard.c │ ├── KeyBoard.h │ ├── UsbKbDxe.inf │ ├── UsbKbDxe.uni │ └── UsbKbDxeExtra.uni ├── OpenVariableRuntimeDxe │ ├── Measurement.c │ ├── PrivilegePolymorphic.h │ ├── Reclaim.c │ ├── SpeculationBarrierDxe.c │ ├── TcgMorLockDxe.c │ ├── VarCheck.c │ ├── Variable.c │ ├── Variable.h │ ├── VariableDxe.c │ ├── VariableExLib.c │ ├── VariableLockRequestToLock.c │ ├── VariableNonVolatile.c │ ├── VariableNonVolatile.h │ ├── VariableParsing.c │ ├── VariableParsing.h │ ├── VariableRuntimeCache.c │ ├── VariableRuntimeCache.h │ └── VariableRuntimeDxe.inf ├── ResetNvramEntry │ ├── ResetNvramEntry.c │ └── ResetNvramEntry.inf └── ToggleSipEntry │ ├── ToggleSipEntry.c │ └── ToggleSipEntry.inf ├── README.md ├── Staging ├── AudioDxe │ ├── AudioDecode.c │ ├── AudioDxe.c │ ├── AudioDxe.h │ ├── AudioDxe.inf │ ├── HdaCodec │ │ ├── HdaCodec.c │ │ ├── HdaCodec.h │ │ ├── HdaCodecAudioIo.c │ │ ├── HdaCodecComponentName.c │ │ ├── HdaCodecComponentName.h │ │ └── HdaCodecInfo.c │ └── HdaController │ │ ├── HdaController.c │ │ ├── HdaController.h │ │ ├── HdaControllerComponentName.c │ │ ├── HdaControllerComponentName.h │ │ ├── HdaControllerHdaIo.c │ │ ├── HdaControllerInfo.c │ │ └── HdaControllerMem.c ├── EnableGop │ ├── EnableGop.c │ ├── EnableGop.inf │ ├── EnableGopDirect.inf │ ├── README.md │ ├── Release │ │ ├── EnableGopDirect_1.4.efi │ │ ├── EnableGopDirect_1.4.ffs │ │ ├── EnableGop_1.4.efi │ │ └── EnableGop_1.4.ffs │ ├── UEFITool_Inserted_Screenshot.png │ └── vBiosInsert.sh ├── OpenHfsPlus │ ├── OpenHfsPlus.inf │ ├── fsw_base.h │ ├── fsw_core.c │ ├── fsw_core.h │ ├── fsw_efi.c │ ├── fsw_efi.h │ ├── fsw_efi_base.h │ ├── fsw_efi_edk2_base.h │ ├── fsw_efi_lib.c │ ├── fsw_hfsplus.c │ ├── fsw_hfsplus.h │ ├── fsw_lib.c │ └── fsw_strfunc.h └── README.md ├── Tests ├── AcpiTest │ ├── AcpiTest.c │ ├── AcpiTest.inf │ └── AcpiTestApp.inf ├── CryptoTest │ ├── CryptoSamples.h │ ├── CryptoTest.c │ ├── CryptoTest.inf │ └── CryptoTestApp.inf ├── DataHubTest │ ├── DataHubTest.c │ ├── DataHubTest.inf │ └── DataHubTestApp.inf ├── PropertyTest │ ├── PropertyTest.c │ ├── PropertyTest.inf │ └── PropertyTestApp.inf └── SmbiosTest │ ├── SmbiosTest.c │ ├── SmbiosTest.inf │ └── SmbiosTestApp.inf ├── Uncrustify.yml ├── User ├── Include │ ├── UserBootServices.h │ ├── UserFile.h │ ├── UserGlobalVar.h │ ├── UserMemory.h │ ├── UserPcd.h │ ├── UserPseudoRandom.h │ └── UserUnicodeCollation.h ├── Library │ ├── UserBaseMemoryLib.c │ ├── UserBootServices.c │ ├── UserFile.c │ ├── UserGlobalVar.c │ ├── UserMath.c │ ├── UserMisc.c │ ├── UserOcDummy.c │ ├── UserPcd.c │ ├── UserPseudoRandom.c │ └── UserUnicodeCollation.c ├── Makefile └── README.md ├── Utilities ├── ACPIe │ ├── ACPIe.c │ ├── Makefile │ ├── Tests │ │ ├── Correct │ │ │ ├── test10_output.txt │ │ │ ├── test11_output.txt │ │ │ ├── test12_output.txt │ │ │ ├── test13_output.txt │ │ │ ├── test14_output.txt │ │ │ ├── test15_output.txt │ │ │ ├── test16_output.txt │ │ │ ├── test17_output.txt │ │ │ ├── test18_output.txt │ │ │ ├── test19_output.txt │ │ │ ├── test1_output.txt │ │ │ ├── test20_output.txt │ │ │ ├── test21_output.txt │ │ │ ├── test2_output.txt │ │ │ ├── test3_output.txt │ │ │ ├── test4_output.txt │ │ │ ├── test5_output.txt │ │ │ ├── test6_output.txt │ │ │ ├── test7_output.txt │ │ │ ├── test8_output.txt │ │ │ └── test9_output.txt │ │ └── Input │ │ │ ├── DSDT-XOSI.bin │ │ │ ├── DSDT-legacy.bin │ │ │ ├── DSDT.bin │ │ │ ├── RSDT.bin │ │ │ ├── SSDT-0.bin │ │ │ ├── SSDT-1.bin │ │ │ ├── SSDT-x4_0.bin │ │ │ ├── broken3.bin │ │ │ ├── corrupt1.bin │ │ │ └── nesting.bin │ └── testsuite.sh ├── AppleEfiSignTool │ ├── AppleEfiSignTool.c │ ├── Makefile │ ├── README.md │ └── Samples │ │ ├── apfs.efi │ │ ├── apfs_10.15.efi │ │ ├── apfs_aligned_10.15.efi │ │ ├── boot_10.10.5.efi │ │ ├── boot_10.11.6.efi │ │ ├── boot_10.12.6.efi │ │ ├── boot_10.13.6.efi │ │ ├── boot_10.14.0.18A371a.efi │ │ ├── boot_10.14.0.18A389.efi │ │ ├── boot_10.15.7.19H15.efi │ │ ├── boot_10.4.11.32.efi │ │ ├── boot_10.4.11.64.efi │ │ ├── boot_10.4.11.efi │ │ ├── boot_10.4.7.efi │ │ ├── boot_10.4.8.efi │ │ ├── boot_10.4.9.efi │ │ ├── boot_10.5.6.efi │ │ ├── boot_10.5.8.efi │ │ ├── boot_10.6.8.efi │ │ ├── boot_10.7.5.efi │ │ ├── boot_10.8.5.efi │ │ ├── boot_10.9.5.efi │ │ └── boot_11.0.1.20B29.efi ├── AppleKeyboardLayouts │ ├── AppleKeyboardLayouts.bt │ └── AppleKeyboardLayouts.txt ├── BaseTools │ ├── EfiLdrImage.c │ ├── GenPage.c │ ├── Makefile │ └── VirtualMemory.h ├── CreateVault │ ├── RsaTool │ ├── create_vault.sh │ └── sign.command ├── EfiResTool │ ├── EfiResTool.c │ ├── Makefile │ └── README.md ├── FindSerialPort │ ├── FindSerialPort.command │ └── README.md ├── LegacyBoot │ ├── BootInstallBase.sh │ ├── BootInstall_IA32.tool │ ├── BootInstall_IA32_BlockIO.tool │ ├── BootInstall_X64.tool │ ├── BootInstall_X64_BlockIO.tool │ ├── QemuBuild.command │ ├── README.md │ ├── boot0 │ └── boot1f32 ├── LogoutHook │ ├── Launchd.command │ ├── Launchd.command.plist │ ├── Makefile │ ├── README.md │ └── nvramdump.c ├── MacEfiUnpack │ └── MacEfiUnpack.py ├── RsaTool │ ├── LICENSE │ ├── Makefile │ ├── RsaTool.c │ ├── build_libressl.sh │ └── openssl_compat.h ├── ShimUtils │ ├── README.md │ ├── sbat-info.tool │ ├── shim-make.tool │ ├── shim-to-cert.tool │ └── unsign-efi-sig-list.tool ├── TestBmf │ ├── Bmf.c │ ├── BmfDummy.c │ └── Makefile ├── TestCpuFrequency │ ├── CpuFrequency.c │ └── Makefile ├── TestDiskImage │ ├── DiskImage.c │ ├── FileDummy.c │ └── Makefile ├── TestExt4Dxe │ ├── Makefile │ └── TestExt4Dxe.c ├── TestFatDxe │ ├── Makefile │ └── TestFatDxe.c ├── TestHelloWorld │ ├── HelloWorld.c │ └── Makefile ├── TestImg4 │ ├── Img4.c │ └── Makefile ├── TestKextInject │ ├── KextInject.c │ ├── Makefile │ └── check_injection.sh ├── TestMacho │ ├── Macho.c │ ├── Makefile │ └── kernel ├── TestMp3 │ ├── Makefile │ └── Mp3.c ├── TestNtfsDxe │ ├── Makefile │ └── TestNtfsDxe.c ├── TestPeCoff │ ├── Makefile │ └── PeCoff.c ├── TestProcessKernel │ ├── Makefile │ ├── ProcessKernel.c │ └── ProcessKernelDummy.c ├── TestRsaPreprocess │ ├── Makefile │ └── RsaPreprocess.c ├── TestSmbios │ ├── Makefile │ ├── Smbios.bin │ └── Smbios.c ├── WinNvram │ ├── Makefile │ ├── nvram.c │ └── nvram.exe ├── acdtinfo │ ├── Makefile │ └── acdtinfo.c ├── disklabel │ ├── Makefile │ └── disklabel.c ├── ext4read │ ├── Makefile │ └── ext4read.c ├── icnspack │ ├── Makefile │ └── icnspack.c ├── kpdescribe │ └── kpdescribe.sh ├── macrecovery │ ├── README.md │ ├── boards.json │ ├── build-image.sh │ ├── macrecovery.py │ └── recovery_urls.txt ├── macserial │ ├── FORMAT.md │ ├── Makefile │ ├── README.md │ ├── cccdump.py │ ├── macserial.c │ ├── macserial.h │ ├── modelinfo.h │ └── modelinfo_autogen.h ├── ocpasswordgen │ ├── Makefile │ └── ocpasswordgen.c └── ocvalidate │ ├── KextInfo.c │ ├── KextInfo.h │ ├── Makefile │ ├── NvramKeyInfo.c │ ├── NvramKeyInfo.h │ ├── OcValidateLib.c │ ├── OcValidateLib.h │ ├── README.md │ ├── ValidateAcpi.c │ ├── ValidateBooter.c │ ├── ValidateDeviceProperties.c │ ├── ValidateKernel.c │ ├── ValidateMisc.c │ ├── ValidateNvram.c │ ├── ValidatePlatformInfo.c │ ├── ValidateUefi.c │ ├── ocvalidate.c │ └── ocvalidate.h ├── docker-compose.yaml └── xcbuild.tool /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.json -diff 2 | -------------------------------------------------------------------------------- /.github/workflows/analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/.github/workflows/analyze.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/uncrustify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/.github/workflows/uncrustify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/.gitignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- 1 | # Ignore sourced files if any 2 | disable=SC1091 3 | -------------------------------------------------------------------------------- /AppleModels/DataBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase.md -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB101.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB11.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB21.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB31.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB41.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB51.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB52.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB61.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB71.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB81.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacBook/MB91.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacBook/MB91.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacPro/MP11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacPro/MP11.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacPro/MP21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacPro/MP21.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacPro/MP31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacPro/MP31.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacPro/MP41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacPro/MP41.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacPro/MP51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacPro/MP51.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacPro/MP61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacPro/MP61.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/MacPro/MP71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/MacPro/MP71.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM11.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM21.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM31.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM41.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM51.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM52.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM53.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM53.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM61.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM62.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM62.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM71.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Macmini/MM81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Macmini/MM81.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Xserve/XS11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Xserve/XS11.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Xserve/XS21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Xserve/XS21.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/Xserve/XS31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/Xserve/XS31.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM101.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM111.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM111.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM112.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM112.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM113.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM113.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM121.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM121.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM122.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM122.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM131.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM131.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM132.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM132.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM133.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM133.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM141.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM141.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM142.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM142.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM143.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM143.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM144.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM144.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM151.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM151.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM161.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM161.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM162.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM162.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM171.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM171.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM181.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM181.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM182.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM182.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM183.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM183.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM191.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM191.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM192.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM192.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM201.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM201.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM202.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM202.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM41.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM42.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM51.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM51.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM52.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM61.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM71.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM81.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMac/IM91.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMac/IM91.yaml -------------------------------------------------------------------------------- /AppleModels/DataBase/iMacPro/IMP11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/DataBase/iMacPro/IMP11.yaml -------------------------------------------------------------------------------- /AppleModels/Products.zjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/Products.zjson -------------------------------------------------------------------------------- /AppleModels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/README.md -------------------------------------------------------------------------------- /AppleModels/update_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/update_generated.py -------------------------------------------------------------------------------- /AppleModels/update_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/AppleModels/update_products.py -------------------------------------------------------------------------------- /Application/BootKicker/BootKicker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/BootKicker/BootKicker.c -------------------------------------------------------------------------------- /Application/BootKicker/BootKicker.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/BootKicker/BootKicker.inf -------------------------------------------------------------------------------- /Application/Bootstrap/Bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/Bootstrap/Bootstrap.c -------------------------------------------------------------------------------- /Application/Bootstrap/Bootstrap.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/Bootstrap/Bootstrap.inf -------------------------------------------------------------------------------- /Application/ChipTune/ChipTune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/ChipTune/ChipTune.c -------------------------------------------------------------------------------- /Application/ChipTune/ChipTune.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/ChipTune/ChipTune.inf -------------------------------------------------------------------------------- /Application/CleanNvram/CleanNvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/CleanNvram/CleanNvram.c -------------------------------------------------------------------------------- /Application/CleanNvram/CleanNvram.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/CleanNvram/CleanNvram.inf -------------------------------------------------------------------------------- /Application/ControlMsrE2/ControlMsrE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/ControlMsrE2/ControlMsrE2.c -------------------------------------------------------------------------------- /Application/ControlMsrE2/ControlMsrE2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/ControlMsrE2/ControlMsrE2.h -------------------------------------------------------------------------------- /Application/ControlMsrE2/VerifyMsrE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/ControlMsrE2/VerifyMsrE2.c -------------------------------------------------------------------------------- /Application/CsrUtil/CsrUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/CsrUtil/CsrUtil.c -------------------------------------------------------------------------------- /Application/CsrUtil/CsrUtil.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/CsrUtil/CsrUtil.inf -------------------------------------------------------------------------------- /Application/FontTester/FontTester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/FontTester/FontTester.c -------------------------------------------------------------------------------- /Application/FontTester/FontTester.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/FontTester/FontTester.inf -------------------------------------------------------------------------------- /Application/GopPerf/GopPerf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/GopPerf/GopPerf.c -------------------------------------------------------------------------------- /Application/GopPerf/GopPerf.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/GopPerf/GopPerf.inf -------------------------------------------------------------------------------- /Application/GopStop/Examples/Step10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/GopStop/Examples/Step10.png -------------------------------------------------------------------------------- /Application/GopStop/Examples/Step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/GopStop/Examples/Step3.png -------------------------------------------------------------------------------- /Application/GopStop/GopStop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/GopStop/GopStop.c -------------------------------------------------------------------------------- /Application/GopStop/GopStop.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/GopStop/GopStop.inf -------------------------------------------------------------------------------- /Application/GopStop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/GopStop/README.md -------------------------------------------------------------------------------- /Application/KeyTester/KeyTester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/KeyTester/KeyTester.c -------------------------------------------------------------------------------- /Application/KeyTester/KeyTester.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/KeyTester/KeyTester.inf -------------------------------------------------------------------------------- /Application/MmapDump/MmapDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/MmapDump/MmapDump.c -------------------------------------------------------------------------------- /Application/MmapDump/MmapDump.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/MmapDump/MmapDump.inf -------------------------------------------------------------------------------- /Application/OpenControl/OpenControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/OpenControl/OpenControl.c -------------------------------------------------------------------------------- /Application/OpenControl/OpenControl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/OpenControl/OpenControl.inf -------------------------------------------------------------------------------- /Application/OpenCore/OpenCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/OpenCore/OpenCore.c -------------------------------------------------------------------------------- /Application/OpenCore/OpenCore.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/OpenCore/OpenCore.inf -------------------------------------------------------------------------------- /Application/ResetSystem/ResetSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/ResetSystem/ResetSystem.c -------------------------------------------------------------------------------- /Application/ResetSystem/ResetSystem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/ResetSystem/ResetSystem.inf -------------------------------------------------------------------------------- /Application/RtcRw/RtcRw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/RtcRw/RtcRw.c -------------------------------------------------------------------------------- /Application/RtcRw/RtcRw.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/RtcRw/RtcRw.inf -------------------------------------------------------------------------------- /Application/TpmInfo/TpmInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/TpmInfo/TpmInfo.c -------------------------------------------------------------------------------- /Application/TpmInfo/TpmInfo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/TpmInfo/TpmInfo.inf -------------------------------------------------------------------------------- /Application/VerifyMemOpt/VerifyMemOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Application/VerifyMemOpt/VerifyMemOpt.c -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Changelog.md -------------------------------------------------------------------------------- /Debug/GdbSyms/GdbSyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Debug/GdbSyms/GdbSyms.c -------------------------------------------------------------------------------- /Debug/GdbSyms/GdbSyms.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Debug/GdbSyms/GdbSyms.inf -------------------------------------------------------------------------------- /Debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Debug/README.md -------------------------------------------------------------------------------- /Debug/Scripts/common_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Debug/Scripts/common_uefi.py -------------------------------------------------------------------------------- /Debug/Scripts/gdb_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Debug/Scripts/gdb_uefi.py -------------------------------------------------------------------------------- /Debug/Scripts/lldb_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Debug/Scripts/lldb_uefi.py -------------------------------------------------------------------------------- /Debug/efidebug.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Debug/efidebug.tool -------------------------------------------------------------------------------- /Dockerfiles/oc-dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Dockerfiles/oc-dev/Dockerfile -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-ALS0.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-ALS0.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-BRG0.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-BRG0.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-EC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-EC.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-HV-DEV.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-HV-DEV.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-IMEI.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-IMEI.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-PLUG.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-PLUG.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-PMC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-PMC.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-PNLF.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-PNLF.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-RTC0.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-RTC0.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/Source/SSDT-UNC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/AcpiSamples/Source/SSDT-UNC.dsl -------------------------------------------------------------------------------- /Docs/BuildDocs.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/BuildDocs.tool -------------------------------------------------------------------------------- /Docs/Configuration.md5: -------------------------------------------------------------------------------- 1 | 0b8c21ce5395a0ee6f94efe89ed89b4a 2 | -------------------------------------------------------------------------------- /Docs/Configuration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Configuration.pdf -------------------------------------------------------------------------------- /Docs/Configuration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Configuration.tex -------------------------------------------------------------------------------- /Docs/Differences/Differences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Differences/Differences.pdf -------------------------------------------------------------------------------- /Docs/Differences/Differences.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Differences/Differences.tex -------------------------------------------------------------------------------- /Docs/Errata/Errata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Errata/Errata.pdf -------------------------------------------------------------------------------- /Docs/Errata/Errata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Errata/Errata.tex -------------------------------------------------------------------------------- /Docs/FORUMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/FORUMS.md -------------------------------------------------------------------------------- /Docs/Flavours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Flavours.md -------------------------------------------------------------------------------- /Docs/Kexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Kexts.md -------------------------------------------------------------------------------- /Docs/Libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Libraries.md -------------------------------------------------------------------------------- /Docs/Logos/Logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Logos/Logo.pdf -------------------------------------------------------------------------------- /Docs/Logos/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Logos/Logo.png -------------------------------------------------------------------------------- /Docs/Logos/Logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Logos/Logo.sketch -------------------------------------------------------------------------------- /Docs/Logos/LogoApprox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Logos/LogoApprox.svg -------------------------------------------------------------------------------- /Docs/Logos/OpenCore_with_text_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Logos/OpenCore_with_text_Large.png -------------------------------------------------------------------------------- /Docs/Logos/OpenCore_with_text_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Logos/OpenCore_with_text_Small.png -------------------------------------------------------------------------------- /Docs/Logos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Logos/README.md -------------------------------------------------------------------------------- /Docs/Sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/Sample.plist -------------------------------------------------------------------------------- /Docs/SampleCustom.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Docs/SampleCustom.plist -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Doxyfile -------------------------------------------------------------------------------- /Include/AMI/Protocol/AmiKeycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/AMI/Protocol/AmiKeycode.h -------------------------------------------------------------------------------- /Include/AMI/Protocol/AmiPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/AMI/Protocol/AmiPointer.h -------------------------------------------------------------------------------- /Include/AMI/Protocol/AmiSoftKbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/AMI/Protocol/AmiSoftKbd.h -------------------------------------------------------------------------------- /Include/Acidanthera/Guid/OcSmBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Guid/OcSmBios.h -------------------------------------------------------------------------------- /Include/Acidanthera/Guid/OcVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Guid/OcVariable.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcAcpiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcAcpiLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcApfsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcApfsLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcBlitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcBlitLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcCpuLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcCpuLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcFileLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcFileLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcHeciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcHeciLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcMainLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcMainLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcMiscLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcMiscLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcMp3Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcMp3Lib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcPngLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcPngLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcRngLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcRngLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcRtcLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcRtcLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcSmcLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcSmcLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcWaveLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcWaveLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Library/OcXmlLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Library/OcXmlLib.h -------------------------------------------------------------------------------- /Include/Acidanthera/Protocol/AudioIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Protocol/AudioIo.h -------------------------------------------------------------------------------- /Include/Acidanthera/Protocol/HdaIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Protocol/HdaIo.h -------------------------------------------------------------------------------- /Include/Acidanthera/Protocol/OcAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Protocol/OcAudio.h -------------------------------------------------------------------------------- /Include/Acidanthera/Protocol/OcLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Acidanthera/Protocol/OcLog.h -------------------------------------------------------------------------------- /Include/Apple/AArch64/AppleCpuType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/AArch64/AppleCpuType.h -------------------------------------------------------------------------------- /Include/Apple/AppleMacEfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/AppleMacEfi.h -------------------------------------------------------------------------------- /Include/Apple/Arm/AppleCpuType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Arm/AppleCpuType.h -------------------------------------------------------------------------------- /Include/Apple/Ebc/AppleCpuType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Ebc/AppleCpuType.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleApfsInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleApfsInfo.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleBless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleBless.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleCertificate.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleDataHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleDataHub.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleDevicePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleDevicePath.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleFile.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleHfsInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleHfsInfo.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleHob.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleOSLoaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleOSLoaded.h -------------------------------------------------------------------------------- /Include/Apple/Guid/ApplePlatformInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/ApplePlatformInfo.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleTscFrequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleTscFrequency.h -------------------------------------------------------------------------------- /Include/Apple/Guid/AppleVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/AppleVariable.h -------------------------------------------------------------------------------- /Include/Apple/Guid/BiosId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Guid/BiosId.h -------------------------------------------------------------------------------- /Include/Apple/Ia32/AppleCpuType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Ia32/AppleCpuType.h -------------------------------------------------------------------------------- /Include/Apple/IndustryStandard/Apfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/IndustryStandard/Apfs.h -------------------------------------------------------------------------------- /Include/Apple/IndustryStandard/Apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/IndustryStandard/Apm.h -------------------------------------------------------------------------------- /Include/Apple/Library/AppleDataHubLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Library/AppleDataHubLib.h -------------------------------------------------------------------------------- /Include/Apple/Library/AppleEventLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Library/AppleEventLib.h -------------------------------------------------------------------------------- /Include/Apple/Library/AppleSmbiosLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Library/AppleSmbiosLib.h -------------------------------------------------------------------------------- /Include/Apple/Library/BiosIdLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Library/BiosIdLib.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/Apple80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/Apple80211.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleBeepGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleBeepGen.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleDebugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleDebugLog.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleDiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleDiag.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleDiagLed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleDiagLed.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleDiskImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleDiskImage.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleDmgBoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleDmgBoot.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleEg2Info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleEg2Info.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleEvent.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleHda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleHda.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleLoadImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleLoadImage.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleRamDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleRamDisk.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleRtcRam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleRtcRam.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleSmcIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleSmcIo.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/AppleVoiceOver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/AppleVoiceOver.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/KeyboardInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/KeyboardInfo.h -------------------------------------------------------------------------------- /Include/Apple/Protocol/OSInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/Protocol/OSInfo.h -------------------------------------------------------------------------------- /Include/Apple/X64/AppleCpuType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Apple/X64/AppleCpuType.h -------------------------------------------------------------------------------- /Include/Duet/EfiFlashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/EfiFlashMap.h -------------------------------------------------------------------------------- /Include/Duet/EfiImageFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/EfiImageFormat.h -------------------------------------------------------------------------------- /Include/Duet/EfiLdrHandoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/EfiLdrHandoff.h -------------------------------------------------------------------------------- /Include/Duet/FlashLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/FlashLayout.h -------------------------------------------------------------------------------- /Include/Duet/Guid/AcpiDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/Guid/AcpiDescription.h -------------------------------------------------------------------------------- /Include/Duet/Guid/DxeCoreFileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/Guid/DxeCoreFileName.h -------------------------------------------------------------------------------- /Include/Duet/Guid/FlashMapHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/Guid/FlashMapHob.h -------------------------------------------------------------------------------- /Include/Duet/Guid/LdrMemoryDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/Guid/LdrMemoryDescriptor.h -------------------------------------------------------------------------------- /Include/Duet/Guid/PciOptionRomTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/Guid/PciOptionRomTable.h -------------------------------------------------------------------------------- /Include/Duet/Library/DuetBdsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Duet/Library/DuetBdsLib.h -------------------------------------------------------------------------------- /Include/Generic/IndustryStandard/Edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Generic/IndustryStandard/Edid.h -------------------------------------------------------------------------------- /Include/Generic/IndustryStandard/Riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Generic/IndustryStandard/Riff.h -------------------------------------------------------------------------------- /Include/Generic/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Generic/stdbool.h -------------------------------------------------------------------------------- /Include/Grub2/Guid/ShimLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Grub2/Guid/ShimLock.h -------------------------------------------------------------------------------- /Include/Grub2/ShimVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Grub2/ShimVars.h -------------------------------------------------------------------------------- /Include/Intel/Guid/BlockIoVendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Guid/BlockIoVendor.h -------------------------------------------------------------------------------- /Include/Intel/Guid/DataHubRecords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Guid/DataHubRecords.h -------------------------------------------------------------------------------- /Include/Intel/IndustryStandard/CpuId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/IndustryStandard/CpuId.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/ConsoleControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/ConsoleControl.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/CpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/CpuIo.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/DataHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/DataHub.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/FirmwareVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/FirmwareVolume.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/Heci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/Heci.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/Heci2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/Heci2.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/HotPlugDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/HotPlugDevice.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/LegacyBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/LegacyBios.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/LegacyRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/LegacyRegion.h -------------------------------------------------------------------------------- /Include/Intel/Protocol/VgaMiniPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Intel/Protocol/VgaMiniPort.h -------------------------------------------------------------------------------- /Include/Microsoft/MicrosoftWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/Microsoft/MicrosoftWindows.h -------------------------------------------------------------------------------- /Include/VMware/Protocol/VMwareDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/VMware/Protocol/VMwareDebug.h -------------------------------------------------------------------------------- /Include/VMware/Protocol/VMwareHda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/VMware/Protocol/VMwareHda.h -------------------------------------------------------------------------------- /Include/VMware/Protocol/VMwareMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Include/VMware/Protocol/VMwareMac.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Legacy/BinDrivers/HfsPlus.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BinDrivers/HfsPlus.inf -------------------------------------------------------------------------------- /Legacy/BinDrivers/OpenUsbKbDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BinDrivers/OpenUsbKbDxe.inf -------------------------------------------------------------------------------- /Legacy/BinDrivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BinDrivers/README.md -------------------------------------------------------------------------------- /Legacy/BootLoader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootLoader/Makefile -------------------------------------------------------------------------------- /Legacy/BootLoader/boot0.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootLoader/boot0.nasm -------------------------------------------------------------------------------- /Legacy/BootLoader/boot1f32.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootLoader/boot1f32.nasm -------------------------------------------------------------------------------- /Legacy/BootPlatform/BdsDxe/Bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/BdsDxe/Bds.h -------------------------------------------------------------------------------- /Legacy/BootPlatform/BdsDxe/BdsDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/BdsDxe/BdsDxe.inf -------------------------------------------------------------------------------- /Legacy/BootPlatform/BdsDxe/BdsDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/BdsDxe/BdsDxe.uni -------------------------------------------------------------------------------- /Legacy/BootPlatform/BdsDxe/BdsEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/BdsDxe/BdsEntry.c -------------------------------------------------------------------------------- /Legacy/BootPlatform/BlockIoDxe/Edd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/BlockIoDxe/Edd.h -------------------------------------------------------------------------------- /Legacy/BootPlatform/CpuDxe/CpuDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/CpuDxe/CpuDxe.c -------------------------------------------------------------------------------- /Legacy/BootPlatform/CpuDxe/CpuDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/CpuDxe/CpuDxe.h -------------------------------------------------------------------------------- /Legacy/BootPlatform/CpuDxe/CpuDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/CpuDxe/CpuDxe.inf -------------------------------------------------------------------------------- /Legacy/BootPlatform/DxeIpl/DxeInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/DxeIpl/DxeInit.c -------------------------------------------------------------------------------- /Legacy/BootPlatform/DxeIpl/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/DxeIpl/DxeIpl.h -------------------------------------------------------------------------------- /Legacy/BootPlatform/DxeIpl/DxeIpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/DxeIpl/DxeIpl.inf -------------------------------------------------------------------------------- /Legacy/BootPlatform/DxeIpl/Ia32/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/DxeIpl/Ia32/GS.nasm -------------------------------------------------------------------------------- /Legacy/BootPlatform/DxeIpl/X64/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/DxeIpl/X64/GS.nasm -------------------------------------------------------------------------------- /Legacy/BootPlatform/DxeIpl/X64/Paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/DxeIpl/X64/Paging.c -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/EfiLdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/EfiLdr.h -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/EfiLdr.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/EfiLdr.inf -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/EfiLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/EfiLoader.c -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/Ia32/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/Ia32/GS.nasm -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/PeLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/PeLoader.c -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/Support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/Support.c -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/Support.h -------------------------------------------------------------------------------- /Legacy/BootPlatform/EfiLdr/X64/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootPlatform/EfiLdr/X64/GS.nasm -------------------------------------------------------------------------------- /Legacy/BootSector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootSector/Makefile -------------------------------------------------------------------------------- /Legacy/BootSector/efi32.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootSector/efi32.nasm -------------------------------------------------------------------------------- /Legacy/BootSector/efi64.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootSector/efi64.nasm -------------------------------------------------------------------------------- /Legacy/BootSector/start.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/BootSector/start.nasm -------------------------------------------------------------------------------- /Legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Legacy/README.md -------------------------------------------------------------------------------- /Library/DuetBdsLib/BdsConnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetBdsLib/BdsConnect.c -------------------------------------------------------------------------------- /Library/DuetBdsLib/BdsConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetBdsLib/BdsConsole.c -------------------------------------------------------------------------------- /Library/DuetBdsLib/BdsMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetBdsLib/BdsMisc.c -------------------------------------------------------------------------------- /Library/DuetBdsLib/BdsPlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetBdsLib/BdsPlatform.c -------------------------------------------------------------------------------- /Library/DuetBdsLib/BdsPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetBdsLib/BdsPlatform.h -------------------------------------------------------------------------------- /Library/DuetBdsLib/DuetBdsLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetBdsLib/DuetBdsLib.inf -------------------------------------------------------------------------------- /Library/DuetBdsLib/PlatformData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetBdsLib/PlatformData.c -------------------------------------------------------------------------------- /Library/DuetTimerLib/DuetTimerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetTimerLib/DuetTimerLib.inf -------------------------------------------------------------------------------- /Library/DuetTimerLib/X86TimerLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/DuetTimerLib/X86TimerLib.c -------------------------------------------------------------------------------- /Library/OcAcpiLib/AcpiDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAcpiLib/AcpiDump.c -------------------------------------------------------------------------------- /Library/OcAcpiLib/AcpiParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAcpiLib/AcpiParser.c -------------------------------------------------------------------------------- /Library/OcAcpiLib/AcpiParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAcpiLib/AcpiParser.h -------------------------------------------------------------------------------- /Library/OcAcpiLib/OcAcpiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAcpiLib/OcAcpiLib.c -------------------------------------------------------------------------------- /Library/OcAcpiLib/OcAcpiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAcpiLib/OcAcpiLib.inf -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsConnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsConnect.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsFusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsFusion.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsInternal.h -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsIo.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsLib.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsLib.inf -------------------------------------------------------------------------------- /Library/OcAppleEventLib/AppleKeyMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleEventLib/AppleKeyMap.c -------------------------------------------------------------------------------- /Library/OcAppleEventLib/EventQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleEventLib/EventQueue.c -------------------------------------------------------------------------------- /Library/OcAppleEventLib/KeyHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleEventLib/KeyHandler.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/OcAppleImg4Lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/OcAppleImg4Lib.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/libDER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/libDER.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/oids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/oids.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/oids.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER_config.h -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/CpuidPatches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/CpuidPatches.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/KernelReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/KernelReader.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/KextPatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/KextPatcher.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/KxldState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/KxldState.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/LegacyBcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/LegacyBcopy.h -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/Link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/Link.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/MkextContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/MkextContext.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/Vtables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKernelLib/Vtables.c -------------------------------------------------------------------------------- /Library/OcAppleKeysLib/OcAppleKeysLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAppleKeysLib/OcAppleKeysLib.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudio.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioDump.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioGenBeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioGenBeep.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioInternal.h -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioLib.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioLib.inf -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioVoiceOver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioVoiceOver.c -------------------------------------------------------------------------------- /Library/OcBlitLib/BlitBufferToVideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcBlitLib/BlitBufferToVideo.c -------------------------------------------------------------------------------- /Library/OcBlitLib/BlitInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcBlitLib/BlitInternal.h -------------------------------------------------------------------------------- /Library/OcBlitLib/BlitVideoToBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcBlitLib/BlitVideoToBuffer.c -------------------------------------------------------------------------------- /Library/OcBlitLib/OcBlitLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcBlitLib/OcBlitLib.c -------------------------------------------------------------------------------- /Library/OcBlitLib/OcBlitLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcBlitLib/OcBlitLib.inf -------------------------------------------------------------------------------- /Library/OcBootManagementLib/BootAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcBootManagementLib/BootAudio.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzss/lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/lzss/lzss.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzss/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/lzss/lzss.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzvn/lzvn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/lzvn/lzvn.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzvn/lzvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/lzvn/lzvn.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/adler32.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/crc32.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/crc32.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/deflate.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/deflate.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/infback.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inffast.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inffast.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inflate.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inflate.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/trees.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/trees.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/uncompr.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zconf.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zlib.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zutil.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zutil.h -------------------------------------------------------------------------------- /Library/OcConsoleLib/ConsoleControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/ConsoleControl.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/ConsoleFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/ConsoleFont.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/ConsoleGop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/ConsoleGop.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/Eg2Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/Eg2Info.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/FramebufferInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/FramebufferInfo.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/GopInfoDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/GopInfoDump.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/GopPassThrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/GopPassThrough.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/GopUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/GopUtils.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/OcConsoleLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/OcConsoleLib.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/OcConsoleLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/OcConsoleLib.inf -------------------------------------------------------------------------------- /Library/OcConsoleLib/TextOutputNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/TextOutputNull.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/TextOutputSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/TextOutputSystem.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/UgaPassThrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcConsoleLib/UgaPassThrough.c -------------------------------------------------------------------------------- /Library/OcCpuLib/AppleCpuSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/AppleCpuSupport.c -------------------------------------------------------------------------------- /Library/OcCpuLib/FrequencyDetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/FrequencyDetect.c -------------------------------------------------------------------------------- /Library/OcCpuLib/Ia32/Atomic.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/Ia32/Atomic.nasm -------------------------------------------------------------------------------- /Library/OcCpuLib/Ia32/MeasureTicks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/Ia32/MeasureTicks.c -------------------------------------------------------------------------------- /Library/OcCpuLib/Ia32/Microcode.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/Ia32/Microcode.nasm -------------------------------------------------------------------------------- /Library/OcCpuLib/OcCpuInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/OcCpuInternals.h -------------------------------------------------------------------------------- /Library/OcCpuLib/OcCpuLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/OcCpuLib.c -------------------------------------------------------------------------------- /Library/OcCpuLib/OcCpuLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/OcCpuLib.inf -------------------------------------------------------------------------------- /Library/OcCpuLib/X64/Atomic.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/X64/Atomic.nasm -------------------------------------------------------------------------------- /Library/OcCpuLib/X64/MeasureTicks.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/X64/MeasureTicks.nasm -------------------------------------------------------------------------------- /Library/OcCpuLib/X64/Microcode.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCpuLib/X64/Microcode.nasm -------------------------------------------------------------------------------- /Library/OcCryptoLib/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/Aes.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumLib.h -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumLibInternal.h -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumMontgomery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumMontgomery.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumPrimitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumPrimitives.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/ChaCha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/ChaCha.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/CryptoInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/CryptoInternal.h -------------------------------------------------------------------------------- /Library/OcCryptoLib/Md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/Md5.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/OcCryptoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/OcCryptoLib.inf -------------------------------------------------------------------------------- /Library/OcCryptoLib/PasswordHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/PasswordHash.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/RsaDigitalSign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/RsaDigitalSign.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/SecureMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/SecureMem.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/Sha1.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/Sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/Sha2.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/Sha2Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/Sha2Internal.h -------------------------------------------------------------------------------- /Library/OcCryptoLib/Sha512AccelDummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/Sha512AccelDummy.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/X64/Sha512Avx.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcCryptoLib/X64/Sha512Avx.nasm -------------------------------------------------------------------------------- /Library/OcDataHubLib/DataHub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDataHubLib/DataHub.c -------------------------------------------------------------------------------- /Library/OcDataHubLib/DataHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDataHubLib/DataHub.h -------------------------------------------------------------------------------- /Library/OcDataHubLib/OcDataHubLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDataHubLib/OcDataHubLib.c -------------------------------------------------------------------------------- /Library/OcDataHubLib/OcDataHubLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDataHubLib/OcDataHubLib.inf -------------------------------------------------------------------------------- /Library/OcDebugLibNull/OcDebugLibNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDebugLibNull/OcDebugLibNull.c -------------------------------------------------------------------------------- /Library/OcDebugLibProtocol/DebugHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDebugLibProtocol/DebugHelp.c -------------------------------------------------------------------------------- /Library/OcDebugLibProtocol/DebugPrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDebugLibProtocol/DebugPrint.c -------------------------------------------------------------------------------- /Library/OcDebugLogLibOc2Clover/OcLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDebugLogLibOc2Clover/OcLog.c -------------------------------------------------------------------------------- /Library/OcDeviceMiscLib/CpuInfoDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDeviceMiscLib/CpuInfoDump.c -------------------------------------------------------------------------------- /Library/OcDeviceMiscLib/ForgeUefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDeviceMiscLib/ForgeUefi.c -------------------------------------------------------------------------------- /Library/OcDeviceMiscLib/PciInfoDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDeviceMiscLib/PciInfoDump.c -------------------------------------------------------------------------------- /Library/OcDirectResetLib/DirectReset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDirectResetLib/DirectReset.c -------------------------------------------------------------------------------- /Library/OcDriverEntryPoint/Ia32/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDriverEntryPoint/Ia32/GS.nasm -------------------------------------------------------------------------------- /Library/OcDriverEntryPoint/X64/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDriverEntryPoint/X64/GS.nasm -------------------------------------------------------------------------------- /Library/OcDxeCoreEntryPoint/X64/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcDxeCoreEntryPoint/X64/GS.nasm -------------------------------------------------------------------------------- /Library/OcFileLib/DiskMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/DiskMisc.c -------------------------------------------------------------------------------- /Library/OcFileLib/FileMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/FileMisc.c -------------------------------------------------------------------------------- /Library/OcFileLib/FileProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/FileProtocol.c -------------------------------------------------------------------------------- /Library/OcFileLib/FirmwareFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/FirmwareFile.c -------------------------------------------------------------------------------- /Library/OcFileLib/GetFileInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/GetFileInfo.c -------------------------------------------------------------------------------- /Library/OcFileLib/GetVolumeLabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/GetVolumeLabel.c -------------------------------------------------------------------------------- /Library/OcFileLib/LocateFileSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/LocateFileSystem.c -------------------------------------------------------------------------------- /Library/OcFileLib/OcFileLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/OcFileLib.inf -------------------------------------------------------------------------------- /Library/OcFileLib/OpenFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/OpenFile.c -------------------------------------------------------------------------------- /Library/OcFileLib/ReadFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFileLib/ReadFile.c -------------------------------------------------------------------------------- /Library/OcFlexArrayLib/FlexArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFlexArrayLib/FlexArray.c -------------------------------------------------------------------------------- /Library/OcFlexArrayLib/FlexString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcFlexArrayLib/FlexString.c -------------------------------------------------------------------------------- /Library/OcGuardLib/OcGuardLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcGuardLib/OcGuardLib.inf -------------------------------------------------------------------------------- /Library/OcGuardLib/Ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcGuardLib/Ubsan.c -------------------------------------------------------------------------------- /Library/OcGuardLib/Ubsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcGuardLib/Ubsan.h -------------------------------------------------------------------------------- /Library/OcGuardLib/UbsanPrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcGuardLib/UbsanPrintf.c -------------------------------------------------------------------------------- /Library/OcHeciLib/OcHeciLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHeciLib/OcHeciLib.c -------------------------------------------------------------------------------- /Library/OcHeciLib/OcHeciLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHeciLib/OcHeciLib.inf -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/Database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/Database.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/Font.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/HiiDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/HiiDatabase.h -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/Image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/Image.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/ImageEx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/ImageEx.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/String.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIK.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIK.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKData.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKData.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKMap.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKShim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKShim.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKShim.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKSource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKSource.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKSource.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKTarget.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKTarget.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AppleHid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AppleHid.txt -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/README.md -------------------------------------------------------------------------------- /Library/OcInputLib/OcInputLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/OcInputLib.inf -------------------------------------------------------------------------------- /Library/OcInputLib/Pointer/AIM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Pointer/AIM.c -------------------------------------------------------------------------------- /Library/OcInputLib/Pointer/AIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Pointer/AIM.h -------------------------------------------------------------------------------- /Library/OcInputLib/Timer/AIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcInputLib/Timer/AIT.c -------------------------------------------------------------------------------- /Library/OcLogAggregatorLib/OcAppleLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcLogAggregatorLib/OcAppleLog.c -------------------------------------------------------------------------------- /Library/OcLogAggregatorLib/OcLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcLogAggregatorLib/OcLog.c -------------------------------------------------------------------------------- /Library/OcMacInfoLib/AutoGenerated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMacInfoLib/AutoGenerated.c -------------------------------------------------------------------------------- /Library/OcMacInfoLib/MacInfoInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMacInfoLib/MacInfoInternal.h -------------------------------------------------------------------------------- /Library/OcMacInfoLib/OcMacInfoLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMacInfoLib/OcMacInfoLib.c -------------------------------------------------------------------------------- /Library/OcMacInfoLib/OcMacInfoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMacInfoLib/OcMacInfoLib.inf -------------------------------------------------------------------------------- /Library/OcMachoLib/CxxSymbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/CxxSymbols.c -------------------------------------------------------------------------------- /Library/OcMachoLib/CxxSymbolsX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/CxxSymbolsX.h -------------------------------------------------------------------------------- /Library/OcMachoLib/Header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/Header.c -------------------------------------------------------------------------------- /Library/OcMachoLib/HeaderX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/HeaderX.h -------------------------------------------------------------------------------- /Library/OcMachoLib/Macho32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/Macho32.c -------------------------------------------------------------------------------- /Library/OcMachoLib/Macho64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/Macho64.c -------------------------------------------------------------------------------- /Library/OcMachoLib/MachoFat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/MachoFat.c -------------------------------------------------------------------------------- /Library/OcMachoLib/MachoX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/MachoX.h -------------------------------------------------------------------------------- /Library/OcMachoLib/OcMachoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/OcMachoLib.inf -------------------------------------------------------------------------------- /Library/OcMachoLib/OcMachoLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/OcMachoLibInternal.h -------------------------------------------------------------------------------- /Library/OcMachoLib/Relocations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/Relocations.c -------------------------------------------------------------------------------- /Library/OcMachoLib/Symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/Symbols.c -------------------------------------------------------------------------------- /Library/OcMachoLib/SymbolsX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMachoLib/SymbolsX.h -------------------------------------------------------------------------------- /Library/OcMainLib/OcMainLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OcMainLib.inf -------------------------------------------------------------------------------- /Library/OcMainLib/OcMainLibClover.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OcMainLibClover.inf -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreAcpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreAcpi.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreDevProps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreDevProps.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreKernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreKernel.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreKernelPatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreKernelPatch.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreMisc.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreNvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreNvram.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCorePlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCorePlatform.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreUefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreUefi.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreUefiAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreUefiAudio.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreUefiInOut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreUefiInOut.c -------------------------------------------------------------------------------- /Library/OcMainLib/OpenCoreVault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMainLib/OpenCoreVault.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/LegacyRegionLock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/LegacyRegionLock.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryAlloc.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryAttributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryAttributes.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryDebug.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryMap.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/OcMemoryLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/OcMemoryLib.inf -------------------------------------------------------------------------------- /Library/OcMemoryLib/UmmMalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/UmmMalloc.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/VirtualMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMemoryLib/VirtualMemory.c -------------------------------------------------------------------------------- /Library/OcMiscLib/ConsoleUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMiscLib/ConsoleUtils.c -------------------------------------------------------------------------------- /Library/OcMiscLib/DataPatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMiscLib/DataPatcher.c -------------------------------------------------------------------------------- /Library/OcMiscLib/ImageRunner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMiscLib/ImageRunner.c -------------------------------------------------------------------------------- /Library/OcMiscLib/OcMiscLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMiscLib/OcMiscLib.inf -------------------------------------------------------------------------------- /Library/OcMiscLib/PlatformInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMiscLib/PlatformInfo.c -------------------------------------------------------------------------------- /Library/OcMiscLib/ProtocolSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMiscLib/ProtocolSupport.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/OcMp3Lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/OcMp3Lib.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/OcMp3Lib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/OcMp3Lib.inf -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/README.md -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/assembly.h -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/bitstream.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/buffers.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/coder.h -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/dct32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/dct32.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/dequant.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/dqchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/dqchan.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/huffman.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/hufftabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/hufftabs.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/imdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/imdct.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/mp3common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/mp3common.h -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/mp3compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/mp3compat.h -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/mp3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/mp3dec.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/mp3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/mp3dec.h -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/mp3tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/mp3tabs.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/polyphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/polyphase.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/scalfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/scalfact.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/statname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/statname.h -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/stproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/stproc.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/subband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/subband.c -------------------------------------------------------------------------------- /Library/OcMp3Lib/helix/trigtabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcMp3Lib/helix/trigtabs.c -------------------------------------------------------------------------------- /Library/OcOSInfoLib/OcOSInfoLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcOSInfoLib/OcOSInfoLib.c -------------------------------------------------------------------------------- /Library/OcOSInfoLib/OcOSInfoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcOSInfoLib/OcOSInfoLib.inf -------------------------------------------------------------------------------- /Library/OcPciIoLib/OcPciIoLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPciIoLib/OcPciIoLib.c -------------------------------------------------------------------------------- /Library/OcPciIoLib/OcPciIoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPciIoLib/OcPciIoLib.inf -------------------------------------------------------------------------------- /Library/OcPciIoLib/OcPciIoU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPciIoLib/OcPciIoU.c -------------------------------------------------------------------------------- /Library/OcPciIoLib/OcPciIoU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPciIoLib/OcPciIoU.h -------------------------------------------------------------------------------- /Library/OcPeCoffExtLib/OcPeCoffExtLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPeCoffExtLib/OcPeCoffExtLib.c -------------------------------------------------------------------------------- /Library/OcPeiCoreEntryPoint/X64/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPeiCoreEntryPoint/X64/GS.nasm -------------------------------------------------------------------------------- /Library/OcPeimEntryPoint/Ia32/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPeimEntryPoint/Ia32/GS.nasm -------------------------------------------------------------------------------- /Library/OcPeimEntryPoint/X64/GS.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPeimEntryPoint/X64/GS.nasm -------------------------------------------------------------------------------- /Library/OcPngLib/OcPng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPngLib/OcPng.c -------------------------------------------------------------------------------- /Library/OcPngLib/OcPngLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPngLib/OcPngLib.inf -------------------------------------------------------------------------------- /Library/OcPngLib/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPngLib/lodepng.c -------------------------------------------------------------------------------- /Library/OcPngLib/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcPngLib/lodepng.h -------------------------------------------------------------------------------- /Library/OcRngLib/Ia32/RngDelay.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRngLib/Ia32/RngDelay.nasm -------------------------------------------------------------------------------- /Library/OcRngLib/OcRngInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRngLib/OcRngInternals.h -------------------------------------------------------------------------------- /Library/OcRngLib/OcRngLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRngLib/OcRngLib.c -------------------------------------------------------------------------------- /Library/OcRngLib/OcRngLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRngLib/OcRngLib.inf -------------------------------------------------------------------------------- /Library/OcRngLib/X64/RngDelay.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRngLib/X64/RngDelay.nasm -------------------------------------------------------------------------------- /Library/OcRtcLib/AppleRtcRam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRtcLib/AppleRtcRam.c -------------------------------------------------------------------------------- /Library/OcRtcLib/OcRtcLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRtcLib/OcRtcLib.c -------------------------------------------------------------------------------- /Library/OcRtcLib/OcRtcLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRtcLib/OcRtcLib.inf -------------------------------------------------------------------------------- /Library/OcRtcLib/OcRtcLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcRtcLib/OcRtcLibInternal.h -------------------------------------------------------------------------------- /Library/OcSmbiosLib/DebugSmbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmbiosLib/DebugSmbios.c -------------------------------------------------------------------------------- /Library/OcSmbiosLib/DebugSmbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmbiosLib/DebugSmbios.h -------------------------------------------------------------------------------- /Library/OcSmbiosLib/OcSmbiosLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmbiosLib/OcSmbiosLib.inf -------------------------------------------------------------------------------- /Library/OcSmbiosLib/SmbiosDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmbiosLib/SmbiosDump.c -------------------------------------------------------------------------------- /Library/OcSmbiosLib/SmbiosInternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmbiosLib/SmbiosInternal.c -------------------------------------------------------------------------------- /Library/OcSmbiosLib/SmbiosInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmbiosLib/SmbiosInternal.h -------------------------------------------------------------------------------- /Library/OcSmbiosLib/SmbiosPatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmbiosLib/SmbiosPatch.c -------------------------------------------------------------------------------- /Library/OcSmcLib/OcSmcLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmcLib/OcSmcLib.c -------------------------------------------------------------------------------- /Library/OcSmcLib/OcSmcLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmcLib/OcSmcLib.inf -------------------------------------------------------------------------------- /Library/OcSmcLib/OcSmcLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcSmcLib/OcSmcLibInternal.h -------------------------------------------------------------------------------- /Library/OcStorageLib/OcStorageLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcStorageLib/OcStorageLib.c -------------------------------------------------------------------------------- /Library/OcStorageLib/OcStorageLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcStorageLib/OcStorageLib.inf -------------------------------------------------------------------------------- /Library/OcStringLib/OcAsciiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcStringLib/OcAsciiLib.c -------------------------------------------------------------------------------- /Library/OcStringLib/OcStringLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcStringLib/OcStringLib.inf -------------------------------------------------------------------------------- /Library/OcStringLib/OcUnicodeLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcStringLib/OcUnicodeLib.c -------------------------------------------------------------------------------- /Library/OcTemplateLib/OcTemplateLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcTemplateLib/OcTemplateLib.c -------------------------------------------------------------------------------- /Library/OcTimerLib/OcTimerLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcTimerLib/OcTimerLib.c -------------------------------------------------------------------------------- /Library/OcTimerLib/OcTimerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcTimerLib/OcTimerLib.inf -------------------------------------------------------------------------------- /Library/OcTypingLib/OcTypingLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcTypingLib/OcTypingLib.c -------------------------------------------------------------------------------- /Library/OcTypingLib/OcTypingLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcTypingLib/OcTypingLib.inf -------------------------------------------------------------------------------- /Library/OcVariableLib/OcVariableLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcVariableLib/OcVariableLib.c -------------------------------------------------------------------------------- /Library/OcVariableLib/Shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcVariableLib/Shim.c -------------------------------------------------------------------------------- /Library/OcVariableLib/Sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcVariableLib/Sip.c -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/VirtualDir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcVirtualFsLib/VirtualDir.c -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/VirtualFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcVirtualFsLib/VirtualFile.c -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/VirtualFs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcVirtualFsLib/VirtualFs.c -------------------------------------------------------------------------------- /Library/OcWaveLib/OcWaveLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcWaveLib/OcWaveLib.c -------------------------------------------------------------------------------- /Library/OcWaveLib/OcWaveLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcWaveLib/OcWaveLib.inf -------------------------------------------------------------------------------- /Library/OcXmlLib/OcXmlLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcXmlLib/OcXmlLib.c -------------------------------------------------------------------------------- /Library/OcXmlLib/OcXmlLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Library/OcXmlLib/OcXmlLib.inf -------------------------------------------------------------------------------- /OpenCoreFromClover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenCoreFromClover.h -------------------------------------------------------------------------------- /OpenCorePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenCorePkg.dec -------------------------------------------------------------------------------- /OpenCorePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenCorePkg.dsc -------------------------------------------------------------------------------- /OpenCorePkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenCorePkg.fdf -------------------------------------------------------------------------------- /OpenCorePkg.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenCorePkg.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenDuetPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenDuetPkg.dec -------------------------------------------------------------------------------- /OpenDuetPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenDuetPkg.dsc -------------------------------------------------------------------------------- /OpenDuetPkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenDuetPkg.fdf -------------------------------------------------------------------------------- /OpenDuetPkgDefines.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/OpenDuetPkgDefines.fdf.inc -------------------------------------------------------------------------------- /Platform/CrScreenshotDxe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/CrScreenshotDxe/LICENSE -------------------------------------------------------------------------------- /Platform/CrScreenshotDxe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/CrScreenshotDxe/README.md -------------------------------------------------------------------------------- /Platform/OpenCanopy/BitmapFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/BitmapFont.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/Blending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/Blending.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/Blending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/Blending.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/BmfFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/BmfFile.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/BmfLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/BmfLib.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/GuiApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/GuiApp.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/GuiApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/GuiApp.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/GuiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/GuiIo.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/Images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/Images.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/OcBootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/OcBootstrap.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/OpenCanopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/OpenCanopy.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/OpenCanopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/OpenCanopy.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/OpenCanopy.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/OpenCanopy.inf -------------------------------------------------------------------------------- /Platform/OpenCanopy/Views/Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/Views/Common.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/Views/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/Views/Common.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/Views/Password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenCanopy/Views/Password.c -------------------------------------------------------------------------------- /Platform/OpenLegacyBoot/BiosDisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenLegacyBoot/BiosDisk.c -------------------------------------------------------------------------------- /Platform/OpenLinuxBoot/Autodetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenLinuxBoot/Autodetect.c -------------------------------------------------------------------------------- /Platform/OpenLinuxBoot/GrubCfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenLinuxBoot/GrubCfg.c -------------------------------------------------------------------------------- /Platform/OpenLinuxBoot/GrubEnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenLinuxBoot/GrubEnv.c -------------------------------------------------------------------------------- /Platform/OpenLinuxBoot/GrubVars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenLinuxBoot/GrubVars.c -------------------------------------------------------------------------------- /Platform/OpenLinuxBoot/LoaderEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenLinuxBoot/LoaderEntry.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Compression.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Data.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Disc.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Driver.h -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Helper.h -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Index.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Info.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/NTFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/NTFS.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/NTFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/NTFS.h -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Open.c -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/OpenNtfsDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/OpenNtfsDxe.inf -------------------------------------------------------------------------------- /Platform/OpenNtfsDxe/Position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenNtfsDxe/Position.c -------------------------------------------------------------------------------- /Platform/OpenPartitionDxe/Apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenPartitionDxe/Apm.c -------------------------------------------------------------------------------- /Platform/OpenPartitionDxe/ElTorito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenPartitionDxe/ElTorito.c -------------------------------------------------------------------------------- /Platform/OpenPartitionDxe/Gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenPartitionDxe/Gpt.c -------------------------------------------------------------------------------- /Platform/OpenPartitionDxe/Mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenPartitionDxe/Mbr.c -------------------------------------------------------------------------------- /Platform/OpenPartitionDxe/Partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenPartitionDxe/Partition.c -------------------------------------------------------------------------------- /Platform/OpenPartitionDxe/Partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenPartitionDxe/Partition.h -------------------------------------------------------------------------------- /Platform/OpenPartitionDxe/Udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenPartitionDxe/Udf.c -------------------------------------------------------------------------------- /Platform/OpenRuntime/OpenRuntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenRuntime/OpenRuntime.c -------------------------------------------------------------------------------- /Platform/OpenRuntime/OpenRuntime.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenRuntime/OpenRuntime.inf -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/AppleKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/AppleKey.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/AppleKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/AppleKey.h -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/ComponentName.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/EfiKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/EfiKey.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/EfiKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/EfiKey.h -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/KeyBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/KeyBoard.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/KeyBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/KeyBoard.h -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/UsbKbDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/UsbKbDxe.inf -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/UsbKbDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/UsbKbDxe.uni -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/README.md -------------------------------------------------------------------------------- /Staging/AudioDxe/AudioDecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/AudioDxe/AudioDecode.c -------------------------------------------------------------------------------- /Staging/AudioDxe/AudioDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/AudioDxe/AudioDxe.c -------------------------------------------------------------------------------- /Staging/AudioDxe/AudioDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/AudioDxe/AudioDxe.h -------------------------------------------------------------------------------- /Staging/AudioDxe/AudioDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/AudioDxe/AudioDxe.inf -------------------------------------------------------------------------------- /Staging/AudioDxe/HdaCodec/HdaCodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/AudioDxe/HdaCodec/HdaCodec.c -------------------------------------------------------------------------------- /Staging/AudioDxe/HdaCodec/HdaCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/AudioDxe/HdaCodec/HdaCodec.h -------------------------------------------------------------------------------- /Staging/EnableGop/EnableGop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/EnableGop/EnableGop.c -------------------------------------------------------------------------------- /Staging/EnableGop/EnableGop.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/EnableGop/EnableGop.inf -------------------------------------------------------------------------------- /Staging/EnableGop/EnableGopDirect.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/EnableGop/EnableGopDirect.inf -------------------------------------------------------------------------------- /Staging/EnableGop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/EnableGop/README.md -------------------------------------------------------------------------------- /Staging/EnableGop/vBiosInsert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/EnableGop/vBiosInsert.sh -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/OpenHfsPlus.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/OpenHfsPlus.inf -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_base.h -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_core.c -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_core.h -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_efi.c -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_efi.h -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_efi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_efi_base.h -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_efi_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_efi_lib.c -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_hfsplus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_hfsplus.c -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_hfsplus.h -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_lib.c -------------------------------------------------------------------------------- /Staging/OpenHfsPlus/fsw_strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/OpenHfsPlus/fsw_strfunc.h -------------------------------------------------------------------------------- /Staging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Staging/README.md -------------------------------------------------------------------------------- /Tests/AcpiTest/AcpiTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/AcpiTest/AcpiTest.c -------------------------------------------------------------------------------- /Tests/AcpiTest/AcpiTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/AcpiTest/AcpiTest.inf -------------------------------------------------------------------------------- /Tests/AcpiTest/AcpiTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/AcpiTest/AcpiTestApp.inf -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoSamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoSamples.h -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoTest.c -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoTest.inf -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoTestApp.inf -------------------------------------------------------------------------------- /Tests/DataHubTest/DataHubTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/DataHubTest/DataHubTest.c -------------------------------------------------------------------------------- /Tests/DataHubTest/DataHubTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/DataHubTest/DataHubTest.inf -------------------------------------------------------------------------------- /Tests/DataHubTest/DataHubTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/DataHubTest/DataHubTestApp.inf -------------------------------------------------------------------------------- /Tests/PropertyTest/PropertyTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/PropertyTest/PropertyTest.c -------------------------------------------------------------------------------- /Tests/PropertyTest/PropertyTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/PropertyTest/PropertyTest.inf -------------------------------------------------------------------------------- /Tests/SmbiosTest/SmbiosTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/SmbiosTest/SmbiosTest.c -------------------------------------------------------------------------------- /Tests/SmbiosTest/SmbiosTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/SmbiosTest/SmbiosTest.inf -------------------------------------------------------------------------------- /Tests/SmbiosTest/SmbiosTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Tests/SmbiosTest/SmbiosTestApp.inf -------------------------------------------------------------------------------- /Uncrustify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Uncrustify.yml -------------------------------------------------------------------------------- /User/Include/UserBootServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Include/UserBootServices.h -------------------------------------------------------------------------------- /User/Include/UserFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Include/UserFile.h -------------------------------------------------------------------------------- /User/Include/UserGlobalVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Include/UserGlobalVar.h -------------------------------------------------------------------------------- /User/Include/UserMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Include/UserMemory.h -------------------------------------------------------------------------------- /User/Include/UserPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Include/UserPcd.h -------------------------------------------------------------------------------- /User/Include/UserPseudoRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Include/UserPseudoRandom.h -------------------------------------------------------------------------------- /User/Include/UserUnicodeCollation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Include/UserUnicodeCollation.h -------------------------------------------------------------------------------- /User/Library/UserBaseMemoryLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserBaseMemoryLib.c -------------------------------------------------------------------------------- /User/Library/UserBootServices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserBootServices.c -------------------------------------------------------------------------------- /User/Library/UserFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserFile.c -------------------------------------------------------------------------------- /User/Library/UserGlobalVar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserGlobalVar.c -------------------------------------------------------------------------------- /User/Library/UserMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserMath.c -------------------------------------------------------------------------------- /User/Library/UserMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserMisc.c -------------------------------------------------------------------------------- /User/Library/UserOcDummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserOcDummy.c -------------------------------------------------------------------------------- /User/Library/UserPcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserPcd.c -------------------------------------------------------------------------------- /User/Library/UserPseudoRandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserPseudoRandom.c -------------------------------------------------------------------------------- /User/Library/UserUnicodeCollation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Library/UserUnicodeCollation.c -------------------------------------------------------------------------------- /User/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/Makefile -------------------------------------------------------------------------------- /User/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/User/README.md -------------------------------------------------------------------------------- /Utilities/ACPIe/ACPIe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ACPIe/ACPIe.c -------------------------------------------------------------------------------- /Utilities/ACPIe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ACPIe/Makefile -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test11_output.txt: -------------------------------------------------------------------------------- 1 | EXIT: ACPI table is incorrect or not supported by parser! 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test12_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 71745 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test13_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 179803 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test14_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 15593 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test15_output.txt: -------------------------------------------------------------------------------- 1 | EXIT: ACPI table is incorrect or not supported by parser! 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test16_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 75 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test17_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 5462 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test18_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 22728 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test19_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 10009 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test1_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 121 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test20_output.txt: -------------------------------------------------------------------------------- 1 | EXIT: No entry found in the table. 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test21_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 8023 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test2_output.txt: -------------------------------------------------------------------------------- 1 | EXIT: No entry found in the table. 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test3_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 3878 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test4_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 385 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test5_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 281 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test6_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 281 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test7_output.txt: -------------------------------------------------------------------------------- 1 | Returned offset: 8797 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test8_output.txt: -------------------------------------------------------------------------------- 1 | EXIT: Invalid parameter! 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Correct/test9_output.txt: -------------------------------------------------------------------------------- 1 | EXIT: Invalid parameter! 2 | -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Input/DSDT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ACPIe/Tests/Input/DSDT.bin -------------------------------------------------------------------------------- /Utilities/ACPIe/Tests/Input/RSDT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ACPIe/Tests/Input/RSDT.bin -------------------------------------------------------------------------------- /Utilities/ACPIe/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ACPIe/testsuite.sh -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Makefile -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/README.md -------------------------------------------------------------------------------- /Utilities/BaseTools/EfiLdrImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/BaseTools/EfiLdrImage.c -------------------------------------------------------------------------------- /Utilities/BaseTools/GenPage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/BaseTools/GenPage.c -------------------------------------------------------------------------------- /Utilities/BaseTools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/BaseTools/Makefile -------------------------------------------------------------------------------- /Utilities/BaseTools/VirtualMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/BaseTools/VirtualMemory.h -------------------------------------------------------------------------------- /Utilities/CreateVault/RsaTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/CreateVault/RsaTool -------------------------------------------------------------------------------- /Utilities/CreateVault/create_vault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/CreateVault/create_vault.sh -------------------------------------------------------------------------------- /Utilities/CreateVault/sign.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/CreateVault/sign.command -------------------------------------------------------------------------------- /Utilities/EfiResTool/EfiResTool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/EfiResTool/EfiResTool.c -------------------------------------------------------------------------------- /Utilities/EfiResTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/EfiResTool/Makefile -------------------------------------------------------------------------------- /Utilities/EfiResTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/EfiResTool/README.md -------------------------------------------------------------------------------- /Utilities/FindSerialPort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/FindSerialPort/README.md -------------------------------------------------------------------------------- /Utilities/LegacyBoot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/LegacyBoot/README.md -------------------------------------------------------------------------------- /Utilities/LegacyBoot/boot0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/LegacyBoot/boot0 -------------------------------------------------------------------------------- /Utilities/LegacyBoot/boot1f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/LegacyBoot/boot1f32 -------------------------------------------------------------------------------- /Utilities/LogoutHook/Launchd.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/LogoutHook/Launchd.command -------------------------------------------------------------------------------- /Utilities/LogoutHook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/LogoutHook/Makefile -------------------------------------------------------------------------------- /Utilities/LogoutHook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/LogoutHook/README.md -------------------------------------------------------------------------------- /Utilities/LogoutHook/nvramdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/LogoutHook/nvramdump.c -------------------------------------------------------------------------------- /Utilities/RsaTool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/RsaTool/LICENSE -------------------------------------------------------------------------------- /Utilities/RsaTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/RsaTool/Makefile -------------------------------------------------------------------------------- /Utilities/RsaTool/RsaTool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/RsaTool/RsaTool.c -------------------------------------------------------------------------------- /Utilities/RsaTool/build_libressl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/RsaTool/build_libressl.sh -------------------------------------------------------------------------------- /Utilities/RsaTool/openssl_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/RsaTool/openssl_compat.h -------------------------------------------------------------------------------- /Utilities/ShimUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ShimUtils/README.md -------------------------------------------------------------------------------- /Utilities/ShimUtils/sbat-info.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ShimUtils/sbat-info.tool -------------------------------------------------------------------------------- /Utilities/ShimUtils/shim-make.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ShimUtils/shim-make.tool -------------------------------------------------------------------------------- /Utilities/ShimUtils/shim-to-cert.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ShimUtils/shim-to-cert.tool -------------------------------------------------------------------------------- /Utilities/TestBmf/Bmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestBmf/Bmf.c -------------------------------------------------------------------------------- /Utilities/TestBmf/BmfDummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestBmf/BmfDummy.c -------------------------------------------------------------------------------- /Utilities/TestBmf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestBmf/Makefile -------------------------------------------------------------------------------- /Utilities/TestCpuFrequency/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestCpuFrequency/Makefile -------------------------------------------------------------------------------- /Utilities/TestDiskImage/DiskImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestDiskImage/DiskImage.c -------------------------------------------------------------------------------- /Utilities/TestDiskImage/FileDummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestDiskImage/FileDummy.c -------------------------------------------------------------------------------- /Utilities/TestDiskImage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestDiskImage/Makefile -------------------------------------------------------------------------------- /Utilities/TestExt4Dxe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestExt4Dxe/Makefile -------------------------------------------------------------------------------- /Utilities/TestExt4Dxe/TestExt4Dxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestExt4Dxe/TestExt4Dxe.c -------------------------------------------------------------------------------- /Utilities/TestFatDxe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestFatDxe/Makefile -------------------------------------------------------------------------------- /Utilities/TestFatDxe/TestFatDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestFatDxe/TestFatDxe.c -------------------------------------------------------------------------------- /Utilities/TestHelloWorld/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestHelloWorld/HelloWorld.c -------------------------------------------------------------------------------- /Utilities/TestHelloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestHelloWorld/Makefile -------------------------------------------------------------------------------- /Utilities/TestImg4/Img4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestImg4/Img4.c -------------------------------------------------------------------------------- /Utilities/TestImg4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestImg4/Makefile -------------------------------------------------------------------------------- /Utilities/TestKextInject/KextInject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestKextInject/KextInject.c -------------------------------------------------------------------------------- /Utilities/TestKextInject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestKextInject/Makefile -------------------------------------------------------------------------------- /Utilities/TestMacho/Macho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestMacho/Macho.c -------------------------------------------------------------------------------- /Utilities/TestMacho/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestMacho/Makefile -------------------------------------------------------------------------------- /Utilities/TestMacho/kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestMacho/kernel -------------------------------------------------------------------------------- /Utilities/TestMp3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestMp3/Makefile -------------------------------------------------------------------------------- /Utilities/TestMp3/Mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestMp3/Mp3.c -------------------------------------------------------------------------------- /Utilities/TestNtfsDxe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestNtfsDxe/Makefile -------------------------------------------------------------------------------- /Utilities/TestNtfsDxe/TestNtfsDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestNtfsDxe/TestNtfsDxe.c -------------------------------------------------------------------------------- /Utilities/TestPeCoff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestPeCoff/Makefile -------------------------------------------------------------------------------- /Utilities/TestPeCoff/PeCoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestPeCoff/PeCoff.c -------------------------------------------------------------------------------- /Utilities/TestProcessKernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestProcessKernel/Makefile -------------------------------------------------------------------------------- /Utilities/TestRsaPreprocess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestRsaPreprocess/Makefile -------------------------------------------------------------------------------- /Utilities/TestSmbios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestSmbios/Makefile -------------------------------------------------------------------------------- /Utilities/TestSmbios/Smbios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestSmbios/Smbios.bin -------------------------------------------------------------------------------- /Utilities/TestSmbios/Smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/TestSmbios/Smbios.c -------------------------------------------------------------------------------- /Utilities/WinNvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/WinNvram/Makefile -------------------------------------------------------------------------------- /Utilities/WinNvram/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/WinNvram/nvram.c -------------------------------------------------------------------------------- /Utilities/WinNvram/nvram.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/WinNvram/nvram.exe -------------------------------------------------------------------------------- /Utilities/acdtinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/acdtinfo/Makefile -------------------------------------------------------------------------------- /Utilities/acdtinfo/acdtinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/acdtinfo/acdtinfo.c -------------------------------------------------------------------------------- /Utilities/disklabel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/disklabel/Makefile -------------------------------------------------------------------------------- /Utilities/disklabel/disklabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/disklabel/disklabel.c -------------------------------------------------------------------------------- /Utilities/ext4read/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ext4read/Makefile -------------------------------------------------------------------------------- /Utilities/ext4read/ext4read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ext4read/ext4read.c -------------------------------------------------------------------------------- /Utilities/icnspack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/icnspack/Makefile -------------------------------------------------------------------------------- /Utilities/icnspack/icnspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/icnspack/icnspack.c -------------------------------------------------------------------------------- /Utilities/kpdescribe/kpdescribe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/kpdescribe/kpdescribe.sh -------------------------------------------------------------------------------- /Utilities/macrecovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macrecovery/README.md -------------------------------------------------------------------------------- /Utilities/macrecovery/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macrecovery/boards.json -------------------------------------------------------------------------------- /Utilities/macrecovery/build-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macrecovery/build-image.sh -------------------------------------------------------------------------------- /Utilities/macrecovery/macrecovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macrecovery/macrecovery.py -------------------------------------------------------------------------------- /Utilities/macserial/FORMAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macserial/FORMAT.md -------------------------------------------------------------------------------- /Utilities/macserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macserial/Makefile -------------------------------------------------------------------------------- /Utilities/macserial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macserial/README.md -------------------------------------------------------------------------------- /Utilities/macserial/cccdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macserial/cccdump.py -------------------------------------------------------------------------------- /Utilities/macserial/macserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macserial/macserial.c -------------------------------------------------------------------------------- /Utilities/macserial/macserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macserial/macserial.h -------------------------------------------------------------------------------- /Utilities/macserial/modelinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/macserial/modelinfo.h -------------------------------------------------------------------------------- /Utilities/ocpasswordgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocpasswordgen/Makefile -------------------------------------------------------------------------------- /Utilities/ocvalidate/KextInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/KextInfo.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/KextInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/KextInfo.h -------------------------------------------------------------------------------- /Utilities/ocvalidate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/Makefile -------------------------------------------------------------------------------- /Utilities/ocvalidate/NvramKeyInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/NvramKeyInfo.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/NvramKeyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/NvramKeyInfo.h -------------------------------------------------------------------------------- /Utilities/ocvalidate/OcValidateLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/OcValidateLib.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/OcValidateLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/OcValidateLib.h -------------------------------------------------------------------------------- /Utilities/ocvalidate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/README.md -------------------------------------------------------------------------------- /Utilities/ocvalidate/ValidateAcpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ValidateAcpi.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/ValidateBooter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ValidateBooter.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/ValidateKernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ValidateKernel.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/ValidateMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ValidateMisc.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/ValidateNvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ValidateNvram.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/ValidateUefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ValidateUefi.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/ocvalidate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ocvalidate.c -------------------------------------------------------------------------------- /Utilities/ocvalidate/ocvalidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/Utilities/ocvalidate/ocvalidate.h -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /xcbuild.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloverHackyColor/OpenCorePkg/HEAD/xcbuild.tool --------------------------------------------------------------------------------