├── README.md ├── poc.png └── umap ├── edk2 ├── BaseCacheMaintenanceLib.lib ├── BaseCpuLib.lib ├── BaseCryptLib.lib ├── BaseDebugPrintErrorLevelLib.lib ├── BaseLib.lib ├── BaseLib │ └── vshacks.h ├── BaseMemoryLib.lib ├── BasePrintLib.lib ├── BaseSynchronizationLib.lib ├── CryptoPkg │ └── Include │ │ └── Library │ │ ├── BaseCryptLib.h │ │ └── TlsLib.h ├── GlueLib.lib ├── IntrinsicLib.lib ├── MdePkg │ └── Include │ │ ├── AArch64 │ │ └── ProcessorBind.h │ │ ├── Arm │ │ └── ProcessorBind.h │ │ ├── Base.h │ │ ├── Ebc │ │ └── ProcessorBind.h │ │ ├── Guid │ │ ├── Acpi.h │ │ ├── Apriori.h │ │ ├── AprioriFileName.h │ │ ├── Btt.h │ │ ├── CapsuleReport.h │ │ ├── Cper.h │ │ ├── DebugImageInfoTable.h │ │ ├── DxeServices.h │ │ ├── EventGroup.h │ │ ├── EventLegacyBios.h │ │ ├── FileInfo.h │ │ ├── FileSystemInfo.h │ │ ├── FileSystemVolumeLabelInfo.h │ │ ├── FirmwareContentsSigned.h │ │ ├── FirmwareFileSystem2.h │ │ ├── FirmwareFileSystem3.h │ │ ├── FmpCapsule.h │ │ ├── GlobalVariable.h │ │ ├── Gpt.h │ │ ├── GraphicsInfoHob.h │ │ ├── HardwareErrorVariable.h │ │ ├── HiiFormMapMethodGuid.h │ │ ├── HiiKeyBoardLayout.h │ │ ├── HiiPlatformSetupFormset.h │ │ ├── HobList.h │ │ ├── ImageAuthentication.h │ │ ├── MdePkgTokenSpace.h │ │ ├── MemoryAllocationHob.h │ │ ├── MemoryAttributesTable.h │ │ ├── MemoryOverwriteControl.h │ │ ├── Mps.h │ │ ├── PcAnsi.h │ │ ├── PropertiesTable.h │ │ ├── SalSystemTable.h │ │ ├── SmBios.h │ │ ├── StatusCodeDataTypeId.h │ │ ├── SystemResourceTable.h │ │ ├── VectorHandoffTable.h │ │ └── WinCertificate.h │ │ ├── Ia32 │ │ ├── Nasm.inc │ │ └── ProcessorBind.h │ │ ├── IndustryStandard │ │ ├── Acpi.h │ │ ├── Acpi10.h │ │ ├── Acpi20.h │ │ ├── Acpi30.h │ │ ├── Acpi40.h │ │ ├── Acpi50.h │ │ ├── Acpi51.h │ │ ├── Acpi60.h │ │ ├── Acpi61.h │ │ ├── Acpi62.h │ │ ├── AcpiAml.h │ │ ├── AlertStandardFormatTable.h │ │ ├── Atapi.h │ │ ├── Bluetooth.h │ │ ├── Bmp.h │ │ ├── DebugPort2Table.h │ │ ├── DebugPortTable.h │ │ ├── Dhcp.h │ │ ├── DmaRemappingReportingTable.h │ │ ├── ElTorito.h │ │ ├── Emmc.h │ │ ├── HighPrecisionEventTimerTable.h │ │ ├── Hsti.h │ │ ├── Http11.h │ │ ├── IScsiBootFirmwareTable.h │ │ ├── IoRemappingTable.h │ │ ├── Ipmi.h │ │ ├── IpmiFruInformationStorage.h │ │ ├── IpmiNetFnApp.h │ │ ├── IpmiNetFnBridge.h │ │ ├── IpmiNetFnChassis.h │ │ ├── IpmiNetFnFirmware.h │ │ ├── IpmiNetFnGroupExtension.h │ │ ├── IpmiNetFnSensorEvent.h │ │ ├── IpmiNetFnStorage.h │ │ ├── IpmiNetFnTransport.h │ │ ├── LegacyBiosMpTable.h │ │ ├── LowPowerIdleTable.h │ │ ├── Mbr.h │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ ├── MemoryOverwriteRequestControlLock.h │ │ ├── Nvme.h │ │ ├── Pal.h │ │ ├── Pci.h │ │ ├── Pci22.h │ │ ├── Pci23.h │ │ ├── Pci30.h │ │ ├── PciCodeId.h │ │ ├── PciExpress21.h │ │ ├── PciExpress30.h │ │ ├── PciExpress31.h │ │ ├── PciExpress40.h │ │ ├── PeImage.h │ │ ├── Sal.h │ │ ├── Scsi.h │ │ ├── Sd.h │ │ ├── SdramSpd.h │ │ ├── SdramSpdDdr3.h │ │ ├── SdramSpdDdr4.h │ │ ├── SdramSpdLpDdr.h │ │ ├── SerialPortConsoleRedirectionTable.h │ │ ├── ServiceProcessorManagementInterfaceTable.h │ │ ├── SmBios.h │ │ ├── SmBus.h │ │ ├── TcgPhysicalPresence.h │ │ ├── TcgStorageCore.h │ │ ├── TcgStorageOpal.h │ │ ├── TcpaAcpi.h │ │ ├── Tls1.h │ │ ├── Tpm12.h │ │ ├── Tpm20.h │ │ ├── Tpm2Acpi.h │ │ ├── TpmPtp.h │ │ ├── TpmTis.h │ │ ├── Udf.h │ │ ├── UefiTcgPlatform.h │ │ ├── Usb.h │ │ ├── WatchdogActionTable.h │ │ ├── WatchdogResourceTable.h │ │ ├── WindowsSmmSecurityMitigationTable.h │ │ └── WindowsUxCapsule.h │ │ ├── Library │ │ ├── BaseLib.h │ │ ├── BaseMemoryLib.h │ │ ├── CacheMaintenanceLib.h │ │ ├── CpuLib.h │ │ ├── DebugLib.h │ │ ├── DebugPrintErrorLevelLib.h │ │ ├── DevicePathLib.h │ │ ├── DxeCoreEntryPoint.h │ │ ├── DxeServicesLib.h │ │ ├── DxeServicesTableLib.h │ │ ├── ExtendedSalLib.h │ │ ├── ExtractGuidedSectionLib.h │ │ ├── FileHandleLib.h │ │ ├── HobLib.h │ │ ├── HstiLib.h │ │ ├── IoLib.h │ │ ├── MemoryAllocationLib.h │ │ ├── MmServicesTableLib.h │ │ ├── OrderedCollectionLib.h │ │ ├── PalLib.h │ │ ├── PcdLib.h │ │ ├── PciCf8Lib.h │ │ ├── PciExpressLib.h │ │ ├── PciLib.h │ │ ├── PciSegmentInfoLib.h │ │ ├── PciSegmentLib.h │ │ ├── PeCoffExtraActionLib.h │ │ ├── PeCoffGetEntryPointLib.h │ │ ├── PeCoffLib.h │ │ ├── PeiCoreEntryPoint.h │ │ ├── PeiServicesLib.h │ │ ├── PeiServicesTablePointerLib.h │ │ ├── PeimEntryPoint.h │ │ ├── PerformanceLib.h │ │ ├── PostCodeLib.h │ │ ├── PrintLib.h │ │ ├── ReportStatusCodeLib.h │ │ ├── ResourcePublicationLib.h │ │ ├── RngLib.h │ │ ├── S3BootScriptLib.h │ │ ├── S3IoLib.h │ │ ├── S3PciLib.h │ │ ├── S3PciSegmentLib.h │ │ ├── S3SmbusLib.h │ │ ├── S3StallLib.h │ │ ├── SafeIntLib.h │ │ ├── SalLib.h │ │ ├── SerialPortLib.h │ │ ├── SmbusLib.h │ │ ├── SmiHandlerProfileLib.h │ │ ├── SmmIoLib.h │ │ ├── SmmLib.h │ │ ├── SmmMemLib.h │ │ ├── SmmPeriodicSmiLib.h │ │ ├── SmmServicesTableLib.h │ │ ├── StandaloneMmDriverEntryPoint.h │ │ ├── SynchronizationLib.h │ │ ├── TimerLib.h │ │ ├── UefiApplicationEntryPoint.h │ │ ├── UefiBootServicesTableLib.h │ │ ├── UefiDecompressLib.h │ │ ├── UefiDriverEntryPoint.h │ │ ├── UefiLib.h │ │ ├── UefiRuntimeLib.h │ │ ├── UefiRuntimeServicesTableLib.h │ │ ├── UefiScsiLib.h │ │ └── UefiUsbLib.h │ │ ├── Pi │ │ ├── PiBootMode.h │ │ ├── PiDependency.h │ │ ├── PiDxeCis.h │ │ ├── PiFirmwareFile.h │ │ ├── PiFirmwareVolume.h │ │ ├── PiHob.h │ │ ├── PiI2c.h │ │ ├── PiMmCis.h │ │ ├── PiMultiPhase.h │ │ ├── PiPeiCis.h │ │ ├── PiS3BootScript.h │ │ ├── PiSmmCis.h │ │ └── PiStatusCode.h │ │ ├── PiDxe.h │ │ ├── PiMm.h │ │ ├── PiPei.h │ │ ├── PiSmm.h │ │ ├── Ppi │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BootInRecoveryMode.h │ │ ├── Capsule.h │ │ ├── CpuIo.h │ │ ├── Decompress.h │ │ ├── DeviceRecoveryModule.h │ │ ├── DxeIpl.h │ │ ├── EndOfPeiPhase.h │ │ ├── FirmwareVolume.h │ │ ├── FirmwareVolumeInfo.h │ │ ├── FirmwareVolumeInfo2.h │ │ ├── Graphics.h │ │ ├── GuidedSectionExtraction.h │ │ ├── I2cMaster.h │ │ ├── IsaHc.h │ │ ├── LoadFile.h │ │ ├── LoadImage.h │ │ ├── MasterBootMode.h │ │ ├── MemoryDiscovered.h │ │ ├── MpServices.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciCfg2.h │ │ ├── PeiCoreFvLocation.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── ReadOnlyVariable2.h │ │ ├── RecoveryModule.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── Reset2.h │ │ ├── S3Resume2.h │ │ ├── SecHobData.h │ │ ├── SecPlatformInformation.h │ │ ├── SecPlatformInformation2.h │ │ ├── Security2.h │ │ ├── Smbus2.h │ │ ├── Stall.h │ │ ├── StatusCode.h │ │ ├── SuperIo.h │ │ ├── TemporaryRamDone.h │ │ ├── TemporaryRamSupport.h │ │ └── VectorHandoffInfo.h │ │ ├── ProcessorBind.h │ │ ├── Protocol │ │ ├── AbsolutePointer.h │ │ ├── AcpiSystemDescriptionTable.h │ │ ├── AcpiTable.h │ │ ├── AdapterInformation.h │ │ ├── Arp.h │ │ ├── AtaPassThru.h │ │ ├── AuthenticationInfo.h │ │ ├── Bds.h │ │ ├── Bis.h │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BlockIoCrypto.h │ │ ├── BluetoothAttribute.h │ │ ├── BluetoothConfig.h │ │ ├── BluetoothHc.h │ │ ├── BluetoothIo.h │ │ ├── BluetoothLeConfig.h │ │ ├── BootManagerPolicy.h │ │ ├── BusSpecificDriverOverride.h │ │ ├── Capsule.h │ │ ├── ComponentName.h │ │ ├── ComponentName2.h │ │ ├── Cpu.h │ │ ├── CpuIo2.h │ │ ├── DebugPort.h │ │ ├── DebugSupport.h │ │ ├── Decompress.h │ │ ├── DeferredImageLoad.h │ │ ├── DeviceIo.h │ │ ├── DevicePath.h │ │ ├── DevicePathFromText.h │ │ ├── DevicePathToText.h │ │ ├── DevicePathUtilities.h │ │ ├── Dhcp4.h │ │ ├── Dhcp6.h │ │ ├── DiskInfo.h │ │ ├── DiskIo.h │ │ ├── DiskIo2.h │ │ ├── Dns4.h │ │ ├── Dns6.h │ │ ├── DriverBinding.h │ │ ├── DriverConfiguration.h │ │ ├── DriverConfiguration2.h │ │ ├── DriverDiagnostics.h │ │ ├── DriverDiagnostics2.h │ │ ├── DriverFamilyOverride.h │ │ ├── DriverHealth.h │ │ ├── DriverSupportedEfiVersion.h │ │ ├── DxeMmReadyToLock.h │ │ ├── DxeSmmReadyToLock.h │ │ ├── Eap.h │ │ ├── EapConfiguration.h │ │ ├── EapManagement.h │ │ ├── EapManagement2.h │ │ ├── Ebc.h │ │ ├── EdidActive.h │ │ ├── EdidDiscovered.h │ │ ├── EdidOverride.h │ │ ├── EraseBlock.h │ │ ├── ExtendedSalBootService.h │ │ ├── ExtendedSalServiceClasses.h │ │ ├── FirmwareManagement.h │ │ ├── FirmwareVolume2.h │ │ ├── FirmwareVolumeBlock.h │ │ ├── FormBrowser2.h │ │ ├── Ftp4.h │ │ ├── GraphicsOutput.h │ │ ├── GuidedSectionExtraction.h │ │ ├── Hash.h │ │ ├── Hash2.h │ │ ├── HiiConfigAccess.h │ │ ├── HiiConfigKeyword.h │ │ ├── HiiConfigRouting.h │ │ ├── HiiDatabase.h │ │ ├── HiiFont.h │ │ ├── HiiImage.h │ │ ├── HiiImageDecoder.h │ │ ├── HiiImageEx.h │ │ ├── HiiPackageList.h │ │ ├── HiiPopup.h │ │ ├── HiiString.h │ │ ├── Http.h │ │ ├── HttpBootCallback.h │ │ ├── HttpUtilities.h │ │ ├── I2cBusConfigurationManagement.h │ │ ├── I2cEnumerate.h │ │ ├── I2cHost.h │ │ ├── I2cIo.h │ │ ├── I2cMaster.h │ │ ├── IScsiInitiatorName.h │ │ ├── IdeControllerInit.h │ │ ├── IncompatiblePciDeviceSupport.h │ │ ├── Ip4.h │ │ ├── Ip4Config.h │ │ ├── Ip4Config2.h │ │ ├── Ip6.h │ │ ├── Ip6Config.h │ │ ├── IpSec.h │ │ ├── IpSecConfig.h │ │ ├── IsaHc.h │ │ ├── Kms.h │ │ ├── LegacyRegion2.h │ │ ├── LegacySpiController.h │ │ ├── LegacySpiFlash.h │ │ ├── LegacySpiSmmController.h │ │ ├── LegacySpiSmmFlash.h │ │ ├── LoadFile.h │ │ ├── LoadFile2.h │ │ ├── LoadedImage.h │ │ ├── ManagedNetwork.h │ │ ├── McaInitPmi.h │ │ ├── Metronome.h │ │ ├── MmAccess.h │ │ ├── MmBase.h │ │ ├── MmCommunication.h │ │ ├── MmConfiguration.h │ │ ├── MmControl.h │ │ ├── MmCpu.h │ │ ├── MmCpuIo.h │ │ ├── MmEndOfDxe.h │ │ ├── MmGpiDispatch.h │ │ ├── MmIoTrapDispatch.h │ │ ├── MmPciRootBridgeIo.h │ │ ├── MmPeriodicTimerDispatch.h │ │ ├── MmPowerButtonDispatch.h │ │ ├── MmReadyToLock.h │ │ ├── MmReportStatusCodeHandler.h │ │ ├── MmStandbyButtonDispatch.h │ │ ├── MmStatusCode.h │ │ ├── MmSwDispatch.h │ │ ├── MmSxDispatch.h │ │ ├── MmUsbDispatch.h │ │ ├── MonotonicCounter.h │ │ ├── MpService.h │ │ ├── Mtftp4.h │ │ ├── Mtftp6.h │ │ ├── NetworkInterfaceIdentifier.h │ │ ├── NvdimmLabel.h │ │ ├── NvmExpressPassthru.h │ │ ├── PartitionInfo.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciEnumerationComplete.h │ │ ├── PciHostBridgeResourceAllocation.h │ │ ├── PciHotPlugInit.h │ │ ├── PciHotPlugRequest.h │ │ ├── PciIo.h │ │ ├── PciOverride.h │ │ ├── PciPlatform.h │ │ ├── PciRootBridgeIo.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── Pkcs7Verify.h │ │ ├── PlatformDriverOverride.h │ │ ├── PlatformToDriverConfiguration.h │ │ ├── PxeBaseCode.h │ │ ├── PxeBaseCodeCallBack.h │ │ ├── RamDisk.h │ │ ├── RealTimeClock.h │ │ ├── RegularExpressionProtocol.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── ResetNotification.h │ │ ├── Rest.h │ │ ├── Rng.h │ │ ├── Runtime.h │ │ ├── S3SaveState.h │ │ ├── S3SmmSaveState.h │ │ ├── ScsiIo.h │ │ ├── ScsiPassThru.h │ │ ├── ScsiPassThruExt.h │ │ ├── SdMmcPassThru.h │ │ ├── Security.h │ │ ├── Security2.h │ │ ├── SecurityPolicy.h │ │ ├── SerialIo.h │ │ ├── ServiceBinding.h │ │ ├── Shell.h │ │ ├── ShellDynamicCommand.h │ │ ├── ShellParameters.h │ │ ├── SimpleFileSystem.h │ │ ├── SimpleNetwork.h │ │ ├── SimplePointer.h │ │ ├── SimpleTextIn.h │ │ ├── SimpleTextInEx.h │ │ ├── SimpleTextOut.h │ │ ├── SmartCardEdge.h │ │ ├── SmartCardReader.h │ │ ├── Smbios.h │ │ ├── SmbusHc.h │ │ ├── SmmAccess2.h │ │ ├── SmmBase2.h │ │ ├── SmmCommunication.h │ │ ├── SmmConfiguration.h │ │ ├── SmmControl2.h │ │ ├── SmmCpu.h │ │ ├── SmmCpuIo2.h │ │ ├── SmmEndOfDxe.h │ │ ├── SmmGpiDispatch2.h │ │ ├── SmmIoTrapDispatch2.h │ │ ├── SmmPciRootBridgeIo.h │ │ ├── SmmPeriodicTimerDispatch2.h │ │ ├── SmmPowerButtonDispatch2.h │ │ ├── SmmReadyToLock.h │ │ ├── SmmReportStatusCodeHandler.h │ │ ├── SmmStandbyButtonDispatch2.h │ │ ├── SmmStatusCode.h │ │ ├── SmmSwDispatch2.h │ │ ├── SmmSxDispatch2.h │ │ ├── SmmUsbDispatch2.h │ │ ├── SpiConfiguration.h │ │ ├── SpiHc.h │ │ ├── SpiIo.h │ │ ├── SpiNorFlash.h │ │ ├── SpiSmmConfiguration.h │ │ ├── SpiSmmHc.h │ │ ├── SpiSmmNorFlash.h │ │ ├── StatusCode.h │ │ ├── StorageSecurityCommand.h │ │ ├── SuperIo.h │ │ ├── SuperIoControl.h │ │ ├── Supplicant.h │ │ ├── TapeIo.h │ │ ├── Tcg2Protocol.h │ │ ├── TcgService.h │ │ ├── Tcp4.h │ │ ├── Tcp6.h │ │ ├── Timer.h │ │ ├── Timestamp.h │ │ ├── Tls.h │ │ ├── TlsConfig.h │ │ ├── TrEEProtocol.h │ │ ├── Udp4.h │ │ ├── Udp6.h │ │ ├── UfsDeviceConfig.h │ │ ├── UgaDraw.h │ │ ├── UgaIo.h │ │ ├── UnicodeCollation.h │ │ ├── Usb2HostController.h │ │ ├── UsbFunctionIo.h │ │ ├── UsbHostController.h │ │ ├── UsbIo.h │ │ ├── UserCredential.h │ │ ├── UserCredential2.h │ │ ├── UserManager.h │ │ ├── Variable.h │ │ ├── VariableWrite.h │ │ ├── VlanConfig.h │ │ ├── WatchdogTimer.h │ │ ├── WiFi.h │ │ └── WiFi2.h │ │ ├── Uefi.h │ │ └── Uefi │ │ ├── UefiAcpiDataTable.h │ │ ├── UefiBaseType.h │ │ ├── UefiGpt.h │ │ ├── UefiInternalFormRepresentation.h │ │ ├── UefiMultiPhase.h │ │ ├── UefiPxe.h │ │ └── UefiSpec.h ├── OpensslLib.lib ├── ShellPkg │ └── Include │ │ ├── Guid │ │ ├── ShellAliasGuid.h │ │ ├── ShellEnvironment2Ext.h │ │ ├── ShellLibHiiGuid.h │ │ ├── ShellMapGuid.h │ │ ├── ShellPkgTokenSpace.h │ │ └── ShellVariableGuid.h │ │ ├── Library │ │ ├── BcfgCommandLib.h │ │ ├── HandleParsingLib.h │ │ ├── ShellCEntryLib.h │ │ ├── ShellCommandLib.h │ │ └── ShellLib.h │ │ └── Protocol │ │ ├── EfiShellEnvironment2.h │ │ └── EfiShellInterface.h ├── UefiApplicationEntryPoint.lib ├── UefiBootServicesTableLib.lib ├── UefiDebugLibConOut.lib ├── UefiDevicePathLibDevicePathProtocol.lib ├── UefiDriverEntryPoint.lib ├── UefiFileHandleLib.lib ├── UefiHiiLib.lib ├── UefiHiiServicesLib.lib ├── UefiLib.lib ├── UefiMemoryAllocationLib.lib ├── UefiMemoryLib.lib ├── UefiRuntimeLib.lib ├── UefiRuntimeServicesTableLib.lib ├── UefiShellLib.lib └── UefiSortLib.lib └── umap-test ├── boot.default.props ├── boot.props ├── boot.sln ├── boot.vcxproj ├── boot.vcxproj.filters ├── boot.vcxproj.user ├── main.c ├── stdafx.h ├── util.c └── util.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/README.md -------------------------------------------------------------------------------- /poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/poc.png -------------------------------------------------------------------------------- /umap/edk2/BaseCacheMaintenanceLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BaseCacheMaintenanceLib.lib -------------------------------------------------------------------------------- /umap/edk2/BaseCpuLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BaseCpuLib.lib -------------------------------------------------------------------------------- /umap/edk2/BaseCryptLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BaseCryptLib.lib -------------------------------------------------------------------------------- /umap/edk2/BaseDebugPrintErrorLevelLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BaseDebugPrintErrorLevelLib.lib -------------------------------------------------------------------------------- /umap/edk2/BaseLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BaseLib.lib -------------------------------------------------------------------------------- /umap/edk2/BaseLib/vshacks.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /umap/edk2/BaseMemoryLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BaseMemoryLib.lib -------------------------------------------------------------------------------- /umap/edk2/BasePrintLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BasePrintLib.lib -------------------------------------------------------------------------------- /umap/edk2/BaseSynchronizationLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/BaseSynchronizationLib.lib -------------------------------------------------------------------------------- /umap/edk2/CryptoPkg/Include/Library/BaseCryptLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/CryptoPkg/Include/Library/BaseCryptLib.h -------------------------------------------------------------------------------- /umap/edk2/CryptoPkg/Include/Library/TlsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/CryptoPkg/Include/Library/TlsLib.h -------------------------------------------------------------------------------- /umap/edk2/GlueLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/GlueLib.lib -------------------------------------------------------------------------------- /umap/edk2/IntrinsicLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/IntrinsicLib.lib -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/AArch64/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/AArch64/ProcessorBind.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Arm/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Arm/ProcessorBind.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Base.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ebc/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ebc/ProcessorBind.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/Acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/Acpi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/Apriori.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/Apriori.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/AprioriFileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/AprioriFileName.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/Btt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/Btt.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/CapsuleReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/CapsuleReport.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/Cper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/Cper.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/DebugImageInfoTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/DebugImageInfoTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/DxeServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/DxeServices.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/EventGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/EventGroup.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/EventLegacyBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/EventLegacyBios.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/FileInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/FileSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/FileSystemInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/FirmwareContentsSigned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/FirmwareContentsSigned.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/FirmwareFileSystem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/FirmwareFileSystem2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/FirmwareFileSystem3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/FirmwareFileSystem3.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/FmpCapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/FmpCapsule.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/GlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/GlobalVariable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/Gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/Gpt.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/GraphicsInfoHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/GraphicsInfoHob.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/HardwareErrorVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/HardwareErrorVariable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/HiiFormMapMethodGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/HiiFormMapMethodGuid.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/HiiKeyBoardLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/HiiKeyBoardLayout.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/HiiPlatformSetupFormset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/HiiPlatformSetupFormset.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/HobList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/HobList.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/ImageAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/ImageAuthentication.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/MdePkgTokenSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/MdePkgTokenSpace.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/MemoryAllocationHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/MemoryAllocationHob.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/MemoryAttributesTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/MemoryAttributesTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/MemoryOverwriteControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/MemoryOverwriteControl.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/Mps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/Mps.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/PcAnsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/PcAnsi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/PropertiesTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/PropertiesTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/SalSystemTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/SalSystemTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/SmBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/SmBios.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/StatusCodeDataTypeId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/StatusCodeDataTypeId.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/SystemResourceTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/SystemResourceTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/VectorHandoffTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/VectorHandoffTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Guid/WinCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Guid/WinCertificate.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ia32/Nasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ia32/Nasm.inc -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ia32/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ia32/ProcessorBind.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi10.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi20.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi30.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi40.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi50.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi50.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi51.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi60.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi61.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi61.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Acpi62.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Acpi62.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/AcpiAml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/AcpiAml.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/AlertStandardFormatTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/AlertStandardFormatTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Atapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Atapi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Bluetooth.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Bmp.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/DebugPort2Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/DebugPort2Table.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/DebugPortTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/DebugPortTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Dhcp.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/DmaRemappingReportingTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/DmaRemappingReportingTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/ElTorito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/ElTorito.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Emmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Emmc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Hsti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Hsti.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Http11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Http11.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IScsiBootFirmwareTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IScsiBootFirmwareTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IoRemappingTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IoRemappingTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Ipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Ipmi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiFruInformationStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiFruInformationStorage.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnBridge.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnChassis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnChassis.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnFirmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnFirmware.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnGroupExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnGroupExtension.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnSensorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnSensorEvent.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnStorage.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnTransport.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/LegacyBiosMpTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/LegacyBiosMpTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/LowPowerIdleTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/LowPowerIdleTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Mbr.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/MemoryMappedConfigurationSpaceAccessTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/MemoryMappedConfigurationSpaceAccessTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/MemoryOverwriteRequestControlLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/MemoryOverwriteRequestControlLock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Nvme.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Pal.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Pci.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Pci22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Pci22.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Pci23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Pci23.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Pci30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Pci30.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/PciCodeId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/PciCodeId.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/PciExpress21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/PciExpress21.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/PciExpress30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/PciExpress30.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/PciExpress31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/PciExpress31.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/PciExpress40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/PciExpress40.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/PeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/PeImage.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Sal.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Scsi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Sd.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/SdramSpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/SdramSpd.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/SdramSpdDdr3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/SdramSpdDdr3.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/SdramSpdDdr4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/SdramSpdDdr4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/SdramSpdLpDdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/SdramSpdLpDdr.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/SerialPortConsoleRedirectionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/SerialPortConsoleRedirectionTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/ServiceProcessorManagementInterfaceTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/ServiceProcessorManagementInterfaceTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/SmBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/SmBios.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/SmBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/SmBus.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/TcgPhysicalPresence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/TcgPhysicalPresence.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/TcgStorageCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/TcgStorageCore.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/TcgStorageOpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/TcgStorageOpal.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/TcpaAcpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/TcpaAcpi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Tls1.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Tpm12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Tpm12.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Tpm20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Tpm20.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Tpm2Acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Tpm2Acpi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/TpmPtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/TpmPtp.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/TpmTis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/TpmTis.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Udf.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/UefiTcgPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/UefiTcgPlatform.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/Usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/Usb.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/WatchdogActionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/WatchdogActionTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/WatchdogResourceTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/WatchdogResourceTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/WindowsSmmSecurityMitigationTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/WindowsSmmSecurityMitigationTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/IndustryStandard/WindowsUxCapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/IndustryStandard/WindowsUxCapsule.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/BaseLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/BaseLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/BaseMemoryLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/BaseMemoryLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/CacheMaintenanceLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/CacheMaintenanceLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/CpuLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/CpuLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/DebugLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/DebugLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/DebugPrintErrorLevelLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/DebugPrintErrorLevelLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/DevicePathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/DevicePathLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/DxeCoreEntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/DxeCoreEntryPoint.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/DxeServicesLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/DxeServicesLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/DxeServicesTableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/DxeServicesTableLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/ExtendedSalLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/ExtendedSalLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/ExtractGuidedSectionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/ExtractGuidedSectionLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/FileHandleLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/FileHandleLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/HobLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/HobLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/HstiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/HstiLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/IoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/IoLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/MemoryAllocationLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/MemoryAllocationLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/MmServicesTableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/MmServicesTableLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/OrderedCollectionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/OrderedCollectionLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PalLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PalLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PcdLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PcdLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PciCf8Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PciCf8Lib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PciExpressLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PciExpressLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PciLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PciSegmentInfoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PciSegmentInfoLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PciSegmentLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PciSegmentLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PeCoffExtraActionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PeCoffExtraActionLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PeCoffGetEntryPointLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PeCoffGetEntryPointLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PeCoffLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PeCoffLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PeiCoreEntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PeiCoreEntryPoint.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PeiServicesLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PeiServicesLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PeiServicesTablePointerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PeiServicesTablePointerLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PeimEntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PeimEntryPoint.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PerformanceLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PerformanceLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PostCodeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PostCodeLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/PrintLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/PrintLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/ReportStatusCodeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/ReportStatusCodeLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/ResourcePublicationLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/ResourcePublicationLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/RngLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/RngLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/S3BootScriptLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/S3BootScriptLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/S3IoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/S3IoLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/S3PciLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/S3PciLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/S3PciSegmentLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/S3PciSegmentLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/S3SmbusLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/S3SmbusLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/S3StallLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/S3StallLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SafeIntLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SafeIntLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SalLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SalLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SerialPortLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SerialPortLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SmbusLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SmbusLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SmiHandlerProfileLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SmiHandlerProfileLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SmmIoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SmmIoLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SmmLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SmmLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SmmMemLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SmmMemLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SmmPeriodicSmiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SmmPeriodicSmiLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SmmServicesTableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SmmServicesTableLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/StandaloneMmDriverEntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/StandaloneMmDriverEntryPoint.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/SynchronizationLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/SynchronizationLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/TimerLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/TimerLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiApplicationEntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiApplicationEntryPoint.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiBootServicesTableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiBootServicesTableLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiDecompressLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiDecompressLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiDriverEntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiDriverEntryPoint.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiRuntimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiRuntimeLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiRuntimeServicesTableLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiRuntimeServicesTableLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiScsiLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiScsiLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Library/UefiUsbLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Library/UefiUsbLib.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiBootMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiBootMode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiDependency.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiDxeCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiDxeCis.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiFirmwareFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiFirmwareFile.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiFirmwareVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiFirmwareVolume.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiHob.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiI2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiI2c.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiMmCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiMmCis.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiMultiPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiMultiPhase.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiPeiCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiPeiCis.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiS3BootScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiS3BootScript.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiSmmCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiSmmCis.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Pi/PiStatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Pi/PiStatusCode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/PiDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/PiDxe.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/PiMm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/PiMm.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/PiPei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/PiPei.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/PiSmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/PiSmm.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/BlockIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/BlockIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/BlockIo2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/BootInRecoveryMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/BootInRecoveryMode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Capsule.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/CpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/CpuIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Decompress.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/DeviceRecoveryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/DeviceRecoveryModule.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/DxeIpl.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/EndOfPeiPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/EndOfPeiPhase.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/FirmwareVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/FirmwareVolume.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/FirmwareVolumeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/FirmwareVolumeInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/FirmwareVolumeInfo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/FirmwareVolumeInfo2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Graphics.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/GuidedSectionExtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/GuidedSectionExtraction.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/I2cMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/I2cMaster.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/IsaHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/IsaHc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/LoadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/LoadFile.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/LoadImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/LoadImage.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/MasterBootMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/MasterBootMode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/MemoryDiscovered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/MemoryDiscovered.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/MpServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/MpServices.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Pcd.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/PcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/PcdInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/PciCfg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/PciCfg2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/PeiCoreFvLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/PeiCoreFvLocation.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/PiPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/PiPcd.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/PiPcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/PiPcdInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/ReadOnlyVariable2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/ReadOnlyVariable2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/RecoveryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/RecoveryModule.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/ReportStatusCodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/ReportStatusCodeHandler.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Reset.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Reset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Reset2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/S3Resume2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/S3Resume2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/SecHobData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/SecHobData.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/SecPlatformInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/SecPlatformInformation.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/SecPlatformInformation2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/SecPlatformInformation2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Security2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Security2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Smbus2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Smbus2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/Stall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/Stall.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/StatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/StatusCode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/SuperIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/SuperIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/TemporaryRamDone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/TemporaryRamDone.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/TemporaryRamSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/TemporaryRamSupport.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Ppi/VectorHandoffInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Ppi/VectorHandoffInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/ProcessorBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/ProcessorBind.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/AbsolutePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/AbsolutePointer.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/AcpiTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/AcpiTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/AdapterInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/AdapterInformation.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Arp.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/AtaPassThru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/AtaPassThru.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/AuthenticationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/AuthenticationInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Bds.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Bis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Bis.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BlockIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BlockIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BlockIo2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BlockIoCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BlockIoCrypto.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BluetoothAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BluetoothAttribute.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BluetoothConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BluetoothConfig.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BluetoothHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BluetoothHc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BluetoothIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BluetoothIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BluetoothLeConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BluetoothLeConfig.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BootManagerPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BootManagerPolicy.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/BusSpecificDriverOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/BusSpecificDriverOverride.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Capsule.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ComponentName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ComponentName.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ComponentName2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ComponentName2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Cpu.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/CpuIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/CpuIo2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DebugPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DebugPort.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DebugSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DebugSupport.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Decompress.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DeferredImageLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DeferredImageLoad.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DeviceIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DeviceIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DevicePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DevicePath.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DevicePathFromText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DevicePathFromText.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DevicePathToText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DevicePathToText.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DevicePathUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DevicePathUtilities.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Dhcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Dhcp4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Dhcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Dhcp6.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DiskInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DiskInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DiskIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DiskIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DiskIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DiskIo2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Dns4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Dns4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Dns6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Dns6.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverBinding.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverConfiguration.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverConfiguration2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverConfiguration2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverDiagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverDiagnostics.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverDiagnostics2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverDiagnostics2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverFamilyOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverFamilyOverride.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverHealth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverHealth.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DriverSupportedEfiVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DriverSupportedEfiVersion.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DxeMmReadyToLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DxeMmReadyToLock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/DxeSmmReadyToLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/DxeSmmReadyToLock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Eap.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/EapConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/EapConfiguration.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/EapManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/EapManagement.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/EapManagement2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/EapManagement2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Ebc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Ebc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/EdidActive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/EdidActive.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/EdidDiscovered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/EdidDiscovered.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/EdidOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/EdidOverride.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/EraseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/EraseBlock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ExtendedSalBootService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ExtendedSalBootService.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ExtendedSalServiceClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ExtendedSalServiceClasses.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/FirmwareManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/FirmwareManagement.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/FirmwareVolume2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/FirmwareVolume2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/FirmwareVolumeBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/FirmwareVolumeBlock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/FormBrowser2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/FormBrowser2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Ftp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Ftp4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/GraphicsOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/GraphicsOutput.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/GuidedSectionExtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/GuidedSectionExtraction.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Hash.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Hash2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Hash2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiConfigAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiConfigAccess.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiConfigKeyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiConfigKeyword.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiConfigRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiConfigRouting.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiDatabase.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiFont.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiImage.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiImageDecoder.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiImageEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiImageEx.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiPackageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiPackageList.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiPopup.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HiiString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HiiString.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Http.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HttpBootCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HttpBootCallback.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/HttpUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/HttpUtilities.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/I2cBusConfigurationManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/I2cBusConfigurationManagement.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/I2cEnumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/I2cEnumerate.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/I2cHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/I2cHost.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/I2cIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/I2cIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/I2cMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/I2cMaster.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/IScsiInitiatorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/IScsiInitiatorName.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/IdeControllerInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/IdeControllerInit.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/IncompatiblePciDeviceSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/IncompatiblePciDeviceSupport.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Ip4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Ip4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Ip4Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Ip4Config.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Ip4Config2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Ip4Config2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Ip6.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Ip6Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Ip6Config.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/IpSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/IpSec.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/IpSecConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/IpSecConfig.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/IsaHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/IsaHc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Kms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Kms.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LegacyRegion2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LegacyRegion2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LegacySpiController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LegacySpiController.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LegacySpiFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LegacySpiFlash.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LegacySpiSmmController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LegacySpiSmmController.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LegacySpiSmmFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LegacySpiSmmFlash.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LoadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LoadFile.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LoadFile2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LoadFile2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/LoadedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/LoadedImage.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ManagedNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ManagedNetwork.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/McaInitPmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/McaInitPmi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Metronome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Metronome.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmAccess.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmBase.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmCommunication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmCommunication.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmConfiguration.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmControl.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmCpu.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmCpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmCpuIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmEndOfDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmEndOfDxe.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmGpiDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmGpiDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmIoTrapDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmIoTrapDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmPciRootBridgeIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmPciRootBridgeIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmPeriodicTimerDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmPeriodicTimerDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmPowerButtonDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmPowerButtonDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmReadyToLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmReadyToLock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmReportStatusCodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmReportStatusCodeHandler.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmStandbyButtonDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmStandbyButtonDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmStatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmStatusCode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmSwDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmSwDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmSxDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmSxDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MmUsbDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MmUsbDispatch.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MonotonicCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MonotonicCounter.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/MpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/MpService.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Mtftp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Mtftp4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Mtftp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Mtftp6.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/NetworkInterfaceIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/NetworkInterfaceIdentifier.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/NvdimmLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/NvdimmLabel.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/NvmExpressPassthru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/NvmExpressPassthru.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PartitionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PartitionInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Pcd.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PcdInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciEnumerationComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciEnumerationComplete.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciHostBridgeResourceAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciHostBridgeResourceAllocation.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciHotPlugInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciHotPlugInit.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciHotPlugRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciHotPlugRequest.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciOverride.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciPlatform.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PciRootBridgeIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PciRootBridgeIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PiPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PiPcd.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PiPcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PiPcdInfo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Pkcs7Verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Pkcs7Verify.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PlatformDriverOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PlatformDriverOverride.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PlatformToDriverConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PlatformToDriverConfiguration.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PxeBaseCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PxeBaseCode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/PxeBaseCodeCallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/PxeBaseCodeCallBack.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/RamDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/RamDisk.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/RealTimeClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/RealTimeClock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/RegularExpressionProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/RegularExpressionProtocol.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ReportStatusCodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ReportStatusCodeHandler.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Reset.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ResetNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ResetNotification.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Rest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Rest.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Rng.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Runtime.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/S3SaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/S3SaveState.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/S3SmmSaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/S3SmmSaveState.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ScsiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ScsiIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ScsiPassThru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ScsiPassThru.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ScsiPassThruExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ScsiPassThruExt.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SdMmcPassThru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SdMmcPassThru.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Security.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Security2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Security2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SecurityPolicy.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SerialIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SerialIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ServiceBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ServiceBinding.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Shell.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ShellDynamicCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ShellDynamicCommand.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/ShellParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/ShellParameters.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SimpleFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SimpleFileSystem.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SimpleNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SimpleNetwork.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SimplePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SimplePointer.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SimpleTextIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SimpleTextIn.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SimpleTextInEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SimpleTextInEx.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SimpleTextOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SimpleTextOut.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmartCardEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmartCardEdge.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmartCardReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmartCardReader.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Smbios.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmbusHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmbusHc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmAccess2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmAccess2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmBase2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmBase2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmCommunication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmCommunication.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmConfiguration.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmControl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmControl2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmCpu.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmCpuIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmCpuIo2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmEndOfDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmEndOfDxe.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmGpiDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmGpiDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmIoTrapDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmIoTrapDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmPciRootBridgeIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmPciRootBridgeIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmPeriodicTimerDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmPeriodicTimerDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmPowerButtonDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmPowerButtonDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmReadyToLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmReadyToLock.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmReportStatusCodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmReportStatusCodeHandler.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmStandbyButtonDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmStandbyButtonDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmStatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmStatusCode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmSwDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmSwDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmSxDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmSxDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SmmUsbDispatch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SmmUsbDispatch2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SpiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SpiConfiguration.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SpiHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SpiHc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SpiIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SpiIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SpiNorFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SpiNorFlash.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SpiSmmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SpiSmmConfiguration.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SpiSmmHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SpiSmmHc.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SpiSmmNorFlash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SpiSmmNorFlash.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/StatusCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/StatusCode.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/StorageSecurityCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/StorageSecurityCommand.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SuperIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SuperIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/SuperIoControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/SuperIoControl.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Supplicant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Supplicant.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/TapeIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/TapeIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Tcg2Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Tcg2Protocol.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/TcgService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/TcgService.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Tcp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Tcp4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Tcp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Tcp6.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Timer.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Timestamp.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Tls.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/TlsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/TlsConfig.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/TrEEProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/TrEEProtocol.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Udp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Udp4.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Udp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Udp6.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UfsDeviceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UfsDeviceConfig.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UgaDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UgaDraw.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UgaIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UgaIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UnicodeCollation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UnicodeCollation.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Usb2HostController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Usb2HostController.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UsbFunctionIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UsbFunctionIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UsbHostController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UsbHostController.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UsbIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UsbIo.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UserCredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UserCredential.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UserCredential2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UserCredential2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/UserManager.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/Variable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/VariableWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/VariableWrite.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/VlanConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/VlanConfig.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/WatchdogTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/WatchdogTimer.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/WiFi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Protocol/WiFi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Protocol/WiFi2.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi/UefiAcpiDataTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi/UefiAcpiDataTable.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi/UefiBaseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi/UefiBaseType.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi/UefiGpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi/UefiGpt.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi/UefiMultiPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi/UefiMultiPhase.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi/UefiPxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi/UefiPxe.h -------------------------------------------------------------------------------- /umap/edk2/MdePkg/Include/Uefi/UefiSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/MdePkg/Include/Uefi/UefiSpec.h -------------------------------------------------------------------------------- /umap/edk2/OpensslLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/OpensslLib.lib -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Guid/ShellAliasGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Guid/ShellAliasGuid.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Guid/ShellEnvironment2Ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Guid/ShellEnvironment2Ext.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Guid/ShellLibHiiGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Guid/ShellLibHiiGuid.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Guid/ShellMapGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Guid/ShellMapGuid.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Guid/ShellPkgTokenSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Guid/ShellPkgTokenSpace.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Guid/ShellVariableGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Guid/ShellVariableGuid.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Library/BcfgCommandLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Library/BcfgCommandLib.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Library/HandleParsingLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Library/HandleParsingLib.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Library/ShellCEntryLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Library/ShellCEntryLib.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Library/ShellCommandLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Library/ShellCommandLib.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Library/ShellLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Library/ShellLib.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Protocol/EfiShellEnvironment2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Protocol/EfiShellEnvironment2.h -------------------------------------------------------------------------------- /umap/edk2/ShellPkg/Include/Protocol/EfiShellInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/ShellPkg/Include/Protocol/EfiShellInterface.h -------------------------------------------------------------------------------- /umap/edk2/UefiApplicationEntryPoint.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiApplicationEntryPoint.lib -------------------------------------------------------------------------------- /umap/edk2/UefiBootServicesTableLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiBootServicesTableLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiDebugLibConOut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiDebugLibConOut.lib -------------------------------------------------------------------------------- /umap/edk2/UefiDevicePathLibDevicePathProtocol.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiDevicePathLibDevicePathProtocol.lib -------------------------------------------------------------------------------- /umap/edk2/UefiDriverEntryPoint.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiDriverEntryPoint.lib -------------------------------------------------------------------------------- /umap/edk2/UefiFileHandleLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiFileHandleLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiHiiLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiHiiLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiHiiServicesLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiHiiServicesLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiMemoryAllocationLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiMemoryAllocationLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiMemoryLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiMemoryLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiRuntimeLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiRuntimeLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiRuntimeServicesTableLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiRuntimeServicesTableLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiShellLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiShellLib.lib -------------------------------------------------------------------------------- /umap/edk2/UefiSortLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/edk2/UefiSortLib.lib -------------------------------------------------------------------------------- /umap/umap-test/boot.default.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/boot.default.props -------------------------------------------------------------------------------- /umap/umap-test/boot.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/boot.props -------------------------------------------------------------------------------- /umap/umap-test/boot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/boot.sln -------------------------------------------------------------------------------- /umap/umap-test/boot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/boot.vcxproj -------------------------------------------------------------------------------- /umap/umap-test/boot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/boot.vcxproj.filters -------------------------------------------------------------------------------- /umap/umap-test/boot.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/boot.vcxproj.user -------------------------------------------------------------------------------- /umap/umap-test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/main.c -------------------------------------------------------------------------------- /umap/umap-test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/stdafx.h -------------------------------------------------------------------------------- /umap/umap-test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/util.c -------------------------------------------------------------------------------- /umap/umap-test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekknod/KiSystemStartupMeme/HEAD/umap/umap-test/util.h --------------------------------------------------------------------------------