├── .gitignore ├── .travis.yml ├── Application ├── BootKicker │ ├── BootKicker.c │ └── BootKicker.inf ├── Bootstrap │ ├── Bootstrap.c │ └── Bootstrap.inf ├── ChipTune │ ├── ChipTune.c │ └── ChipTune.inf ├── CleanNvram │ ├── CleanNvram.c │ └── CleanNvram.inf ├── GopStop │ ├── Examples │ │ ├── Step10.png │ │ └── Step3.png │ ├── GopStop.c │ ├── GopStop.inf │ └── README.md ├── HdaCodecDump │ ├── HdaCodecDump.c │ ├── HdaCodecDump.h │ └── HdaCodecDump.inf ├── KeyTester │ ├── KeyTester.c │ └── KeyTester.inf ├── MmapDump │ ├── MmapDump.c │ └── MmapDump.inf ├── OpenControl │ ├── OpenControl.c │ └── OpenControl.inf ├── PavpProvision │ ├── PavpProvision.c │ ├── PavpProvision.inf │ └── PavpProvisionData.c ├── ResetSystem │ ├── ResetSystem.c │ └── ResetSystem.inf ├── RtcRw │ ├── RtcRw.c │ └── RtcRw.inf └── VerifyMsrE2 │ ├── VerifyMsrE2.c │ └── VerifyMsrE2.inf ├── Changelog.md ├── Debug ├── ClangDwarf.patch ├── GdbSyms │ ├── Bin │ │ ├── X64_CLANGDWARF │ │ │ └── GdbSyms.debug │ │ ├── X64_CLANGPDB │ │ │ ├── GdbSyms.dll │ │ │ └── GdbSyms.pdb │ │ └── 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 ├── Docs ├── AcpiSamples │ ├── SSDT-ALS0.dsl │ ├── SSDT-AWAC.dsl │ ├── SSDT-EC-USBX.dsl │ ├── SSDT-EC.dsl │ ├── SSDT-EHCx_OFF.dsl │ ├── SSDT-IMEI.dsl │ ├── SSDT-PLUG.dsl │ ├── SSDT-PMC.dsl │ ├── SSDT-RTC0.dsl │ └── SSDT-SBUS-MCHC.dsl ├── BuildDocs.tool ├── Configuration.pdf ├── Configuration.tex ├── Differences │ ├── Differences.pdf │ ├── Differences.tex │ └── PreviousConfiguration.tex ├── Kexts.md ├── Libraries.md ├── Logos │ ├── Logo.pdf │ ├── Logo.png │ ├── Logo.sketch │ ├── LogoApprox.svg │ ├── OpenCore_with_text_Large.png │ ├── OpenCore_with_text_Right.png │ ├── OpenCore_with_text_Small.png │ └── README.md ├── Sample.plist └── SampleFull.plist ├── Include ├── Guid │ ├── MicrosoftVariable.h │ ├── OcSmBios.h │ └── OcVariables.h ├── IndustryStandard │ ├── CpuId.h │ ├── GenericIch.h │ ├── HdaRegisters.h │ ├── HdaVerbs.h │ ├── Riff.h │ └── VirtualMemory.h ├── Library │ ├── OcAcpiLib.h │ ├── OcAfterBootCompatLib.h │ ├── OcApfsLib.h │ ├── OcAppleBootPolicyLib.h │ ├── OcAppleChunklistLib.h │ ├── OcAppleDiskImageLib.h │ ├── OcAppleEventLib.h │ ├── OcAppleImageConversionLib.h │ ├── OcAppleImageVerificationLib.h │ ├── OcAppleImg4Lib.h │ ├── OcAppleKernelLib.h │ ├── OcAppleKeyMapLib.h │ ├── OcAppleKeysLib.h │ ├── OcAppleRamDiskLib.h │ ├── OcAppleSecureBootLib.h │ ├── OcAppleUserInterfaceThemeLib.h │ ├── OcAudioLib.h │ ├── OcBootManagementLib.h │ ├── OcBootServicesTableLib.h │ ├── OcCompressionLib.h │ ├── OcConfigurationLib.h │ ├── OcConsoleLib.h │ ├── OcCpuLib.h │ ├── OcCryptoLib.h │ ├── OcDataHubLib.h │ ├── OcDebugLogLib.h │ ├── OcDevicePathLib.h │ ├── OcDevicePropertyLib.h │ ├── OcDeviceTreeLib.h │ ├── OcDriverConnectionLib.h │ ├── OcFileLib.h │ ├── OcFirmwarePasswordLib.h │ ├── OcFirmwareVolumeLib.h │ ├── OcGuardLib.h │ ├── OcHashServicesLib.h │ ├── OcHdaDevicesLib.h │ ├── OcHeciLib.h │ ├── OcInputLib.h │ ├── OcMachoLib.h │ ├── OcMemoryLib.h │ ├── OcMiscLib.h │ ├── OcOSInfoLib.h │ ├── OcPngLib.h │ ├── OcRngLib.h │ ├── OcRtcLib.h │ ├── OcSerializeLib.h │ ├── OcSmbiosLib.h │ ├── OcSmcLib.h │ ├── OcStorageLib.h │ ├── OcStringLib.h │ ├── OcTemplateLib.h │ ├── OcTimerLib.h │ ├── OcUnicodeCollationEngGenericLib.h │ ├── OcVirtualFsLib.h │ └── OcXmlLib.h ├── OpenCore.h ├── ProcessorInfo.h └── Protocol │ ├── AmiKeycode.h │ ├── AmiPointer.h │ ├── AudioIo.h │ ├── HdaCodecInfo.h │ ├── HdaControllerInfo.h │ ├── HdaIo.h │ ├── OcAfterBootCompat.h │ ├── OcAudio.h │ ├── OcBootstrap.h │ ├── OcFirmwareRuntime.h │ ├── OcInterface.h │ ├── OcLog.h │ └── VMwareHda.h ├── IncludeUser ├── Base.h ├── Library │ ├── BaseLib.h │ ├── BaseMemoryLib.h │ ├── DebugLib.h │ ├── MemoryAllocationLib.h │ └── PcdLib.h ├── Uefi.h └── UefiCompat.h ├── LICENSE.txt ├── Library ├── OcAcpiLib │ ├── OcAcpiLib.c │ └── OcAcpiLib.inf ├── OcAfterBootCompatLib │ ├── BootCompatInternal.h │ ├── CustomSlide.c │ ├── IA32 │ │ ├── ContextSwitch.h │ │ └── ContextSwitchSupport.c │ ├── KernelSupport.c │ ├── OcAfterBootCompatLib.c │ ├── OcAfterBootCompatLib.inf │ ├── ServiceOverrides.c │ └── X64 │ │ ├── ContextSwitch.h │ │ ├── ContextSwitch.nasm │ │ └── ContextSwitchSupport.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 ├── OcAppleImageVerificationLib │ ├── OcAppleImageVerification.c │ └── OcAppleImageVerificationLib.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 │ ├── CommonPatches.c │ ├── KernelReader.c │ ├── KextPatcher.c │ ├── Link.c │ ├── OcAppleKernelLib.inf │ ├── PrelinkedContext.c │ ├── PrelinkedInternal.h │ ├── PrelinkedKext.c │ └── Vtables.c ├── OcAppleKeyMapLib │ ├── OcAppleKeyMapLib.c │ └── OcAppleKeyMapLib.inf ├── OcAppleKeysLib │ ├── OcAppleKeysLib.c │ └── OcAppleKeysLib.inf ├── OcAppleRamDiskLib │ ├── OcAppleRamDiskLib.c │ └── OcAppleRamDiskLib.inf ├── OcAppleSecureBootLib │ ├── OcAppleSecureBootLib.c │ └── OcAppleSecureBootLib.inf ├── OcAppleUserInterfaceThemeLib │ ├── OcAppleUserInterfaceThemeLib.c │ └── OcAppleUserInterfaceThemeLib.inf ├── OcAudioLib │ ├── OcAudio.c │ ├── OcAudioGenBeep.c │ ├── OcAudioInternal.h │ ├── OcAudioLib.c │ ├── OcAudioLib.inf │ ├── OcAudioVoiceOver.c │ └── OcAudioWave.c ├── OcBootManagementLib │ ├── AppleHibernate.c │ ├── BootArguments.c │ ├── BootAudio.c │ ├── BootEntryInfo.c │ ├── BootEntryManagement.c │ ├── BootManagementInternal.h │ ├── DefaultEntryChoice.c │ ├── DmgBootSupport.c │ ├── FontData.h │ ├── HotKeySupport.c │ ├── ImageSupport.c │ ├── OcBootManagementLib.c │ ├── OcBootManagementLib.inf │ ├── OcSimpleBootMenu.c │ ├── OcSimpleBootMenuInternal.h │ ├── PolicyManagement.c │ └── VariableManagement.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 │ │ ├── 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.h ├── OcConfigurationLib │ ├── CheckSchema.py │ ├── OcConfigurationLib.c │ └── OcConfigurationLib.inf ├── OcConsoleControlEntryModeLib │ ├── OcConsoleControlEntryModeGenericLib.inf │ ├── OcConsoleControlEntryModeLib.c │ └── OcConsoleControlEntryModeLocalLib.inf ├── OcConsoleLib │ ├── ConsoleControl.c │ ├── ConsoleGop.c │ ├── OcConsoleLib.c │ ├── OcConsoleLib.inf │ ├── OcConsoleLibInternal.h │ ├── ResolutionParsing.c │ ├── TextOutputBuiltin.c │ ├── TextOutputNull.c │ ├── TextOutputSystem.c │ └── UgaPassThrough.c ├── OcCpuLib │ ├── AppleCpuSupport.c │ ├── FrequencyDetect.c │ ├── IA32 │ │ └── Microcode.nasm │ ├── OcCpuInternals.h │ ├── OcCpuLib.c │ ├── OcCpuLib.inf │ └── X64 │ │ └── Microcode.nasm ├── OcCryptoLib │ ├── Aes.c │ ├── BigNumLib.h │ ├── BigNumLibInternal.h │ ├── BigNumMontgomery.c │ ├── BigNumPrimitives.c │ ├── ChaCha.c │ ├── IA32 │ │ └── BigNumWordMul64.c │ ├── Md5.c │ ├── OcCryptoLib.inf │ ├── PasswordHash.c │ ├── RsaDigitalSign.c │ ├── SecureMem.c │ ├── Sha1.c │ ├── Sha2.c │ └── X64 │ │ └── BigNumWordMul64.c ├── OcDataHubLib │ ├── DataHub.c │ ├── DataHub.h │ ├── OcDataHubLib.c │ └── OcDataHubLib.inf ├── OcDebugLogLib │ ├── DebugHelp.c │ ├── DebugPrint.c │ ├── OcAppleLog.c │ ├── OcDebugLogLib.c │ ├── OcDebugLogLib.inf │ ├── OcLog.c │ └── OcLogInternal.h ├── OcDevicePathLib │ ├── ExpandDevicePath.c │ ├── OcDevicePathLib.c │ └── OcDevicePathLib.inf ├── OcDevicePropertyLib │ ├── OcDevicePropertyLib.c │ └── OcDevicePropertyLib.inf ├── OcDeviceTreeLib │ ├── OcDeviceTreeLib.c │ └── OcDeviceTreeLib.inf ├── OcDriverConnectionLib │ ├── OcDriverConnectionLib.c │ └── OcDriverConnectionLib.inf ├── OcFileLib │ ├── FileProtocol.c │ ├── FirmwareFile.c │ ├── FsConnectQuirk.c │ ├── GetFileInfo.c │ ├── GetVolumeLabel.c │ ├── GptPartitionEntry.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 ├── OcGuardLib │ ├── BitOverflow.c │ ├── Canary.c │ ├── NativeOverflow.c │ ├── OcGuardLib.inf │ ├── TripleOverflow.c │ ├── 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 │ ├── OcInputLib.inf │ ├── Pointer │ │ ├── AIM.c │ │ └── AIM.h │ └── Timer │ │ └── AIT.c ├── OcMachoLib │ ├── CxxSymbols.c │ ├── Header.c │ ├── OcMachoLib.inf │ ├── OcMachoLibInternal.h │ ├── Relocations.c │ └── Symbols.c ├── OcMemoryLib │ ├── LegacyRegionLock.c │ ├── LegacyRegionUnLock.c │ ├── MemoryAlloc.c │ ├── MemoryAttributes.c │ ├── MemoryDebug.c │ ├── MemoryMap.c │ ├── OcMemoryLib.inf │ ├── UmmMalloc.c │ └── VirtualMemory.c ├── OcMiscLib │ ├── DataPatcher.c │ ├── DirectReset.c │ ├── Math.c │ ├── OcMiscLib.inf │ ├── ProtocolSupport.c │ └── ReleaseUsbOwnership.c ├── OcOSInfoLib │ ├── OcOSInfoLib.c │ └── OcOSInfoLib.inf ├── OcPngLib │ ├── OcPng.c │ ├── OcPngLib.inf │ ├── lodepng.c │ └── lodepng.h ├── 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 │ ├── 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 ├── OcUnicodeCollationEngLib │ ├── OcUnicodeCollationEngCommon.c │ ├── OcUnicodeCollationEngGeneric.c │ ├── OcUnicodeCollationEngGenericLib.inf │ ├── OcUnicodeCollationEngInternal.h │ ├── OcUnicodeCollationEngLocal.c │ └── OcUnicodeCollationEngLocalLib.inf ├── OcVirtualFsLib │ ├── OcVirtualFsLib.inf │ ├── VirtualFile.c │ ├── VirtualFs.c │ ├── VirtualFsInternal.h │ └── VirtualVolume.c └── OcXmlLib │ ├── OcXmlLib.c │ └── OcXmlLib.inf ├── OpenCorePkg.dec ├── OpenCorePkg.dsc ├── OpenCorePkg.xcodeproj └── project.pbxproj ├── Patches └── 0001-ShellPkg-Add-support-for-input-with-separately-repor.patch ├── Platform ├── OpenCanopy │ ├── BitmapFont.c │ ├── BmfFile.h │ ├── BmfLib.h │ ├── GuiApp.c │ ├── GuiApp.h │ ├── GuiIo.h │ ├── Input │ │ ├── InputSimAbsPtr.c │ │ └── InputSimTextIn.c │ ├── OcBootstrap.c │ ├── OpenCanopy.c │ ├── OpenCanopy.h │ ├── OpenCanopy.inf │ ├── Output │ │ └── OutputStGop.c │ └── Views │ │ ├── BootPicker.c │ │ └── BootPicker.h ├── OpenCore │ ├── OpenCore.c │ ├── OpenCore.inf │ ├── OpenCoreAcpi.c │ ├── OpenCoreDevProps.c │ ├── OpenCoreKernel.c │ ├── OpenCoreMisc.c │ ├── OpenCoreNvram.c │ ├── OpenCorePlatform.c │ ├── OpenCoreUefi.c │ ├── OpenCoreUefiAudio.c │ ├── OpenCoreUefiInOut.c │ └── OpenCoreVault.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 ├── README.md ├── Tests ├── AcpiTest │ ├── AcpiTest.c │ ├── AcpiTest.inf │ └── AcpiTestApp.inf ├── BlessTest │ ├── BlessTest.c │ ├── BlessTest.inf │ └── BlessTestApp.inf ├── CryptoTest │ ├── CryptoSamples.h │ ├── CryptoTest.c │ ├── CryptoTest.inf │ └── CryptoTestApp.inf ├── DataHubTest │ ├── DataHubTest.c │ ├── DataHubTest.inf │ └── DataHubTestApp.inf ├── ExternalUi │ ├── ExternalUi.c │ └── ExternalUi.inf ├── KernelTest │ ├── KernelTest.c │ ├── KernelTest.inf │ ├── KernelTestApp.inf │ ├── Lilu.c │ └── Vsmc.c ├── PropertyTest │ ├── PropertyTest.c │ ├── PropertyTest.inf │ └── PropertyTestApp.inf └── SmbiosTest │ ├── SmbiosTest.c │ ├── SmbiosTest.inf │ └── SmbiosTestApp.inf ├── TestsUser ├── Bmf │ └── BitmapFontUser.c ├── DiskImage │ └── DiskImage.c ├── Img4 │ └── Img4.c ├── Include │ ├── Base.h │ ├── Library │ │ ├── BaseLib.h │ │ ├── BaseMemoryLib.h │ │ ├── DebugLib.h │ │ ├── MemoryAllocationLib.h │ │ ├── PrintLib.h │ │ ├── UefiBootServicesTableLib.h │ │ └── UefiLib.h │ └── Uefi.h ├── Macho │ ├── Macho.c │ └── kernel ├── Prelinked │ └── Prelinked.c ├── Props │ └── Props.c ├── RsaPreprocess │ └── RsaPreprocess.c ├── Serialized │ ├── Serialized.c │ └── Serialized.plist └── Smbios │ ├── Smbios.bin │ └── Smbios.c ├── Themes └── Default │ ├── Dark │ └── Icons │ │ ├── Label_template.png │ │ ├── Selector.png │ │ ├── Selector4k.png │ │ ├── background.png │ │ ├── background4k.png │ │ ├── background_color.png │ │ ├── font.png │ │ ├── font_color.png │ │ ├── func_reset.icns │ │ ├── func_resetnvram.icns │ │ ├── func_selector.png │ │ ├── func_shutdown.icns │ │ ├── os_arch.icns │ │ ├── os_cata.icns │ │ ├── os_clone.icns │ │ ├── os_custom.icns │ │ ├── os_debian.icns │ │ ├── os_fedora.icns │ │ ├── os_freebsd.icns │ │ ├── os_install.icns │ │ ├── os_linux.icns │ │ ├── os_mac.icns │ │ ├── os_moja.icns │ │ ├── os_recovery.icns │ │ ├── os_redhat.icns │ │ ├── os_ubuntu.icns │ │ ├── os_unknown.icns │ │ ├── os_win.icns │ │ ├── os_win10.icns │ │ ├── pointer.png │ │ ├── pointer4k.png │ │ ├── pointeralt.png │ │ └── tool_shell.icns │ └── Light │ └── Icons │ ├── Label_template.png │ ├── Selector.png │ ├── Selector4k.png │ ├── background.png │ ├── background4k.png │ ├── background_color.png │ ├── font.png │ ├── font_color.png │ ├── func_reset.icns │ ├── func_resetnvram.icns │ ├── func_selector.png │ ├── func_shutdown.icns │ ├── os_arch.icns │ ├── os_cata.icns │ ├── os_clone.icns │ ├── os_custom.icns │ ├── os_debian.icns │ ├── os_fedora.icns │ ├── os_freebsd.icns │ ├── os_install.icns │ ├── os_linux.icns │ ├── os_mac.icns │ ├── os_moja.icns │ ├── os_recovery.icns │ ├── os_redhat.icns │ ├── os_ubuntu.icns │ ├── os_unknown.icns │ ├── os_win.icns │ ├── os_win10.icns │ ├── pointer.png │ ├── pointer4k.png │ ├── pointeralt.png │ └── tool_shell.icns ├── Utilities ├── AppleEfiSignTool │ ├── AppleEfiBinary.c │ ├── AppleEfiFatBinary.h │ ├── AppleEfiPeImage.h │ ├── Edk2PeImage.h │ ├── Makefile │ ├── OcCryptoConfig.h │ ├── 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.4.11.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 │ └── main.c ├── AppleKeyboardLayouts │ ├── AppleKeyboardLayouts.bt │ └── AppleKeyboardLayouts.txt ├── CreateVault │ ├── RsaTool │ ├── create_vault.sh │ └── sign.command ├── EfiResTool │ ├── EfiResTool.c │ ├── Makefile │ └── README.md ├── LogoutHook │ ├── LogoutHook.command │ ├── README.md │ └── nvram.mojave ├── MacEfiUnpack │ └── MacEfiUnpack.py ├── RsaTool │ ├── LICENSE │ ├── Makefile │ ├── RsaTool.c │ └── openssl_compat.h ├── WinNvram │ ├── Makefile │ ├── nvram.c │ └── nvram.exe ├── disklabel │ ├── Makefile │ ├── disklabel │ └── disklabel.c └── icnspack │ ├── Makefile │ ├── icnspack │ └── icnspack.c ├── ndk-macbuild.tool └── xcbuild.tool /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/.travis.yml -------------------------------------------------------------------------------- /Application/BootKicker/BootKicker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/BootKicker/BootKicker.c -------------------------------------------------------------------------------- /Application/BootKicker/BootKicker.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/BootKicker/BootKicker.inf -------------------------------------------------------------------------------- /Application/Bootstrap/Bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/Bootstrap/Bootstrap.c -------------------------------------------------------------------------------- /Application/Bootstrap/Bootstrap.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/Bootstrap/Bootstrap.inf -------------------------------------------------------------------------------- /Application/ChipTune/ChipTune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/ChipTune/ChipTune.c -------------------------------------------------------------------------------- /Application/ChipTune/ChipTune.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/ChipTune/ChipTune.inf -------------------------------------------------------------------------------- /Application/CleanNvram/CleanNvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/CleanNvram/CleanNvram.c -------------------------------------------------------------------------------- /Application/CleanNvram/CleanNvram.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/CleanNvram/CleanNvram.inf -------------------------------------------------------------------------------- /Application/GopStop/Examples/Step10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/GopStop/Examples/Step10.png -------------------------------------------------------------------------------- /Application/GopStop/Examples/Step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/GopStop/Examples/Step3.png -------------------------------------------------------------------------------- /Application/GopStop/GopStop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/GopStop/GopStop.c -------------------------------------------------------------------------------- /Application/GopStop/GopStop.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/GopStop/GopStop.inf -------------------------------------------------------------------------------- /Application/GopStop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/GopStop/README.md -------------------------------------------------------------------------------- /Application/HdaCodecDump/HdaCodecDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/HdaCodecDump/HdaCodecDump.c -------------------------------------------------------------------------------- /Application/HdaCodecDump/HdaCodecDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/HdaCodecDump/HdaCodecDump.h -------------------------------------------------------------------------------- /Application/HdaCodecDump/HdaCodecDump.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/HdaCodecDump/HdaCodecDump.inf -------------------------------------------------------------------------------- /Application/KeyTester/KeyTester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/KeyTester/KeyTester.c -------------------------------------------------------------------------------- /Application/KeyTester/KeyTester.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/KeyTester/KeyTester.inf -------------------------------------------------------------------------------- /Application/MmapDump/MmapDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/MmapDump/MmapDump.c -------------------------------------------------------------------------------- /Application/MmapDump/MmapDump.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/MmapDump/MmapDump.inf -------------------------------------------------------------------------------- /Application/OpenControl/OpenControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/OpenControl/OpenControl.c -------------------------------------------------------------------------------- /Application/OpenControl/OpenControl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/OpenControl/OpenControl.inf -------------------------------------------------------------------------------- /Application/PavpProvision/PavpProvision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/PavpProvision/PavpProvision.c -------------------------------------------------------------------------------- /Application/PavpProvision/PavpProvision.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/PavpProvision/PavpProvision.inf -------------------------------------------------------------------------------- /Application/PavpProvision/PavpProvisionData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/PavpProvision/PavpProvisionData.c -------------------------------------------------------------------------------- /Application/ResetSystem/ResetSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/ResetSystem/ResetSystem.c -------------------------------------------------------------------------------- /Application/ResetSystem/ResetSystem.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/ResetSystem/ResetSystem.inf -------------------------------------------------------------------------------- /Application/RtcRw/RtcRw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/RtcRw/RtcRw.c -------------------------------------------------------------------------------- /Application/RtcRw/RtcRw.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/RtcRw/RtcRw.inf -------------------------------------------------------------------------------- /Application/VerifyMsrE2/VerifyMsrE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/VerifyMsrE2/VerifyMsrE2.c -------------------------------------------------------------------------------- /Application/VerifyMsrE2/VerifyMsrE2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Application/VerifyMsrE2/VerifyMsrE2.inf -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Changelog.md -------------------------------------------------------------------------------- /Debug/ClangDwarf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/ClangDwarf.patch -------------------------------------------------------------------------------- /Debug/GdbSyms/Bin/X64_CLANGDWARF/GdbSyms.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/GdbSyms/Bin/X64_CLANGDWARF/GdbSyms.debug -------------------------------------------------------------------------------- /Debug/GdbSyms/Bin/X64_CLANGPDB/GdbSyms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/GdbSyms/Bin/X64_CLANGPDB/GdbSyms.dll -------------------------------------------------------------------------------- /Debug/GdbSyms/Bin/X64_CLANGPDB/GdbSyms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/GdbSyms/Bin/X64_CLANGPDB/GdbSyms.pdb -------------------------------------------------------------------------------- /Debug/GdbSyms/Bin/X64_XCODE5/GdbSyms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/GdbSyms/Bin/X64_XCODE5/GdbSyms.dll -------------------------------------------------------------------------------- /Debug/GdbSyms/GdbSyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/GdbSyms/GdbSyms.c -------------------------------------------------------------------------------- /Debug/GdbSyms/GdbSyms.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/GdbSyms/GdbSyms.inf -------------------------------------------------------------------------------- /Debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/README.md -------------------------------------------------------------------------------- /Debug/Scripts/common_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/Scripts/common_uefi.py -------------------------------------------------------------------------------- /Debug/Scripts/gdb_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/Scripts/gdb_uefi.py -------------------------------------------------------------------------------- /Debug/Scripts/lldb_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/Scripts/lldb_uefi.py -------------------------------------------------------------------------------- /Debug/Scripts/x86_64_target_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/Scripts/x86_64_target_definition.py -------------------------------------------------------------------------------- /Debug/efidebug.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Debug/efidebug.tool -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-ALS0.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-ALS0.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-AWAC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-AWAC.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-EC-USBX.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-EC-USBX.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-EC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-EC.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-EHCx_OFF.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-EHCx_OFF.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-IMEI.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-IMEI.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-PLUG.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-PLUG.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-PMC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-PMC.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-RTC0.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-RTC0.dsl -------------------------------------------------------------------------------- /Docs/AcpiSamples/SSDT-SBUS-MCHC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/AcpiSamples/SSDT-SBUS-MCHC.dsl -------------------------------------------------------------------------------- /Docs/BuildDocs.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/BuildDocs.tool -------------------------------------------------------------------------------- /Docs/Configuration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Configuration.pdf -------------------------------------------------------------------------------- /Docs/Configuration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Configuration.tex -------------------------------------------------------------------------------- /Docs/Differences/Differences.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Differences/Differences.pdf -------------------------------------------------------------------------------- /Docs/Differences/Differences.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Differences/Differences.tex -------------------------------------------------------------------------------- /Docs/Differences/PreviousConfiguration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Differences/PreviousConfiguration.tex -------------------------------------------------------------------------------- /Docs/Kexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Kexts.md -------------------------------------------------------------------------------- /Docs/Libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Libraries.md -------------------------------------------------------------------------------- /Docs/Logos/Logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/Logo.pdf -------------------------------------------------------------------------------- /Docs/Logos/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/Logo.png -------------------------------------------------------------------------------- /Docs/Logos/Logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/Logo.sketch -------------------------------------------------------------------------------- /Docs/Logos/LogoApprox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/LogoApprox.svg -------------------------------------------------------------------------------- /Docs/Logos/OpenCore_with_text_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/OpenCore_with_text_Large.png -------------------------------------------------------------------------------- /Docs/Logos/OpenCore_with_text_Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/OpenCore_with_text_Right.png -------------------------------------------------------------------------------- /Docs/Logos/OpenCore_with_text_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/OpenCore_with_text_Small.png -------------------------------------------------------------------------------- /Docs/Logos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Logos/README.md -------------------------------------------------------------------------------- /Docs/Sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/Sample.plist -------------------------------------------------------------------------------- /Docs/SampleFull.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Docs/SampleFull.plist -------------------------------------------------------------------------------- /Include/Guid/MicrosoftVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Guid/MicrosoftVariable.h -------------------------------------------------------------------------------- /Include/Guid/OcSmBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Guid/OcSmBios.h -------------------------------------------------------------------------------- /Include/Guid/OcVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Guid/OcVariables.h -------------------------------------------------------------------------------- /Include/IndustryStandard/CpuId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/IndustryStandard/CpuId.h -------------------------------------------------------------------------------- /Include/IndustryStandard/GenericIch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/IndustryStandard/GenericIch.h -------------------------------------------------------------------------------- /Include/IndustryStandard/HdaRegisters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/IndustryStandard/HdaRegisters.h -------------------------------------------------------------------------------- /Include/IndustryStandard/HdaVerbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/IndustryStandard/HdaVerbs.h -------------------------------------------------------------------------------- /Include/IndustryStandard/Riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/IndustryStandard/Riff.h -------------------------------------------------------------------------------- /Include/IndustryStandard/VirtualMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/IndustryStandard/VirtualMemory.h -------------------------------------------------------------------------------- /Include/Library/OcAcpiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAcpiLib.h -------------------------------------------------------------------------------- /Include/Library/OcAfterBootCompatLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAfterBootCompatLib.h -------------------------------------------------------------------------------- /Include/Library/OcApfsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcApfsLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleBootPolicyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleBootPolicyLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleChunklistLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleChunklistLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleDiskImageLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleDiskImageLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleEventLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleEventLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleImageConversionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleImageConversionLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleImageVerificationLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleImageVerificationLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleImg4Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleImg4Lib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleKernelLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleKernelLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleKeyMapLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleKeyMapLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleKeysLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleKeysLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleRamDiskLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleRamDiskLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleSecureBootLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleSecureBootLib.h -------------------------------------------------------------------------------- /Include/Library/OcAppleUserInterfaceThemeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAppleUserInterfaceThemeLib.h -------------------------------------------------------------------------------- /Include/Library/OcAudioLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcAudioLib.h -------------------------------------------------------------------------------- /Include/Library/OcBootManagementLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcBootManagementLib.h -------------------------------------------------------------------------------- /Include/Library/OcBootServicesTableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcBootServicesTableLib.h -------------------------------------------------------------------------------- /Include/Library/OcCompressionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcCompressionLib.h -------------------------------------------------------------------------------- /Include/Library/OcConfigurationLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcConfigurationLib.h -------------------------------------------------------------------------------- /Include/Library/OcConsoleLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcConsoleLib.h -------------------------------------------------------------------------------- /Include/Library/OcCpuLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcCpuLib.h -------------------------------------------------------------------------------- /Include/Library/OcCryptoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcCryptoLib.h -------------------------------------------------------------------------------- /Include/Library/OcDataHubLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcDataHubLib.h -------------------------------------------------------------------------------- /Include/Library/OcDebugLogLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcDebugLogLib.h -------------------------------------------------------------------------------- /Include/Library/OcDevicePathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcDevicePathLib.h -------------------------------------------------------------------------------- /Include/Library/OcDevicePropertyLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcDevicePropertyLib.h -------------------------------------------------------------------------------- /Include/Library/OcDeviceTreeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcDeviceTreeLib.h -------------------------------------------------------------------------------- /Include/Library/OcDriverConnectionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcDriverConnectionLib.h -------------------------------------------------------------------------------- /Include/Library/OcFileLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcFileLib.h -------------------------------------------------------------------------------- /Include/Library/OcFirmwarePasswordLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcFirmwarePasswordLib.h -------------------------------------------------------------------------------- /Include/Library/OcFirmwareVolumeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcFirmwareVolumeLib.h -------------------------------------------------------------------------------- /Include/Library/OcGuardLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcGuardLib.h -------------------------------------------------------------------------------- /Include/Library/OcHashServicesLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcHashServicesLib.h -------------------------------------------------------------------------------- /Include/Library/OcHdaDevicesLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcHdaDevicesLib.h -------------------------------------------------------------------------------- /Include/Library/OcHeciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcHeciLib.h -------------------------------------------------------------------------------- /Include/Library/OcInputLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcInputLib.h -------------------------------------------------------------------------------- /Include/Library/OcMachoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcMachoLib.h -------------------------------------------------------------------------------- /Include/Library/OcMemoryLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcMemoryLib.h -------------------------------------------------------------------------------- /Include/Library/OcMiscLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcMiscLib.h -------------------------------------------------------------------------------- /Include/Library/OcOSInfoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcOSInfoLib.h -------------------------------------------------------------------------------- /Include/Library/OcPngLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcPngLib.h -------------------------------------------------------------------------------- /Include/Library/OcRngLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcRngLib.h -------------------------------------------------------------------------------- /Include/Library/OcRtcLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcRtcLib.h -------------------------------------------------------------------------------- /Include/Library/OcSerializeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcSerializeLib.h -------------------------------------------------------------------------------- /Include/Library/OcSmbiosLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcSmbiosLib.h -------------------------------------------------------------------------------- /Include/Library/OcSmcLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcSmcLib.h -------------------------------------------------------------------------------- /Include/Library/OcStorageLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcStorageLib.h -------------------------------------------------------------------------------- /Include/Library/OcStringLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcStringLib.h -------------------------------------------------------------------------------- /Include/Library/OcTemplateLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcTemplateLib.h -------------------------------------------------------------------------------- /Include/Library/OcTimerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcTimerLib.h -------------------------------------------------------------------------------- /Include/Library/OcUnicodeCollationEngGenericLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcUnicodeCollationEngGenericLib.h -------------------------------------------------------------------------------- /Include/Library/OcVirtualFsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcVirtualFsLib.h -------------------------------------------------------------------------------- /Include/Library/OcXmlLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Library/OcXmlLib.h -------------------------------------------------------------------------------- /Include/OpenCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/OpenCore.h -------------------------------------------------------------------------------- /Include/ProcessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/ProcessorInfo.h -------------------------------------------------------------------------------- /Include/Protocol/AmiKeycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/AmiKeycode.h -------------------------------------------------------------------------------- /Include/Protocol/AmiPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/AmiPointer.h -------------------------------------------------------------------------------- /Include/Protocol/AudioIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/AudioIo.h -------------------------------------------------------------------------------- /Include/Protocol/HdaCodecInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/HdaCodecInfo.h -------------------------------------------------------------------------------- /Include/Protocol/HdaControllerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/HdaControllerInfo.h -------------------------------------------------------------------------------- /Include/Protocol/HdaIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/HdaIo.h -------------------------------------------------------------------------------- /Include/Protocol/OcAfterBootCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/OcAfterBootCompat.h -------------------------------------------------------------------------------- /Include/Protocol/OcAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/OcAudio.h -------------------------------------------------------------------------------- /Include/Protocol/OcBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/OcBootstrap.h -------------------------------------------------------------------------------- /Include/Protocol/OcFirmwareRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/OcFirmwareRuntime.h -------------------------------------------------------------------------------- /Include/Protocol/OcInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/OcInterface.h -------------------------------------------------------------------------------- /Include/Protocol/OcLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/OcLog.h -------------------------------------------------------------------------------- /Include/Protocol/VMwareHda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Include/Protocol/VMwareHda.h -------------------------------------------------------------------------------- /IncludeUser/Base.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncludeUser/Library/BaseLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncludeUser/Library/BaseMemoryLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncludeUser/Library/DebugLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncludeUser/Library/MemoryAllocationLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncludeUser/Library/PcdLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncludeUser/Uefi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncludeUser/UefiCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/IncludeUser/UefiCompat.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Library/OcAcpiLib/OcAcpiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAcpiLib/OcAcpiLib.c -------------------------------------------------------------------------------- /Library/OcAcpiLib/OcAcpiLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAcpiLib/OcAcpiLib.inf -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/BootCompatInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/BootCompatInternal.h -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/CustomSlide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/CustomSlide.c -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/IA32/ContextSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/IA32/ContextSwitch.h -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/IA32/ContextSwitchSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/IA32/ContextSwitchSupport.c -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/KernelSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/KernelSupport.c -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/OcAfterBootCompatLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/OcAfterBootCompatLib.c -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/OcAfterBootCompatLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/OcAfterBootCompatLib.inf -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/ServiceOverrides.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/ServiceOverrides.c -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/X64/ContextSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/X64/ContextSwitch.h -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/X64/ContextSwitch.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/X64/ContextSwitch.nasm -------------------------------------------------------------------------------- /Library/OcAfterBootCompatLib/X64/ContextSwitchSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAfterBootCompatLib/X64/ContextSwitchSupport.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsConnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsConnect.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsFusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsFusion.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsInternal.h -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsIo.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsLib.c -------------------------------------------------------------------------------- /Library/OcApfsLib/OcApfsLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcApfsLib/OcApfsLib.inf -------------------------------------------------------------------------------- /Library/OcAppleBootPolicyLib/OcAppleBootPolicyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleBootPolicyLib/OcAppleBootPolicyLib.c -------------------------------------------------------------------------------- /Library/OcAppleBootPolicyLib/OcAppleBootPolicyLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleBootPolicyLib/OcAppleBootPolicyLib.inf -------------------------------------------------------------------------------- /Library/OcAppleChunklistLib/OcAppleChunklistLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleChunklistLib/OcAppleChunklistLib.c -------------------------------------------------------------------------------- /Library/OcAppleChunklistLib/OcAppleChunklistLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleChunklistLib/OcAppleChunklistLib.inf -------------------------------------------------------------------------------- /Library/OcAppleDiskImageLib/OcAppleDiskImageBlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleDiskImageLib/OcAppleDiskImageBlockIo.c -------------------------------------------------------------------------------- /Library/OcAppleDiskImageLib/OcAppleDiskImageLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleDiskImageLib/OcAppleDiskImageLib.c -------------------------------------------------------------------------------- /Library/OcAppleDiskImageLib/OcAppleDiskImageLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleDiskImageLib/OcAppleDiskImageLib.inf -------------------------------------------------------------------------------- /Library/OcAppleDiskImageLib/OcAppleDiskImageLibInternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleDiskImageLib/OcAppleDiskImageLibInternal.c -------------------------------------------------------------------------------- /Library/OcAppleDiskImageLib/OcAppleDiskImageLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleDiskImageLib/OcAppleDiskImageLibInternal.h -------------------------------------------------------------------------------- /Library/OcAppleEventLib/AppleEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleEventLib/AppleEventInternal.h -------------------------------------------------------------------------------- /Library/OcAppleEventLib/AppleKeyMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleEventLib/AppleKeyMap.c -------------------------------------------------------------------------------- /Library/OcAppleEventLib/EventQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleEventLib/EventQueue.c -------------------------------------------------------------------------------- /Library/OcAppleEventLib/KeyHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleEventLib/KeyHandler.c -------------------------------------------------------------------------------- /Library/OcAppleEventLib/OcAppleEventLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleEventLib/OcAppleEventLib.c -------------------------------------------------------------------------------- /Library/OcAppleEventLib/OcAppleEventLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleEventLib/OcAppleEventLib.inf -------------------------------------------------------------------------------- /Library/OcAppleEventLib/PointerHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleEventLib/PointerHandler.c -------------------------------------------------------------------------------- /Library/OcAppleImageConversionLib/OcAppleImageConversionLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImageConversionLib/OcAppleImageConversionLib.c -------------------------------------------------------------------------------- /Library/OcAppleImageConversionLib/OcAppleImageConversionLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImageConversionLib/OcAppleImageConversionLib.inf -------------------------------------------------------------------------------- /Library/OcAppleImageVerificationLib/OcAppleImageVerification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImageVerificationLib/OcAppleImageVerification.c -------------------------------------------------------------------------------- /Library/OcAppleImageVerificationLib/OcAppleImageVerificationLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImageVerificationLib/OcAppleImageVerificationLib.inf -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/OcAppleImg4Lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/OcAppleImg4Lib.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/OcAppleImg4Lib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/OcAppleImg4Lib.inf -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_CertCrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_CertCrl.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_CertCrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_CertCrl.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Decode.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Decode.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Digest.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Digest.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Encode.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Encode.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Keys.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/DER_Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/DER_Keys.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/asn1Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/asn1Types.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/libDER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/libDER.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/oids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/oids.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER/oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER/oids.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDERImg4/DER_Img4Manifest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDERImg4/DER_Img4Manifest.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDERImg4/DER_Img4Manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDERImg4/DER_Img4Manifest.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDERImg4/Img4oids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDERImg4/Img4oids.c -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDERImg4/Img4oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDERImg4/Img4oids.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDERImg4/libDERImg4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDERImg4/libDERImg4.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDERImg4/libDERImg4_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDERImg4/libDERImg4_config.h -------------------------------------------------------------------------------- /Library/OcAppleImg4Lib/libDER_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleImg4Lib/libDER_config.h -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/CommonPatches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/CommonPatches.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/KernelReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/KernelReader.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/KextPatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/KextPatcher.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/Link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/Link.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/OcAppleKernelLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/OcAppleKernelLib.inf -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/PrelinkedContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/PrelinkedContext.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/PrelinkedInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/PrelinkedInternal.h -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/PrelinkedKext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/PrelinkedKext.c -------------------------------------------------------------------------------- /Library/OcAppleKernelLib/Vtables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKernelLib/Vtables.c -------------------------------------------------------------------------------- /Library/OcAppleKeyMapLib/OcAppleKeyMapLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKeyMapLib/OcAppleKeyMapLib.c -------------------------------------------------------------------------------- /Library/OcAppleKeyMapLib/OcAppleKeyMapLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKeyMapLib/OcAppleKeyMapLib.inf -------------------------------------------------------------------------------- /Library/OcAppleKeysLib/OcAppleKeysLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKeysLib/OcAppleKeysLib.c -------------------------------------------------------------------------------- /Library/OcAppleKeysLib/OcAppleKeysLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleKeysLib/OcAppleKeysLib.inf -------------------------------------------------------------------------------- /Library/OcAppleRamDiskLib/OcAppleRamDiskLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleRamDiskLib/OcAppleRamDiskLib.c -------------------------------------------------------------------------------- /Library/OcAppleRamDiskLib/OcAppleRamDiskLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleRamDiskLib/OcAppleRamDiskLib.inf -------------------------------------------------------------------------------- /Library/OcAppleSecureBootLib/OcAppleSecureBootLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleSecureBootLib/OcAppleSecureBootLib.c -------------------------------------------------------------------------------- /Library/OcAppleSecureBootLib/OcAppleSecureBootLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleSecureBootLib/OcAppleSecureBootLib.inf -------------------------------------------------------------------------------- /Library/OcAppleUserInterfaceThemeLib/OcAppleUserInterfaceThemeLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleUserInterfaceThemeLib/OcAppleUserInterfaceThemeLib.c -------------------------------------------------------------------------------- /Library/OcAppleUserInterfaceThemeLib/OcAppleUserInterfaceThemeLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAppleUserInterfaceThemeLib/OcAppleUserInterfaceThemeLib.inf -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudio.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioGenBeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioGenBeep.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioInternal.h -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioLib.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioLib.inf -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioVoiceOver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioVoiceOver.c -------------------------------------------------------------------------------- /Library/OcAudioLib/OcAudioWave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcAudioLib/OcAudioWave.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/AppleHibernate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/AppleHibernate.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/BootArguments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/BootArguments.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/BootAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/BootAudio.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/BootEntryInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/BootEntryInfo.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/BootEntryManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/BootEntryManagement.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/BootManagementInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/BootManagementInternal.h -------------------------------------------------------------------------------- /Library/OcBootManagementLib/DefaultEntryChoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/DefaultEntryChoice.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/DmgBootSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/DmgBootSupport.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/FontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/FontData.h -------------------------------------------------------------------------------- /Library/OcBootManagementLib/HotKeySupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/HotKeySupport.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/ImageSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/ImageSupport.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/OcBootManagementLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/OcBootManagementLib.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/OcBootManagementLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/OcBootManagementLib.inf -------------------------------------------------------------------------------- /Library/OcBootManagementLib/OcSimpleBootMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/OcSimpleBootMenu.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/OcSimpleBootMenuInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/OcSimpleBootMenuInternal.h -------------------------------------------------------------------------------- /Library/OcBootManagementLib/PolicyManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/PolicyManagement.c -------------------------------------------------------------------------------- /Library/OcBootManagementLib/VariableManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootManagementLib/VariableManagement.c -------------------------------------------------------------------------------- /Library/OcBootServicesTableLib/OcBootServicesTableLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootServicesTableLib/OcBootServicesTableLib.c -------------------------------------------------------------------------------- /Library/OcBootServicesTableLib/OcBootServicesTableLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootServicesTableLib/OcBootServicesTableLib.inf -------------------------------------------------------------------------------- /Library/OcBootServicesTableLib/UefiBootServicesTableLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootServicesTableLib/UefiBootServicesTableLib.c -------------------------------------------------------------------------------- /Library/OcBootServicesTableLib/UefiBootServicesTableLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcBootServicesTableLib/UefiBootServicesTableLib.inf -------------------------------------------------------------------------------- /Library/OcCompilerIntrinsicsLib/MsvcMath32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompilerIntrinsicsLib/MsvcMath32.c -------------------------------------------------------------------------------- /Library/OcCompilerIntrinsicsLib/OcCompilerIntrinsicsLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompilerIntrinsicsLib/OcCompilerIntrinsicsLib.c -------------------------------------------------------------------------------- /Library/OcCompilerIntrinsicsLib/OcCompilerIntrinsicsLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompilerIntrinsicsLib/OcCompilerIntrinsicsLib.inf -------------------------------------------------------------------------------- /Library/OcCompressionLib/OcCompressionLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/OcCompressionLib.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/OcCompressionLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/OcCompressionLib.inf -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzss/lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/lzss/lzss.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzss/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/lzss/lzss.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzvn/lzvn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/lzvn/lzvn.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/lzvn/lzvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/lzvn/lzvn.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/adler32.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/compress.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/crc32.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/crc32.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/deflate.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/deflate.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/infback.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inffast.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inffast.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inffixed.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inflate.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inflate.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inftrees.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/inftrees.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/trees.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/trees.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/uncompr.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zconf.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zlib.h -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zlib_uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zlib_uefi.c -------------------------------------------------------------------------------- /Library/OcCompressionLib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCompressionLib/zlib/zutil.h -------------------------------------------------------------------------------- /Library/OcConfigurationLib/CheckSchema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConfigurationLib/CheckSchema.py -------------------------------------------------------------------------------- /Library/OcConfigurationLib/OcConfigurationLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConfigurationLib/OcConfigurationLib.c -------------------------------------------------------------------------------- /Library/OcConfigurationLib/OcConfigurationLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConfigurationLib/OcConfigurationLib.inf -------------------------------------------------------------------------------- /Library/OcConsoleControlEntryModeLib/OcConsoleControlEntryModeGenericLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleControlEntryModeLib/OcConsoleControlEntryModeGenericLib.inf -------------------------------------------------------------------------------- /Library/OcConsoleControlEntryModeLib/OcConsoleControlEntryModeLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleControlEntryModeLib/OcConsoleControlEntryModeLib.c -------------------------------------------------------------------------------- /Library/OcConsoleControlEntryModeLib/OcConsoleControlEntryModeLocalLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleControlEntryModeLib/OcConsoleControlEntryModeLocalLib.inf -------------------------------------------------------------------------------- /Library/OcConsoleLib/ConsoleControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/ConsoleControl.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/ConsoleGop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/ConsoleGop.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/OcConsoleLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/OcConsoleLib.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/OcConsoleLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/OcConsoleLib.inf -------------------------------------------------------------------------------- /Library/OcConsoleLib/OcConsoleLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/OcConsoleLibInternal.h -------------------------------------------------------------------------------- /Library/OcConsoleLib/ResolutionParsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/ResolutionParsing.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/TextOutputBuiltin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/TextOutputBuiltin.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/TextOutputNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/TextOutputNull.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/TextOutputSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/TextOutputSystem.c -------------------------------------------------------------------------------- /Library/OcConsoleLib/UgaPassThrough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcConsoleLib/UgaPassThrough.c -------------------------------------------------------------------------------- /Library/OcCpuLib/AppleCpuSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCpuLib/AppleCpuSupport.c -------------------------------------------------------------------------------- /Library/OcCpuLib/FrequencyDetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCpuLib/FrequencyDetect.c -------------------------------------------------------------------------------- /Library/OcCpuLib/IA32/Microcode.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCpuLib/IA32/Microcode.nasm -------------------------------------------------------------------------------- /Library/OcCpuLib/OcCpuInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCpuLib/OcCpuInternals.h -------------------------------------------------------------------------------- /Library/OcCpuLib/OcCpuLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCpuLib/OcCpuLib.c -------------------------------------------------------------------------------- /Library/OcCpuLib/OcCpuLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCpuLib/OcCpuLib.inf -------------------------------------------------------------------------------- /Library/OcCpuLib/X64/Microcode.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCpuLib/X64/Microcode.nasm -------------------------------------------------------------------------------- /Library/OcCryptoLib/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/Aes.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumLib.h -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumLibInternal.h -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumMontgomery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumMontgomery.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/BigNumPrimitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/BigNumPrimitives.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/ChaCha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/ChaCha.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/IA32/BigNumWordMul64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/IA32/BigNumWordMul64.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/Md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/Md5.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/OcCryptoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/OcCryptoLib.inf -------------------------------------------------------------------------------- /Library/OcCryptoLib/PasswordHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/PasswordHash.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/RsaDigitalSign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/RsaDigitalSign.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/SecureMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/SecureMem.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/Sha1.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/Sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/Sha2.c -------------------------------------------------------------------------------- /Library/OcCryptoLib/X64/BigNumWordMul64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcCryptoLib/X64/BigNumWordMul64.c -------------------------------------------------------------------------------- /Library/OcDataHubLib/DataHub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDataHubLib/DataHub.c -------------------------------------------------------------------------------- /Library/OcDataHubLib/DataHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDataHubLib/DataHub.h -------------------------------------------------------------------------------- /Library/OcDataHubLib/OcDataHubLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDataHubLib/OcDataHubLib.c -------------------------------------------------------------------------------- /Library/OcDataHubLib/OcDataHubLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDataHubLib/OcDataHubLib.inf -------------------------------------------------------------------------------- /Library/OcDebugLogLib/DebugHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDebugLogLib/DebugHelp.c -------------------------------------------------------------------------------- /Library/OcDebugLogLib/DebugPrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDebugLogLib/DebugPrint.c -------------------------------------------------------------------------------- /Library/OcDebugLogLib/OcAppleLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDebugLogLib/OcAppleLog.c -------------------------------------------------------------------------------- /Library/OcDebugLogLib/OcDebugLogLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDebugLogLib/OcDebugLogLib.c -------------------------------------------------------------------------------- /Library/OcDebugLogLib/OcDebugLogLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDebugLogLib/OcDebugLogLib.inf -------------------------------------------------------------------------------- /Library/OcDebugLogLib/OcLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDebugLogLib/OcLog.c -------------------------------------------------------------------------------- /Library/OcDebugLogLib/OcLogInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDebugLogLib/OcLogInternal.h -------------------------------------------------------------------------------- /Library/OcDevicePathLib/ExpandDevicePath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDevicePathLib/ExpandDevicePath.c -------------------------------------------------------------------------------- /Library/OcDevicePathLib/OcDevicePathLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDevicePathLib/OcDevicePathLib.c -------------------------------------------------------------------------------- /Library/OcDevicePathLib/OcDevicePathLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDevicePathLib/OcDevicePathLib.inf -------------------------------------------------------------------------------- /Library/OcDevicePropertyLib/OcDevicePropertyLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDevicePropertyLib/OcDevicePropertyLib.c -------------------------------------------------------------------------------- /Library/OcDevicePropertyLib/OcDevicePropertyLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDevicePropertyLib/OcDevicePropertyLib.inf -------------------------------------------------------------------------------- /Library/OcDeviceTreeLib/OcDeviceTreeLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDeviceTreeLib/OcDeviceTreeLib.c -------------------------------------------------------------------------------- /Library/OcDeviceTreeLib/OcDeviceTreeLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDeviceTreeLib/OcDeviceTreeLib.inf -------------------------------------------------------------------------------- /Library/OcDriverConnectionLib/OcDriverConnectionLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDriverConnectionLib/OcDriverConnectionLib.c -------------------------------------------------------------------------------- /Library/OcDriverConnectionLib/OcDriverConnectionLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcDriverConnectionLib/OcDriverConnectionLib.inf -------------------------------------------------------------------------------- /Library/OcFileLib/FileProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/FileProtocol.c -------------------------------------------------------------------------------- /Library/OcFileLib/FirmwareFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/FirmwareFile.c -------------------------------------------------------------------------------- /Library/OcFileLib/FsConnectQuirk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/FsConnectQuirk.c -------------------------------------------------------------------------------- /Library/OcFileLib/GetFileInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/GetFileInfo.c -------------------------------------------------------------------------------- /Library/OcFileLib/GetVolumeLabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/GetVolumeLabel.c -------------------------------------------------------------------------------- /Library/OcFileLib/GptPartitionEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/GptPartitionEntry.c -------------------------------------------------------------------------------- /Library/OcFileLib/LocateFileSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/LocateFileSystem.c -------------------------------------------------------------------------------- /Library/OcFileLib/OcFileLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/OcFileLib.inf -------------------------------------------------------------------------------- /Library/OcFileLib/OpenFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/OpenFile.c -------------------------------------------------------------------------------- /Library/OcFileLib/ReadFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFileLib/ReadFile.c -------------------------------------------------------------------------------- /Library/OcFirmwarePasswordLib/AppleFwPasswordInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFirmwarePasswordLib/AppleFwPasswordInternal.h -------------------------------------------------------------------------------- /Library/OcFirmwarePasswordLib/OcFirmwarePasswordLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFirmwarePasswordLib/OcFirmwarePasswordLib.c -------------------------------------------------------------------------------- /Library/OcFirmwarePasswordLib/OcFirmwarePasswordLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFirmwarePasswordLib/OcFirmwarePasswordLib.inf -------------------------------------------------------------------------------- /Library/OcFirmwareVolumeLib/FvOnFv2Thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFirmwareVolumeLib/FvOnFv2Thunk.c -------------------------------------------------------------------------------- /Library/OcFirmwareVolumeLib/OcFirmwareVolumeLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFirmwareVolumeLib/OcFirmwareVolumeLib.c -------------------------------------------------------------------------------- /Library/OcFirmwareVolumeLib/OcFirmwareVolumeLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFirmwareVolumeLib/OcFirmwareVolumeLib.inf -------------------------------------------------------------------------------- /Library/OcFirmwareVolumeLib/OcFirmwareVolumeLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcFirmwareVolumeLib/OcFirmwareVolumeLibInternal.h -------------------------------------------------------------------------------- /Library/OcGuardLib/BitOverflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/BitOverflow.c -------------------------------------------------------------------------------- /Library/OcGuardLib/Canary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/Canary.c -------------------------------------------------------------------------------- /Library/OcGuardLib/NativeOverflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/NativeOverflow.c -------------------------------------------------------------------------------- /Library/OcGuardLib/OcGuardLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/OcGuardLib.inf -------------------------------------------------------------------------------- /Library/OcGuardLib/TripleOverflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/TripleOverflow.c -------------------------------------------------------------------------------- /Library/OcGuardLib/Ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/Ubsan.c -------------------------------------------------------------------------------- /Library/OcGuardLib/Ubsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/Ubsan.h -------------------------------------------------------------------------------- /Library/OcGuardLib/UbsanPrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcGuardLib/UbsanPrintf.c -------------------------------------------------------------------------------- /Library/OcHashServicesLib/OcHashServicesLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHashServicesLib/OcHashServicesLib.c -------------------------------------------------------------------------------- /Library/OcHashServicesLib/OcHashServicesLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHashServicesLib/OcHashServicesLib.inf -------------------------------------------------------------------------------- /Library/OcHashServicesLib/OcHashServicesLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHashServicesLib/OcHashServicesLibInternal.h -------------------------------------------------------------------------------- /Library/OcHdaDevicesLib/OcHdaDevicesInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHdaDevicesLib/OcHdaDevicesInternal.h -------------------------------------------------------------------------------- /Library/OcHdaDevicesLib/OcHdaDevicesLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHdaDevicesLib/OcHdaDevicesLib.c -------------------------------------------------------------------------------- /Library/OcHdaDevicesLib/OcHdaDevicesLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHdaDevicesLib/OcHdaDevicesLib.inf -------------------------------------------------------------------------------- /Library/OcHeciLib/OcHeciLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHeciLib/OcHeciLib.c -------------------------------------------------------------------------------- /Library/OcHeciLib/OcHeciLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHeciLib/OcHeciLib.inf -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/ConfigKeywordHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/ConfigKeywordHandler.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/ConfigRouting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/ConfigRouting.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/Database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/Database.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/Font.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/HiiDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/HiiDatabase.h -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/HiiDatabaseEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/HiiDatabaseEntry.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/Image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/Image.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/ImageEx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/ImageEx.c -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/OcHiiDatabaseLocalLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/OcHiiDatabaseLocalLib.inf -------------------------------------------------------------------------------- /Library/OcHiiDatabaseLib/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcHiiDatabaseLib/String.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIK.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIK.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKData.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKData.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKMap.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKShim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKShim.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKShim.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKSource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKSource.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKSource.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKTarget.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKTarget.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKTranslate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKTranslate.c -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AIKTranslate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AIKTranslate.h -------------------------------------------------------------------------------- /Library/OcInputLib/Keycode/AppleHid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Keycode/AppleHid.txt -------------------------------------------------------------------------------- /Library/OcInputLib/OcInputLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/OcInputLib.inf -------------------------------------------------------------------------------- /Library/OcInputLib/Pointer/AIM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Pointer/AIM.c -------------------------------------------------------------------------------- /Library/OcInputLib/Pointer/AIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Pointer/AIM.h -------------------------------------------------------------------------------- /Library/OcInputLib/Timer/AIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcInputLib/Timer/AIT.c -------------------------------------------------------------------------------- /Library/OcMachoLib/CxxSymbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMachoLib/CxxSymbols.c -------------------------------------------------------------------------------- /Library/OcMachoLib/Header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMachoLib/Header.c -------------------------------------------------------------------------------- /Library/OcMachoLib/OcMachoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMachoLib/OcMachoLib.inf -------------------------------------------------------------------------------- /Library/OcMachoLib/OcMachoLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMachoLib/OcMachoLibInternal.h -------------------------------------------------------------------------------- /Library/OcMachoLib/Relocations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMachoLib/Relocations.c -------------------------------------------------------------------------------- /Library/OcMachoLib/Symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMachoLib/Symbols.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/LegacyRegionLock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/LegacyRegionLock.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/LegacyRegionUnLock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/LegacyRegionUnLock.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryAlloc.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryAttributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryAttributes.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryDebug.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/MemoryMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/MemoryMap.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/OcMemoryLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/OcMemoryLib.inf -------------------------------------------------------------------------------- /Library/OcMemoryLib/UmmMalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/UmmMalloc.c -------------------------------------------------------------------------------- /Library/OcMemoryLib/VirtualMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMemoryLib/VirtualMemory.c -------------------------------------------------------------------------------- /Library/OcMiscLib/DataPatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMiscLib/DataPatcher.c -------------------------------------------------------------------------------- /Library/OcMiscLib/DirectReset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMiscLib/DirectReset.c -------------------------------------------------------------------------------- /Library/OcMiscLib/Math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMiscLib/Math.c -------------------------------------------------------------------------------- /Library/OcMiscLib/OcMiscLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMiscLib/OcMiscLib.inf -------------------------------------------------------------------------------- /Library/OcMiscLib/ProtocolSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMiscLib/ProtocolSupport.c -------------------------------------------------------------------------------- /Library/OcMiscLib/ReleaseUsbOwnership.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcMiscLib/ReleaseUsbOwnership.c -------------------------------------------------------------------------------- /Library/OcOSInfoLib/OcOSInfoLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcOSInfoLib/OcOSInfoLib.c -------------------------------------------------------------------------------- /Library/OcOSInfoLib/OcOSInfoLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcOSInfoLib/OcOSInfoLib.inf -------------------------------------------------------------------------------- /Library/OcPngLib/OcPng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcPngLib/OcPng.c -------------------------------------------------------------------------------- /Library/OcPngLib/OcPngLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcPngLib/OcPngLib.inf -------------------------------------------------------------------------------- /Library/OcPngLib/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcPngLib/lodepng.c -------------------------------------------------------------------------------- /Library/OcPngLib/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcPngLib/lodepng.h -------------------------------------------------------------------------------- /Library/OcRngLib/IA32/RngDelay.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRngLib/IA32/RngDelay.nasm -------------------------------------------------------------------------------- /Library/OcRngLib/OcRngInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRngLib/OcRngInternals.h -------------------------------------------------------------------------------- /Library/OcRngLib/OcRngLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRngLib/OcRngLib.c -------------------------------------------------------------------------------- /Library/OcRngLib/OcRngLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRngLib/OcRngLib.inf -------------------------------------------------------------------------------- /Library/OcRngLib/X64/RngDelay.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRngLib/X64/RngDelay.nasm -------------------------------------------------------------------------------- /Library/OcRtcLib/AppleRtcRam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRtcLib/AppleRtcRam.c -------------------------------------------------------------------------------- /Library/OcRtcLib/OcRtcLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRtcLib/OcRtcLib.c -------------------------------------------------------------------------------- /Library/OcRtcLib/OcRtcLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRtcLib/OcRtcLib.inf -------------------------------------------------------------------------------- /Library/OcRtcLib/OcRtcLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcRtcLib/OcRtcLibInternal.h -------------------------------------------------------------------------------- /Library/OcSerializeLib/OcSerializeLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSerializeLib/OcSerializeLib.c -------------------------------------------------------------------------------- /Library/OcSerializeLib/OcSerializeLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSerializeLib/OcSerializeLib.inf -------------------------------------------------------------------------------- /Library/OcSmbiosLib/DebugSmbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmbiosLib/DebugSmbios.c -------------------------------------------------------------------------------- /Library/OcSmbiosLib/DebugSmbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmbiosLib/DebugSmbios.h -------------------------------------------------------------------------------- /Library/OcSmbiosLib/OcSmbiosLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmbiosLib/OcSmbiosLib.inf -------------------------------------------------------------------------------- /Library/OcSmbiosLib/SmbiosInternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmbiosLib/SmbiosInternal.c -------------------------------------------------------------------------------- /Library/OcSmbiosLib/SmbiosInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmbiosLib/SmbiosInternal.h -------------------------------------------------------------------------------- /Library/OcSmbiosLib/SmbiosPatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmbiosLib/SmbiosPatch.c -------------------------------------------------------------------------------- /Library/OcSmcLib/OcSmcLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmcLib/OcSmcLib.c -------------------------------------------------------------------------------- /Library/OcSmcLib/OcSmcLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmcLib/OcSmcLib.inf -------------------------------------------------------------------------------- /Library/OcSmcLib/OcSmcLibInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcSmcLib/OcSmcLibInternal.h -------------------------------------------------------------------------------- /Library/OcStorageLib/OcStorageLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcStorageLib/OcStorageLib.c -------------------------------------------------------------------------------- /Library/OcStorageLib/OcStorageLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcStorageLib/OcStorageLib.inf -------------------------------------------------------------------------------- /Library/OcStringLib/OcAsciiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcStringLib/OcAsciiLib.c -------------------------------------------------------------------------------- /Library/OcStringLib/OcStringLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcStringLib/OcStringLib.inf -------------------------------------------------------------------------------- /Library/OcStringLib/OcUnicodeLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcStringLib/OcUnicodeLib.c -------------------------------------------------------------------------------- /Library/OcTemplateLib/OcTemplateLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcTemplateLib/OcTemplateLib.c -------------------------------------------------------------------------------- /Library/OcTemplateLib/OcTemplateLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcTemplateLib/OcTemplateLib.inf -------------------------------------------------------------------------------- /Library/OcTimerLib/OcTimerLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcTimerLib/OcTimerLib.c -------------------------------------------------------------------------------- /Library/OcTimerLib/OcTimerLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcTimerLib/OcTimerLib.inf -------------------------------------------------------------------------------- /Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngCommon.c -------------------------------------------------------------------------------- /Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngGeneric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngGeneric.c -------------------------------------------------------------------------------- /Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngGenericLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngGenericLib.inf -------------------------------------------------------------------------------- /Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngInternal.h -------------------------------------------------------------------------------- /Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngLocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngLocal.c -------------------------------------------------------------------------------- /Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngLocalLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcUnicodeCollationEngLib/OcUnicodeCollationEngLocalLib.inf -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/OcVirtualFsLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcVirtualFsLib/OcVirtualFsLib.inf -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/VirtualFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcVirtualFsLib/VirtualFile.c -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/VirtualFs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcVirtualFsLib/VirtualFs.c -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/VirtualFsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcVirtualFsLib/VirtualFsInternal.h -------------------------------------------------------------------------------- /Library/OcVirtualFsLib/VirtualVolume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcVirtualFsLib/VirtualVolume.c -------------------------------------------------------------------------------- /Library/OcXmlLib/OcXmlLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcXmlLib/OcXmlLib.c -------------------------------------------------------------------------------- /Library/OcXmlLib/OcXmlLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Library/OcXmlLib/OcXmlLib.inf -------------------------------------------------------------------------------- /OpenCorePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/OpenCorePkg.dec -------------------------------------------------------------------------------- /OpenCorePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/OpenCorePkg.dsc -------------------------------------------------------------------------------- /OpenCorePkg.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/OpenCorePkg.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Patches/0001-ShellPkg-Add-support-for-input-with-separately-repor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Patches/0001-ShellPkg-Add-support-for-input-with-separately-repor.patch -------------------------------------------------------------------------------- /Platform/OpenCanopy/BitmapFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/BitmapFont.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/BmfFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/BmfFile.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/BmfLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/BmfLib.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/GuiApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/GuiApp.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/GuiApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/GuiApp.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/GuiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/GuiIo.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/Input/InputSimAbsPtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/Input/InputSimAbsPtr.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/Input/InputSimTextIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/Input/InputSimTextIn.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/OcBootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/OcBootstrap.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/OpenCanopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/OpenCanopy.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/OpenCanopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/OpenCanopy.h -------------------------------------------------------------------------------- /Platform/OpenCanopy/OpenCanopy.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/OpenCanopy.inf -------------------------------------------------------------------------------- /Platform/OpenCanopy/Output/OutputStGop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/Output/OutputStGop.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/Views/BootPicker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/Views/BootPicker.c -------------------------------------------------------------------------------- /Platform/OpenCanopy/Views/BootPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCanopy/Views/BootPicker.h -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCore.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCore.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCore.inf -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreAcpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreAcpi.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreDevProps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreDevProps.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreKernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreKernel.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreMisc.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreNvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreNvram.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCorePlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCorePlatform.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreUefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreUefi.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreUefiAudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreUefiAudio.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreUefiInOut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreUefiInOut.c -------------------------------------------------------------------------------- /Platform/OpenCore/OpenCoreVault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenCore/OpenCoreVault.c -------------------------------------------------------------------------------- /Platform/OpenRuntime/OpenRuntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenRuntime/OpenRuntime.c -------------------------------------------------------------------------------- /Platform/OpenRuntime/OpenRuntime.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenRuntime/OpenRuntime.inf -------------------------------------------------------------------------------- /Platform/OpenRuntime/OpenRuntimePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenRuntime/OpenRuntimePrivate.h -------------------------------------------------------------------------------- /Platform/OpenRuntime/UefiRuntimeServices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenRuntime/UefiRuntimeServices.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/AppleKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/AppleKey.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/AppleKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/AppleKey.h -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/ComponentName.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/EfiKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/EfiKey.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/EfiKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/EfiKey.h -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/KeyBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/KeyBoard.c -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/KeyBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/KeyBoard.h -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/UsbKbDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/UsbKbDxe.inf -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/UsbKbDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/UsbKbDxe.uni -------------------------------------------------------------------------------- /Platform/OpenUsbKbDxe/UsbKbDxeExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Platform/OpenUsbKbDxe/UsbKbDxeExtra.uni -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/README.md -------------------------------------------------------------------------------- /Tests/AcpiTest/AcpiTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/AcpiTest/AcpiTest.c -------------------------------------------------------------------------------- /Tests/AcpiTest/AcpiTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/AcpiTest/AcpiTest.inf -------------------------------------------------------------------------------- /Tests/AcpiTest/AcpiTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/AcpiTest/AcpiTestApp.inf -------------------------------------------------------------------------------- /Tests/BlessTest/BlessTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/BlessTest/BlessTest.c -------------------------------------------------------------------------------- /Tests/BlessTest/BlessTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/BlessTest/BlessTest.inf -------------------------------------------------------------------------------- /Tests/BlessTest/BlessTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/BlessTest/BlessTestApp.inf -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoSamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoSamples.h -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoTest.c -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoTest.inf -------------------------------------------------------------------------------- /Tests/CryptoTest/CryptoTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/CryptoTest/CryptoTestApp.inf -------------------------------------------------------------------------------- /Tests/DataHubTest/DataHubTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/DataHubTest/DataHubTest.c -------------------------------------------------------------------------------- /Tests/DataHubTest/DataHubTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/DataHubTest/DataHubTest.inf -------------------------------------------------------------------------------- /Tests/DataHubTest/DataHubTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/DataHubTest/DataHubTestApp.inf -------------------------------------------------------------------------------- /Tests/ExternalUi/ExternalUi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/ExternalUi/ExternalUi.c -------------------------------------------------------------------------------- /Tests/ExternalUi/ExternalUi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/ExternalUi/ExternalUi.inf -------------------------------------------------------------------------------- /Tests/KernelTest/KernelTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/KernelTest/KernelTest.c -------------------------------------------------------------------------------- /Tests/KernelTest/KernelTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/KernelTest/KernelTest.inf -------------------------------------------------------------------------------- /Tests/KernelTest/KernelTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/KernelTest/KernelTestApp.inf -------------------------------------------------------------------------------- /Tests/KernelTest/Lilu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/KernelTest/Lilu.c -------------------------------------------------------------------------------- /Tests/KernelTest/Vsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/KernelTest/Vsmc.c -------------------------------------------------------------------------------- /Tests/PropertyTest/PropertyTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/PropertyTest/PropertyTest.c -------------------------------------------------------------------------------- /Tests/PropertyTest/PropertyTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/PropertyTest/PropertyTest.inf -------------------------------------------------------------------------------- /Tests/PropertyTest/PropertyTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/PropertyTest/PropertyTestApp.inf -------------------------------------------------------------------------------- /Tests/SmbiosTest/SmbiosTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/SmbiosTest/SmbiosTest.c -------------------------------------------------------------------------------- /Tests/SmbiosTest/SmbiosTest.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/SmbiosTest/SmbiosTest.inf -------------------------------------------------------------------------------- /Tests/SmbiosTest/SmbiosTestApp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Tests/SmbiosTest/SmbiosTestApp.inf -------------------------------------------------------------------------------- /TestsUser/Bmf/BitmapFontUser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Bmf/BitmapFontUser.c -------------------------------------------------------------------------------- /TestsUser/DiskImage/DiskImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/DiskImage/DiskImage.c -------------------------------------------------------------------------------- /TestsUser/Img4/Img4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Img4/Img4.c -------------------------------------------------------------------------------- /TestsUser/Include/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Include/Base.h -------------------------------------------------------------------------------- /TestsUser/Include/Library/BaseLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Include/Library/BaseMemoryLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Include/Library/DebugLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Include/Library/MemoryAllocationLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Include/Library/PrintLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Include/Library/UefiBootServicesTableLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Include/Library/UefiLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Include/Uefi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestsUser/Macho/Macho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Macho/Macho.c -------------------------------------------------------------------------------- /TestsUser/Macho/kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Macho/kernel -------------------------------------------------------------------------------- /TestsUser/Prelinked/Prelinked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Prelinked/Prelinked.c -------------------------------------------------------------------------------- /TestsUser/Props/Props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Props/Props.c -------------------------------------------------------------------------------- /TestsUser/RsaPreprocess/RsaPreprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/RsaPreprocess/RsaPreprocess.c -------------------------------------------------------------------------------- /TestsUser/Serialized/Serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Serialized/Serialized.c -------------------------------------------------------------------------------- /TestsUser/Serialized/Serialized.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Serialized/Serialized.plist -------------------------------------------------------------------------------- /TestsUser/Smbios/Smbios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Smbios/Smbios.bin -------------------------------------------------------------------------------- /TestsUser/Smbios/Smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/TestsUser/Smbios/Smbios.c -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/Label_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/Label_template.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/Selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/Selector.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/Selector4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/Selector4k.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/background.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/background4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/background4k.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/background_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/background_color.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/font.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/font_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/font_color.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/func_reset.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/func_reset.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/func_resetnvram.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/func_resetnvram.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/func_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/func_selector.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/func_shutdown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/func_shutdown.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_arch.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_cata.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_cata.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_clone.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_clone.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_custom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_custom.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_debian.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_debian.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_fedora.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_fedora.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_freebsd.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_install.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_install.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_linux.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_mac.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_moja.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_moja.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_recovery.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_redhat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_redhat.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_ubuntu.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_unknown.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_win.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/os_win10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/os_win10.icns -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/pointer.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/pointer4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/pointer4k.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/pointeralt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/pointeralt.png -------------------------------------------------------------------------------- /Themes/Default/Dark/Icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Dark/Icons/tool_shell.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/Label_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/Label_template.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/Selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/Selector.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/Selector4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/Selector4k.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/background.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/background4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/background4k.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/background_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/background_color.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/font.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/font_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/font_color.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/func_reset.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/func_reset.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/func_resetnvram.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/func_resetnvram.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/func_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/func_selector.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/func_shutdown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/func_shutdown.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_arch.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_cata.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_cata.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_clone.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_clone.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_custom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_custom.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_debian.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_debian.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_fedora.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_fedora.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_freebsd.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_install.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_install.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_linux.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_mac.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_moja.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_moja.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_recovery.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_redhat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_redhat.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_ubuntu.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_unknown.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_win.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/os_win10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/os_win10.icns -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/pointer.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/pointer4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/pointer4k.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/pointeralt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/pointeralt.png -------------------------------------------------------------------------------- /Themes/Default/Light/Icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Themes/Default/Light/Icons/tool_shell.icns -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/AppleEfiBinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/AppleEfiBinary.c -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/AppleEfiFatBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/AppleEfiFatBinary.h -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/AppleEfiPeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/AppleEfiPeImage.h -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Edk2PeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Edk2PeImage.h -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Makefile -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/OcCryptoConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/OcCryptoConfig.h -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/README.md -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/apfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/apfs.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/apfs_10.15.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/apfs_10.15.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/apfs_aligned_10.15.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/apfs_aligned_10.15.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.10.5.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.10.5.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.11.6.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.11.6.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.12.6.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.12.6.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.13.6.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.13.6.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.14.0.18A371a.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.14.0.18A371a.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.14_0.18A389.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.14_0.18A389.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.4.11.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.4.11.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.5.8.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.5.8.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.6.8.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.6.8.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.7.5.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.7.5.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.8.5.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.8.5.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/Samples/boot_10.9.5.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/Samples/boot_10.9.5.efi -------------------------------------------------------------------------------- /Utilities/AppleEfiSignTool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleEfiSignTool/main.c -------------------------------------------------------------------------------- /Utilities/AppleKeyboardLayouts/AppleKeyboardLayouts.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleKeyboardLayouts/AppleKeyboardLayouts.bt -------------------------------------------------------------------------------- /Utilities/AppleKeyboardLayouts/AppleKeyboardLayouts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/AppleKeyboardLayouts/AppleKeyboardLayouts.txt -------------------------------------------------------------------------------- /Utilities/CreateVault/RsaTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/CreateVault/RsaTool -------------------------------------------------------------------------------- /Utilities/CreateVault/create_vault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/CreateVault/create_vault.sh -------------------------------------------------------------------------------- /Utilities/CreateVault/sign.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/CreateVault/sign.command -------------------------------------------------------------------------------- /Utilities/EfiResTool/EfiResTool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/EfiResTool/EfiResTool.c -------------------------------------------------------------------------------- /Utilities/EfiResTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/EfiResTool/Makefile -------------------------------------------------------------------------------- /Utilities/EfiResTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/EfiResTool/README.md -------------------------------------------------------------------------------- /Utilities/LogoutHook/LogoutHook.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/LogoutHook/LogoutHook.command -------------------------------------------------------------------------------- /Utilities/LogoutHook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/LogoutHook/README.md -------------------------------------------------------------------------------- /Utilities/LogoutHook/nvram.mojave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/LogoutHook/nvram.mojave -------------------------------------------------------------------------------- /Utilities/MacEfiUnpack/MacEfiUnpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/MacEfiUnpack/MacEfiUnpack.py -------------------------------------------------------------------------------- /Utilities/RsaTool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/RsaTool/LICENSE -------------------------------------------------------------------------------- /Utilities/RsaTool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/RsaTool/Makefile -------------------------------------------------------------------------------- /Utilities/RsaTool/RsaTool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/RsaTool/RsaTool.c -------------------------------------------------------------------------------- /Utilities/RsaTool/openssl_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/RsaTool/openssl_compat.h -------------------------------------------------------------------------------- /Utilities/WinNvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/WinNvram/Makefile -------------------------------------------------------------------------------- /Utilities/WinNvram/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/WinNvram/nvram.c -------------------------------------------------------------------------------- /Utilities/WinNvram/nvram.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/WinNvram/nvram.exe -------------------------------------------------------------------------------- /Utilities/disklabel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/disklabel/Makefile -------------------------------------------------------------------------------- /Utilities/disklabel/disklabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/disklabel/disklabel -------------------------------------------------------------------------------- /Utilities/disklabel/disklabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/disklabel/disklabel.c -------------------------------------------------------------------------------- /Utilities/icnspack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/icnspack/Makefile -------------------------------------------------------------------------------- /Utilities/icnspack/icnspack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/icnspack/icnspack -------------------------------------------------------------------------------- /Utilities/icnspack/icnspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/Utilities/icnspack/icnspack.c -------------------------------------------------------------------------------- /ndk-macbuild.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/ndk-macbuild.tool -------------------------------------------------------------------------------- /xcbuild.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n-d-k/OpenCorePkg/HEAD/xcbuild.tool --------------------------------------------------------------------------------