diff --git a/OpenCorePkg b/OpenCorePkg index a38c3a3705..c24f740b07 160000 --- a/OpenCorePkg +++ b/OpenCorePkg @@ -1 +1 @@ -Subproject commit a38c3a3705021e3808d62d135e0a4089d74986b5 +Subproject commit c24f740b07c97efec0b772d914a9bdab448f3039 diff --git a/PosixCompilation/DebugLibs/CloverEFI/MtrrLib.lib b/PosixCompilation/DebugLibs/CloverEFI/MtrrLib.lib deleted file mode 120000 index e685c66fe6..0000000000 --- a/PosixCompilation/DebugLibs/CloverEFI/MtrrLib.lib +++ /dev/null @@ -1 +0,0 @@ -../../../Build/Clover/DEBUGMACOS_XCODE8/X64/CloverEFI/UefiCpuPkg/Library/MtrrLib/MtrrLib/OUTPUT/MtrrLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OpenCore.lib b/PosixCompilation/DebugLibs/OC/OpenCore.lib deleted file mode 120000 index a48ed7d936..0000000000 --- a/PosixCompilation/DebugLibs/OC/OpenCore.lib +++ /dev/null @@ -1 +0,0 @@ -../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Platform/OpenCore/OpenCoreLib/OUTPUT/OpenCore.lib \ No newline at end of file diff --git a/PosixEFICompilation/CloverMock/Include/printf_lite-conf.h b/PosixEFICompilation/CloverMock/Include/printf_lite-conf.h new file mode 100755 index 0000000000..2545182b2e --- /dev/null +++ b/PosixEFICompilation/CloverMock/Include/printf_lite-conf.h @@ -0,0 +1,42 @@ +// +// printf_lite.hpp +// +// Created by jief the 04 Apr 2019. +// Imported in CLover the 24 Feb 2020 +// +#ifndef __PRINTF_LITE_CONF_H__ +#define __PRINTF_LITE_CONF_H__ + +#include +#include // for size_t +#include +#include + +#ifndef __cplusplus + #ifdef _MSC_VER + typedef uint16_t wchar_t; + #endif + typedef uint32_t char32_t; + typedef uint16_t char16_t; +#endif + +#ifdef _MSC_VER +# define __attribute__(x) +#endif + +#ifdef DEBUG +#define DEFINE_SECTIONS 0 +#endif + +#define PRINTF_LITE_DEFINE_PRINTF_SPRINTF 1 + +#define PRINTF_LITE_BUF_SIZE 255 // not more than 255 +#define PRINTF_LITE_TIMESTAMP_SUPPORT 1 +#define PRINTF_LITE_TIMESTAMP_CUSTOM_FUNCTION 1 +#define PRINTF_EMIT_CR_SUPPORT 1 + +#define PRINTF_LITE_REPLACE_STANDARD_FUNCTION 1 + + + +#endif // __PRINTF_LITE_CONF_H__ diff --git a/PosixEFICompilation/CloverMock/Library/MemLogLibDefault/MemLogLib.c b/PosixEFICompilation/CloverMock/Library/MemLogLibDefault/MemLogLib.c new file mode 100644 index 0000000000..d16736f18f --- /dev/null +++ b/PosixEFICompilation/CloverMock/Library/MemLogLibDefault/MemLogLib.c @@ -0,0 +1,207 @@ +/** @file + Default instance of MemLogLib library for simple log services to memory buffer. +**/ + +#include +#include + +CHAR8* +GetTiming(VOID) +{ + return ""; +} + + + +/** + Inits mem log. + + @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS. + +**/ +EFI_STATUS +EFIAPI +MemLogInit ( + VOID + ) +{ + return EFI_SUCCESS; +} + +/** + Prints a log message to memory buffer. + + @param Timing TRUE to prepend timing to log. + @param DebugMode DebugMode will be passed to Callback function if it is set. + @param Format The format string for the debug message to print. + @param Marker VA_LIST with variable arguments for Format. + +**/ +VOID +EFIAPI +MemLogVA ( + IN CONST BOOLEAN Timing, + IN CONST INTN DebugMode, + IN CONST CHAR8 *Format, + IN VA_LIST Marker + ) +{ + panic("not yet"); +} + +/** + Prints a log to message memory buffer. + + If Format is NULL, then does nothing. + + @param Timing TRUE to prepend timing to log. + @param DebugMode DebugMode will be passed to Callback function if it is set. + @param Format The format string for the debug message to print. + @param ... The variable argument list whose contents are accessed + based on the format string specified by Format. + + **/ +VOID +EFIAPI +MemLog ( + IN CONST BOOLEAN Timing, + IN CONST INTN DebugMode, + IN CONST CHAR8 *Format, + ... + ) +{ + panic("not yet"); +} + + + +/** + Returns pointer to MemLog buffer. + **/ +CHAR8* +EFIAPI +GetMemLogBuffer ( + VOID + ) +{ + panic("not yet"); +} + + + +/** + Returns the length of log (number of chars written) in mem buffer. + **/ +UINTN +EFIAPI +GetMemLogLen ( + VOID + ) +{ + panic("not yet"); +} + + +/** + Sets callback that will be called when message is added to mem log. + **/ +VOID +EFIAPI +SetMemLogCallback ( + MEM_LOG_CALLBACK Callback + ) +{ + panic("not yet"); +} + + +/** + Sets callback that will be called when message is added to mem log. + **/ +MEM_LOG_CALLBACK +EFIAPI +GetMemLogCallback () +{ + panic("not yet"); +} + + +/** + Returns TSC ticks per second. + **/ +UINT64 +EFIAPI +GetMemLogTscTicksPerSecond (VOID) +{ + panic("not yet"); +} + + + +// Microsoft wants _fltused +#ifdef _MSC_VER +#ifdef __cplusplus +extern "C" { +#endif +int _fltused=0; // it should be a single underscore since the double one is the mangled name +#ifdef __cplusplus +} +#endif +#endif + +//static int printfNewline = 1; +//static void transmitS8Printf(const char* buf, unsigned int nbchar, void* context) +//{ +//} + +//const char* printf_lite_get_timestamp() +//{ +// return ""; +//} + +/** + Prints a log message to memory buffer. + + @param Timing TRUE to prepend timing to log. + @param DebugMode DebugMode will be passed to Callback function if it is set. + @param Format The format string for the debug message to print. + @param Marker VA_LIST with variable arguments for Format. + +**/ +VOID +EFIAPI +MemLogfVA ( + IN CONST BOOLEAN Timing, + IN CONST INTN DebugMode, + IN CONST CHAR8 *Format, + IN VA_LIST Marker + ) +{ + panic("not yet"); +} + + +/** + Prints a log to message memory buffer. + + If Format is NULL, then does nothing. + + @param Timing TRUE to prepend timing to log. + @param DebugMode DebugMode will be passed to Callback function if it is set. + @param Format The format string for the debug message to print. + @param ... The variable argument list whose contents are accessed + based on the format string specified by Format. + + **/ +VOID +EFIAPI +MemLogf ( + IN CONST BOOLEAN Timing, + IN CONST INTN DebugMode, + IN CONST CHAR8 *Format, + ... + ) +{ + panic("not yet"); +} + diff --git a/PosixCompilation/DebugLibs/Autogen/AutoGen.c b/PosixEFICompilation/DebugLibs/Autogen/AutoGen.c similarity index 100% rename from PosixCompilation/DebugLibs/Autogen/AutoGen.c rename to PosixEFICompilation/DebugLibs/Autogen/AutoGen.c diff --git a/PosixCompilation/DebugLibs/Autogen/AutoGen.h b/PosixEFICompilation/DebugLibs/Autogen/AutoGen.h similarity index 100% rename from PosixCompilation/DebugLibs/Autogen/AutoGen.h rename to PosixEFICompilation/DebugLibs/Autogen/AutoGen.h diff --git a/PosixEFICompilation/DebugLibs/CloverEFI/MtrrLib.lib b/PosixEFICompilation/DebugLibs/CloverEFI/MtrrLib.lib new file mode 120000 index 0000000000..e049e2a396 --- /dev/null +++ b/PosixEFICompilation/DebugLibs/CloverEFI/MtrrLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/UefiCpuPkg/Library/MtrrLib/MtrrLib/OUTPUT/MtrrLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/Library/DuetTimerLib.lib b/PosixEFICompilation/DebugLibs/Library/DuetTimerLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/Library/DuetTimerLib.lib rename to PosixEFICompilation/DebugLibs/Library/DuetTimerLib.lib diff --git a/PosixCompilation/DebugLibs/Library/HdaDevicesLib.lib b/PosixEFICompilation/DebugLibs/Library/HdaDevicesLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/Library/HdaDevicesLib.lib rename to PosixEFICompilation/DebugLibs/Library/HdaDevicesLib.lib diff --git a/PosixEFICompilation/DebugLibs/Library/MemLogLib b/PosixEFICompilation/DebugLibs/Library/MemLogLib new file mode 120000 index 0000000000..ed9afd22e3 --- /dev/null +++ b/PosixEFICompilation/DebugLibs/Library/MemLogLib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/Library/MemLogLibDefault/MemLogLibDefault/OUTPUT/MemLogLib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/Library/OpensslLib.lib b/PosixEFICompilation/DebugLibs/Library/OpensslLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/Library/OpensslLib.lib rename to PosixEFICompilation/DebugLibs/Library/OpensslLib.lib diff --git a/PosixCompilation/DebugLibs/Library/VBoxPeCoffLib.lib b/PosixEFICompilation/DebugLibs/Library/VBoxPeCoffLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/Library/VBoxPeCoffLib.lib rename to PosixEFICompilation/DebugLibs/Library/VBoxPeCoffLib.lib diff --git a/PosixCompilation/DebugLibs/Library/VideoBiosPatchLib.lib b/PosixEFICompilation/DebugLibs/Library/VideoBiosPatchLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/Library/VideoBiosPatchLib.lib rename to PosixEFICompilation/DebugLibs/Library/VideoBiosPatchLib.lib diff --git a/PosixCompilation/DebugLibs/Library/WaveLib.lib b/PosixEFICompilation/DebugLibs/Library/WaveLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/Library/WaveLib.lib rename to PosixEFICompilation/DebugLibs/Library/WaveLib.lib diff --git a/PosixCompilation/DebugLibs/MdeModulePkg/BasePlatformHookLibNull.lib b/PosixEFICompilation/DebugLibs/MdeModulePkg/BasePlatformHookLibNull.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdeModulePkg/BasePlatformHookLibNull.lib rename to PosixEFICompilation/DebugLibs/MdeModulePkg/BasePlatformHookLibNull.lib diff --git a/PosixCompilation/DebugLibs/MdeModulePkg/BaseSerialPortLib16550.lib b/PosixEFICompilation/DebugLibs/MdeModulePkg/BaseSerialPortLib16550.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdeModulePkg/BaseSerialPortLib16550.lib rename to PosixEFICompilation/DebugLibs/MdeModulePkg/BaseSerialPortLib16550.lib diff --git a/PosixCompilation/DebugLibs/MdeModulePkg/FrameBufferBltLib.lib b/PosixEFICompilation/DebugLibs/MdeModulePkg/FrameBufferBltLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdeModulePkg/FrameBufferBltLib.lib rename to PosixEFICompilation/DebugLibs/MdeModulePkg/FrameBufferBltLib.lib diff --git a/PosixEFICompilation/DebugLibs/MdeModulePkg/UefiSortLib.lib b/PosixEFICompilation/DebugLibs/MdeModulePkg/UefiSortLib.lib new file mode 120000 index 0000000000..3bbf7c385b --- /dev/null +++ b/PosixEFICompilation/DebugLibs/MdeModulePkg/UefiSortLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/MdeModulePkg/Library/UefiSortLib/UefiSortLib/OUTPUT/UefiSortLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/MdePkg/BaseCpuLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/BaseCpuLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BaseCpuLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BaseCpuLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BaseDebugLibSerialPort.lib b/PosixEFICompilation/DebugLibs/MdePkg/BaseDebugLibSerialPort.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BaseDebugLibSerialPort.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BaseDebugLibSerialPort.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BaseIoLibIntrinsic.lib b/PosixEFICompilation/DebugLibs/MdePkg/BaseIoLibIntrinsic.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BaseIoLibIntrinsic.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BaseIoLibIntrinsic.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BaseLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/BaseLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BaseLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BaseLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BaseMemoryLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/BaseMemoryLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BaseMemoryLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BaseMemoryLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BasePciCf8Lib.lib b/PosixEFICompilation/DebugLibs/MdePkg/BasePciCf8Lib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BasePciCf8Lib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BasePciCf8Lib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BasePciLibCf8.lib b/PosixEFICompilation/DebugLibs/MdePkg/BasePciLibCf8.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BasePciLibCf8.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BasePciLibCf8.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/BasePrintLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/BasePrintLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/BasePrintLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/BasePrintLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/DxeHobLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/DxeHobLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/DxeHobLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/DxeHobLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/DxeServicesLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/DxeServicesLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/DxeServicesLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/DxeServicesLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/DxeServicesTableLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/DxeServicesTableLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/DxeServicesTableLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/DxeServicesTableLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/PeCoffExtraActionLibNull.lib b/PosixEFICompilation/DebugLibs/MdePkg/PeCoffExtraActionLibNull.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/PeCoffExtraActionLibNull.lib rename to PosixEFICompilation/DebugLibs/MdePkg/PeCoffExtraActionLibNull.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/UefiApplicationEntryPoint.lib b/PosixEFICompilation/DebugLibs/MdePkg/UefiApplicationEntryPoint.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/UefiApplicationEntryPoint.lib rename to PosixEFICompilation/DebugLibs/MdePkg/UefiApplicationEntryPoint.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/UefiBootServicesTableLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/UefiBootServicesTableLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/UefiBootServicesTableLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/UefiBootServicesTableLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/UefiDevicePathLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/UefiDevicePathLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/UefiDevicePathLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/UefiDevicePathLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/UefiFileHandleLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/UefiFileHandleLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/UefiFileHandleLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/UefiFileHandleLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/UefiLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/UefiLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/UefiLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/UefiLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/UefiMemoryAllocationLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/UefiMemoryAllocationLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/UefiMemoryAllocationLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/UefiMemoryAllocationLib.lib diff --git a/PosixCompilation/DebugLibs/MdePkg/UefiRuntimeServicesTableLib.lib b/PosixEFICompilation/DebugLibs/MdePkg/UefiRuntimeServicesTableLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/MdePkg/UefiRuntimeServicesTableLib.lib rename to PosixEFICompilation/DebugLibs/MdePkg/UefiRuntimeServicesTableLib.lib diff --git a/PosixCompilation/DebugLibs/OC/ControlMsrE2.lib b/PosixEFICompilation/DebugLibs/OC/ControlMsrE2.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/ControlMsrE2.lib rename to PosixEFICompilation/DebugLibs/OC/ControlMsrE2.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAcpiLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAcpiLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAcpiLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAcpiLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAfterBootCompatLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAfterBootCompatLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAfterBootCompatLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAfterBootCompatLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcApfsLib.lib b/PosixEFICompilation/DebugLibs/OC/OcApfsLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcApfsLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcApfsLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleBootPolicyLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleBootPolicyLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleBootPolicyLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleBootPolicyLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleChunklistLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleChunklistLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleChunklistLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleChunklistLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleDiskImageLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleDiskImageLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleDiskImageLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleDiskImageLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleEventLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleEventLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleEventLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleEventLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleImageVerificationLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleImageVerificationLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleImageVerificationLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleImageVerificationLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleImg4Lib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleImg4Lib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleImg4Lib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleImg4Lib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleKernelLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleKernelLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleKernelLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleKernelLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleKeyMapLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleKeyMapLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleKeyMapLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleKeyMapLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleKeysLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleKeysLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleKeysLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleKeysLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleRamDiskLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleRamDiskLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleRamDiskLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleRamDiskLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleSecureBootLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleSecureBootLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleSecureBootLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleSecureBootLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAppleUserInterfaceThemeLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAppleUserInterfaceThemeLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAppleUserInterfaceThemeLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAppleUserInterfaceThemeLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcAudioLib.lib b/PosixEFICompilation/DebugLibs/OC/OcAudioLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcAudioLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcAudioLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OcBlitLib.lib b/PosixEFICompilation/DebugLibs/OC/OcBlitLib.lib new file mode 120000 index 0000000000..03b9de91b9 --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OcBlitLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Library/OcBlitLib/OcBlitLib/OUTPUT/OcBlitLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OcBootManagementLib.lib b/PosixEFICompilation/DebugLibs/OC/OcBootManagementLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcBootManagementLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcBootManagementLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcCompressionLib.lib b/PosixEFICompilation/DebugLibs/OC/OcCompressionLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcCompressionLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcCompressionLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcConfigurationLib.lib b/PosixEFICompilation/DebugLibs/OC/OcConfigurationLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcConfigurationLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcConfigurationLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcConsoleLib.lib b/PosixEFICompilation/DebugLibs/OC/OcConsoleLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcConsoleLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcConsoleLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcCpuLib.lib b/PosixEFICompilation/DebugLibs/OC/OcCpuLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcCpuLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcCpuLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcCryptoLib.lib b/PosixEFICompilation/DebugLibs/OC/OcCryptoLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcCryptoLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcCryptoLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcDataHubLib.lib b/PosixEFICompilation/DebugLibs/OC/OcDataHubLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcDataHubLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcDataHubLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcDebugLogLib.lib b/PosixEFICompilation/DebugLibs/OC/OcDebugLogLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcDebugLogLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcDebugLogLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OcDeviceMiscLib.lib b/PosixEFICompilation/DebugLibs/OC/OcDeviceMiscLib.lib new file mode 120000 index 0000000000..c31e89892f --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OcDeviceMiscLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/./OpenCorePkg/Library/OcDeviceMiscLib/OcDeviceMiscLib/OUTPUT/OcDeviceMiscLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OcDevicePathLib.lib b/PosixEFICompilation/DebugLibs/OC/OcDevicePathLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcDevicePathLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcDevicePathLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcDevicePropertyLib.lib b/PosixEFICompilation/DebugLibs/OC/OcDevicePropertyLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcDevicePropertyLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcDevicePropertyLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcDeviceTreeLib.lib b/PosixEFICompilation/DebugLibs/OC/OcDeviceTreeLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcDeviceTreeLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcDeviceTreeLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcDriverConnectionLib.lib b/PosixEFICompilation/DebugLibs/OC/OcDriverConnectionLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcDriverConnectionLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcDriverConnectionLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcFileLib.lib b/PosixEFICompilation/DebugLibs/OC/OcFileLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcFileLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcFileLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcFirmwareVolumeLib.lib b/PosixEFICompilation/DebugLibs/OC/OcFirmwareVolumeLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcFirmwareVolumeLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcFirmwareVolumeLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OcFlexArrayLib.lib b/PosixEFICompilation/DebugLibs/OC/OcFlexArrayLib.lib new file mode 120000 index 0000000000..ddc305013f --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OcFlexArrayLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Library/OcFlexArrayLib/OcFlexArrayLib/OUTPUT/OcFlexArrayLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OcGuardLib.lib b/PosixEFICompilation/DebugLibs/OC/OcGuardLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcGuardLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcGuardLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcHashServicesLib.lib b/PosixEFICompilation/DebugLibs/OC/OcHashServicesLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcHashServicesLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcHashServicesLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcInputLib.lib b/PosixEFICompilation/DebugLibs/OC/OcInputLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcInputLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcInputLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcMacInfoLib.lib b/PosixEFICompilation/DebugLibs/OC/OcMacInfoLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcMacInfoLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcMacInfoLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcMachoLib.lib b/PosixEFICompilation/DebugLibs/OC/OcMachoLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcMachoLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcMachoLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OcMainLib.lib b/PosixEFICompilation/DebugLibs/OC/OcMainLib.lib new file mode 120000 index 0000000000..78d4f28b06 --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OcMainLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Library/OcMainLib/OcMainLibClover/OUTPUT/OcMainLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OcMemoryLib.lib b/PosixEFICompilation/DebugLibs/OC/OcMemoryLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcMemoryLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcMemoryLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcMiscLib.lib b/PosixEFICompilation/DebugLibs/OC/OcMiscLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcMiscLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcMiscLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcOSInfoLib.lib b/PosixEFICompilation/DebugLibs/OC/OcOSInfoLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcOSInfoLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcOSInfoLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OcPeCoffExtLib.lib b/PosixEFICompilation/DebugLibs/OC/OcPeCoffExtLib.lib new file mode 120000 index 0000000000..f14a4d7d5e --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OcPeCoffExtLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Library/OcPeCoffExtLib/OcPeCoffExtLib/OUTPUT/OcPeCoffExtLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OcPeCoffLib.lib b/PosixEFICompilation/DebugLibs/OC/OcPeCoffLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcPeCoffLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcPeCoffLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcRngLib.lib b/PosixEFICompilation/DebugLibs/OC/OcRngLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcRngLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcRngLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcRtcLib.lib b/PosixEFICompilation/DebugLibs/OC/OcRtcLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcRtcLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcRtcLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcSerializeLib.lib b/PosixEFICompilation/DebugLibs/OC/OcSerializeLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcSerializeLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcSerializeLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcSmbiosLib.lib b/PosixEFICompilation/DebugLibs/OC/OcSmbiosLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcSmbiosLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcSmbiosLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcSmcLib.lib b/PosixEFICompilation/DebugLibs/OC/OcSmcLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcSmcLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcSmcLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcStorageLib.lib b/PosixEFICompilation/DebugLibs/OC/OcStorageLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcStorageLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcStorageLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcStringLib.lib b/PosixEFICompilation/DebugLibs/OC/OcStringLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcStringLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcStringLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcTemplateLib.lib b/PosixEFICompilation/DebugLibs/OC/OcTemplateLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcTemplateLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcTemplateLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OcTypingLib.lib b/PosixEFICompilation/DebugLibs/OC/OcTypingLib.lib new file mode 120000 index 0000000000..7750c5d52b --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OcTypingLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Library/OcTypingLib/OcTypingLib/OUTPUT/OcTypingLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OcUnicodeCollationEngGenericLib.lib b/PosixEFICompilation/DebugLibs/OC/OcUnicodeCollationEngGenericLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcUnicodeCollationEngGenericLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcUnicodeCollationEngGenericLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OcVariableLib.lib b/PosixEFICompilation/DebugLibs/OC/OcVariableLib.lib new file mode 120000 index 0000000000..d9ada3c54f --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OcVariableLib.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Library/OcVariableLib/OcVariableLib/OUTPUT/OcVariableLib.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OcVirtualFsLib.lib b/PosixEFICompilation/DebugLibs/OC/OcVirtualFsLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcVirtualFsLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcVirtualFsLib.lib diff --git a/PosixCompilation/DebugLibs/OC/OcXmlLib.lib b/PosixEFICompilation/DebugLibs/OC/OcXmlLib.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OcXmlLib.lib rename to PosixEFICompilation/DebugLibs/OC/OcXmlLib.lib diff --git a/PosixEFICompilation/DebugLibs/OC/OpenCore.lib b/PosixEFICompilation/DebugLibs/OC/OpenCore.lib new file mode 120000 index 0000000000..57b25b7544 --- /dev/null +++ b/PosixEFICompilation/DebugLibs/OC/OpenCore.lib @@ -0,0 +1 @@ +../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Application/OpenCore/OpenCoreLib/OUTPUT/OpenCore.lib \ No newline at end of file diff --git a/PosixCompilation/DebugLibs/OC/OpenRuntime.lib b/PosixEFICompilation/DebugLibs/OC/OpenRuntime.lib similarity index 100% rename from PosixCompilation/DebugLibs/OC/OpenRuntime.lib rename to PosixEFICompilation/DebugLibs/OC/OpenRuntime.lib diff --git a/PosixEFICompilation/ReadmeJief.txt b/PosixEFICompilation/ReadmeJief.txt new file mode 100644 index 0000000000..a956eb46e6 --- /dev/null +++ b/PosixEFICompilation/ReadmeJief.txt @@ -0,0 +1,2 @@ + +wcslen=wcslen_fixed wcscmp=__wcscmp_is_disabled__ wcsncmp=wcsncmp_fixed wcsstr=wcsstr_fixed sprintf=__sprintf_is_disabled__ diff --git a/PosixCompilation/ReleaseLibs/Autogen/AutoGen.c b/PosixEFICompilation/ReleaseLibs/Autogen/AutoGen.c similarity index 100% rename from PosixCompilation/ReleaseLibs/Autogen/AutoGen.c rename to PosixEFICompilation/ReleaseLibs/Autogen/AutoGen.c diff --git a/PosixCompilation/ReleaseLibs/Autogen/AutoGen.h b/PosixEFICompilation/ReleaseLibs/Autogen/AutoGen.h similarity index 100% rename from PosixCompilation/ReleaseLibs/Autogen/AutoGen.h rename to PosixEFICompilation/ReleaseLibs/Autogen/AutoGen.h diff --git a/PosixCompilation/ReleaseLibs/CloverEFI/MtrrLib.lib b/PosixEFICompilation/ReleaseLibs/CloverEFI/MtrrLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/CloverEFI/MtrrLib.lib rename to PosixEFICompilation/ReleaseLibs/CloverEFI/MtrrLib.lib diff --git a/PosixCompilation/ReleaseLibs/Library/DuetTimerLib.lib b/PosixEFICompilation/ReleaseLibs/Library/DuetTimerLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/Library/DuetTimerLib.lib rename to PosixEFICompilation/ReleaseLibs/Library/DuetTimerLib.lib diff --git a/PosixCompilation/ReleaseLibs/Library/HdaDevicesLib.lib b/PosixEFICompilation/ReleaseLibs/Library/HdaDevicesLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/Library/HdaDevicesLib.lib rename to PosixEFICompilation/ReleaseLibs/Library/HdaDevicesLib.lib diff --git a/PosixCompilation/ReleaseLibs/Library/OpensslLib.lib b/PosixEFICompilation/ReleaseLibs/Library/OpensslLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/Library/OpensslLib.lib rename to PosixEFICompilation/ReleaseLibs/Library/OpensslLib.lib diff --git a/PosixCompilation/ReleaseLibs/Library/VBoxPeCoffLib.lib b/PosixEFICompilation/ReleaseLibs/Library/VBoxPeCoffLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/Library/VBoxPeCoffLib.lib rename to PosixEFICompilation/ReleaseLibs/Library/VBoxPeCoffLib.lib diff --git a/PosixCompilation/ReleaseLibs/Library/VideoBiosPatchLib.lib b/PosixEFICompilation/ReleaseLibs/Library/VideoBiosPatchLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/Library/VideoBiosPatchLib.lib rename to PosixEFICompilation/ReleaseLibs/Library/VideoBiosPatchLib.lib diff --git a/PosixCompilation/ReleaseLibs/Library/WaveLib.lib b/PosixEFICompilation/ReleaseLibs/Library/WaveLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/Library/WaveLib.lib rename to PosixEFICompilation/ReleaseLibs/Library/WaveLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdeModulePkg/BasePlatformHookLibNull.lib b/PosixEFICompilation/ReleaseLibs/MdeModulePkg/BasePlatformHookLibNull.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdeModulePkg/BasePlatformHookLibNull.lib rename to PosixEFICompilation/ReleaseLibs/MdeModulePkg/BasePlatformHookLibNull.lib diff --git a/PosixCompilation/ReleaseLibs/MdeModulePkg/FrameBufferBltLib.lib b/PosixEFICompilation/ReleaseLibs/MdeModulePkg/FrameBufferBltLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdeModulePkg/FrameBufferBltLib.lib rename to PosixEFICompilation/ReleaseLibs/MdeModulePkg/FrameBufferBltLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BaseCpuLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BaseCpuLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BaseCpuLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BaseCpuLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BaseDebugLibNull.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BaseDebugLibNull.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BaseDebugLibNull.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BaseDebugLibNull.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BaseDebugPrintErrorLevelLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BaseIoLibIntrinsic.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BaseIoLibIntrinsic.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BaseIoLibIntrinsic.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BaseIoLibIntrinsic.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BaseLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BaseLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BaseLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BaseLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BaseMemoryLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BaseMemoryLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BaseMemoryLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BaseMemoryLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BasePciCf8Lib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BasePciCf8Lib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BasePciCf8Lib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BasePciCf8Lib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BasePciLibCf8.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BasePciLibCf8.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BasePciLibCf8.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BasePciLibCf8.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BasePrintLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BasePrintLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BasePrintLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BasePrintLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/BaseSerialPortLibNull.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/BaseSerialPortLibNull.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/BaseSerialPortLibNull.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/BaseSerialPortLibNull.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/DxeHobLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/DxeHobLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/DxeHobLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/DxeHobLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/DxeServicesLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/DxeServicesLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/DxeServicesLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/DxeServicesLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/DxeServicesTableLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/DxeServicesTableLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/DxeServicesTableLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/DxeServicesTableLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/PeCoffExtraActionLibNull.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/PeCoffExtraActionLibNull.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/PeCoffExtraActionLibNull.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/PeCoffExtraActionLibNull.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/UefiApplicationEntryPoint.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/UefiApplicationEntryPoint.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/UefiApplicationEntryPoint.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/UefiApplicationEntryPoint.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/UefiBootServicesTableLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/UefiBootServicesTableLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/UefiBootServicesTableLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/UefiBootServicesTableLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/UefiDevicePathLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/UefiDevicePathLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/UefiDevicePathLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/UefiDevicePathLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/UefiFileHandleLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/UefiFileHandleLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/UefiFileHandleLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/UefiFileHandleLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/UefiLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/UefiLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/UefiLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/UefiLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/UefiMemoryAllocationLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/UefiMemoryAllocationLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/UefiMemoryAllocationLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/UefiMemoryAllocationLib.lib diff --git a/PosixCompilation/ReleaseLibs/MdePkg/UefiRuntimeServicesTableLib.lib b/PosixEFICompilation/ReleaseLibs/MdePkg/UefiRuntimeServicesTableLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/MdePkg/UefiRuntimeServicesTableLib.lib rename to PosixEFICompilation/ReleaseLibs/MdePkg/UefiRuntimeServicesTableLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/ControlMsrE2.lib b/PosixEFICompilation/ReleaseLibs/OC/ControlMsrE2.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/ControlMsrE2.lib rename to PosixEFICompilation/ReleaseLibs/OC/ControlMsrE2.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAcpiLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAcpiLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAcpiLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAcpiLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAfterBootCompatLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAfterBootCompatLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAfterBootCompatLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAfterBootCompatLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcApfsLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcApfsLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcApfsLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcApfsLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleBootPolicyLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleBootPolicyLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleBootPolicyLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleBootPolicyLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleChunklistLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleChunklistLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleChunklistLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleChunklistLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleDiskImageLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleDiskImageLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleDiskImageLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleDiskImageLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleEventLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleEventLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleEventLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleEventLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleImageVerificationLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleImageVerificationLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleImageVerificationLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleImageVerificationLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleImg4Lib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleImg4Lib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleImg4Lib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleImg4Lib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleKernelLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleKernelLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleKernelLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleKernelLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleKeyMapLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleKeyMapLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleKeyMapLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleKeyMapLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleKeysLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleKeysLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleKeysLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleKeysLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleRamDiskLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleRamDiskLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleRamDiskLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleRamDiskLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleSecureBootLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleSecureBootLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleSecureBootLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleSecureBootLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAppleUserInterfaceThemeLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAppleUserInterfaceThemeLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAppleUserInterfaceThemeLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAppleUserInterfaceThemeLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcAudioLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcAudioLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcAudioLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcAudioLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcBootManagementLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcBootManagementLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcBootManagementLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcBootManagementLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcCompressionLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcCompressionLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcCompressionLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcCompressionLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcConfigurationLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcConfigurationLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcConfigurationLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcConfigurationLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcConsoleLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcConsoleLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcConsoleLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcConsoleLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcCpuLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcCpuLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcCpuLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcCpuLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcCryptoLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcCryptoLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcCryptoLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcCryptoLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcDataHubLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcDataHubLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcDataHubLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcDataHubLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcDebugLogLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcDebugLogLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcDebugLogLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcDebugLogLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcDevicePathLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcDevicePathLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcDevicePathLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcDevicePathLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcDevicePropertyLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcDevicePropertyLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcDevicePropertyLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcDevicePropertyLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcDeviceTreeLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcDeviceTreeLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcDeviceTreeLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcDeviceTreeLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcDriverConnectionLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcDriverConnectionLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcDriverConnectionLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcDriverConnectionLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcFileLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcFileLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcFileLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcFileLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcFirmwareVolumeLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcFirmwareVolumeLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcFirmwareVolumeLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcFirmwareVolumeLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcGuardLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcGuardLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcGuardLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcGuardLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcHashServicesLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcHashServicesLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcHashServicesLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcHashServicesLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcInputLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcInputLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcInputLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcInputLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcMacInfoLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcMacInfoLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcMacInfoLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcMacInfoLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcMachoLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcMachoLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcMachoLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcMachoLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcMemoryLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcMemoryLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcMemoryLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcMemoryLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcMiscLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcMiscLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcMiscLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcMiscLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcOSInfoLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcOSInfoLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcOSInfoLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcOSInfoLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcPeCoffLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcPeCoffLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcPeCoffLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcPeCoffLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcRngLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcRngLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcRngLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcRngLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcRtcLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcRtcLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcRtcLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcRtcLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcSerializeLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcSerializeLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcSerializeLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcSerializeLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcSmbiosLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcSmbiosLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcSmbiosLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcSmbiosLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcSmcLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcSmcLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcSmcLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcSmcLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcStorageLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcStorageLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcStorageLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcStorageLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcStringLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcStringLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcStringLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcStringLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcTemplateLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcTemplateLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcTemplateLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcTemplateLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcUnicodeCollationEngGenericLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcUnicodeCollationEngGenericLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcUnicodeCollationEngGenericLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcUnicodeCollationEngGenericLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcVirtualFsLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcVirtualFsLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcVirtualFsLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcVirtualFsLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OcXmlLib.lib b/PosixEFICompilation/ReleaseLibs/OC/OcXmlLib.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OcXmlLib.lib rename to PosixEFICompilation/ReleaseLibs/OC/OcXmlLib.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OpenCore.lib b/PosixEFICompilation/ReleaseLibs/OC/OpenCore.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OpenCore.lib rename to PosixEFICompilation/ReleaseLibs/OC/OpenCore.lib diff --git a/PosixCompilation/ReleaseLibs/OC/OpenRuntime.lib b/PosixEFICompilation/ReleaseLibs/OC/OpenRuntime.lib similarity index 100% rename from PosixCompilation/ReleaseLibs/OC/OpenRuntime.lib rename to PosixEFICompilation/ReleaseLibs/OC/OpenRuntime.lib diff --git a/PosixEFICompilation/UefiMock/Base.h b/PosixEFICompilation/UefiMock/Base.h new file mode 100644 index 0000000000..624e6ed3c0 --- /dev/null +++ b/PosixEFICompilation/UefiMock/Base.h @@ -0,0 +1,1157 @@ +/** @file + Root include file for Mde Package Base type modules + + This is the include file for any module of type base. Base modules only use + types defined via this include file and can be ported easily to any + environment. There are a set of base libraries in the Mde Package that can + be used to implement base modules. + +Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
+Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.
+SPDX-License-Identifier: BSD-2-Clause-Patent + +**/ + + +#ifndef __BASE_H__ +#define __BASE_H__ + +// +// Include processor specific binding +// +#include + +#if defined(_MSC_EXTENSIONS) +// +// Disable warning when last field of data structure is a zero sized array. +// +#pragma warning ( disable : 4200 ) +#endif + +// +// The Microsoft* C compiler can removed references to unreferenced data items +// if the /OPT:REF linker option is used. We defined a macro as this is a +// a non standard extension +// +#if defined(_MSC_VER) && _MSC_VER < 1800 && !defined (MDE_CPU_EBC) + /// + /// Remove global variable from the linked image if there are no references to + /// it after all compiler and linker optimizations have been performed. + /// + /// + #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany) +#else + /// + /// Remove the global variable from the linked image if there are no references + /// to it after all compiler and linker optimizations have been performed. + /// + /// + #define GLOBAL_REMOVE_IF_UNREFERENCED +#endif + +// +// Should be used in combination with NORETURN to avoid 'noreturn' returns +// warnings. +// +#ifndef UNREACHABLE + #ifdef __GNUC__ + /// + /// Signal compilers and analyzers that this call is not reachable. It is + /// up to the compiler to remove any code past that point. + /// + #define UNREACHABLE() __builtin_unreachable () + #elif defined (__has_feature) + #if __has_builtin (__builtin_unreachable) + /// + /// Signal compilers and analyzers that this call is not reachable. It is + /// up to the compiler to remove any code past that point. + /// + #define UNREACHABLE() __builtin_unreachable () + #endif + #endif + + #ifndef UNREACHABLE + /// + /// Signal compilers and analyzers that this call is not reachable. It is + /// up to the compiler to remove any code past that point. + /// + #define UNREACHABLE() + #endif +#endif + +// +// Signaling compilers and analyzers that a certain function cannot return may +// remove all following code and thus lead to better optimization and less +// false positives. +// +#ifndef NORETURN + #if defined (__GNUC__) || defined (__clang__) + /// + /// Signal compilers and analyzers that the function cannot return. + /// It is up to the compiler to remove any code past a call to functions + /// flagged with this attribute. + /// + #define NORETURN __attribute__((noreturn)) + #elif defined(_MSC_EXTENSIONS) && !defined(MDE_CPU_EBC) + /// + /// Signal compilers and analyzers that the function cannot return. + /// It is up to the compiler to remove any code past a call to functions + /// flagged with this attribute. + /// + #define NORETURN __declspec(noreturn) + #else + /// + /// Signal compilers and analyzers that the function cannot return. + /// It is up to the compiler to remove any code past a call to functions + /// flagged with this attribute. + /// + #define NORETURN + #endif +#endif + +// +// Should be used in combination with ANALYZER_NORETURN to avoid 'noreturn' +// returns warnings. +// +#ifndef ANALYZER_UNREACHABLE + #ifdef __clang_analyzer__ + #if __has_builtin (__builtin_unreachable) + /// + /// Signal the analyzer that this call is not reachable. + /// This excludes compilers. + /// + #define ANALYZER_UNREACHABLE() __builtin_unreachable () + #endif + #endif + + #ifndef ANALYZER_UNREACHABLE + /// + /// Signal the analyzer that this call is not reachable. + /// This excludes compilers. + /// + #define ANALYZER_UNREACHABLE() + #endif +#endif + +// +// Static Analyzers may issue errors about potential NULL-dereferences when +// dereferencing a pointer, that has been checked before, outside of a +// NULL-check. This may lead to false positives, such as when using ASSERT() +// for verification. +// +#ifndef ANALYZER_NORETURN + #ifdef __has_feature + #if __has_feature (attribute_analyzer_noreturn) + /// + /// Signal analyzers that the function cannot return. + /// This excludes compilers. + /// + #define ANALYZER_NORETURN __attribute__((analyzer_noreturn)) + #endif + #endif + + #ifndef ANALYZER_NORETURN + /// + /// Signal the analyzer that the function cannot return. + /// This excludes compilers. + /// + #define ANALYZER_NORETURN + #endif +#endif + +/// +/// Tell the code optimizer that the function will return twice. +/// This prevents wrong optimizations which can cause bugs. +/// +#ifndef RETURNS_TWICE + #if defined (__GNUC__) || defined (__clang__) + /// + /// Tell the code optimizer that the function will return twice. + /// This prevents wrong optimizations which can cause bugs. + /// + #define RETURNS_TWICE __attribute__((returns_twice)) + #else + /// + /// Tell the code optimizer that the function will return twice. + /// This prevents wrong optimizations which can cause bugs. + /// + #define RETURNS_TWICE + #endif +#endif + +// +// For symbol name in assembly code, an extra "_" is sometimes necessary +// + +/// +/// Private worker functions for ASM_PFX() +/// +#define _CONCATENATE(a, b) __CONCATENATE(a, b) +#define __CONCATENATE(a, b) a ## b + +/// +/// The __USER_LABEL_PREFIX__ macro predefined by GNUC represents the prefix +/// on symbols in assembly language. +/// +#define ASM_PFX(name) _CONCATENATE (__USER_LABEL_PREFIX__, name) + +#ifdef __APPLE__ + // + // Apple extension that is used by the linker to optimize code size + // with assembly functions. Put at the end of your .S files + // + #define ASM_FUNCTION_REMOVE_IF_UNREFERENCED .subsections_via_symbols +#else + #define ASM_FUNCTION_REMOVE_IF_UNREFERENCED +#endif + +#ifdef __CC_ARM + // + // Older RVCT ARM compilers don't fully support #pragma pack and require __packed + // as a prefix for the structure. + // + #define PACKED __packed +#else + #define PACKED +#endif + +#ifndef GUID_PLUSPLUS_DEFINED +/// +/// 128 bit buffer containing a unique identifier value. +/// Unless otherwise specified, aligned on a 64 bit boundary. +/// +typedef struct { + UINT32 Data1; + UINT16 Data2; + UINT16 Data3; + UINT8 Data4[8]; +} GUID; + +#define CONST_EFI_GUID_PTR_T IN CONST EFI_GUID* +#define JCONST_EFI_GUID_PTR_T IN JCONST EFI_GUID* + +#endif + +/// +/// 4-byte buffer. An IPv4 internet protocol address. +/// +typedef struct { + UINT8 Addr[4]; +} IPv4_ADDRESS; + +/// +/// 16-byte buffer. An IPv6 internet protocol address. +/// +typedef struct { + UINT8 Addr[16]; +} IPv6_ADDRESS; + +// +// 8-bytes unsigned value that represents a physical system address. +// +typedef UINT64 PHYSICAL_ADDRESS; + +/// +/// LIST_ENTRY structure definition. +/// +typedef struct _LIST_ENTRY LIST_ENTRY; + +/// +/// _LIST_ENTRY structure definition. +/// +struct _LIST_ENTRY { + LIST_ENTRY *ForwardLink; + LIST_ENTRY *BackLink; +}; + +// +// Modifiers to abstract standard types to aid in debug of problems +// + +/// +/// Datum is read-only. +/// +#define CONST const +#ifndef JCONST +#define JCONST +#endif + +/// +/// Datum is scoped to the current file or function. +/// +#define STATIC static + +/// +/// Undeclared type. +/// +#define VOID void + +// +// Modifiers for Data Types used to self document code. +// This concept is borrowed for UEFI specification. +// + +/// +/// Datum is passed to the function. +/// +#define IN + +/// +/// Datum is returned from the function. +/// +#define OUT + +/// +/// Passing the datum to the function is optional, and a NULL +/// is passed if the value is not supplied. +/// +#define OPTIONAL + +// +// UEFI specification claims 1 and 0. We are concerned about the +// compiler portability so we did it this way. +// + +/// +/// Boolean true value. UEFI Specification defines this value to be 1, +/// but this form is more portable. +/// +#define TRUE ((BOOLEAN)(1==1)) + +/// +/// Boolean false value. UEFI Specification defines this value to be 0, +/// but this form is more portable. +/// +#define FALSE ((BOOLEAN)(0==1)) + +/// +/// NULL pointer (VOID *) +/// +#ifndef NULL +#ifdef __cplusplus +#define NULL nullptr +#else +#define NULL ((VOID *) 0) +#endif +#endif + +// +// Null character +// +#define CHAR_NULL 0x0000 + +/// +/// Maximum values for common UEFI Data Types +/// +#define MAX_INT8 ((INT8)0x7F) +#define MAX_UINT8 ((UINT8)0xFF) +#define MAX_INT16 ((INT16)0x7FFF) +#define MAX_UINT16 ((UINT16)0xFFFF) +#define MAX_INT32 ((INT32)0x7FFFFFFF) +#define MAX_UINT32 ((UINT32)0xFFFFFFFF) +#define MAX_INT64 ((INT64)0x7FFFFFFFFFFFFFFFULL) +#define MAX_UINT64 ((UINT64)0xFFFFFFFFFFFFFFFFULL) + +/// +/// Minimum values for the signed UEFI Data Types +/// +#define MIN_INT8 (((INT8) -127) - 1) +#define MIN_INT16 (((INT16) -32767) - 1) +#define MIN_INT32 (((INT32) -2147483647) - 1) +#define MIN_INT64 (((INT64) -9223372036854775807LL) - 1) + +#define BIT0 0x00000001 +#define BIT1 0x00000002 +#define BIT2 0x00000004 +#define BIT3 0x00000008 +#define BIT4 0x00000010 +#define BIT5 0x00000020 +#define BIT6 0x00000040 +#define BIT7 0x00000080 +#define BIT8 0x00000100 +#define BIT9 0x00000200 +#define BIT10 0x00000400 +#define BIT11 0x00000800 +#define BIT12 0x00001000 +#define BIT13 0x00002000 +#define BIT14 0x00004000 +#define BIT15 0x00008000 +#define BIT16 0x00010000 +#define BIT17 0x00020000 +#define BIT18 0x00040000 +#define BIT19 0x00080000 +#define BIT20 0x00100000 +#define BIT21 0x00200000 +#define BIT22 0x00400000 +#define BIT23 0x00800000 +#define BIT24 0x01000000 +#define BIT25 0x02000000 +#define BIT26 0x04000000 +#define BIT27 0x08000000 +#define BIT28 0x10000000 +#define BIT29 0x20000000 +#define BIT30 0x40000000 +#define BIT31 0x80000000 +#define BIT32 0x0000000100000000ULL +#define BIT33 0x0000000200000000ULL +#define BIT34 0x0000000400000000ULL +#define BIT35 0x0000000800000000ULL +#define BIT36 0x0000001000000000ULL +#define BIT37 0x0000002000000000ULL +#define BIT38 0x0000004000000000ULL +#define BIT39 0x0000008000000000ULL +#define BIT40 0x0000010000000000ULL +#define BIT41 0x0000020000000000ULL +#define BIT42 0x0000040000000000ULL +#define BIT43 0x0000080000000000ULL +#define BIT44 0x0000100000000000ULL +#define BIT45 0x0000200000000000ULL +#define BIT46 0x0000400000000000ULL +#define BIT47 0x0000800000000000ULL +#define BIT48 0x0001000000000000ULL +#define BIT49 0x0002000000000000ULL +#define BIT50 0x0004000000000000ULL +#define BIT51 0x0008000000000000ULL +#define BIT52 0x0010000000000000ULL +#define BIT53 0x0020000000000000ULL +#define BIT54 0x0040000000000000ULL +#define BIT55 0x0080000000000000ULL +#define BIT56 0x0100000000000000ULL +#define BIT57 0x0200000000000000ULL +#define BIT58 0x0400000000000000ULL +#define BIT59 0x0800000000000000ULL +#define BIT60 0x1000000000000000ULL +#define BIT61 0x2000000000000000ULL +#define BIT62 0x4000000000000000ULL +#define BIT63 0x8000000000000000ULL + +#define SIZE_1KB 0x00000400 +#define SIZE_2KB 0x00000800 +#define SIZE_4KB 0x00001000 +#define SIZE_8KB 0x00002000 +#define SIZE_16KB 0x00004000 +#define SIZE_32KB 0x00008000 +#define SIZE_64KB 0x00010000 +#define SIZE_128KB 0x00020000 +#define SIZE_256KB 0x00040000 +#define SIZE_512KB 0x00080000 +#define SIZE_1MB 0x00100000 +#define SIZE_2MB 0x00200000 +#define SIZE_4MB 0x00400000 +#define SIZE_8MB 0x00800000 +#define SIZE_16MB 0x01000000 +#define SIZE_32MB 0x02000000 +#define SIZE_64MB 0x04000000 +#define SIZE_128MB 0x08000000 +#define SIZE_256MB 0x10000000 +#define SIZE_512MB 0x20000000 +#define SIZE_1GB 0x40000000 +#define SIZE_2GB 0x80000000 +#define SIZE_4GB 0x0000000100000000ULL +#define SIZE_8GB 0x0000000200000000ULL +#define SIZE_16GB 0x0000000400000000ULL +#define SIZE_32GB 0x0000000800000000ULL +#define SIZE_64GB 0x0000001000000000ULL +#define SIZE_128GB 0x0000002000000000ULL +#define SIZE_256GB 0x0000004000000000ULL +#define SIZE_512GB 0x0000008000000000ULL +#define SIZE_1TB 0x0000010000000000ULL +#define SIZE_2TB 0x0000020000000000ULL +#define SIZE_4TB 0x0000040000000000ULL +#define SIZE_8TB 0x0000080000000000ULL +#define SIZE_16TB 0x0000100000000000ULL +#define SIZE_32TB 0x0000200000000000ULL +#define SIZE_64TB 0x0000400000000000ULL +#define SIZE_128TB 0x0000800000000000ULL +#define SIZE_256TB 0x0001000000000000ULL +#define SIZE_512TB 0x0002000000000000ULL +#define SIZE_1PB 0x0004000000000000ULL +#define SIZE_2PB 0x0008000000000000ULL +#define SIZE_4PB 0x0010000000000000ULL +#define SIZE_8PB 0x0020000000000000ULL +#define SIZE_16PB 0x0040000000000000ULL +#define SIZE_32PB 0x0080000000000000ULL +#define SIZE_64PB 0x0100000000000000ULL +#define SIZE_128PB 0x0200000000000000ULL +#define SIZE_256PB 0x0400000000000000ULL +#define SIZE_512PB 0x0800000000000000ULL +#define SIZE_1EB 0x1000000000000000ULL +#define SIZE_2EB 0x2000000000000000ULL +#define SIZE_4EB 0x4000000000000000ULL +#define SIZE_8EB 0x8000000000000000ULL + +#define BASE_1KB 0x00000400 +#define BASE_2KB 0x00000800 +#define BASE_4KB 0x00001000 +#define BASE_8KB 0x00002000 +#define BASE_16KB 0x00004000 +#define BASE_32KB 0x00008000 +#define BASE_64KB 0x00010000 +#define BASE_128KB 0x00020000 +#define BASE_256KB 0x00040000 +#define BASE_512KB 0x00080000 +#define BASE_1MB 0x00100000 +#define BASE_2MB 0x00200000 +#define BASE_4MB 0x00400000 +#define BASE_8MB 0x00800000 +#define BASE_16MB 0x01000000 +#define BASE_32MB 0x02000000 +#define BASE_64MB 0x04000000 +#define BASE_128MB 0x08000000 +#define BASE_256MB 0x10000000 +#define BASE_512MB 0x20000000 +#define BASE_1GB 0x40000000 +#define BASE_2GB 0x80000000 +#define BASE_4GB 0x0000000100000000ULL +#define BASE_8GB 0x0000000200000000ULL +#define BASE_16GB 0x0000000400000000ULL +#define BASE_32GB 0x0000000800000000ULL +#define BASE_64GB 0x0000001000000000ULL +#define BASE_128GB 0x0000002000000000ULL +#define BASE_256GB 0x0000004000000000ULL +#define BASE_512GB 0x0000008000000000ULL +#define BASE_1TB 0x0000010000000000ULL +#define BASE_2TB 0x0000020000000000ULL +#define BASE_4TB 0x0000040000000000ULL +#define BASE_8TB 0x0000080000000000ULL +#define BASE_16TB 0x0000100000000000ULL +#define BASE_32TB 0x0000200000000000ULL +#define BASE_64TB 0x0000400000000000ULL +#define BASE_128TB 0x0000800000000000ULL +#define BASE_256TB 0x0001000000000000ULL +#define BASE_512TB 0x0002000000000000ULL +#define BASE_1PB 0x0004000000000000ULL +#define BASE_2PB 0x0008000000000000ULL +#define BASE_4PB 0x0010000000000000ULL +#define BASE_8PB 0x0020000000000000ULL +#define BASE_16PB 0x0040000000000000ULL +#define BASE_32PB 0x0080000000000000ULL +#define BASE_64PB 0x0100000000000000ULL +#define BASE_128PB 0x0200000000000000ULL +#define BASE_256PB 0x0400000000000000ULL +#define BASE_512PB 0x0800000000000000ULL +#define BASE_1EB 0x1000000000000000ULL +#define BASE_2EB 0x2000000000000000ULL +#define BASE_4EB 0x4000000000000000ULL +#define BASE_8EB 0x8000000000000000ULL + + + + + + + + + + +#if defined(_MSC_VER) + +#define VA_LIST va_list +#define VA_START(Marker, Parameter) va_start (Marker, Parameter) +#define VA_ARG(Marker, TYPE) va_arg(Marker, TYPE) +#define VA_END(Marker) va_end (Marker) +#define VA_COPY(Dest, Start) va_copy(Dest, Start) + +#else + +typedef __builtin_va_list VA_LIST; + +#define VA_START(Marker, Parameter) __builtin_va_start (Marker, Parameter) + +#define VA_ARG(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN)) ? (TYPE)(__builtin_va_arg (Marker, UINTN)) : (TYPE)(__builtin_va_arg (Marker, TYPE))) + +#define VA_END(Marker) __builtin_va_end (Marker) + +#define VA_COPY(Dest, Start) __builtin_va_copy (Dest, Start) + +#endif + + +/// +/// Pointer to the start of a variable argument list stored in a memory buffer. Same as UINT8 *. +/// +typedef UINTN *BASE_LIST; + +/** + Returns the size of a data type in sizeof(UINTN) units rounded up to the nearest UINTN boundary. + + @param TYPE The date type to determine the size of. + + @return The size of TYPE in sizeof (UINTN) units rounded up to the nearest UINTN boundary. +**/ +#define _BASE_INT_SIZE_OF(TYPE) ((sizeof (TYPE) + sizeof (UINTN) - 1) / sizeof (UINTN)) + +/** + Returns an argument of a specified type from a variable argument list and updates + the pointer to the variable argument list to point to the next argument. + + This function returns an argument of the type specified by TYPE from the beginning + of the variable argument list specified by Marker. Marker is then updated to point + to the next argument in the variable argument list. The method for computing the + pointer to the next argument in the argument list is CPU specific following the EFIAPI ABI. + + @param Marker The pointer to the beginning of a variable argument list. + @param TYPE The type of argument to retrieve from the beginning + of the variable argument list. + + @return An argument of the type specified by TYPE. + +**/ +#define BASE_ARG(Marker, TYPE) (*(TYPE *) ((Marker += _BASE_INT_SIZE_OF (TYPE)) - _BASE_INT_SIZE_OF (TYPE))) + +/** + The macro that returns the byte offset of a field in a data structure. + + This function returns the offset, in bytes, of field specified by Field from the + beginning of the data structure specified by TYPE. If TYPE does not contain Field, + the module will not compile. + + @param TYPE The name of the data structure that contains the field specified by Field. + @param Field The name of the field in the data structure. + + @return Offset, in bytes, of field. + +**/ +#if (defined(__GNUC__) && __GNUC__ >= 4) || defined(__clang__) +#define OFFSET_OF(TYPE, Field) ((UINTN) __builtin_offsetof(TYPE, Field)) +#endif + +#ifndef OFFSET_OF +#define OFFSET_OF(TYPE, Field) ((UINTN) &(((TYPE *)0)->Field)) +#endif + +/** + Portable definition for compile time assertions. + Equivalent to C11 static_assert macro from assert.h. + + @param Expression Boolean expression. + @param Message Raised compiler diagnostic message when expression is false. + +**/ +#ifdef __cplusplus + #define STATIC_ASSERT(Expression, Message) static_assert(Expression, Message) +#else + #ifdef MDE_CPU_EBC + #define STATIC_ASSERT(Expression, Message) + #elif defined(_MSC_EXTENSIONS) + #define STATIC_ASSERT static_assert + #else + #define STATIC_ASSERT _Static_assert + #endif +#endif + +// +// Verify that ProcessorBind.h produced UEFI Data Types that are compliant with +// Section 2.3.1 of the UEFI 2.3 Specification. +// + +STATIC_ASSERT (sizeof (BOOLEAN) == 1, "sizeof (BOOLEAN) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (INT8) == 1, "sizeof (INT8) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (UINT8) == 1, "sizeof (UINT8) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (INT16) == 2, "sizeof (INT16) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (UINT16) == 2, "sizeof (UINT16) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (INT32) == 4, "sizeof (INT32) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (UINT32) == 4, "sizeof (UINT32) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (INT64) == 8, "sizeof (INT64) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (UINT64) == 8, "sizeof (UINT64) does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (CHAR8) == 1, "sizeof (CHAR8) does not meet UEFI Specification Data Type requirements"); +#if __WCHAR_MAX__ <= 0xFFFF + STATIC_ASSERT (sizeof (CHAR16) == 2, "sizeof (CHAR16) does not meet UEFI Specification Data Type requirements"); +#else + #ifdef UNIT_TESTS_MACOS + // That's ok that CHAR16 is a 4 bytes char. It's unit tests on macOS + #else + STATIC_ASSERT (sizeof (CHAR16) == 2, "sizeof (CHAR16) does not meet UEFI Specification Data Type requirements"); + #endif +#endif + +// +// The following three enum types are used to verify that the compiler +// configuration for enum types is compliant with Section 2.3.1 of the +// UEFI 2.3 Specification. These enum types and enum values are not +// intended to be used. A prefix of '__' is used avoid conflicts with +// other types. +// +typedef enum { + __VerifyUint8EnumValue = 0xff +} __VERIFY_UINT8_ENUM_SIZE; + +typedef enum { + __VerifyUint16EnumValue = 0xffff +} __VERIFY_UINT16_ENUM_SIZE; + +typedef enum { + __VerifyUint32EnumValue = 0x7fffffff +} __VERIFY_UINT32_ENUM_SIZE; + +STATIC_ASSERT (sizeof (__VERIFY_UINT8_ENUM_SIZE) == 4, "Size of enum does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (__VERIFY_UINT16_ENUM_SIZE) == 4, "Size of enum does not meet UEFI Specification Data Type requirements"); +STATIC_ASSERT (sizeof (__VERIFY_UINT32_ENUM_SIZE) == 4, "Size of enum does not meet UEFI Specification Data Type requirements"); + +/** + Macro that returns a pointer to the data structure that contains a specified field of + that data structure. This is a lightweight method to hide information by placing a + public data structure inside a larger private data structure and using a pointer to + the public data structure to retrieve a pointer to the private data structure. + + This function computes the offset, in bytes, of field specified by Field from the beginning + of the data structure specified by TYPE. This offset is subtracted from Record, and is + used to return a pointer to a data structure of the type specified by TYPE. If the data type + specified by TYPE does not contain the field specified by Field, then the module will not compile. + + @param Record Pointer to the field specified by Field within a data structure of type TYPE. + @param TYPE The name of the data structure type to return. This data structure must + contain the field specified by Field. + @param Field The name of the field in the data structure specified by TYPE to which Record points. + + @return A pointer to the structure from one of it's elements. + +**/ +#define BASE_CR(Record, TYPE, Field) ((TYPE *) ((CHAR8 *) (Record) - OFFSET_OF (TYPE, Field))) + +/** + Rounds a value up to the next boundary using a specified alignment. + + This function rounds Value up to the next boundary using the specified Alignment. + This aligned value is returned. + + @param Value The value to round up. + @param Alignment The alignment boundary used to return the aligned value. + + @return A value up to the next boundary. + +**/ +#define ALIGN_VALUE(Value, Alignment) ((Value) + (((Alignment) - (Value)) & ((Alignment) - 1))) + +/** + Adjust a pointer by adding the minimum offset required for it to be aligned on + a specified alignment boundary. + + This function rounds the pointer specified by Pointer to the next alignment boundary + specified by Alignment. The pointer to the aligned address is returned. + + @param Pointer The pointer to round up. + @param Alignment The alignment boundary to use to return an aligned pointer. + + @return Pointer to the aligned address. + +**/ +#define ALIGN_POINTER(Pointer, Alignment) ((VOID *) (ALIGN_VALUE ((UINTN)(Pointer), (Alignment)))) + +/** + Rounds a value up to the next natural boundary for the current CPU. + This is 4-bytes for 32-bit CPUs and 8-bytes for 64-bit CPUs. + + This function rounds the value specified by Value up to the next natural boundary for the + current CPU. This rounded value is returned. + + @param Value The value to round up. + + @return Rounded value specified by Value. + +**/ +#define ALIGN_VARIABLE(Value) ALIGN_VALUE ((Value), sizeof (UINTN)) + + +/** + Return the maximum of two operands. + + This macro returns the maximum of two operand specified by a and b. + Both a and b must be the same numerical types, signed or unsigned. + + @param a The first operand with any numerical type. + @param b The second operand. Can be any numerical type as long as is + the same type as a. + + @return Maximum of two operands. + +**/ +#define MAX(a, b) \ + (((a) > (b)) ? (a) : (b)) + +/** + Return the minimum of two operands. + + This macro returns the minimal of two operand specified by a and b. + Both a and b must be the same numerical types, signed or unsigned. + + @param a The first operand with any numerical type. + @param b The second operand. It should be the same any numerical type with a. + + @return Minimum of two operands. + +**/ +#define MIN(a, b) \ + (((a) < (b)) ? (a) : (b)) + +/** + Return the absolute value of a signed operand. + + This macro returns the absolute value of the signed operand specified by a. + + @param a The signed operand. + + @return The absolute value of the signed operand. + +**/ +#define ABS(a) \ + (((a) < 0) ? (-(a)) : (a)) + +// +// Status codes common to all execution phases +// +typedef UINTN RETURN_STATUS; + +/** + Produces a RETURN_STATUS code with the highest bit set. + + @param StatusCode The status code value to convert into a warning code. + StatusCode must be in the range 0x00000000..0x7FFFFFFF. + + @return The value specified by StatusCode with the highest bit set. + +**/ +#define ENCODE_ERROR(StatusCode) ((RETURN_STATUS)(MAX_BIT | (StatusCode))) + +/** + Produces a RETURN_STATUS code with the highest bit clear. + + @param StatusCode The status code value to convert into a warning code. + StatusCode must be in the range 0x00000000..0x7FFFFFFF. + + @return The value specified by StatusCode with the highest bit clear. + +**/ +#define ENCODE_WARNING(StatusCode) ((RETURN_STATUS)(StatusCode)) + +/** + Returns TRUE if a specified RETURN_STATUS code is an error code. + + This function returns TRUE if StatusCode has the high bit set. Otherwise, FALSE is returned. + + @param StatusCode The status code value to evaluate. + + @retval TRUE The high bit of StatusCode is set. + @retval FALSE The high bit of StatusCode is clear. + +**/ +#define RETURN_ERROR(StatusCode) (((INTN)(RETURN_STATUS)(StatusCode)) < 0) + +/// +/// The operation completed successfully. +/// +#define RETURN_SUCCESS 0 + +/// +/// The image failed to load. +/// +#define RETURN_LOAD_ERROR ENCODE_ERROR (1) + +/// +/// The parameter was incorrect. +/// +#define RETURN_INVALID_PARAMETER ENCODE_ERROR (2) + +/// +/// The operation is not supported. +/// +#define RETURN_UNSUPPORTED ENCODE_ERROR (3) + +/// +/// The buffer was not the proper size for the request. +/// +#define RETURN_BAD_BUFFER_SIZE ENCODE_ERROR (4) + +/// +/// The buffer was not large enough to hold the requested data. +/// The required buffer size is returned in the appropriate +/// parameter when this error occurs. +/// +#define RETURN_BUFFER_TOO_SMALL ENCODE_ERROR (5) + +/// +/// There is no data pending upon return. +/// +#define RETURN_NOT_READY ENCODE_ERROR (6) + +/// +/// The physical device reported an error while attempting the +/// operation. +/// +#define RETURN_DEVICE_ERROR ENCODE_ERROR (7) + +/// +/// The device can not be written to. +/// +#define RETURN_WRITE_PROTECTED ENCODE_ERROR (8) + +/// +/// The resource has run out. +/// +#define RETURN_OUT_OF_RESOURCES ENCODE_ERROR (9) + +/// +/// An inconsistency was detected on the file system causing the +/// operation to fail. +/// +#define RETURN_VOLUME_CORRUPTED ENCODE_ERROR (10) + +/// +/// There is no more space on the file system. +/// +#define RETURN_VOLUME_FULL ENCODE_ERROR (11) + +/// +/// The device does not contain any medium to perform the +/// operation. +/// +#define RETURN_NO_MEDIA ENCODE_ERROR (12) + +/// +/// The medium in the device has changed since the last +/// access. +/// +#define RETURN_MEDIA_CHANGED ENCODE_ERROR (13) + +/// +/// The item was not found. +/// +#define RETURN_NOT_FOUND ENCODE_ERROR (14) + +/// +/// Access was denied. +/// +#define RETURN_ACCESS_DENIED ENCODE_ERROR (15) + +/// +/// The server was not found or did not respond to the request. +/// +#define RETURN_NO_RESPONSE ENCODE_ERROR (16) + +/// +/// A mapping to the device does not exist. +/// +#define RETURN_NO_MAPPING ENCODE_ERROR (17) + +/// +/// A timeout time expired. +/// +#define RETURN_TIMEOUT ENCODE_ERROR (18) + +/// +/// The protocol has not been started. +/// +#define RETURN_NOT_STARTED ENCODE_ERROR (19) + +/// +/// The protocol has already been started. +/// +#define RETURN_ALREADY_STARTED ENCODE_ERROR (20) + +/// +/// The operation was aborted. +/// +#define RETURN_ABORTED ENCODE_ERROR (21) + +/// +/// An ICMP error occurred during the network operation. +/// +#define RETURN_ICMP_ERROR ENCODE_ERROR (22) + +/// +/// A TFTP error occurred during the network operation. +/// +#define RETURN_TFTP_ERROR ENCODE_ERROR (23) + +/// +/// A protocol error occurred during the network operation. +/// +#define RETURN_PROTOCOL_ERROR ENCODE_ERROR (24) + +/// +/// A function encountered an internal version that was +/// incompatible with a version requested by the caller. +/// +#define RETURN_INCOMPATIBLE_VERSION ENCODE_ERROR (25) + +/// +/// The function was not performed due to a security violation. +/// +#define RETURN_SECURITY_VIOLATION ENCODE_ERROR (26) + +/// +/// A CRC error was detected. +/// +#define RETURN_CRC_ERROR ENCODE_ERROR (27) + +/// +/// The beginning or end of media was reached. +/// +#define RETURN_END_OF_MEDIA ENCODE_ERROR (28) + +/// +/// The end of the file was reached. +/// +#define RETURN_END_OF_FILE ENCODE_ERROR (31) + +/// +/// The language specified was invalid. +/// +#define RETURN_INVALID_LANGUAGE ENCODE_ERROR (32) + +/// +/// The security status of the data is unknown or compromised +/// and the data must be updated or replaced to restore a valid +/// security status. +/// +#define RETURN_COMPROMISED_DATA ENCODE_ERROR (33) + +/// +/// A HTTP error occurred during the network operation. +/// +#define RETURN_HTTP_ERROR ENCODE_ERROR (35) + +/// +/// The string contained one or more characters that +/// the device could not render and were skipped. +/// +#define RETURN_WARN_UNKNOWN_GLYPH ENCODE_WARNING (1) + +/// +/// The handle was closed, but the file was not deleted. +/// +#define RETURN_WARN_DELETE_FAILURE ENCODE_WARNING (2) + +/// +/// The handle was closed, but the data to the file was not +/// flushed properly. +/// +#define RETURN_WARN_WRITE_FAILURE ENCODE_WARNING (3) + +/// +/// The resulting buffer was too small, and the data was +/// truncated to the buffer size. +/// +#define RETURN_WARN_BUFFER_TOO_SMALL ENCODE_WARNING (4) + +/// +/// The data has not been updated within the timeframe set by +/// local policy for this type of data. +/// +#define RETURN_WARN_STALE_DATA ENCODE_WARNING (5) + +/// +/// The resulting buffer contains UEFI-compliant file system. +/// +#define RETURN_WARN_FILE_SYSTEM ENCODE_WARNING (6) + + +/** + Returns a 16-bit signature built from 2 ASCII characters. + + This macro returns a 16-bit value built from the two ASCII characters specified + by A and B. + + @param A The first ASCII character. + @param B The second ASCII character. + + @return A 16-bit value built from the two ASCII characters specified by A and B. + +**/ +#define SIGNATURE_16(A, B) ((A) | (B << 8)) + +/** + Returns a 32-bit signature built from 4 ASCII characters. + + This macro returns a 32-bit value built from the four ASCII characters specified + by A, B, C, and D. + + @param A The first ASCII character. + @param B The second ASCII character. + @param C The third ASCII character. + @param D The fourth ASCII character. + + @return A 32-bit value built from the two ASCII characters specified by A, B, + C and D. + +**/ +#define SIGNATURE_32(A, B, C, D) (SIGNATURE_16 (A, B) | (SIGNATURE_16 (C, D) << 16)) + +/** + Returns a 64-bit signature built from 8 ASCII characters. + + This macro returns a 64-bit value built from the eight ASCII characters specified + by A, B, C, D, E, F, G,and H. + + @param A The first ASCII character. + @param B The second ASCII character. + @param C The third ASCII character. + @param D The fourth ASCII character. + @param E The fifth ASCII character. + @param F The sixth ASCII character. + @param G The seventh ASCII character. + @param H The eighth ASCII character. + + @return A 64-bit value built from the two ASCII characters specified by A, B, + C, D, E, F, G and H. + +**/ +#define SIGNATURE_64(A, B, C, D, E, F, G, H) \ + (SIGNATURE_32 (A, B, C, D) | ((UINT64) (SIGNATURE_32 (E, F, G, H)) << 32)) + +#if defined(_MSC_EXTENSIONS) && !defined (__INTEL_COMPILER) && !defined (MDE_CPU_EBC) + void * _ReturnAddress(void); + #pragma intrinsic(_ReturnAddress) + /** + Get the return address of the calling function. + + Based on intrinsic function _ReturnAddress that provides the address of + the instruction in the calling function that will be executed after + control returns to the caller. + + @param L Return Level. + + @return The return address of the calling function or 0 if L != 0. + + **/ + #define RETURN_ADDRESS(L) ((L == 0) ? _ReturnAddress() : (VOID *) 0) +#elif defined (__GNUC__) || defined (__clang__) + void * __builtin_return_address (unsigned int level); + /** + Get the return address of the calling function. + + Based on built-in Function __builtin_return_address that returns + the return address of the current function, or of one of its callers. + + @param L Return Level. + + @return The return address of the calling function. + + **/ + #define RETURN_ADDRESS(L) __builtin_return_address (L) +#else + /** + Get the return address of the calling function. + + @param L Return Level. + + @return 0 as compilers don't support this feature. + + **/ + #define RETURN_ADDRESS(L) ((VOID *) 0) +#endif + +/** + Return the number of elements in an array. + + @param Array An object of array type. Array is only used as an argument to + the sizeof operator, therefore Array is never evaluated. The + caller is responsible for ensuring that Array's type is not + incomplete; that is, Array must have known constant size. + + @return The number of elements in Array. The result has type UINTN. + +**/ +#define ARRAY_SIZE(Array) (sizeof (Array) / sizeof ((Array)[0])) + +#endif diff --git a/PosixEFICompilation/UefiMock/Globals.cpp b/PosixEFICompilation/UefiMock/Globals.cpp new file mode 100644 index 0000000000..996a3ce7ba --- /dev/null +++ b/PosixEFICompilation/UefiMock/Globals.cpp @@ -0,0 +1,27 @@ +// +// Globals.c +// cpp_tests_compare_settings +// +// Created by Jief on 05/02/2021. +// Copyright © 2021 Jief_Machak. All rights reserved. +// + +#include +#include + +//EFI_HANDLE gImageHandle = NULL; +//EFI_SYSTEM_TABLE *gST = NULL; +//EFI_BOOT_SERVICES *gBS = NULL; +//EFI_RUNTIME_SERVICES *gRT = NULL; +//EFI_DXE_SERVICES *gDS = NULL; + +static class Init { + public: + Init() { + gImageHandle = NULL; + gST = NULL; + gBS = NULL; + gRT = NULL; + gDS = NULL; + } +} init; diff --git a/PosixEFICompilation/UefiMock/Library/BaseMemoryLib.c b/PosixEFICompilation/UefiMock/Library/BaseMemoryLib.c new file mode 100644 index 0000000000..238763e3e6 --- /dev/null +++ b/PosixEFICompilation/UefiMock/Library/BaseMemoryLib.c @@ -0,0 +1,174 @@ +// +// BaseMemoryLib.c +// cpp_tests UTF16 signed char +// +// Created by Jief on 12/10/2020. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#include +#include +//#include "../../../../MdePkg/Library/BaseMemoryLib/MemLibInternals.h" +#include + + +void* SetMem(void *Destination, UINTN Length, UINT8 c) +{ + return memset(Destination, c, (size_t)Length); +} + +VOID * +EFIAPI +SetMem32 ( + OUT VOID *Buffer, + IN UINTN Length, + IN UINT32 Value + ) +{ + for( uint32_t i = 0 ; i < Length/sizeof(Value) ; i++ ) + { + ((__typeof__(&Value))Buffer)[i] = Value; + } + return Buffer; +} + +VOID * +EFIAPI +SetMem64 ( + OUT VOID *Buffer, + IN UINTN Length, + IN UINT64 Value + ) +{ + for( uint32_t i = 0 ; i < Length/sizeof(Value) ; i++ ) + { + ((__typeof__(&Value))Buffer)[i] = Value; + } + return Buffer; +} + +INTN CompareMem(const void* DestinationBuffer, const void* SourceBuffer, UINTN Length) +{ + return memcmp(SourceBuffer, DestinationBuffer, Length); +} + +void* CopyMem(void *Destination, const void *Source, UINTN Length) +{ + return memmove(Destination, Source, (size_t)Length); +} + +void* ZeroMem(void *Destination, UINTN Length) +{ + return memset(Destination, 0, (size_t)Length); +} + +BOOLEAN +EFIAPI +CompareGuid ( + IN CONST GUID *Guid1, + IN CONST GUID *Guid2 + ) +{ + UINT64 LowPartOfGuid1; + UINT64 LowPartOfGuid2; + UINT64 HighPartOfGuid1; + UINT64 HighPartOfGuid2; + + LowPartOfGuid1 = * ((CONST UINT64*) Guid1); + LowPartOfGuid2 = * ((CONST UINT64*) Guid2); + HighPartOfGuid1 = * ((CONST UINT64*) Guid1 + 1); + HighPartOfGuid2 = * ((CONST UINT64*) Guid2 + 1); + + return (BOOLEAN) (LowPartOfGuid1 == LowPartOfGuid2 && HighPartOfGuid1 == HighPartOfGuid2); +} + +GUID * +EFIAPI +CopyGuid ( + OUT GUID *DestinationGuid, + IN CONST GUID *SourceGuid + ) +{ + *DestinationGuid = *SourceGuid; + return DestinationGuid; +} + +BOOLEAN +EFIAPI +IsZeroGuid ( + IN CONST GUID *Guid + ) +{ + UINT64 LowPartOfGuid; + UINT64 HighPartOfGuid; + + LowPartOfGuid = * ((CONST UINT64*) Guid); + HighPartOfGuid = * ((CONST UINT64*) Guid + 1); + + return (BOOLEAN) (LowPartOfGuid == 0 && HighPartOfGuid == 0); +} + +VOID * +EFIAPI +ScanGuid ( + IN CONST VOID *Buffer, + IN UINTN Length, + IN CONST GUID *Guid + ) +{ + CONST GUID *GuidPtr; + + ASSERT (((UINTN)Buffer & (sizeof (Guid->Data1) - 1)) == 0); + ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1)); + ASSERT ((Length & (sizeof (*GuidPtr) - 1)) == 0); + + GuidPtr = (GUID*)Buffer; + Buffer = GuidPtr + Length / sizeof (*GuidPtr); + while (GuidPtr < (CONST GUID*)Buffer) { + if (CompareGuid (GuidPtr, Guid)) { + return (VOID*)GuidPtr; + } + GuidPtr++; + } + return NULL; +} + +CONST VOID * +EFIAPI +InternalMemScanMem16 ( + IN CONST VOID *Buffer, + IN UINTN Length, + IN UINT16 Value + ) +{ + CONST UINT16 *Pointer; + + Pointer = (CONST UINT16*)Buffer; + do { + if (*Pointer == Value) { + return Pointer; + } + ++Pointer; + } while (--Length != 0); + return NULL; +} + +VOID * +EFIAPI +ScanMem16 ( + IN CONST VOID *Buffer, + IN UINTN Length, + IN UINT16 Value + ) +{ + if (Length == 0) { + return NULL; + } + + ASSERT (Buffer != NULL); + ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0); + ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer)); + ASSERT ((Length & (sizeof (Value) - 1)) == 0); + + return (VOID*)InternalMemScanMem16 (Buffer, Length / sizeof (Value), Value); +} diff --git a/PosixEFICompilation/UefiMock/Library/DebugLib.c b/PosixEFICompilation/UefiMock/Library/DebugLib.c new file mode 100644 index 0000000000..262ffe0d57 --- /dev/null +++ b/PosixEFICompilation/UefiMock/Library/DebugLib.c @@ -0,0 +1,115 @@ +// +// DebugLib.c +// cpp_tests UTF16 signed char +// +// Created by Jief on 12/10/2020. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#include +#include + +/** + Prints an assert message containing a filename, line number, and description. + This may be followed by a breakpoint or a dead loop. + + Print a message of the form "ASSERT (): \n" + to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of + PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if + DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then + CpuDeadLoop() is called. If neither of these bits are set, then this function + returns immediately after the message is printed to the debug output device. + DebugAssert() must actively prevent recursion. If DebugAssert() is called while + processing another DebugAssert(), then DebugAssert() must return immediately. + + If FileName is NULL, then a string of "(NULL) Filename" is printed. + If Description is NULL, then a string of "(NULL) Description" is printed. + + @param FileName The pointer to the name of the source file that generated the assert condition. + @param LineNumber The line number in the source file that generated the assert condition + @param Description The pointer to the description of the assert condition. + +**/ +VOID +EFIAPI +DebugAssert ( + IN CONST CHAR8 *FileName, + IN UINTN LineNumber, + IN CONST CHAR8 *Description + ) +{ +// panic(); +// panic("ouch\n"); + panic("%s %llu %s\n", FileName, LineNumber, Description); +} + + +/** + Returns TRUE if ASSERT() macros are enabled. + + This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of + PcdDebugProperyMask is set. Otherwise, FALSE is returned. + + @retval TRUE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set. + @retval FALSE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear. + +**/ +BOOLEAN +EFIAPI +DebugAssertEnabled ( + VOID + ) +{ + return TRUE; +} +RETURN_STATUS +EFIAPI +BaseDebugLibSerialPortConstructor ( + VOID + ) +{ + return EFI_SUCCESS; +} +VOID +EFIAPI +DebugPrint ( + IN UINTN ErrorLevel, + IN CONST CHAR8 *Format, + ... + ) +{ + VA_LIST Marker; + + VA_START (Marker, Format); + vprintf(Format, Marker); + VA_END (Marker); +} + +BOOLEAN +EFIAPI +DebugCodeEnabled ( + VOID + ) +{ + return TRUE; +} + +BOOLEAN gDebugPrintEnabled = 0; + +BOOLEAN +EFIAPI +DebugPrintEnabled ( + VOID + ) +{ + return gDebugPrintEnabled; +} + +BOOLEAN +EFIAPI +DebugPrintLevelEnabled ( + IN CONST UINTN ErrorLevel + ) +{ + return TRUE; +} diff --git a/PosixEFICompilation/UefiMock/Library/MemoryAllocationLib.c b/PosixEFICompilation/UefiMock/Library/MemoryAllocationLib.c new file mode 100644 index 0000000000..c769d0f4e3 --- /dev/null +++ b/PosixEFICompilation/UefiMock/Library/MemoryAllocationLib.c @@ -0,0 +1,84 @@ +// +// MemoryAllocationLib.c +// cpp_tests UTF16 signed char +// +// Created by Jief on 30/01/2021. +// Copyright © 2021 Jief_Machak. All rights reserved. +// + +#include + + +void* AllocatePool(UINTN AllocationSize) +{ + return (void*)malloc((size_t)AllocationSize); +} + +void* AllocateZeroPool(UINTN AllocationSize) +{ + void* p = (void*)malloc((size_t)AllocationSize); + memset(p, 0, (size_t)AllocationSize); + return p; +} + +void* AllocateCopyPool (UINTN AllocationSize, CONST VOID *Buffer) +{ + void* p = malloc(AllocationSize); + memcpy(p, Buffer, AllocationSize); + return p; +} + +void* ReallocatePool(UINTN OldSize, UINTN NewSize, void* OldBuffer) +{ + (void)OldSize; + if ( !OldBuffer ) return AllocatePool(NewSize); + return (void*)realloc(OldBuffer, (size_t)NewSize); +} + +void FreePool(IN VOID *Buffer) +{ + free((void*)Buffer); +} + +//#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-parameter" + +VOID * +EFIAPI +AllocateAlignedPages ( + IN UINTN Pages, + IN UINTN Alignment + ) +{ + panic("not yet"); +} + + +VOID +EFIAPI +FreeAlignedPages ( + IN VOID *Buffer, + IN UINTN Pages + ) +{ + panic("not yet"); +} + +VOID * +EFIAPI +AllocatePages ( + IN UINTN Pages + ) +{ + panic("not yet"); +} + +VOID +EFIAPI +FreePages ( + IN VOID *Buffer, + IN UINTN Pages + ) +{ + panic("not yet"); +} diff --git a/PosixEFICompilation/UefiMock/Library/PrintLib.c b/PosixEFICompilation/UefiMock/Library/PrintLib.c new file mode 100644 index 0000000000..28d3159380 --- /dev/null +++ b/PosixEFICompilation/UefiMock/Library/PrintLib.c @@ -0,0 +1,93 @@ +// +// PrintLib.c +// cpp_tests +// +// Created by Jief on 30/01/2021. +// Copyright © 2021 Jief_Machak. All rights reserved. +// + +#include + +UINTN +EFIAPI +AsciiSPrint ( + OUT CHAR8 *StartOfBuffer, + IN UINTN BufferSize, + IN CONST CHAR8 *FormatString, + ... + ) +{ + va_list va; + va_start(va, FormatString); + int ret = vsnprintf(StartOfBuffer, BufferSize, FormatString, va); + va_end(va); + return (UINTN)ret; // vsnprintf seems to always return >= 0. So cast should be safe. +} + +UINTN +EFIAPI +AsciiBSPrint ( + OUT CHAR8 *StartOfBuffer, + IN UINTN BufferSize, + IN CONST CHAR8 *FormatString, + IN BASE_LIST Marker + ) +{ + panic("not yet"); +} + +UINTN +EFIAPI +AsciiVSPrint ( + OUT CHAR8 *StartOfBuffer, + IN UINTN BufferSize, + IN CONST CHAR8 *FormatString, + IN VA_LIST Marker + ) +{ + panic("not yet"); +} + +UINTN +EFIAPI +SPrintLength ( + IN CONST CHAR16 *FormatString, + IN VA_LIST Marker + ) +{ + panic("not yet"); +} + +UINTN +EFIAPI +SPrintLengthAsciiFormat ( + IN CONST CHAR8 *FormatString, + IN VA_LIST Marker + ) +{ + panic("not yet"); +} + +UINTN +EFIAPI +UnicodeSPrint ( + OUT CHAR16 *StartOfBuffer, + IN UINTN BufferSize, + IN CONST CHAR16 *FormatString, + ... + ) +{ + panic("not yet"); +} + +UINTN +EFIAPI +UnicodeVSPrint ( + OUT CHAR16 *StartOfBuffer, + IN UINTN BufferSize, + IN CONST CHAR16 *FormatString, + IN VA_LIST Marker + ) +{ + panic("not yet"); +} diff --git a/PosixCompilation/relink_release_libs b/PosixEFICompilation/relink_release_libs similarity index 100% rename from PosixCompilation/relink_release_libs rename to PosixEFICompilation/relink_release_libs diff --git a/PosixEFICompilation/xcode_utf_fixed.cpp b/PosixEFICompilation/xcode_utf_fixed.cpp new file mode 100644 index 0000000000..885e1b6ebe --- /dev/null +++ b/PosixEFICompilation/xcode_utf_fixed.cpp @@ -0,0 +1,269 @@ +// +// wfunction.hpp +// cpp_tests +// +// Created by jief on 15.03.20. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +/* + * clang had poisoned identifier like wcslen. + * It's not possible to define a function with that name, not even a macro... except on the command line. + * So, for this to work, pass macro definition argument on command line : wcslen=wcslen_fixed wcscmp=__wcscmp_is_disabled__ wcsncmp=wcsncmp_fixed wcsstr=wcsstr_fixed + */ + +/* + * 2021, Mojave. + * wcslen, wcsncmp seems fixed ! + * wcsstr is NOT. + * printf with %ls is not. + * wprintf is not. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +//#include "../../../Include/Library/printf_lite.h" +#include "../../../rEFIt_UEFI/Platform/BootLog.h" + +#include "xcode_utf_fixed.h" + +/* few tests for debug purpose */ +extern "C" void xcode_utf_fixed_tests() +{ + setlocale(LC_ALL, "en_US"); // to allow printf unicode char + + printf("sizeof(wchar_t)=%zu\n", sizeof(wchar_t)); + printf("sizeof(size_t)=%zu\n", sizeof(size_t)); + printf("sizeof(long)=%zu\n", sizeof(long)); + printf("sizeof(long long)=%zu\n", sizeof(long long)); + printf("sizeof(size_t)=%zu\n", sizeof(size_t)); + #ifndef _MSC_VER + //printf("%zu\n", (size_t)MAX_UINT64); + //printf("%zd\n", (size_t)MAX_UINT64); + #endif + printf("%lc\n", L'Ľ'); + + #if PRINTF_LITE_REPLACE_STANDARD_FUNCTION == 1 + printf("%ls\n", L"Hello world1"); + char buf[50]; + snprintf(buf, 50, "%ls", L"Hello world2"); + printf("%s\n", buf); + wprintf(L"%ls\n", L"Hello world൧楔"); + #endif + + uint64_t uint64 = 1; + printf("Hello world൧楔 %llu \n", uint64); + DebugLog(2, "Hello world൧楔 %llu \n", uint64); + + size_t len1 = wcslen(L"Hell൧楔o world൧楔"); + size_t len1f = wcslen_fixed(L"Hell൧楔o world൧楔"); + printf("len1 = %zu, len1f = %zd\n", len1, len1f); + + int cmp1 = wcsncmp(L"12楔34", L"12楔35", 4); + int cmp1f = wcsncmp_fixed(L"12楔34", L"12楔35", 4); + printf("cmp1 = %d, cmp1f = %d\n", cmp1, cmp1f); + + { + const wchar_t* str = L"12ク34"; + const wchar_t* strstr1 = wcsstr(str, L"ク"); + const wchar_t* strstr1f = wcsstr_fixed(str, L"ク"); + printf("strstr1 = %ld, strstr1f = %ld\n", strstr1-str, strstr1f-str); + } + + printf("\n\n\n"); + +// char32_t c32 = (int)-1; +} + + +#include "xcode_utf_fixed.h" + + +#if __WCHAR_MAX__ < 0x10000 + +#undef wcslen +extern "C" size_t wcslen(const wchar_t *); +#undef wcscmp +extern "C" int wcscmp(const wchar_t *s1, const wchar_t * s2); +#undef wcsncmp +extern "C" int wcsncmp(const wchar_t *, const wchar_t *, size_t); +#undef wcsstr +extern "C" wchar_t *wcsstr(const wchar_t *, const wchar_t *); + +static int is_surrogate(char16_t uc) { return (uc - 0xd800u) < 2048u; } +static int is_high_surrogate(char16_t uc) { return (uc & 0xfffffc00) == 0xd800; } +static int is_low_surrogate(char16_t uc) { return (uc & 0xfffffc00) == 0xdc00; } + +static char32_t surrogate_to_utf32(char16_t high, char16_t low) { + return char32_t((high << 10) + low - 0x35fdc00); // Safe cast, it fits in 32 bits +} + +static void convert_utf16_to_utf32(const char16_t* input, size_t input_size, std::vector* output) +{ + const char16_t* const end = input + input_size; + while (input < end && *input) { + const char16_t uc = *input++; + if (!is_surrogate(uc)) { + (*output).push_back(uc); + } else { + if (is_high_surrogate(uc) && input < end && is_low_surrogate(*input)) + (*output).push_back(surrogate_to_utf32(uc, *input++)); + else { + // ERROR + } + } + } + (*output).push_back(0); +} + +std::string to_utf8(const char16_t* s) +{ + std::wstring_convert, char16_t> conv; + return conv.to_bytes(s); +} + +#else + +std::string to_utf8(const char32_t* s) +{ + std::wstring_convert, char32_t> conv; + return conv.to_bytes(s); +} + +#endif + +size_t wcslen_fixed(const wchar_t *s) +{ +#if __WCHAR_MAX__ >= 0x10000 + return wcslen(s); +#else + // wcslen seems not to work if sizeof(wchar_t) == 2 + const wchar_t* p; + for ( p = s ; *p ; p++ ); + return (size_t)(p-s); +#endif + +} + +int wcsncmp_fixed(const wchar_t *s1, const wchar_t * s2, size_t n) +{ +#if __WCHAR_MAX__ >= 0x10000 + return wcsncmp(s1, s2, n); +#else + // Looks like wcscmp doesn't work with Utf16, even if compiled with -fshort-wchar. + // So conversion to Utf32 needed first. + + std::vector s1Utf32; + std::vector s2Utf32; + + convert_utf16_to_utf32((const char16_t*)s1, n, &s1Utf32); + convert_utf16_to_utf32((const char16_t*)s2, n, &s2Utf32); + + // we don't know the new value of n (x UTF16 chars is not x*2 UTF32 chars), so we can't call wcsncmp + // but that's ok because we converted only n UTF16 chars in the call of convert_utf16_to_utf32 + int ret = wcscmp((const wchar_t*)s1Utf32.data(), (const wchar_t*)s2Utf32.data()); + return ret; +#endif +} + +#ifdef _LIBCPP_WCHAR_H +wchar_t* wcsstr_fixed(const wchar_t* haystack, const wchar_t* needle) +#else +wchar_t* wcsstr_fixed(const wchar_t* haystack, const wchar_t* needle) +#endif +{ +#if __WCHAR_MAX__ >= 0x10000 + return (wchar_t*)wcsstr(haystack, needle); +#else + // Looks like wcscmp doesn't work with Utf16, even if compiled with -fshort-wchar. + // So conversion to Utf32 needed first. + + + const wchar_t *a = haystack, *b = needle; + for (;;) + if (!*b) return (wchar_t*)(a - wcslen_fixed(needle)); + else if (!*a) return NULL; + else if (*a++ != *b++) { a = ++haystack; b = needle;} + +#endif +} + +/* + * macOS 10.15 define vsnprintf as a macro that calls __vsnprintf_chk + */ +extern "C" int __vsnprintf_chk (char* buf, size_t len, int check, size_t size, const char* format, va_list va) +{ + (void)check; + (void)size; + return PRINTF_FUNCTION_NAME(PRINTF_CFUNCTION_PREFIX, vsnprint, PRINTF_CFUNCTION_SUFFIX)(buf, len, format, va); +} + +#if PRINTF_LITE_REPLACE_STANDARD_FUNCTION == 1 +extern "C" int printf(const char* format, ...) +{ + int ret; + #if __WCHAR_MAX__ <= 0xFFFF + va_list va; + va_start(va, format); + char buf[4095]; + ret = PRINTF_FUNCTION_NAME(PRINTF_CFUNCTION_PREFIX, vsnprint, PRINTF_CFUNCTION_SUFFIX)(buf, sizeof(buf)-1, format, va); + write(1, buf, strlen(buf)); + va_end(va); + #else + va_list va; + va_start(va, format); + ret = vprintf(format, va); + va_end(va); + #endif + return ret; +} + +#if __WCHAR_MAX__ <= 0xFFFF +extern "C" int vprintf(const char* format, va_list va) +{ + int ret; + char buf[4095]; + ret = PRINTF_FUNCTION_NAME(PRINTF_CFUNCTION_PREFIX, vsnprint, PRINTF_CFUNCTION_SUFFIX)(buf, sizeof(buf)-1, format, va); + write(1, buf, strlen(buf)); + return ret; +} +#endif +#endif + +//extern "C" int snprintf(char * __restrict buf, size_t len, const char * __restrict format, ...) +//{ +// int ret = PRINTF_FUNCTION_NAME(PRINTF_CFUNCTION_PREFIX, snprint, PRINTF_CFUNCTION_SUFFIX)(buf, sizeof(buf)-1, format); +// return ret; +//} + +int wprintf(const wchar_t* wformat, ...) +{ + int ret; + #if __WCHAR_MAX__ <= 0xFFFF + std::string format = to_utf8((char16_t*)wformat); + wchar_t wbuf[4095]; + + va_list va; + va_start(va, wformat); + ret = PRINTF_FUNCTION_NAME(PRINTF_CFUNCTION_PREFIX, vsnwprint, PRINTF_CFUNCTION_SUFFIX)(wbuf, sizeof(wbuf)-1, format.c_str(), va); + va_end(va); + std::string buf = to_utf8((char16_t*)wbuf); + write(1, buf.c_str(), buf.length()); + #else + std::string format = to_utf8((char32_t*)wformat); + wchar_t wbuf[4095]; + va_list va; + va_start(va, wformat); + ret = PRINTF_FUNCTION_NAME(PRINTF_CFUNCTION_PREFIX, vsnwprint, PRINTF_CFUNCTION_SUFFIX)(wbuf, sizeof(wbuf)-1, format.c_str(), va); + va_end(va); + std::string buf = to_utf8((char32_t*)wbuf); + write(1, buf.c_str(), buf.length()); + #endif + return ret; +} diff --git a/PosixEFICompilation/xcode_utf_fixed.h b/PosixEFICompilation/xcode_utf_fixed.h new file mode 100644 index 0000000000..970a904712 --- /dev/null +++ b/PosixEFICompilation/xcode_utf_fixed.h @@ -0,0 +1,36 @@ +// +// wfunction.hpp +// cpp_tests +// +// Created by jief on 15.03.20. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#ifndef __xcode_utf16_h__ +#define __xcode_utf16_h__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +/* + * all the functions w... seems to expect utf32 even when compiled with short-wchar + */ + +size_t wcslen_fixed(const wchar_t *s); +int wcsncmp_fixed(const wchar_t *s1, const wchar_t * s2, size_t n); +#ifdef _LIBCPP_WCHAR_H +wchar_t* wcsstr_fixed(const wchar_t* haystack, const wchar_t* needle); +#else +wchar_t* wcsstr_fixed(const wchar_t* haystack, const wchar_t* needle); +#endif + +void xcode_utf_fixed_tests(void); + + +#ifdef __cplusplus +} +#endif + +#endif /* wfunction_hpp */ diff --git a/Xcode/CloverMacOsApp/.gitignore b/Xcode/CloverMacOsApp/.gitignore new file mode 100644 index 0000000000..680c8ed03e --- /dev/null +++ b/Xcode/CloverMacOsApp/.gitignore @@ -0,0 +1,2 @@ +/Gcc92-Debug/ +/Clang-Debug/ \ No newline at end of file diff --git a/Xcode/CloverMacOsApp/Build CloverX64TestNewParser-UTF16_signed-DebugLibs_2023-11-12T13-22-36.txt b/Xcode/CloverMacOsApp/Build CloverX64TestNewParser-UTF16_signed-DebugLibs_2023-11-12T13-22-36.txt new file mode 100644 index 0000000000..7cacd38f76 --- /dev/null +++ b/Xcode/CloverMacOsApp/Build CloverX64TestNewParser-UTF16_signed-DebugLibs_2023-11-12T13-22-36.txt @@ -0,0 +1,25 @@ + +Showing Recent Messages + +Prepare build +note: Building targets in dependency order + + +Building targets in dependency order + +Computing target dependency graph and provisioning inputs + +Create build description +Build description signature: 2b6774c265cfe3de315e98eade02c001 +Build description path: /JiefLand/5.Devel/Clover/Clover-projects/Clover--CloverHackyColor--master.2/Xcode/cpp_tests_new/DerivedData/CloverX64TestNewParser/Build/Intermediates.noindex/XCBuildData/2b6774c265cfe3de315e98eade02c001-desc.xcbuild + + +Build target CloverX64TestNewParser-UTF16_signed-DebugLibs of project CloverX64TestNewParser with configuration Debug +error: unable to find sdk 'macosx10.14' (in target 'CloverX64TestNewParser-UTF16_signed-DebugLibs' from project 'CloverX64TestNewParser') + + +unable to find sdk 'macosx10.14' + + + +Build failed 2023/11/12 13:22 0.3 seconds diff --git a/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/project.pbxproj b/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..45c9125c08 --- /dev/null +++ b/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/project.pbxproj @@ -0,0 +1,18066 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 9A071C47261A44080007CC44 /* XmlLiteArrayTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C41261A44070007CC44 /* XmlLiteArrayTypes.cpp */; }; + 9A071C48261A44080007CC44 /* XmlLiteUnionTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C42261A44070007CC44 /* XmlLiteUnionTypes.cpp */; }; + 9A071C49261A44080007CC44 /* XmlLiteDictTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C44261A44080007CC44 /* XmlLiteDictTypes.cpp */; }; + 9A0B085E240300E000E2B470 /* Platform.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0B085D240300E000E2B470 /* Platform.cpp */; }; + 9A0D113825FF58420040555F /* strcasecmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0D113625FF583F0040555F /* strcasecmp_test.cpp */; }; + 9A0F0A272B0BD0B600F9BC7C /* xcode_utf_fixed.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF47D2B0BD09C00F9BC7C /* xcode_utf_fixed.cpp */; }; + 9A0F0A282B0BD0B600F9BC7C /* xcode_utf_fixed.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF47D2B0BD09C00F9BC7C /* xcode_utf_fixed.cpp */; }; + 9A0F0A292B0BD0B600F9BC7C /* xcode_utf_fixed.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF47D2B0BD09C00F9BC7C /* xcode_utf_fixed.cpp */; }; + 9A0F0A2A2B0BD0B600F9BC7C /* OcDataHubLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4802B0BD09C00F9BC7C /* OcDataHubLib.lib */; }; + 9A0F0A2B2B0BD0B600F9BC7C /* OcDataHubLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4802B0BD09C00F9BC7C /* OcDataHubLib.lib */; }; + 9A0F0A2C2B0BD0B600F9BC7C /* OcDataHubLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4802B0BD09C00F9BC7C /* OcDataHubLib.lib */; }; + 9A0F0A2D2B0BD0B600F9BC7C /* OcXmlLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4812B0BD09C00F9BC7C /* OcXmlLib.lib */; }; + 9A0F0A2E2B0BD0B600F9BC7C /* OcXmlLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4812B0BD09C00F9BC7C /* OcXmlLib.lib */; }; + 9A0F0A2F2B0BD0B600F9BC7C /* OcXmlLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4812B0BD09C00F9BC7C /* OcXmlLib.lib */; }; + 9A0F0A302B0BD0B600F9BC7C /* OcConfigurationLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4822B0BD09C00F9BC7C /* OcConfigurationLib.lib */; }; + 9A0F0A312B0BD0B600F9BC7C /* OcConfigurationLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4822B0BD09C00F9BC7C /* OcConfigurationLib.lib */; }; + 9A0F0A322B0BD0B600F9BC7C /* OcConfigurationLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4822B0BD09C00F9BC7C /* OcConfigurationLib.lib */; }; + 9A0F0A332B0BD0B600F9BC7C /* OcStorageLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4842B0BD09C00F9BC7C /* OcStorageLib.lib */; }; + 9A0F0A342B0BD0B600F9BC7C /* OcStorageLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4842B0BD09C00F9BC7C /* OcStorageLib.lib */; }; + 9A0F0A352B0BD0B600F9BC7C /* OcStorageLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4842B0BD09C00F9BC7C /* OcStorageLib.lib */; }; + 9A0F0A362B0BD0B600F9BC7C /* OcVirtualFsLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4852B0BD09C00F9BC7C /* OcVirtualFsLib.lib */; }; + 9A0F0A372B0BD0B600F9BC7C /* OcVirtualFsLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4852B0BD09C00F9BC7C /* OcVirtualFsLib.lib */; }; + 9A0F0A382B0BD0B600F9BC7C /* OcVirtualFsLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4852B0BD09C00F9BC7C /* OcVirtualFsLib.lib */; }; + 9A0F0A392B0BD0B600F9BC7C /* OcAppleEventLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4862B0BD09C00F9BC7C /* OcAppleEventLib.lib */; }; + 9A0F0A3A2B0BD0B600F9BC7C /* OcAppleEventLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4862B0BD09C00F9BC7C /* OcAppleEventLib.lib */; }; + 9A0F0A3B2B0BD0B600F9BC7C /* OcAppleEventLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4862B0BD09C00F9BC7C /* OcAppleEventLib.lib */; }; + 9A0F0A3C2B0BD0B600F9BC7C /* OcCryptoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4872B0BD09C00F9BC7C /* OcCryptoLib.lib */; }; + 9A0F0A3D2B0BD0B600F9BC7C /* OcCryptoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4872B0BD09C00F9BC7C /* OcCryptoLib.lib */; }; + 9A0F0A3E2B0BD0B600F9BC7C /* OcCryptoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4872B0BD09C00F9BC7C /* OcCryptoLib.lib */; }; + 9A0F0A3F2B0BD0B600F9BC7C /* OcAudioLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4882B0BD09C00F9BC7C /* OcAudioLib.lib */; }; + 9A0F0A402B0BD0B600F9BC7C /* OcAudioLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4882B0BD09C00F9BC7C /* OcAudioLib.lib */; }; + 9A0F0A412B0BD0B600F9BC7C /* OcAudioLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4882B0BD09C00F9BC7C /* OcAudioLib.lib */; }; + 9A0F0A422B0BD0B600F9BC7C /* OcDevicePropertyLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4892B0BD09C00F9BC7C /* OcDevicePropertyLib.lib */; }; + 9A0F0A432B0BD0B600F9BC7C /* OcDevicePropertyLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4892B0BD09C00F9BC7C /* OcDevicePropertyLib.lib */; }; + 9A0F0A442B0BD0B600F9BC7C /* OcDevicePropertyLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF4892B0BD09C00F9BC7C /* OcDevicePropertyLib.lib */; }; + 9A0F0A452B0BD0B600F9BC7C /* OcVariableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48A2B0BD09C00F9BC7C /* OcVariableLib.lib */; }; + 9A0F0A462B0BD0B600F9BC7C /* OcVariableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48A2B0BD09C00F9BC7C /* OcVariableLib.lib */; }; + 9A0F0A472B0BD0B600F9BC7C /* OcVariableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48A2B0BD09C00F9BC7C /* OcVariableLib.lib */; }; + 9A0F0A482B0BD0B600F9BC7C /* OcAppleChunklistLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48B2B0BD09C00F9BC7C /* OcAppleChunklistLib.lib */; }; + 9A0F0A492B0BD0B600F9BC7C /* OcAppleChunklistLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48B2B0BD09C00F9BC7C /* OcAppleChunklistLib.lib */; }; + 9A0F0A4A2B0BD0B600F9BC7C /* OcAppleChunklistLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48B2B0BD09C00F9BC7C /* OcAppleChunklistLib.lib */; }; + 9A0F0A4B2B0BD0B600F9BC7C /* OcStringLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48C2B0BD09C00F9BC7C /* OcStringLib.lib */; }; + 9A0F0A4C2B0BD0B600F9BC7C /* OcStringLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48C2B0BD09C00F9BC7C /* OcStringLib.lib */; }; + 9A0F0A4D2B0BD0B600F9BC7C /* OcStringLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48C2B0BD09C00F9BC7C /* OcStringLib.lib */; }; + 9A0F0A4E2B0BD0B600F9BC7C /* OcTemplateLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48D2B0BD09C00F9BC7C /* OcTemplateLib.lib */; }; + 9A0F0A4F2B0BD0B600F9BC7C /* OcTemplateLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48D2B0BD09C00F9BC7C /* OcTemplateLib.lib */; }; + 9A0F0A502B0BD0B600F9BC7C /* OcTemplateLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0FF48D2B0BD09C00F9BC7C /* OcTemplateLib.lib */; }; + 9A0F1C4B2B0BD0CC00F9BC7C /* OcUnicodeCollationEngGenericLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C32B0BD0B300F9BC7C /* OcUnicodeCollationEngGenericLib.lib */; }; + 9A0F1C4C2B0BD0CC00F9BC7C /* OcUnicodeCollationEngGenericLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C32B0BD0B300F9BC7C /* OcUnicodeCollationEngGenericLib.lib */; }; + 9A0F1C4D2B0BD0CC00F9BC7C /* OcUnicodeCollationEngGenericLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C32B0BD0B300F9BC7C /* OcUnicodeCollationEngGenericLib.lib */; }; + 9A0F1C4E2B0BD0CC00F9BC7C /* OcTypingLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C42B0BD0B300F9BC7C /* OcTypingLib.lib */; }; + 9A0F1C4F2B0BD0CC00F9BC7C /* OcTypingLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C42B0BD0B300F9BC7C /* OcTypingLib.lib */; }; + 9A0F1C502B0BD0CC00F9BC7C /* OcTypingLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C42B0BD0B300F9BC7C /* OcTypingLib.lib */; }; + 9A0F1C512B0BD0CC00F9BC7C /* OcAppleKeyMapLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C62B0BD0B300F9BC7C /* OcAppleKeyMapLib.lib */; }; + 9A0F1C522B0BD0CC00F9BC7C /* OcAppleKeyMapLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C62B0BD0B300F9BC7C /* OcAppleKeyMapLib.lib */; }; + 9A0F1C532B0BD0CC00F9BC7C /* OcAppleKeyMapLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C62B0BD0B300F9BC7C /* OcAppleKeyMapLib.lib */; }; + 9A0F1C542B0BD0CC00F9BC7C /* OcFlexArrayLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C72B0BD0B300F9BC7C /* OcFlexArrayLib.lib */; }; + 9A0F1C552B0BD0CC00F9BC7C /* OcFlexArrayLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C72B0BD0B300F9BC7C /* OcFlexArrayLib.lib */; }; + 9A0F1C562B0BD0CC00F9BC7C /* OcFlexArrayLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C72B0BD0B300F9BC7C /* OcFlexArrayLib.lib */; }; + 9A0F1C572B0BD0CC00F9BC7C /* OcConsoleLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C82B0BD0B300F9BC7C /* OcConsoleLib.lib */; }; + 9A0F1C582B0BD0CC00F9BC7C /* OcConsoleLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C82B0BD0B300F9BC7C /* OcConsoleLib.lib */; }; + 9A0F1C592B0BD0CC00F9BC7C /* OcConsoleLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C82B0BD0B300F9BC7C /* OcConsoleLib.lib */; }; + 9A0F1C5A2B0BD0CC00F9BC7C /* OcRtcLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C92B0BD0B300F9BC7C /* OcRtcLib.lib */; }; + 9A0F1C5B2B0BD0CC00F9BC7C /* OcRtcLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C92B0BD0B300F9BC7C /* OcRtcLib.lib */; }; + 9A0F1C5C2B0BD0CC00F9BC7C /* OcRtcLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09C92B0BD0B300F9BC7C /* OcRtcLib.lib */; }; + 9A0F1C5D2B0BD0CC00F9BC7C /* OcDebugLogLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CA2B0BD0B300F9BC7C /* OcDebugLogLib.lib */; }; + 9A0F1C5E2B0BD0CC00F9BC7C /* OcDebugLogLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CA2B0BD0B300F9BC7C /* OcDebugLogLib.lib */; }; + 9A0F1C5F2B0BD0CC00F9BC7C /* OcDebugLogLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CA2B0BD0B300F9BC7C /* OcDebugLogLib.lib */; }; + 9A0F1C602B0BD0CC00F9BC7C /* OcCpuLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CB2B0BD0B300F9BC7C /* OcCpuLib.lib */; }; + 9A0F1C612B0BD0CC00F9BC7C /* OcCpuLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CB2B0BD0B300F9BC7C /* OcCpuLib.lib */; }; + 9A0F1C622B0BD0CC00F9BC7C /* OcCpuLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CB2B0BD0B300F9BC7C /* OcCpuLib.lib */; }; + 9A0F1C632B0BD0CC00F9BC7C /* OcGuardLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CC2B0BD0B300F9BC7C /* OcGuardLib.lib */; }; + 9A0F1C642B0BD0CC00F9BC7C /* OcGuardLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CC2B0BD0B300F9BC7C /* OcGuardLib.lib */; }; + 9A0F1C652B0BD0CC00F9BC7C /* OcGuardLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CC2B0BD0B300F9BC7C /* OcGuardLib.lib */; }; + 9A0F1C662B0BD0CC00F9BC7C /* OcMainLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CD2B0BD0B300F9BC7C /* OcMainLib.lib */; }; + 9A0F1C672B0BD0CC00F9BC7C /* OcMainLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CD2B0BD0B300F9BC7C /* OcMainLib.lib */; }; + 9A0F1C682B0BD0CC00F9BC7C /* OcMainLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CD2B0BD0B300F9BC7C /* OcMainLib.lib */; }; + 9A0F1C692B0BD0CC00F9BC7C /* OcDeviceMiscLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CE2B0BD0B300F9BC7C /* OcDeviceMiscLib.lib */; }; + 9A0F1C6A2B0BD0CC00F9BC7C /* OcDeviceMiscLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CE2B0BD0B300F9BC7C /* OcDeviceMiscLib.lib */; }; + 9A0F1C6B2B0BD0CC00F9BC7C /* OcDeviceMiscLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CE2B0BD0B300F9BC7C /* OcDeviceMiscLib.lib */; }; + 9A0F1C6C2B0BD0CC00F9BC7C /* OcDevicePathLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CF2B0BD0B300F9BC7C /* OcDevicePathLib.lib */; }; + 9A0F1C6D2B0BD0CC00F9BC7C /* OcDevicePathLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CF2B0BD0B300F9BC7C /* OcDevicePathLib.lib */; }; + 9A0F1C6E2B0BD0CD00F9BC7C /* OcDevicePathLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09CF2B0BD0B300F9BC7C /* OcDevicePathLib.lib */; }; + 9A0F1C6F2B0BD0CD00F9BC7C /* OcAppleKernelLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D02B0BD0B300F9BC7C /* OcAppleKernelLib.lib */; }; + 9A0F1C702B0BD0CD00F9BC7C /* OcAppleKernelLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D02B0BD0B300F9BC7C /* OcAppleKernelLib.lib */; }; + 9A0F1C712B0BD0CD00F9BC7C /* OcAppleKernelLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D02B0BD0B300F9BC7C /* OcAppleKernelLib.lib */; }; + 9A0F1C722B0BD0CD00F9BC7C /* OcAppleKeysLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D12B0BD0B300F9BC7C /* OcAppleKeysLib.lib */; }; + 9A0F1C732B0BD0CD00F9BC7C /* OcAppleKeysLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D12B0BD0B300F9BC7C /* OcAppleKeysLib.lib */; }; + 9A0F1C742B0BD0CD00F9BC7C /* OcAppleKeysLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D12B0BD0B300F9BC7C /* OcAppleKeysLib.lib */; }; + 9A0F1C752B0BD0CD00F9BC7C /* OcInputLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D22B0BD0B300F9BC7C /* OcInputLib.lib */; }; + 9A0F1C762B0BD0CD00F9BC7C /* OcInputLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D22B0BD0B300F9BC7C /* OcInputLib.lib */; }; + 9A0F1C772B0BD0CD00F9BC7C /* OcInputLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D22B0BD0B300F9BC7C /* OcInputLib.lib */; }; + 9A0F1C782B0BD0CD00F9BC7C /* OpenRuntime.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D32B0BD0B300F9BC7C /* OpenRuntime.lib */; }; + 9A0F1C792B0BD0CD00F9BC7C /* OpenRuntime.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D32B0BD0B300F9BC7C /* OpenRuntime.lib */; }; + 9A0F1C7A2B0BD0CD00F9BC7C /* OpenRuntime.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D32B0BD0B300F9BC7C /* OpenRuntime.lib */; }; + 9A0F1C7B2B0BD0CD00F9BC7C /* OcAppleRamDiskLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D42B0BD0B400F9BC7C /* OcAppleRamDiskLib.lib */; }; + 9A0F1C7C2B0BD0CD00F9BC7C /* OcAppleRamDiskLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D42B0BD0B400F9BC7C /* OcAppleRamDiskLib.lib */; }; + 9A0F1C7D2B0BD0CD00F9BC7C /* OcAppleRamDiskLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D42B0BD0B400F9BC7C /* OcAppleRamDiskLib.lib */; }; + 9A0F1C7E2B0BD0CD00F9BC7C /* OcPeCoffLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D52B0BD0B400F9BC7C /* OcPeCoffLib.lib */; }; + 9A0F1C7F2B0BD0CD00F9BC7C /* OcPeCoffLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D52B0BD0B400F9BC7C /* OcPeCoffLib.lib */; }; + 9A0F1C802B0BD0CD00F9BC7C /* OcPeCoffLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D52B0BD0B400F9BC7C /* OcPeCoffLib.lib */; }; + 9A0F1C812B0BD0CD00F9BC7C /* OcApfsLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D62B0BD0B400F9BC7C /* OcApfsLib.lib */; }; + 9A0F1C822B0BD0CD00F9BC7C /* OcApfsLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D62B0BD0B400F9BC7C /* OcApfsLib.lib */; }; + 9A0F1C832B0BD0CD00F9BC7C /* OcApfsLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D62B0BD0B400F9BC7C /* OcApfsLib.lib */; }; + 9A0F1C842B0BD0CD00F9BC7C /* OcSmbiosLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D72B0BD0B400F9BC7C /* OcSmbiosLib.lib */; }; + 9A0F1C852B0BD0CD00F9BC7C /* OcSmbiosLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D72B0BD0B400F9BC7C /* OcSmbiosLib.lib */; }; + 9A0F1C862B0BD0CD00F9BC7C /* OcSmbiosLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D72B0BD0B400F9BC7C /* OcSmbiosLib.lib */; }; + 9A0F1C872B0BD0CD00F9BC7C /* OcSerializeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D82B0BD0B400F9BC7C /* OcSerializeLib.lib */; }; + 9A0F1C882B0BD0CD00F9BC7C /* OcSerializeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D82B0BD0B400F9BC7C /* OcSerializeLib.lib */; }; + 9A0F1C892B0BD0CD00F9BC7C /* OcSerializeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D82B0BD0B400F9BC7C /* OcSerializeLib.lib */; }; + 9A0F1C8A2B0BD0CD00F9BC7C /* OcRngLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D92B0BD0B400F9BC7C /* OcRngLib.lib */; }; + 9A0F1C8B2B0BD0CD00F9BC7C /* OcRngLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D92B0BD0B400F9BC7C /* OcRngLib.lib */; }; + 9A0F1C8C2B0BD0CD00F9BC7C /* OcRngLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09D92B0BD0B400F9BC7C /* OcRngLib.lib */; }; + 9A0F1C8D2B0BD0CD00F9BC7C /* OcAfterBootCompatLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DA2B0BD0B400F9BC7C /* OcAfterBootCompatLib.lib */; }; + 9A0F1C8E2B0BD0CD00F9BC7C /* OcAfterBootCompatLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DA2B0BD0B400F9BC7C /* OcAfterBootCompatLib.lib */; }; + 9A0F1C8F2B0BD0CD00F9BC7C /* OcAfterBootCompatLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DA2B0BD0B400F9BC7C /* OcAfterBootCompatLib.lib */; }; + 9A0F1C902B0BD0CD00F9BC7C /* OcCompressionLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DB2B0BD0B400F9BC7C /* OcCompressionLib.lib */; }; + 9A0F1C912B0BD0CD00F9BC7C /* OcCompressionLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DB2B0BD0B400F9BC7C /* OcCompressionLib.lib */; }; + 9A0F1C922B0BD0CD00F9BC7C /* OcCompressionLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DB2B0BD0B400F9BC7C /* OcCompressionLib.lib */; }; + 9A0F1C932B0BD0CD00F9BC7C /* OcMemoryLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DD2B0BD0B400F9BC7C /* OcMemoryLib.lib */; }; + 9A0F1C942B0BD0CD00F9BC7C /* OcMemoryLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DD2B0BD0B400F9BC7C /* OcMemoryLib.lib */; }; + 9A0F1C952B0BD0CD00F9BC7C /* OcMemoryLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DD2B0BD0B400F9BC7C /* OcMemoryLib.lib */; }; + 9A0F1C962B0BD0CD00F9BC7C /* OcMacInfoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DE2B0BD0B400F9BC7C /* OcMacInfoLib.lib */; }; + 9A0F1C972B0BD0CD00F9BC7C /* OcMacInfoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DE2B0BD0B400F9BC7C /* OcMacInfoLib.lib */; }; + 9A0F1C982B0BD0CD00F9BC7C /* OcMacInfoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DE2B0BD0B400F9BC7C /* OcMacInfoLib.lib */; }; + 9A0F1C992B0BD0CD00F9BC7C /* OcBootManagementLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DF2B0BD0B400F9BC7C /* OcBootManagementLib.lib */; }; + 9A0F1C9A2B0BD0CD00F9BC7C /* OcBootManagementLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DF2B0BD0B400F9BC7C /* OcBootManagementLib.lib */; }; + 9A0F1C9B2B0BD0CD00F9BC7C /* OcBootManagementLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09DF2B0BD0B400F9BC7C /* OcBootManagementLib.lib */; }; + 9A0F1C9C2B0BD0CD00F9BC7C /* OcAppleImg4Lib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E02B0BD0B400F9BC7C /* OcAppleImg4Lib.lib */; }; + 9A0F1C9D2B0BD0CD00F9BC7C /* OcAppleImg4Lib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E02B0BD0B400F9BC7C /* OcAppleImg4Lib.lib */; }; + 9A0F1C9E2B0BD0CD00F9BC7C /* OcAppleImg4Lib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E02B0BD0B400F9BC7C /* OcAppleImg4Lib.lib */; }; + 9A0F1C9F2B0BD0CD00F9BC7C /* OcAcpiLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E12B0BD0B400F9BC7C /* OcAcpiLib.lib */; }; + 9A0F1CA02B0BD0CD00F9BC7C /* OcAcpiLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E12B0BD0B400F9BC7C /* OcAcpiLib.lib */; }; + 9A0F1CA12B0BD0CD00F9BC7C /* OcAcpiLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E12B0BD0B400F9BC7C /* OcAcpiLib.lib */; }; + 9A0F1CA22B0BD0CD00F9BC7C /* OcAppleDiskImageLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E22B0BD0B400F9BC7C /* OcAppleDiskImageLib.lib */; }; + 9A0F1CA32B0BD0CD00F9BC7C /* OcAppleDiskImageLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E22B0BD0B400F9BC7C /* OcAppleDiskImageLib.lib */; }; + 9A0F1CA42B0BD0CD00F9BC7C /* OcAppleDiskImageLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E22B0BD0B400F9BC7C /* OcAppleDiskImageLib.lib */; }; + 9A0F1CA52B0BD0CD00F9BC7C /* OcMachoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E32B0BD0B400F9BC7C /* OcMachoLib.lib */; }; + 9A0F1CA62B0BD0CD00F9BC7C /* OcMachoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E32B0BD0B400F9BC7C /* OcMachoLib.lib */; }; + 9A0F1CA72B0BD0CD00F9BC7C /* OcMachoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E32B0BD0B400F9BC7C /* OcMachoLib.lib */; }; + 9A0F1CA82B0BD0CD00F9BC7C /* OcBlitLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E52B0BD0B400F9BC7C /* OcBlitLib.lib */; }; + 9A0F1CA92B0BD0CD00F9BC7C /* OcBlitLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E52B0BD0B400F9BC7C /* OcBlitLib.lib */; }; + 9A0F1CAA2B0BD0CD00F9BC7C /* OcBlitLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E52B0BD0B400F9BC7C /* OcBlitLib.lib */; }; + 9A0F1CAB2B0BD0CD00F9BC7C /* OcFileLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E62B0BD0B400F9BC7C /* OcFileLib.lib */; }; + 9A0F1CAC2B0BD0CD00F9BC7C /* OcFileLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E62B0BD0B400F9BC7C /* OcFileLib.lib */; }; + 9A0F1CAD2B0BD0CD00F9BC7C /* OcFileLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E62B0BD0B400F9BC7C /* OcFileLib.lib */; }; + 9A0F1CAE2B0BD0CD00F9BC7C /* OcAppleUserInterfaceThemeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E72B0BD0B400F9BC7C /* OcAppleUserInterfaceThemeLib.lib */; }; + 9A0F1CAF2B0BD0CD00F9BC7C /* OcAppleUserInterfaceThemeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E72B0BD0B400F9BC7C /* OcAppleUserInterfaceThemeLib.lib */; }; + 9A0F1CB02B0BD0CD00F9BC7C /* OcAppleUserInterfaceThemeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E72B0BD0B400F9BC7C /* OcAppleUserInterfaceThemeLib.lib */; }; + 9A0F1CB12B0BD0CD00F9BC7C /* OcPeCoffExtLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E82B0BD0B400F9BC7C /* OcPeCoffExtLib.lib */; }; + 9A0F1CB22B0BD0CD00F9BC7C /* OcPeCoffExtLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E82B0BD0B400F9BC7C /* OcPeCoffExtLib.lib */; }; + 9A0F1CB32B0BD0CD00F9BC7C /* OcPeCoffExtLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E82B0BD0B400F9BC7C /* OcPeCoffExtLib.lib */; }; + 9A0F1CB42B0BD0CD00F9BC7C /* OcDeviceTreeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E92B0BD0B400F9BC7C /* OcDeviceTreeLib.lib */; }; + 9A0F1CB52B0BD0CD00F9BC7C /* OcDeviceTreeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E92B0BD0B400F9BC7C /* OcDeviceTreeLib.lib */; }; + 9A0F1CB62B0BD0CD00F9BC7C /* OcDeviceTreeLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09E92B0BD0B400F9BC7C /* OcDeviceTreeLib.lib */; }; + 9A0F1CB72B0BD0CD00F9BC7C /* OcOSInfoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EA2B0BD0B400F9BC7C /* OcOSInfoLib.lib */; }; + 9A0F1CB82B0BD0CD00F9BC7C /* OcOSInfoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EA2B0BD0B400F9BC7C /* OcOSInfoLib.lib */; }; + 9A0F1CB92B0BD0CD00F9BC7C /* OcOSInfoLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EA2B0BD0B400F9BC7C /* OcOSInfoLib.lib */; }; + 9A0F1CBA2B0BD0CD00F9BC7C /* OcDriverConnectionLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EB2B0BD0B400F9BC7C /* OcDriverConnectionLib.lib */; }; + 9A0F1CBB2B0BD0CD00F9BC7C /* OcDriverConnectionLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EB2B0BD0B400F9BC7C /* OcDriverConnectionLib.lib */; }; + 9A0F1CBC2B0BD0CD00F9BC7C /* OcDriverConnectionLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EB2B0BD0B400F9BC7C /* OcDriverConnectionLib.lib */; }; + 9A0F1CBD2B0BD0CD00F9BC7C /* OcHashServicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09ED2B0BD0B400F9BC7C /* OcHashServicesLib.lib */; }; + 9A0F1CBE2B0BD0CD00F9BC7C /* OcHashServicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09ED2B0BD0B400F9BC7C /* OcHashServicesLib.lib */; }; + 9A0F1CBF2B0BD0CD00F9BC7C /* OcHashServicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09ED2B0BD0B400F9BC7C /* OcHashServicesLib.lib */; }; + 9A0F1CC02B0BD0CD00F9BC7C /* OcMiscLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EE2B0BD0B400F9BC7C /* OcMiscLib.lib */; }; + 9A0F1CC12B0BD0CD00F9BC7C /* OcMiscLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EE2B0BD0B400F9BC7C /* OcMiscLib.lib */; }; + 9A0F1CC22B0BD0CD00F9BC7C /* OcMiscLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EE2B0BD0B400F9BC7C /* OcMiscLib.lib */; }; + 9A0F1CC32B0BD0CD00F9BC7C /* OcAppleBootPolicyLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EF2B0BD0B500F9BC7C /* OcAppleBootPolicyLib.lib */; }; + 9A0F1CC42B0BD0CD00F9BC7C /* OcAppleBootPolicyLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EF2B0BD0B500F9BC7C /* OcAppleBootPolicyLib.lib */; }; + 9A0F1CC52B0BD0CD00F9BC7C /* OcAppleBootPolicyLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EF2B0BD0B500F9BC7C /* OcAppleBootPolicyLib.lib */; }; + 9A0F1CC62B0BD0CD00F9BC7C /* OcAppleSecureBootLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F02B0BD0B500F9BC7C /* OcAppleSecureBootLib.lib */; }; + 9A0F1CC72B0BD0CD00F9BC7C /* OcAppleSecureBootLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F02B0BD0B500F9BC7C /* OcAppleSecureBootLib.lib */; }; + 9A0F1CC82B0BD0CD00F9BC7C /* OcAppleSecureBootLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F02B0BD0B500F9BC7C /* OcAppleSecureBootLib.lib */; }; + 9A0F1CC92B0BD0CD00F9BC7C /* VideoBiosPatchLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F22B0BD0B500F9BC7C /* VideoBiosPatchLib.lib */; }; + 9A0F1CCA2B0BD0CD00F9BC7C /* VideoBiosPatchLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F22B0BD0B500F9BC7C /* VideoBiosPatchLib.lib */; }; + 9A0F1CCB2B0BD0CD00F9BC7C /* VideoBiosPatchLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F22B0BD0B500F9BC7C /* VideoBiosPatchLib.lib */; }; + 9A0F1CCC2B0BD0CD00F9BC7C /* VBoxPeCoffLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F32B0BD0B500F9BC7C /* VBoxPeCoffLib.lib */; }; + 9A0F1CCD2B0BD0CE00F9BC7C /* VBoxPeCoffLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F32B0BD0B500F9BC7C /* VBoxPeCoffLib.lib */; }; + 9A0F1CCE2B0BD0CE00F9BC7C /* VBoxPeCoffLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F32B0BD0B500F9BC7C /* VBoxPeCoffLib.lib */; }; + 9A0F1CCF2B0BD0CE00F9BC7C /* DuetTimerLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F42B0BD0B500F9BC7C /* DuetTimerLib.lib */; }; + 9A0F1CD02B0BD0CE00F9BC7C /* DuetTimerLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F42B0BD0B500F9BC7C /* DuetTimerLib.lib */; }; + 9A0F1CD12B0BD0CE00F9BC7C /* DuetTimerLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F42B0BD0B500F9BC7C /* DuetTimerLib.lib */; }; + 9A0F1CD22B0BD0CE00F9BC7C /* HdaDevicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F62B0BD0B500F9BC7C /* HdaDevicesLib.lib */; }; + 9A0F1CD32B0BD0CE00F9BC7C /* HdaDevicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F62B0BD0B500F9BC7C /* HdaDevicesLib.lib */; }; + 9A0F1CD42B0BD0CE00F9BC7C /* HdaDevicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F62B0BD0B500F9BC7C /* HdaDevicesLib.lib */; }; + 9A0F1CD52B0BD0CE00F9BC7C /* WaveLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F72B0BD0B500F9BC7C /* WaveLib.lib */; }; + 9A0F1CD62B0BD0CE00F9BC7C /* WaveLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F72B0BD0B500F9BC7C /* WaveLib.lib */; }; + 9A0F1CD72B0BD0CE00F9BC7C /* WaveLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F72B0BD0B500F9BC7C /* WaveLib.lib */; }; + 9A0F1CD82B0BD0CE00F9BC7C /* BasePciCf8Lib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F92B0BD0B500F9BC7C /* BasePciCf8Lib.lib */; }; + 9A0F1CD92B0BD0CE00F9BC7C /* BasePciCf8Lib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F92B0BD0B500F9BC7C /* BasePciCf8Lib.lib */; }; + 9A0F1CDA2B0BD0CE00F9BC7C /* BasePciCf8Lib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09F92B0BD0B500F9BC7C /* BasePciCf8Lib.lib */; }; + 9A0F1CDB2B0BD0CE00F9BC7C /* UefiApplicationEntryPoint.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FA2B0BD0B500F9BC7C /* UefiApplicationEntryPoint.lib */; }; + 9A0F1CDC2B0BD0CE00F9BC7C /* UefiApplicationEntryPoint.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FA2B0BD0B500F9BC7C /* UefiApplicationEntryPoint.lib */; }; + 9A0F1CDD2B0BD0CE00F9BC7C /* UefiApplicationEntryPoint.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FA2B0BD0B500F9BC7C /* UefiApplicationEntryPoint.lib */; }; + 9A0F1CDE2B0BD0CE00F9BC7C /* BaseLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FB2B0BD0B500F9BC7C /* BaseLib.lib */; }; + 9A0F1CDF2B0BD0CE00F9BC7C /* BaseLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FB2B0BD0B500F9BC7C /* BaseLib.lib */; }; + 9A0F1CE02B0BD0CE00F9BC7C /* BaseLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FB2B0BD0B500F9BC7C /* BaseLib.lib */; }; + 9A0F1CE12B0BD0CE00F9BC7C /* UefiRuntimeServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FC2B0BD0B500F9BC7C /* UefiRuntimeServicesTableLib.lib */; }; + 9A0F1CE22B0BD0CE00F9BC7C /* UefiRuntimeServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FC2B0BD0B500F9BC7C /* UefiRuntimeServicesTableLib.lib */; }; + 9A0F1CE32B0BD0CE00F9BC7C /* UefiRuntimeServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FC2B0BD0B500F9BC7C /* UefiRuntimeServicesTableLib.lib */; }; + 9A0F1CE42B0BD0CE00F9BC7C /* BaseMemoryLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FD2B0BD0B500F9BC7C /* BaseMemoryLib.lib */; }; + 9A0F1CE52B0BD0CE00F9BC7C /* BaseMemoryLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FD2B0BD0B500F9BC7C /* BaseMemoryLib.lib */; }; + 9A0F1CE62B0BD0CE00F9BC7C /* BaseMemoryLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FD2B0BD0B500F9BC7C /* BaseMemoryLib.lib */; }; + 9A0F1CE72B0BD0CE00F9BC7C /* BaseIoLibIntrinsic.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FE2B0BD0B500F9BC7C /* BaseIoLibIntrinsic.lib */; }; + 9A0F1CE82B0BD0CE00F9BC7C /* BaseIoLibIntrinsic.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FE2B0BD0B500F9BC7C /* BaseIoLibIntrinsic.lib */; }; + 9A0F1CE92B0BD0CE00F9BC7C /* BaseIoLibIntrinsic.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FE2B0BD0B500F9BC7C /* BaseIoLibIntrinsic.lib */; }; + 9A0F1CEA2B0BD0CE00F9BC7C /* DxeServicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FF2B0BD0B500F9BC7C /* DxeServicesLib.lib */; }; + 9A0F1CEB2B0BD0CE00F9BC7C /* DxeServicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FF2B0BD0B500F9BC7C /* DxeServicesLib.lib */; }; + 9A0F1CEC2B0BD0CE00F9BC7C /* DxeServicesLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09FF2B0BD0B500F9BC7C /* DxeServicesLib.lib */; }; + 9A0F1CED2B0BD0CE00F9BC7C /* BaseCpuLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A002B0BD0B500F9BC7C /* BaseCpuLib.lib */; }; + 9A0F1CEE2B0BD0CE00F9BC7C /* BaseCpuLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A002B0BD0B500F9BC7C /* BaseCpuLib.lib */; }; + 9A0F1CEF2B0BD0CE00F9BC7C /* BaseCpuLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A002B0BD0B500F9BC7C /* BaseCpuLib.lib */; }; + 9A0F1CF02B0BD0CE00F9BC7C /* UefiLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A012B0BD0B500F9BC7C /* UefiLib.lib */; }; + 9A0F1CF12B0BD0CE00F9BC7C /* UefiLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A012B0BD0B500F9BC7C /* UefiLib.lib */; }; + 9A0F1CF22B0BD0CE00F9BC7C /* UefiLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A012B0BD0B500F9BC7C /* UefiLib.lib */; }; + 9A0F1CF32B0BD0CE00F9BC7C /* PeCoffExtraActionLibNull.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A022B0BD0B500F9BC7C /* PeCoffExtraActionLibNull.lib */; }; + 9A0F1CF42B0BD0CE00F9BC7C /* PeCoffExtraActionLibNull.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A022B0BD0B500F9BC7C /* PeCoffExtraActionLibNull.lib */; }; + 9A0F1CF52B0BD0CE00F9BC7C /* PeCoffExtraActionLibNull.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A022B0BD0B500F9BC7C /* PeCoffExtraActionLibNull.lib */; }; + 9A0F1CF62B0BD0CE00F9BC7C /* UefiMemoryAllocationLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A032B0BD0B500F9BC7C /* UefiMemoryAllocationLib.lib */; }; + 9A0F1CF72B0BD0CE00F9BC7C /* UefiMemoryAllocationLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A032B0BD0B500F9BC7C /* UefiMemoryAllocationLib.lib */; }; + 9A0F1CF82B0BD0CE00F9BC7C /* UefiMemoryAllocationLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A032B0BD0B500F9BC7C /* UefiMemoryAllocationLib.lib */; }; + 9A0F1CF92B0BD0CE00F9BC7C /* UefiFileHandleLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A042B0BD0B500F9BC7C /* UefiFileHandleLib.lib */; }; + 9A0F1CFA2B0BD0CE00F9BC7C /* UefiFileHandleLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A042B0BD0B500F9BC7C /* UefiFileHandleLib.lib */; }; + 9A0F1CFB2B0BD0CE00F9BC7C /* UefiFileHandleLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A042B0BD0B500F9BC7C /* UefiFileHandleLib.lib */; }; + 9A0F1CFC2B0BD0CE00F9BC7C /* DxeHobLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A052B0BD0B500F9BC7C /* DxeHobLib.lib */; }; + 9A0F1CFD2B0BD0CE00F9BC7C /* DxeHobLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A052B0BD0B500F9BC7C /* DxeHobLib.lib */; }; + 9A0F1CFE2B0BD0CE00F9BC7C /* DxeHobLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A052B0BD0B500F9BC7C /* DxeHobLib.lib */; }; + 9A0F1CFF2B0BD0CE00F9BC7C /* UefiBootServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A062B0BD0B500F9BC7C /* UefiBootServicesTableLib.lib */; }; + 9A0F1D002B0BD0CE00F9BC7C /* UefiBootServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A062B0BD0B500F9BC7C /* UefiBootServicesTableLib.lib */; }; + 9A0F1D012B0BD0CE00F9BC7C /* UefiBootServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A062B0BD0B500F9BC7C /* UefiBootServicesTableLib.lib */; }; + 9A0F1D022B0BD0CE00F9BC7C /* BaseDebugLibSerialPort.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A072B0BD0B500F9BC7C /* BaseDebugLibSerialPort.lib */; }; + 9A0F1D032B0BD0CE00F9BC7C /* BaseDebugLibSerialPort.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A072B0BD0B500F9BC7C /* BaseDebugLibSerialPort.lib */; }; + 9A0F1D042B0BD0CE00F9BC7C /* BaseDebugLibSerialPort.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A072B0BD0B500F9BC7C /* BaseDebugLibSerialPort.lib */; }; + 9A0F1D052B0BD0CE00F9BC7C /* DxeServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A082B0BD0B500F9BC7C /* DxeServicesTableLib.lib */; }; + 9A0F1D062B0BD0CE00F9BC7C /* DxeServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A082B0BD0B500F9BC7C /* DxeServicesTableLib.lib */; }; + 9A0F1D072B0BD0CE00F9BC7C /* DxeServicesTableLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A082B0BD0B500F9BC7C /* DxeServicesTableLib.lib */; }; + 9A0F1D082B0BD0CE00F9BC7C /* BasePciLibCf8.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A092B0BD0B500F9BC7C /* BasePciLibCf8.lib */; }; + 9A0F1D092B0BD0CE00F9BC7C /* BasePciLibCf8.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A092B0BD0B500F9BC7C /* BasePciLibCf8.lib */; }; + 9A0F1D0A2B0BD0CE00F9BC7C /* BasePciLibCf8.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A092B0BD0B500F9BC7C /* BasePciLibCf8.lib */; }; + 9A0F1D0B2B0BD0CE00F9BC7C /* BasePrintLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0A2B0BD0B500F9BC7C /* BasePrintLib.lib */; }; + 9A0F1D0C2B0BD0CE00F9BC7C /* BasePrintLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0A2B0BD0B500F9BC7C /* BasePrintLib.lib */; }; + 9A0F1D0D2B0BD0CE00F9BC7C /* BasePrintLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0A2B0BD0B500F9BC7C /* BasePrintLib.lib */; }; + 9A0F1D0E2B0BD0CE00F9BC7C /* UefiDevicePathLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0B2B0BD0B500F9BC7C /* UefiDevicePathLib.lib */; }; + 9A0F1D0F2B0BD0CE00F9BC7C /* UefiDevicePathLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0B2B0BD0B500F9BC7C /* UefiDevicePathLib.lib */; }; + 9A0F1D102B0BD0CE00F9BC7C /* UefiDevicePathLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0B2B0BD0B500F9BC7C /* UefiDevicePathLib.lib */; }; + 9A0F1D112B0BD0CE00F9BC7C /* BaseDebugPrintErrorLevelLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0C2B0BD0B500F9BC7C /* BaseDebugPrintErrorLevelLib.lib */; }; + 9A0F1D122B0BD0CE00F9BC7C /* BaseDebugPrintErrorLevelLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0C2B0BD0B500F9BC7C /* BaseDebugPrintErrorLevelLib.lib */; }; + 9A0F1D132B0BD0CE00F9BC7C /* BaseDebugPrintErrorLevelLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0C2B0BD0B500F9BC7C /* BaseDebugPrintErrorLevelLib.lib */; }; + 9A0F1D142B0BD0CE00F9BC7C /* MtrrLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0E2B0BD0B500F9BC7C /* MtrrLib.lib */; }; + 9A0F1D152B0BD0CE00F9BC7C /* MtrrLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0E2B0BD0B500F9BC7C /* MtrrLib.lib */; }; + 9A0F1D162B0BD0CE00F9BC7C /* MtrrLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A0E2B0BD0B500F9BC7C /* MtrrLib.lib */; }; + 9A0F1D172B0BD0CE00F9BC7C /* BasePlatformHookLibNull.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A102B0BD0B500F9BC7C /* BasePlatformHookLibNull.lib */; }; + 9A0F1D182B0BD0CE00F9BC7C /* BasePlatformHookLibNull.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A102B0BD0B500F9BC7C /* BasePlatformHookLibNull.lib */; }; + 9A0F1D192B0BD0CE00F9BC7C /* BasePlatformHookLibNull.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A102B0BD0B500F9BC7C /* BasePlatformHookLibNull.lib */; }; + 9A0F1D1A2B0BD0CE00F9BC7C /* BaseSerialPortLib16550.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A112B0BD0B500F9BC7C /* BaseSerialPortLib16550.lib */; }; + 9A0F1D1B2B0BD0CE00F9BC7C /* BaseSerialPortLib16550.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A112B0BD0B500F9BC7C /* BaseSerialPortLib16550.lib */; }; + 9A0F1D1C2B0BD0CE00F9BC7C /* BaseSerialPortLib16550.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A112B0BD0B500F9BC7C /* BaseSerialPortLib16550.lib */; }; + 9A0F1D1D2B0BD0CE00F9BC7C /* UefiSortLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A132B0BD0B500F9BC7C /* UefiSortLib.lib */; }; + 9A0F1D1E2B0BD0CE00F9BC7C /* UefiSortLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A132B0BD0B500F9BC7C /* UefiSortLib.lib */; }; + 9A0F1D1F2B0BD0CE00F9BC7C /* UefiSortLib.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F0A132B0BD0B500F9BC7C /* UefiSortLib.lib */; }; + 9A0F1D202B0BD0CE00F9BC7C /* AutoGen.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F0A162B0BD0B500F9BC7C /* AutoGen.c */; }; + 9A0F1D222B0BD0CE00F9BC7C /* AutoGen.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F0A162B0BD0B500F9BC7C /* AutoGen.c */; }; + 9A0F1D2F2B0BD0CF00F9BC7C /* Globals.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F0A1D2B0BD0B500F9BC7C /* Globals.cpp */; }; + 9A0F1D302B0BD0CF00F9BC7C /* Globals.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F0A1D2B0BD0B500F9BC7C /* Globals.cpp */; }; + 9A0F1D312B0BD0CF00F9BC7C /* Globals.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F0A1D2B0BD0B500F9BC7C /* Globals.cpp */; }; + 9A0F1D492B0BD89200F9BC7C /* AutoGen.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4752B0BD09C00F9BC7C /* AutoGen.c */; }; + 9A0F1D4A2B0BD9B000F9BC7C /* OpenCore.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EC2B0BD0B400F9BC7C /* OpenCore.lib */; }; + 9A0F1D4B2B0BD9B100F9BC7C /* OpenCore.lib in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0F09EC2B0BD0B400F9BC7C /* OpenCore.lib */; }; + 9A0F1D4D2B0BDA5800F9BC7C /* MemLogLib.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F1D4C2B0BDA5800F9BC7C /* MemLogLib.c */; }; + 9A0F1D4E2B0BDA5C00F9BC7C /* MemLogLib.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F1D4C2B0BDA5800F9BC7C /* MemLogLib.c */; }; + 9A0F1D4F2B0BDA5C00F9BC7C /* MemLogLib.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A0F1D4C2B0BDA5800F9BC7C /* MemLogLib.c */; }; + 9A0FF40A2B0BB30B00F9BC7C /* UtilsEFI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4082B0BB30800F9BC7C /* UtilsEFI.cpp */; }; + 9A0FF40B2B0BB30C00F9BC7C /* UtilsEFI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4082B0BB30800F9BC7C /* UtilsEFI.cpp */; }; + 9A0FF40C2B0BB30C00F9BC7C /* UtilsEFI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4082B0BB30800F9BC7C /* UtilsEFI.cpp */; }; + 9A1F87812642714800884E81 /* posix_additions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87702642714700884E81 /* posix_additions.cpp */; }; + 9A1F87822642714800884E81 /* abort.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87712642714700884E81 /* abort.cpp */; }; + 9A1F87832642714800884E81 /* clover_strlen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87732642714700884E81 /* clover_strlen.cpp */; }; + 9A1F87842642714800884E81 /* BootLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F877B2642714700884E81 /* BootLog.cpp */; }; + 9A1F87852642714800884E81 /* BasicIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F877C2642714700884E81 /* BasicIO.cpp */; }; + 9A1F87AD2642772B00884E81 /* SelfOem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87872642772B00884E81 /* SelfOem.cpp */; }; + 9A1F87AF2642772B00884E81 /* ConfigManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F878B2642772B00884E81 /* ConfigManager.cpp */; }; + 9A1F87B12642772B00884E81 /* Config_GUI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F878E2642772B00884E81 /* Config_GUI.cpp */; }; + 9A1F87B32642772B00884E81 /* Config_Quirks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87922642772B00884E81 /* Config_Quirks.cpp */; }; + 9A1F87B92642772B00884E81 /* ConfigPlistAbstract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A22642772B00884E81 /* ConfigPlistAbstract.cpp */; }; + 9A1F87BB2642772B00884E81 /* Config_ACPI_DSDT.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A32642772B00884E81 /* Config_ACPI_DSDT.cpp */; }; + 9A1F87BD2642772B00884E81 /* SMBIOSPlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A72642772B00884E81 /* SMBIOSPlist.cpp */; }; + 9A1F87BF2642772B00884E81 /* Self.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87AC2642772B00884E81 /* Self.cpp */; }; + 9A1F87C526427A1E00884E81 /* CloverVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87C226427A0500884E81 /* CloverVersion.cpp */; }; + 9A1F87C726427A2100884E81 /* SmbiosFillPatchingValues.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87C426427A0600884E81 /* SmbiosFillPatchingValues.cpp */; }; + 9A272A7F25D5062E00F03E19 /* DataHub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A272A7D25D5062D00F03E19 /* DataHub.cpp */; }; + 9A358B3D25CF117A00A3850D /* XmlLiteCompositeTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A358B3925CF117A00A3850D /* XmlLiteCompositeTypes.cpp */; }; + 9A358B3E25CF117A00A3850D /* XmlLiteParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A358B3A25CF117A00A3850D /* XmlLiteParser.cpp */; }; + 9A36E4F024F3B537007A1107 /* TagString8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DB24F3B536007A1107 /* TagString8.cpp */; }; + 9A36E4F424F3B537007A1107 /* plist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DD24F3B536007A1107 /* plist.cpp */; }; + 9A36E4F824F3B537007A1107 /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DF24F3B536007A1107 /* xml.cpp */; }; + 9A36E4FC24F3B537007A1107 /* TagBool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E024F3B537007A1107 /* TagBool.cpp */; }; + 9A36E50024F3B537007A1107 /* TagDict.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E124F3B537007A1107 /* TagDict.cpp */; }; + 9A36E50424F3B537007A1107 /* TagInt64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E224F3B537007A1107 /* TagInt64.cpp */; }; + 9A36E50824F3B537007A1107 /* TagDate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E424F3B537007A1107 /* TagDate.cpp */; }; + 9A36E50C24F3B537007A1107 /* TagData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E524F3B537007A1107 /* TagData.cpp */; }; + 9A36E51024F3B537007A1107 /* TagArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E624F3B537007A1107 /* TagArray.cpp */; }; + 9A36E51424F3B537007A1107 /* TagFloat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4EA24F3B537007A1107 /* TagFloat.cpp */; }; + 9A36E51824F3B537007A1107 /* TagKey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4EC24F3B537007A1107 /* TagKey.cpp */; }; + 9A36E51F24F3B82A007A1107 /* b64cdecode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E51E24F3B82A007A1107 /* b64cdecode.cpp */; }; + 9A36E52624F3BB6B007A1107 /* FloatLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E52424F3BB6B007A1107 /* FloatLib.cpp */; }; + 9A36E53C24F3EDED007A1107 /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E53B24F3EDED007A1107 /* base64.cpp */; }; + 9A4185C02439F73A00BEAFB8 /* XStringArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4185BE2439F73A00BEAFB8 /* XStringArray.cpp */; }; + 9A4C576B255AAD07004F0B21 /* MacOsVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4C5769255AAD07004F0B21 /* MacOsVersion.cpp */; }; + 9A4FFA7E2451C8330050B38B /* XString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4FFA7C2451C8330050B38B /* XString.cpp */; }; + 9A7A0DB82643DFDF00FD8B2A /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7A0DB72643DFDE00FD8B2A /* main.cpp */; }; + 9A7A0DB92643DFDF00FD8B2A /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7A0DB72643DFDE00FD8B2A /* main.cpp */; }; + 9A7D518424FC32F700FA1CC3 /* XBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7D518124FC32F700FA1CC3 /* XBuffer.cpp */; }; + 9A7D518524FC32F700FA1CC3 /* XRBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7D518324FC32F700FA1CC3 /* XRBuffer.cpp */; }; + 9A838CB425347C36008303F5 /* MemoryOperation.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A838CB325347C36008303F5 /* MemoryOperation.c */; }; + 9A9037E625CFE7D100F14179 /* xml_lite-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9037E325CFE7CD00F14179 /* xml_lite-test.cpp */; }; + 9A9037E725CFE7D100F14179 /* config-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9037E425CFE7D000F14179 /* config-test.cpp */; }; + 9A9AEB8D243F73CE00FBD7D8 /* unicode_conversions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9AEB8C243F73CE00FBD7D8 /* unicode_conversions.cpp */; }; + 9AA3918F25CC75420099DC1F /* Settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A852C0E25CC39E900C5662E /* Settings.cpp */; }; + 9AA918C125CD4B7900BD5E8B /* lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA918BC25CD4B5900BD5E8B /* lib.cpp */; }; + 9AA918C725CD4CD300BD5E8B /* BmLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA918C625CD4CD300BD5E8B /* BmLib.cpp */; }; + 9AA9241725CD5B2E00BD5E8B /* BdsConnect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239525CD5B1A00BD5E8B /* BdsConnect.cpp */; }; + 9AA9241B25CD5B2E00BD5E8B /* Edid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239625CD5B1B00BD5E8B /* Edid.cpp */; }; + 9AA9241F25CD5B2E00BD5E8B /* LegacyBiosThunk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239825CD5B1B00BD5E8B /* LegacyBiosThunk.cpp */; }; + 9AA9242325CD5B2E00BD5E8B /* PlatformDriverOverride.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239925CD5B1B00BD5E8B /* PlatformDriverOverride.cpp */; }; + 9AA9242725CD5B2E00BD5E8B /* smbios.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239A25CD5B1C00BD5E8B /* smbios.cpp */; }; + 9AA9242B25CD5B2E00BD5E8B /* spd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239B25CD5B1C00BD5E8B /* spd.cpp */; }; + 9AA9245F25CD5B2E00BD5E8B /* usbfix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923B525CD5B1C00BD5E8B /* usbfix.cpp */; }; + 9AA9246325CD5B2E00BD5E8B /* HdaCodecDump.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923BB25CD5B1E00BD5E8B /* HdaCodecDump.cpp */; }; + 9AA9246B25CD5B2E00BD5E8B /* guid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C325CD5B1F00BD5E8B /* guid.cpp */; }; + 9AA9246F25CD5B2E00BD5E8B /* KextList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C425CD5B2000BD5E8B /* KextList.cpp */; }; + 9AA9247725CD5B2E00BD5E8B /* kext_patcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C825CD5B2100BD5E8B /* kext_patcher.cpp */; }; + 9AA9247B25CD5B2E00BD5E8B /* platformdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923CE25CD5B2200BD5E8B /* platformdata.cpp */; }; + 9AA9247F25CD5B2E00BD5E8B /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D025CD5B2300BD5E8B /* sound.cpp */; }; + 9AA9248325CD5B2E00BD5E8B /* Volumes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D125CD5B2300BD5E8B /* Volumes.cpp */; }; + 9AA9248725CD5B2E00BD5E8B /* BootOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D225CD5B2300BD5E8B /* BootOptions.cpp */; }; + 9AA9248B25CD5B2E00BD5E8B /* Nvram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D425CD5B2400BD5E8B /* Nvram.cpp */; }; + 9AA9248F25CD5B2E00BD5E8B /* LegacyBoot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D625CD5B2400BD5E8B /* LegacyBoot.cpp */; }; + 9AA9249325CD5B2E00BD5E8B /* DataHubCpu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D825CD5B2500BD5E8B /* DataHubCpu.cpp */; }; + 9AA9249725CD5B2E00BD5E8B /* Hibernate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D925CD5B2500BD5E8B /* Hibernate.cpp */; }; + 9AA9249B25CD5B2E00BD5E8B /* APFS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923DA25CD5B2500BD5E8B /* APFS.cpp */; }; + 9AA9249F25CD5B2E00BD5E8B /* nvidia.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923E025CD5B2700BD5E8B /* nvidia.cpp */; }; + 9AA924A325CD5B2E00BD5E8B /* kext_inject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923E125CD5B2700BD5E8B /* kext_inject.cpp */; }; + 9AA924C725CD5B2E00BD5E8B /* Injectors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FA25CD5B2900BD5E8B /* Injectors.cpp */; }; + 9AA924CB25CD5B2E00BD5E8B /* AmlGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FB25CD5B2900BD5E8B /* AmlGenerator.cpp */; }; + 9AA924CF25CD5B2E00BD5E8B /* hda.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FC25CD5B2900BD5E8B /* hda.cpp */; }; + 9AA924D325CD5B2E00BD5E8B /* Events.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FD25CD5B2900BD5E8B /* Events.cpp */; }; + 9AA924D725CD5B2E00BD5E8B /* cpu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FE25CD5B2A00BD5E8B /* cpu.cpp */; }; + 9AA924DB25CD5B2E00BD5E8B /* StartupSound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FF25CD5B2A00BD5E8B /* StartupSound.cpp */; }; + 9AA924DF25CD5B2E00BD5E8B /* Console.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240025CD5B2A00BD5E8B /* Console.cpp */; }; + 9AA924E325CD5B2E00BD5E8B /* ati.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240125CD5B2A00BD5E8B /* ati.cpp */; }; + 9AA924E725CD5B2E00BD5E8B /* gma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240225CD5B2B00BD5E8B /* gma.cpp */; }; + 9AA924EB25CD5B2E00BD5E8B /* kernel_patcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240525CD5B2B00BD5E8B /* kernel_patcher.cpp */; }; + 9AA924EF25CD5B2E00BD5E8B /* FixBiosDsdt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240625CD5B2B00BD5E8B /* FixBiosDsdt.cpp */; }; + 9AA924F325CD5B2E00BD5E8B /* device_inject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240725CD5B2C00BD5E8B /* device_inject.cpp */; }; + 9AA924FB25CD5B2E00BD5E8B /* AcpiPatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240D25CD5B2D00BD5E8B /* AcpiPatcher.cpp */; }; + 9AA924FF25CD5B2E00BD5E8B /* KERNEL_AND_KEXT_PATCHES.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240F25CD5B2D00BD5E8B /* KERNEL_AND_KEXT_PATCHES.cpp */; }; + 9AA9250325CD5B2E00BD5E8B /* StateGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9241225CD5B2E00BD5E8B /* StateGenerator.cpp */; }; + 9AA9252B25CD74CC00BD5E8B /* tool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251825CD74C800BD5E8B /* tool.cpp */; }; + 9AA9252C25CD74CC00BD5E8B /* lockedgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251C25CD74C800BD5E8B /* lockedgraphics.cpp */; }; + 9AA9252D25CD74CC00BD5E8B /* securehash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251D25CD74C900BD5E8B /* securehash.cpp */; }; + 9AA9252E25CD74CC00BD5E8B /* legacy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251E25CD74C900BD5E8B /* legacy.cpp */; }; + 9AA9252F25CD74CC00BD5E8B /* bootscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251F25CD74C900BD5E8B /* bootscreen.cpp */; }; + 9AA9253025CD74CC00BD5E8B /* secureboot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252325CD74CA00BD5E8B /* secureboot.cpp */; }; + 9AA9253125CD74CC00BD5E8B /* securemenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252425CD74CA00BD5E8B /* securemenu.cpp */; }; + 9AA9253225CD74CC00BD5E8B /* securevars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252925CD74CB00BD5E8B /* securevars.cpp */; }; + 9AA9253325CD74CC00BD5E8B /* common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252A25CD74CB00BD5E8B /* common.cpp */; }; + 9AA9253A25CD764900BD5E8B /* menu_items.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9253825CD764800BD5E8B /* menu_items.cpp */; }; + 9AA9253B25CD764900BD5E8B /* REFIT_MENU_SCREEN.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9253925CD764800BD5E8B /* REFIT_MENU_SCREEN.cpp */; }; + 9AA9253F25CD765000BD5E8B /* shared_with_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD469472452B33700D6D0DB /* shared_with_menu.cpp */; }; + 9AA9257525CD770F00BD5E8B /* egemb_icons_dark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256125CD770A00BD5E8B /* egemb_icons_dark.cpp */; }; + 9AA9257925CD770F00BD5E8B /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256225CD770B00BD5E8B /* text.cpp */; }; + 9AA9257D25CD770F00BD5E8B /* libscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256625CD770C00BD5E8B /* libscreen.cpp */; }; + 9AA9258125CD770F00BD5E8B /* nanosvgrast.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256725CD770C00BD5E8B /* nanosvgrast.cpp */; }; + 9AA9258525CD770F00BD5E8B /* nanosvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256825CD770C00BD5E8B /* nanosvg.cpp */; }; + 9AA9258925CD770F00BD5E8B /* load_icns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256B25CD770D00BD5E8B /* load_icns.cpp */; }; + 9AA9259125CD770F00BD5E8B /* scroll_images.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256D25CD770D00BD5E8B /* scroll_images.cpp */; }; + 9AA9259525CD770F00BD5E8B /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256F25CD770E00BD5E8B /* image.cpp */; }; + 9AA9259925CD770F00BD5E8B /* egemb_font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257125CD770E00BD5E8B /* egemb_font.cpp */; }; + 9AA9259D25CD770F00BD5E8B /* lodepng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257225CD770E00BD5E8B /* lodepng.cpp */; }; + 9AA925A125CD770F00BD5E8B /* VectorGraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257325CD770F00BD5E8B /* VectorGraphics.cpp */; }; + 9AA925A525CD770F00BD5E8B /* egemb_icons.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257425CD770F00BD5E8B /* egemb_icons.cpp */; }; + 9AA925B325CD79AB00BD5E8B /* icns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AB25CD79AA00BD5E8B /* icns.cpp */; }; + 9AA925B725CD79AB00BD5E8B /* menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AC25CD79AA00BD5E8B /* menu.cpp */; }; + 9AA925BB25CD79AB00BD5E8B /* screen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AE25CD79AB00BD5E8B /* screen.cpp */; }; + 9AA925DE25CD967800BD5E8B /* SafeString.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AA90CE225CD451700BD5E8B /* SafeString.c */; }; + 9AA9E4D625CD1C9400BD5E8B /* card_vlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4D425CD1C9400BD5E8B /* card_vlist.cpp */; }; + 9AA9E4DC25CD279200BD5E8B /* VersionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4DA25CD279100BD5E8B /* VersionString.cpp */; }; + 9AA9E4EA25CD283400BD5E8B /* XImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E025CD283300BD5E8B /* XImage.cpp */; }; + 9AA9E4EE25CD283400BD5E8B /* XIcon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E225CD283300BD5E8B /* XIcon.cpp */; }; + 9AA9E4F225CD283400BD5E8B /* XTheme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E525CD283300BD5E8B /* XTheme.cpp */; }; + 9AA9E4F625CD283400BD5E8B /* XCinema.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E625CD283400BD5E8B /* XCinema.cpp */; }; + 9AA9E4FA25CD283400BD5E8B /* XPointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E725CD283400BD5E8B /* XPointer.cpp */; }; + 9AA9E50225CD2FF400BD5E8B /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E50025CD2FF400BD5E8B /* Utils.cpp */; }; + 9AA9E53D25CD306700BD5E8B /* loader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E51B25CD306700BD5E8B /* loader.cpp */; }; + 9AB67BE4261834F300CC853A /* xml_lite-reapeatingdict-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AB67BE2261834F300CC853A /* xml_lite-reapeatingdict-test.cpp */; }; + 9AD0EB24260A497600093F23 /* XmlLiteSimpleTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD0EB22260A497500093F23 /* XmlLiteSimpleTypes.cpp */; }; + 9AD7B15026079F5D00E850D1 /* REFIT_MAINMENU_SCREEN.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD7B14F26079F5D00E850D1 /* REFIT_MAINMENU_SCREEN.cpp */; }; + 9AE2765B2B04EB27006343AB /* FirmwareVolume.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2764A2B04EB26006343AB /* FirmwareVolume.c */; }; + 9AE2765D2B04EB27006343AB /* load_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2764E2B04EB26006343AB /* load_bmp.c */; }; + 9AE2765E2B04EB27006343AB /* AppleImageCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2764F2B04EB26006343AB /* AppleImageCodec.c */; }; + 9AE2765F2B04EB27006343AB /* load_icns.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276512B04EB26006343AB /* load_icns.c */; }; + 9AE276602B04EB27006343AB /* picopng.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276532B04EB26006343AB /* picopng.c */; }; + 9AE276612B04EB27006343AB /* AppleKeyAggregator.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276572B04EB26006343AB /* AppleKeyAggregator.c */; }; + 9AE276622B04EB27006343AB /* SMCHelper.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2765A2B04EB26006343AB /* SMCHelper.c */; }; + 9AE276632B04EB79006343AB /* MemoryTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276422B04E51C006343AB /* MemoryTracker.cpp */; }; + 9AE276642B04EB7A006343AB /* MemoryTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276422B04E51C006343AB /* MemoryTracker.cpp */; }; + 9AE276692B04EBA1006343AB /* MemoryTracker_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276662B04EBA0006343AB /* MemoryTracker_test.cpp */; }; + 9AE2766A2B04EBA1006343AB /* guid_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276672B04EBA0006343AB /* guid_tests.cpp */; }; + 9AE2766B2B04EBB6006343AB /* MemoryTracker_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276662B04EBA0006343AB /* MemoryTracker_test.cpp */; }; + 9AE2766C2B04EBBA006343AB /* guid_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276672B04EBA0006343AB /* guid_tests.cpp */; }; + 9AE276942B051DAB006343AB /* usbfix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923B525CD5B1C00BD5E8B /* usbfix.cpp */; }; + 9AE276952B051DAB006343AB /* card_vlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4D425CD1C9400BD5E8B /* card_vlist.cpp */; }; + 9AE276962B051DAB006343AB /* TagInt64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E224F3B537007A1107 /* TagInt64.cpp */; }; + 9AE276972B051DAB006343AB /* SMBIOSPlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A72642772B00884E81 /* SMBIOSPlist.cpp */; }; + 9AE276982B051DAB006343AB /* AppleImageCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2764F2B04EB26006343AB /* AppleImageCodec.c */; }; + 9AE276992B051DAB006343AB /* TagDict.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E124F3B537007A1107 /* TagDict.cpp */; }; + 9AE2769A2B051DAB006343AB /* MacOsVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4C5769255AAD07004F0B21 /* MacOsVersion.cpp */; }; + 9AE2769B2B051DAB006343AB /* TagData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E524F3B537007A1107 /* TagData.cpp */; }; + 9AE2769C2B051DAB006343AB /* picopng.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276532B04EB26006343AB /* picopng.c */; }; + 9AE2769D2B051DAB006343AB /* SmbiosFillPatchingValues.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87C426427A0600884E81 /* SmbiosFillPatchingValues.cpp */; }; + 9AE2769F2B051DAB006343AB /* secureboot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252325CD74CA00BD5E8B /* secureboot.cpp */; }; + 9AE276A02B051DAB006343AB /* AcpiPatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240D25CD5B2D00BD5E8B /* AcpiPatcher.cpp */; }; + 9AE276A12B051DAB006343AB /* XBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7D518124FC32F700FA1CC3 /* XBuffer.cpp */; }; + 9AE276A22B051DAB006343AB /* ati.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240125CD5B2A00BD5E8B /* ati.cpp */; }; + 9AE276A32B051DAB006343AB /* Console.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240025CD5B2A00BD5E8B /* Console.cpp */; }; + 9AE276A42B051DAB006343AB /* KextList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C425CD5B2000BD5E8B /* KextList.cpp */; }; + 9AE276A52B051DAB006343AB /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E53B24F3EDED007A1107 /* base64.cpp */; }; + 9AE276A62B051DAB006343AB /* strlen_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07B25CE730F00EEAF06 /* strlen_test.cpp */; }; + 9AE276A72B051DAB006343AB /* XmlLiteCompositeTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A358B3925CF117A00A3850D /* XmlLiteCompositeTypes.cpp */; }; + 9AE276A82B051DAB006343AB /* StateGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9241225CD5B2E00BD5E8B /* StateGenerator.cpp */; }; + 9AE276AA2B051DAB006343AB /* securemenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252425CD74CA00BD5E8B /* securemenu.cpp */; }; + 9AE276AB2B051DAB006343AB /* XmlLiteSimpleTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD0EB22260A497500093F23 /* XmlLiteSimpleTypes.cpp */; }; + 9AE276AC2B051DAB006343AB /* all_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07125CE730F00EEAF06 /* all_tests.cpp */; }; + 9AE276AD2B051DAB006343AB /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7A0DB72643DFDE00FD8B2A /* main.cpp */; }; + 9AE276AE2B051DAB006343AB /* XArray_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07425CE730F00EEAF06 /* XArray_tests.cpp */; }; + 9AE276AF2B051DAB006343AB /* XString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4FFA7C2451C8330050B38B /* XString.cpp */; }; + 9AE276B02B051DAB006343AB /* egemb_icons.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257425CD770F00BD5E8B /* egemb_icons.cpp */; }; + 9AE276B12B051DAB006343AB /* XTheme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E525CD283300BD5E8B /* XTheme.cpp */; }; + 9AE276B22B051DAB006343AB /* Volumes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D125CD5B2300BD5E8B /* Volumes.cpp */; }; + 9AE276B32B051DAB006343AB /* clover_strlen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87732642714700884E81 /* clover_strlen.cpp */; }; + 9AE276B42B051DAB006343AB /* LegacyBiosThunk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239825CD5B1B00BD5E8B /* LegacyBiosThunk.cpp */; }; + 9AE276B52B051DAB006343AB /* HdaCodecDump.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923BB25CD5B1E00BD5E8B /* HdaCodecDump.cpp */; }; + 9AE276B62B051DAB006343AB /* scroll_images.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256D25CD770D00BD5E8B /* scroll_images.cpp */; }; + 9AE276B72B051DAB006343AB /* printf_lite.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AA91E2625CD59F100BD5E8B /* printf_lite.c */; }; + 9AE276B82B051DAB006343AB /* find_replace_mask_OC_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07C25CE730F00EEAF06 /* find_replace_mask_OC_tests.cpp */; }; + 9AE276B92B051DAB006343AB /* DataHubCpu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D825CD5B2500BD5E8B /* DataHubCpu.cpp */; }; + 9AE276BA2B051DAB006343AB /* TagKey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4EC24F3B537007A1107 /* TagKey.cpp */; }; + 9AE276BB2B051DAB006343AB /* strcmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06A25CE730F00EEAF06 /* strcmp_test.cpp */; }; + 9AE276BC2B051DAB006343AB /* FloatLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E52424F3BB6B007A1107 /* FloatLib.cpp */; }; + 9AE276BD2B051DAB006343AB /* MacOsVersion_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06925CE730F00EEAF06 /* MacOsVersion_test.cpp */; }; + 9AE276BE2B051DAB006343AB /* MemoryOperation.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A838CB325347C36008303F5 /* MemoryOperation.c */; }; + 9AE276BF2B051DAB006343AB /* tool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251825CD74C800BD5E8B /* tool.cpp */; }; + 9AE276C02B051DAB006343AB /* lockedgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251C25CD74C800BD5E8B /* lockedgraphics.cpp */; }; + 9AE276C12B051DAB006343AB /* ConfigManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F878B2642772B00884E81 /* ConfigManager.cpp */; }; + 9AE276C22B051DAB006343AB /* XIcon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E225CD283300BD5E8B /* XIcon.cpp */; }; + 9AE276C32B051DAB006343AB /* smbios.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239A25CD5B1C00BD5E8B /* smbios.cpp */; }; + 9AE276C42B051DAB006343AB /* LoadOptions_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06125CE730F00EEAF06 /* LoadOptions_test.cpp */; }; + 9AE276C52B051DAB006343AB /* SMCHelper.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2765A2B04EB26006343AB /* SMCHelper.c */; }; + 9AE276C62B051DAB006343AB /* platformdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923CE25CD5B2200BD5E8B /* platformdata.cpp */; }; + 9AE276C72B051DAB006343AB /* XImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E025CD283300BD5E8B /* XImage.cpp */; }; + 9AE276C82B051DAB006343AB /* Edid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239625CD5B1B00BD5E8B /* Edid.cpp */; }; + 9AE276C92B051DAB006343AB /* CloverVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87C226427A0500884E81 /* CloverVersion.cpp */; }; + 9AE276CA2B051DAB006343AB /* XmlLiteUnionTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C42261A44070007CC44 /* XmlLiteUnionTypes.cpp */; }; + 9AE276CB2B051DAB006343AB /* securehash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251D25CD74C900BD5E8B /* securehash.cpp */; }; + 9AE276CC2B051DAB006343AB /* legacy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251E25CD74C900BD5E8B /* legacy.cpp */; }; + 9AE276CD2B051DAB006343AB /* guid_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276672B04EBA0006343AB /* guid_tests.cpp */; }; + 9AE276CE2B051DAB006343AB /* VectorGraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257325CD770F00BD5E8B /* VectorGraphics.cpp */; }; + 9AE276CF2B051DAB006343AB /* posix_additions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87702642714700884E81 /* posix_additions.cpp */; }; + 9AE276D02B051DAB006343AB /* cpu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FE25CD5B2A00BD5E8B /* cpu.cpp */; }; + 9AE276D12B051DAB006343AB /* BootLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F877B2642714700884E81 /* BootLog.cpp */; }; + 9AE276D22B051DAB006343AB /* spd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239B25CD5B1C00BD5E8B /* spd.cpp */; }; + 9AE276D32B051DAB006343AB /* SafeString.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AA90CE225CD451700BD5E8B /* SafeString.c */; }; + 9AE276D42B051DAB006343AB /* nanosvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256825CD770C00BD5E8B /* nanosvg.cpp */; }; + 9AE276D52B051DAB006343AB /* XObjArray_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07325CE730F00EEAF06 /* XObjArray_tests.cpp */; }; + 9AE276D62B051DAB006343AB /* hda.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FC25CD5B2900BD5E8B /* hda.cpp */; }; + 9AE276D72B051DAB006343AB /* load_icns.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276512B04EB26006343AB /* load_icns.c */; }; + 9AE276D82B051DAB006343AB /* Self.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87AC2642772B00884E81 /* Self.cpp */; }; + 9AE276D92B051DAB006343AB /* Hibernate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D925CD5B2500BD5E8B /* Hibernate.cpp */; }; + 9AE276DA2B051DAB006343AB /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925A925CD79A900BD5E8B /* main.cpp */; }; + 9AE276DB2B051DAB006343AB /* XToolsCommon_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07925CE730F00EEAF06 /* XToolsCommon_test.cpp */; }; + 9AE276DC2B051DAB006343AB /* XCinema.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E625CD283400BD5E8B /* XCinema.cpp */; }; + 9AE276DD2B051DAB006343AB /* device_inject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240725CD5B2C00BD5E8B /* device_inject.cpp */; }; + 9AE276DE2B051DAB006343AB /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D025CD5B2300BD5E8B /* sound.cpp */; }; + 9AE276DF2B051DAB006343AB /* AppleKeyAggregator.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276572B04EB26006343AB /* AppleKeyAggregator.c */; }; + 9AE276E02B051DAB006343AB /* find_replace_mask_Clover_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06E25CE730F00EEAF06 /* find_replace_mask_Clover_tests.cpp */; }; + 9AE276E12B051DAB006343AB /* XmlLiteArrayTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C41261A44070007CC44 /* XmlLiteArrayTypes.cpp */; }; + 9AE276E22B051DAB006343AB /* nvidia.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923E025CD5B2700BD5E8B /* nvidia.cpp */; }; + 9AE276E32B051DAB006343AB /* APFS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923DA25CD5B2500BD5E8B /* APFS.cpp */; }; + 9AE276E42B051DAB006343AB /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256225CD770B00BD5E8B /* text.cpp */; }; + 9AE276E52B051DAB006343AB /* SelfOem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87872642772B00884E81 /* SelfOem.cpp */; }; + 9AE276E62B051DAB006343AB /* config-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9037E425CFE7D000F14179 /* config-test.cpp */; }; + 9AE276E72B051DAB006343AB /* SettingsUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF1EFF22634354500F7C2C0 /* SettingsUtils.cpp */; }; + 9AE276E82B051DAB006343AB /* VersionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4DA25CD279100BD5E8B /* VersionString.cpp */; }; + 9AE276E92B051DAB006343AB /* bootscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251F25CD74C900BD5E8B /* bootscreen.cpp */; }; + 9AE276EA2B051DAB006343AB /* BdsConnect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239525CD5B1A00BD5E8B /* BdsConnect.cpp */; }; + 9AE276EB2B051DAB006343AB /* XString_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07725CE730F00EEAF06 /* XString_test.cpp */; }; + 9AE276EC2B051DAB006343AB /* TagBool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E024F3B537007A1107 /* TagBool.cpp */; }; + 9AE276ED2B051DAB006343AB /* Nvram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D425CD5B2400BD5E8B /* Nvram.cpp */; }; + 9AE276EE2B051DAB006343AB /* shared_with_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD469472452B33700D6D0DB /* shared_with_menu.cpp */; }; + 9AE276EF2B051DAB006343AB /* XmlLiteDictTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C44261A44080007CC44 /* XmlLiteDictTypes.cpp */; }; + 9AE276F02B051DAB006343AB /* StartupSound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FF25CD5B2A00BD5E8B /* StartupSound.cpp */; }; + 9AE276F12B051DAB006343AB /* REFIT_MENU_SCREEN.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9253925CD764800BD5E8B /* REFIT_MENU_SCREEN.cpp */; }; + 9AE276F22B051DAB006343AB /* lodepng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257225CD770E00BD5E8B /* lodepng.cpp */; }; + 9AE276F32B051DAB006343AB /* icns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AB25CD79AA00BD5E8B /* icns.cpp */; }; + 9AE276F42B051DAB006343AB /* plist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DD24F3B536007A1107 /* plist.cpp */; }; + 9AE276F52B051DAB006343AB /* Events.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FD25CD5B2900BD5E8B /* Events.cpp */; }; + 9AE276F62B051DAB006343AB /* FixBiosDsdt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240625CD5B2B00BD5E8B /* FixBiosDsdt.cpp */; }; + 9AE276F72B051DAB006343AB /* BootOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D225CD5B2300BD5E8B /* BootOptions.cpp */; }; + 9AE276F82B051DAB006343AB /* kext_inject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923E125CD5B2700BD5E8B /* kext_inject.cpp */; }; + 9AE276F92B051DAB006343AB /* MemoryTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276422B04E51C006343AB /* MemoryTracker.cpp */; }; + 9AE276FA2B051DAB006343AB /* AmlGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FB25CD5B2900BD5E8B /* AmlGenerator.cpp */; }; + 9AE276FB2B051DAB006343AB /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DF24F3B536007A1107 /* xml.cpp */; }; + 9AE276FC2B051DAB006343AB /* unicode_conversions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9AEB8C243F73CE00FBD7D8 /* unicode_conversions.cpp */; }; + 9AE276FE2B051DAB006343AB /* Config_GUI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F878E2642772B00884E81 /* Config_GUI.cpp */; }; + 9AE277002B051DAB006343AB /* nanosvgrast.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256725CD770C00BD5E8B /* nanosvgrast.cpp */; }; + 9AE277012B051DAB006343AB /* menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AC25CD79AA00BD5E8B /* menu.cpp */; }; + 9AE277022B051DAB006343AB /* MemoryTracker_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE276662B04EBA0006343AB /* MemoryTracker_test.cpp */; }; + 9AE277032B051DAB006343AB /* kext_patcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C825CD5B2100BD5E8B /* kext_patcher.cpp */; }; + 9AE277042B051DAB006343AB /* menu_items.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9253825CD764800BD5E8B /* menu_items.cpp */; }; + 9AE277052B051DAB006343AB /* Config_Quirks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87922642772B00884E81 /* Config_Quirks.cpp */; }; + 9AE277062B051DAB006343AB /* libscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256625CD770C00BD5E8B /* libscreen.cpp */; }; + 9AE277072B051DAB006343AB /* screen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AE25CD79AB00BD5E8B /* screen.cpp */; }; + 9AE277082B051DAB006343AB /* xml_lite-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9037E325CFE7CD00F14179 /* xml_lite-test.cpp */; }; + 9AE277092B051DAB006343AB /* XmlLiteParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A358B3A25CF117A00A3850D /* XmlLiteParser.cpp */; }; + 9AE2770A2B051DAB006343AB /* LegacyBoot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D625CD5B2400BD5E8B /* LegacyBoot.cpp */; }; + 9AE2770B2B051DAB006343AB /* KERNEL_AND_KEXT_PATCHES.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240F25CD5B2D00BD5E8B /* KERNEL_AND_KEXT_PATCHES.cpp */; }; + 9AE2770C2B051DAB006343AB /* securevars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252925CD74CB00BD5E8B /* securevars.cpp */; }; + 9AE2770D2B051DAB006343AB /* PlatformDriverOverride.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239925CD5B1B00BD5E8B /* PlatformDriverOverride.cpp */; }; + 9AE2770E2B051DAB006343AB /* Volume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF1EFF32634354800F7C2C0 /* Volume.cpp */; }; + 9AE2770F2B051DAB006343AB /* BmLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA918C625CD4CD300BD5E8B /* BmLib.cpp */; }; + 9AE277102B051DAB006343AB /* gma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240225CD5B2B00BD5E8B /* gma.cpp */; }; + 9AE277112B051DAB006343AB /* XRBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7D518324FC32F700FA1CC3 /* XRBuffer.cpp */; }; + 9AE277122B051DAB006343AB /* egemb_icons_dark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256125CD770A00BD5E8B /* egemb_icons_dark.cpp */; }; + 9AE277132B051DAB006343AB /* XStringArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4185BE2439F73A00BEAFB8 /* XStringArray.cpp */; }; + 9AE277142B051DAB006343AB /* xml_lite-reapeatingdict-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AB67BE2261834F300CC853A /* xml_lite-reapeatingdict-test.cpp */; }; + 9AE277152B051DAB006343AB /* kernel_patcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240525CD5B2B00BD5E8B /* kernel_patcher.cpp */; }; + 9AE277162B051DAB006343AB /* common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252A25CD74CB00BD5E8B /* common.cpp */; }; + 9AE277172B051DAB006343AB /* printlib-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06B25CE730F00EEAF06 /* printlib-test.cpp */; }; + 9AE277182B051DAB006343AB /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E50025CD2FF400BD5E8B /* Utils.cpp */; }; + 9AE277192B051DAB006343AB /* strncmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07525CE730F00EEAF06 /* strncmp_test.cpp */; }; + 9AE2771A2B051DAB006343AB /* TagArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E624F3B537007A1107 /* TagArray.cpp */; }; + 9AE2771B2B051DAB006343AB /* DataHub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A272A7D25D5062D00F03E19 /* DataHub.cpp */; }; + 9AE2771C2B051DAB006343AB /* strcasecmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0D113625FF583F0040555F /* strcasecmp_test.cpp */; }; + 9AE2771D2B051DAB006343AB /* lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA918BC25CD4B5900BD5E8B /* lib.cpp */; }; + 9AE2771E2B051DAB006343AB /* Config_ACPI_DSDT.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A32642772B00884E81 /* Config_ACPI_DSDT.cpp */; }; + 9AE2771F2B051DAB006343AB /* TagString8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DB24F3B536007A1107 /* TagString8.cpp */; }; + 9AE277202B051DAB006343AB /* plist_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06825CE730F00EEAF06 /* plist_tests.cpp */; }; + 9AE277212B051DAB006343AB /* loader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E51B25CD306700BD5E8B /* loader.cpp */; }; + 9AE277222B051DAB006343AB /* Injectors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FA25CD5B2900BD5E8B /* Injectors.cpp */; }; + 9AE277232B051DAB006343AB /* load_icns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256B25CD770D00BD5E8B /* load_icns.cpp */; }; + 9AE277242B051DAB006343AB /* global_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD05C25CE730F00EEAF06 /* global_test.cpp */; }; + 9AE277252B051DAB006343AB /* guid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C325CD5B1F00BD5E8B /* guid.cpp */; }; + 9AE277262B051DAB006343AB /* FirmwareVolume.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2764A2B04EB26006343AB /* FirmwareVolume.c */; }; + 9AE277272B051DAB006343AB /* TagDate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E424F3B537007A1107 /* TagDate.cpp */; }; + 9AE277282B051DAB006343AB /* printf_lite-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06325CE730F00EEAF06 /* printf_lite-test.cpp */; }; + 9AE277292B051DAB006343AB /* XStringArray_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06C25CE730F00EEAF06 /* XStringArray_test.cpp */; }; + 9AE2772A2B051DAB006343AB /* Settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A852C0E25CC39E900C5662E /* Settings.cpp */; }; + 9AE2772B2B051DAB006343AB /* b64cdecode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E51E24F3B82A007A1107 /* b64cdecode.cpp */; }; + 9AE2772C2B051DAB006343AB /* XBuffer_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06025CE730F00EEAF06 /* XBuffer_tests.cpp */; }; + 9AE2772D2B051DAB006343AB /* egemb_font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257125CD770E00BD5E8B /* egemb_font.cpp */; }; + 9AE2772E2B051DAB006343AB /* BasicIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F877C2642714700884E81 /* BasicIO.cpp */; }; + 9AE2772F2B051DAB006343AB /* TagFloat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4EA24F3B537007A1107 /* TagFloat.cpp */; }; + 9AE277302B051DAB006343AB /* load_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AE2764E2B04EB26006343AB /* load_bmp.c */; }; + 9AE277312B051DAB006343AB /* ConfigPlistAbstract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A22642772B00884E81 /* ConfigPlistAbstract.cpp */; }; + 9AE277322B051DAB006343AB /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256F25CD770E00BD5E8B /* image.cpp */; }; + 9AE277332B051DAB006343AB /* abort.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87712642714700884E81 /* abort.cpp */; }; + 9AE277342B051DAB006343AB /* REFIT_MAINMENU_SCREEN.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD7B14F26079F5D00E850D1 /* REFIT_MAINMENU_SCREEN.cpp */; }; + 9AE277352B051DAB006343AB /* Platform.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0B085D240300E000E2B470 /* Platform.cpp */; }; + 9AE277362B051DAB006343AB /* XPointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E725CD283400BD5E8B /* XPointer.cpp */; }; + 9AE277962B054D82006343AB /* operatorNewDelete.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE277952B054D82006343AB /* operatorNewDelete.cpp */; }; + 9AE277972B054D82006343AB /* operatorNewDelete.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE277952B054D82006343AB /* operatorNewDelete.cpp */; }; + 9AE277982B054D82006343AB /* operatorNewDelete.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE277952B054D82006343AB /* operatorNewDelete.cpp */; }; + 9AE2785C2642869E005C8F2F /* usbfix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923B525CD5B1C00BD5E8B /* usbfix.cpp */; }; + 9AE2785D2642869E005C8F2F /* card_vlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4D425CD1C9400BD5E8B /* card_vlist.cpp */; }; + 9AE2785E2642869E005C8F2F /* TagInt64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E224F3B537007A1107 /* TagInt64.cpp */; }; + 9AE2785F2642869E005C8F2F /* SMBIOSPlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A72642772B00884E81 /* SMBIOSPlist.cpp */; }; + 9AE278602642869E005C8F2F /* TagDict.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E124F3B537007A1107 /* TagDict.cpp */; }; + 9AE278612642869E005C8F2F /* MacOsVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4C5769255AAD07004F0B21 /* MacOsVersion.cpp */; }; + 9AE278622642869E005C8F2F /* TagData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E524F3B537007A1107 /* TagData.cpp */; }; + 9AE278632642869E005C8F2F /* SmbiosFillPatchingValues.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87C426427A0600884E81 /* SmbiosFillPatchingValues.cpp */; }; + 9AE278652642869E005C8F2F /* secureboot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252325CD74CA00BD5E8B /* secureboot.cpp */; }; + 9AE278662642869E005C8F2F /* AcpiPatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240D25CD5B2D00BD5E8B /* AcpiPatcher.cpp */; }; + 9AE278672642869E005C8F2F /* XBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7D518124FC32F700FA1CC3 /* XBuffer.cpp */; }; + 9AE278682642869E005C8F2F /* ati.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240125CD5B2A00BD5E8B /* ati.cpp */; }; + 9AE278692642869E005C8F2F /* Console.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240025CD5B2A00BD5E8B /* Console.cpp */; }; + 9AE2786A2642869E005C8F2F /* KextList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C425CD5B2000BD5E8B /* KextList.cpp */; }; + 9AE2786B2642869E005C8F2F /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E53B24F3EDED007A1107 /* base64.cpp */; }; + 9AE2786C2642869E005C8F2F /* strlen_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07B25CE730F00EEAF06 /* strlen_test.cpp */; }; + 9AE2786D2642869E005C8F2F /* XmlLiteCompositeTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A358B3925CF117A00A3850D /* XmlLiteCompositeTypes.cpp */; }; + 9AE2786E2642869E005C8F2F /* StateGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9241225CD5B2E00BD5E8B /* StateGenerator.cpp */; }; + 9AE278702642869E005C8F2F /* securemenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252425CD74CA00BD5E8B /* securemenu.cpp */; }; + 9AE278712642869E005C8F2F /* XmlLiteSimpleTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD0EB22260A497500093F23 /* XmlLiteSimpleTypes.cpp */; }; + 9AE278722642869E005C8F2F /* all_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07125CE730F00EEAF06 /* all_tests.cpp */; }; + 9AE278732642869E005C8F2F /* XArray_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07425CE730F00EEAF06 /* XArray_tests.cpp */; }; + 9AE278742642869E005C8F2F /* XString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4FFA7C2451C8330050B38B /* XString.cpp */; }; + 9AE278752642869E005C8F2F /* egemb_icons.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257425CD770F00BD5E8B /* egemb_icons.cpp */; }; + 9AE278762642869E005C8F2F /* XTheme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E525CD283300BD5E8B /* XTheme.cpp */; }; + 9AE278772642869E005C8F2F /* Volumes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D125CD5B2300BD5E8B /* Volumes.cpp */; }; + 9AE2787A2642869E005C8F2F /* clover_strlen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87732642714700884E81 /* clover_strlen.cpp */; }; + 9AE2787B2642869E005C8F2F /* LegacyBiosThunk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239825CD5B1B00BD5E8B /* LegacyBiosThunk.cpp */; }; + 9AE2787C2642869E005C8F2F /* HdaCodecDump.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923BB25CD5B1E00BD5E8B /* HdaCodecDump.cpp */; }; + 9AE2787D2642869E005C8F2F /* scroll_images.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256D25CD770D00BD5E8B /* scroll_images.cpp */; }; + 9AE2787E2642869E005C8F2F /* printf_lite.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AA91E2625CD59F100BD5E8B /* printf_lite.c */; }; + 9AE2787F2642869E005C8F2F /* find_replace_mask_OC_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07C25CE730F00EEAF06 /* find_replace_mask_OC_tests.cpp */; }; + 9AE278802642869E005C8F2F /* DataHubCpu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D825CD5B2500BD5E8B /* DataHubCpu.cpp */; }; + 9AE278812642869E005C8F2F /* TagKey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4EC24F3B537007A1107 /* TagKey.cpp */; }; + 9AE278822642869E005C8F2F /* strcmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06A25CE730F00EEAF06 /* strcmp_test.cpp */; }; + 9AE278832642869E005C8F2F /* FloatLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E52424F3BB6B007A1107 /* FloatLib.cpp */; }; + 9AE278842642869E005C8F2F /* MacOsVersion_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06925CE730F00EEAF06 /* MacOsVersion_test.cpp */; }; + 9AE278852642869E005C8F2F /* MemoryOperation.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A838CB325347C36008303F5 /* MemoryOperation.c */; }; + 9AE278862642869E005C8F2F /* tool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251825CD74C800BD5E8B /* tool.cpp */; }; + 9AE278872642869E005C8F2F /* lockedgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251C25CD74C800BD5E8B /* lockedgraphics.cpp */; }; + 9AE278892642869E005C8F2F /* ConfigManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F878B2642772B00884E81 /* ConfigManager.cpp */; }; + 9AE2788A2642869E005C8F2F /* XIcon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E225CD283300BD5E8B /* XIcon.cpp */; }; + 9AE2788B2642869E005C8F2F /* smbios.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239A25CD5B1C00BD5E8B /* smbios.cpp */; }; + 9AE2788C2642869E005C8F2F /* LoadOptions_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06125CE730F00EEAF06 /* LoadOptions_test.cpp */; }; + 9AE2788D2642869E005C8F2F /* platformdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923CE25CD5B2200BD5E8B /* platformdata.cpp */; }; + 9AE2788E2642869E005C8F2F /* XImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E025CD283300BD5E8B /* XImage.cpp */; }; + 9AE2788F2642869E005C8F2F /* Edid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239625CD5B1B00BD5E8B /* Edid.cpp */; }; + 9AE278902642869E005C8F2F /* CloverVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87C226427A0500884E81 /* CloverVersion.cpp */; }; + 9AE278912642869E005C8F2F /* XmlLiteUnionTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C42261A44070007CC44 /* XmlLiteUnionTypes.cpp */; }; + 9AE278922642869E005C8F2F /* securehash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251D25CD74C900BD5E8B /* securehash.cpp */; }; + 9AE278932642869E005C8F2F /* legacy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251E25CD74C900BD5E8B /* legacy.cpp */; }; + 9AE278942642869E005C8F2F /* VectorGraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257325CD770F00BD5E8B /* VectorGraphics.cpp */; }; + 9AE278952642869E005C8F2F /* posix_additions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87702642714700884E81 /* posix_additions.cpp */; }; + 9AE278972642869E005C8F2F /* cpu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FE25CD5B2A00BD5E8B /* cpu.cpp */; }; + 9AE278982642869E005C8F2F /* BootLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F877B2642714700884E81 /* BootLog.cpp */; }; + 9AE278992642869E005C8F2F /* spd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239B25CD5B1C00BD5E8B /* spd.cpp */; }; + 9AE2789A2642869E005C8F2F /* SafeString.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AA90CE225CD451700BD5E8B /* SafeString.c */; }; + 9AE2789B2642869E005C8F2F /* nanosvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256825CD770C00BD5E8B /* nanosvg.cpp */; }; + 9AE2789C2642869E005C8F2F /* XObjArray_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07325CE730F00EEAF06 /* XObjArray_tests.cpp */; }; + 9AE2789D2642869E005C8F2F /* hda.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FC25CD5B2900BD5E8B /* hda.cpp */; }; + 9AE2789E2642869E005C8F2F /* Self.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87AC2642772B00884E81 /* Self.cpp */; }; + 9AE2789F2642869E005C8F2F /* Hibernate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D925CD5B2500BD5E8B /* Hibernate.cpp */; }; + 9AE278A02642869E005C8F2F /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925A925CD79A900BD5E8B /* main.cpp */; }; + 9AE278A12642869E005C8F2F /* XToolsCommon_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07925CE730F00EEAF06 /* XToolsCommon_test.cpp */; }; + 9AE278A22642869E005C8F2F /* XCinema.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E625CD283400BD5E8B /* XCinema.cpp */; }; + 9AE278A32642869E005C8F2F /* device_inject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240725CD5B2C00BD5E8B /* device_inject.cpp */; }; + 9AE278A42642869E005C8F2F /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D025CD5B2300BD5E8B /* sound.cpp */; }; + 9AE278A52642869E005C8F2F /* find_replace_mask_Clover_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06E25CE730F00EEAF06 /* find_replace_mask_Clover_tests.cpp */; }; + 9AE278A62642869E005C8F2F /* XmlLiteArrayTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C41261A44070007CC44 /* XmlLiteArrayTypes.cpp */; }; + 9AE278A72642869E005C8F2F /* nvidia.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923E025CD5B2700BD5E8B /* nvidia.cpp */; }; + 9AE278A82642869E005C8F2F /* APFS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923DA25CD5B2500BD5E8B /* APFS.cpp */; }; + 9AE278AA2642869E005C8F2F /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256225CD770B00BD5E8B /* text.cpp */; }; + 9AE278AB2642869E005C8F2F /* SelfOem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87872642772B00884E81 /* SelfOem.cpp */; }; + 9AE278AC2642869E005C8F2F /* config-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9037E425CFE7D000F14179 /* config-test.cpp */; }; + 9AE278AD2642869E005C8F2F /* SettingsUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF1EFF22634354500F7C2C0 /* SettingsUtils.cpp */; }; + 9AE278AE2642869E005C8F2F /* VersionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4DA25CD279100BD5E8B /* VersionString.cpp */; }; + 9AE278AF2642869E005C8F2F /* bootscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9251F25CD74C900BD5E8B /* bootscreen.cpp */; }; + 9AE278B02642869E005C8F2F /* BdsConnect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239525CD5B1A00BD5E8B /* BdsConnect.cpp */; }; + 9AE278B12642869E005C8F2F /* XString_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07725CE730F00EEAF06 /* XString_test.cpp */; }; + 9AE278B22642869E005C8F2F /* TagBool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E024F3B537007A1107 /* TagBool.cpp */; }; + 9AE278B32642869E005C8F2F /* Nvram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D425CD5B2400BD5E8B /* Nvram.cpp */; }; + 9AE278B42642869E005C8F2F /* shared_with_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD469472452B33700D6D0DB /* shared_with_menu.cpp */; }; + 9AE278B52642869E005C8F2F /* XmlLiteDictTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C44261A44080007CC44 /* XmlLiteDictTypes.cpp */; }; + 9AE278B62642869E005C8F2F /* StartupSound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FF25CD5B2A00BD5E8B /* StartupSound.cpp */; }; + 9AE278B72642869E005C8F2F /* REFIT_MENU_SCREEN.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9253925CD764800BD5E8B /* REFIT_MENU_SCREEN.cpp */; }; + 9AE278B82642869E005C8F2F /* lodepng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257225CD770E00BD5E8B /* lodepng.cpp */; }; + 9AE278B92642869E005C8F2F /* icns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AB25CD79AA00BD5E8B /* icns.cpp */; }; + 9AE278BA2642869E005C8F2F /* plist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DD24F3B536007A1107 /* plist.cpp */; }; + 9AE278BB2642869E005C8F2F /* Events.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FD25CD5B2900BD5E8B /* Events.cpp */; }; + 9AE278BC2642869E005C8F2F /* FixBiosDsdt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240625CD5B2B00BD5E8B /* FixBiosDsdt.cpp */; }; + 9AE278BD2642869E005C8F2F /* BootOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D225CD5B2300BD5E8B /* BootOptions.cpp */; }; + 9AE278BE2642869E005C8F2F /* kext_inject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923E125CD5B2700BD5E8B /* kext_inject.cpp */; }; + 9AE278BF2642869E005C8F2F /* AmlGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FB25CD5B2900BD5E8B /* AmlGenerator.cpp */; }; + 9AE278C02642869E005C8F2F /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DF24F3B536007A1107 /* xml.cpp */; }; + 9AE278C12642869E005C8F2F /* unicode_conversions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9AEB8C243F73CE00FBD7D8 /* unicode_conversions.cpp */; }; + 9AE278C32642869E005C8F2F /* Config_GUI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F878E2642772B00884E81 /* Config_GUI.cpp */; }; + 9AE278C52642869E005C8F2F /* nanosvgrast.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256725CD770C00BD5E8B /* nanosvgrast.cpp */; }; + 9AE278C62642869E005C8F2F /* menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AC25CD79AA00BD5E8B /* menu.cpp */; }; + 9AE278C82642869E005C8F2F /* kext_patcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C825CD5B2100BD5E8B /* kext_patcher.cpp */; }; + 9AE278C92642869E005C8F2F /* menu_items.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9253825CD764800BD5E8B /* menu_items.cpp */; }; + 9AE278CA2642869E005C8F2F /* Config_Quirks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87922642772B00884E81 /* Config_Quirks.cpp */; }; + 9AE278CB2642869E005C8F2F /* libscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256625CD770C00BD5E8B /* libscreen.cpp */; }; + 9AE278CC2642869E005C8F2F /* screen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925AE25CD79AB00BD5E8B /* screen.cpp */; }; + 9AE278CD2642869E005C8F2F /* xml_lite-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9037E325CFE7CD00F14179 /* xml_lite-test.cpp */; }; + 9AE278CE2642869E005C8F2F /* XmlLiteParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A358B3A25CF117A00A3850D /* XmlLiteParser.cpp */; }; + 9AE278CF2642869E005C8F2F /* LegacyBoot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923D625CD5B2400BD5E8B /* LegacyBoot.cpp */; }; + 9AE278D02642869E005C8F2F /* KERNEL_AND_KEXT_PATCHES.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240F25CD5B2D00BD5E8B /* KERNEL_AND_KEXT_PATCHES.cpp */; }; + 9AE278D12642869E005C8F2F /* securevars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252925CD74CB00BD5E8B /* securevars.cpp */; }; + 9AE278D22642869E005C8F2F /* PlatformDriverOverride.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9239925CD5B1B00BD5E8B /* PlatformDriverOverride.cpp */; }; + 9AE278D32642869E005C8F2F /* Volume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF1EFF32634354800F7C2C0 /* Volume.cpp */; }; + 9AE278D42642869E005C8F2F /* BmLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA918C625CD4CD300BD5E8B /* BmLib.cpp */; }; + 9AE278D52642869E005C8F2F /* gma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240225CD5B2B00BD5E8B /* gma.cpp */; }; + 9AE278D62642869E005C8F2F /* XRBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7D518324FC32F700FA1CC3 /* XRBuffer.cpp */; }; + 9AE278D72642869E005C8F2F /* egemb_icons_dark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256125CD770A00BD5E8B /* egemb_icons_dark.cpp */; }; + 9AE278D82642869E005C8F2F /* XStringArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A4185BE2439F73A00BEAFB8 /* XStringArray.cpp */; }; + 9AE278D92642869E005C8F2F /* xml_lite-reapeatingdict-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AB67BE2261834F300CC853A /* xml_lite-reapeatingdict-test.cpp */; }; + 9AE278DA2642869E005C8F2F /* kernel_patcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9240525CD5B2B00BD5E8B /* kernel_patcher.cpp */; }; + 9AE278DB2642869E005C8F2F /* common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9252A25CD74CB00BD5E8B /* common.cpp */; }; + 9AE278DC2642869E005C8F2F /* printlib-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06B25CE730F00EEAF06 /* printlib-test.cpp */; }; + 9AE278DD2642869E005C8F2F /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E50025CD2FF400BD5E8B /* Utils.cpp */; }; + 9AE278DE2642869E005C8F2F /* strncmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07525CE730F00EEAF06 /* strncmp_test.cpp */; }; + 9AE278E02642869E005C8F2F /* TagArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E624F3B537007A1107 /* TagArray.cpp */; }; + 9AE278E12642869E005C8F2F /* DataHub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A272A7D25D5062D00F03E19 /* DataHub.cpp */; }; + 9AE278E22642869E005C8F2F /* strcasecmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0D113625FF583F0040555F /* strcasecmp_test.cpp */; }; + 9AE278E32642869E005C8F2F /* lib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA918BC25CD4B5900BD5E8B /* lib.cpp */; }; + 9AE278E42642869E005C8F2F /* Config_ACPI_DSDT.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A32642772B00884E81 /* Config_ACPI_DSDT.cpp */; }; + 9AE278E52642869E005C8F2F /* TagString8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4DB24F3B536007A1107 /* TagString8.cpp */; }; + 9AE278E62642869E005C8F2F /* plist_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06825CE730F00EEAF06 /* plist_tests.cpp */; }; + 9AE278E72642869E005C8F2F /* loader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E51B25CD306700BD5E8B /* loader.cpp */; }; + 9AE278E82642869E005C8F2F /* Injectors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923FA25CD5B2900BD5E8B /* Injectors.cpp */; }; + 9AE278E92642869E005C8F2F /* load_icns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256B25CD770D00BD5E8B /* load_icns.cpp */; }; + 9AE278EA2642869E005C8F2F /* global_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD05C25CE730F00EEAF06 /* global_test.cpp */; }; + 9AE278EB2642869E005C8F2F /* guid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA923C325CD5B1F00BD5E8B /* guid.cpp */; }; + 9AE278EC2642869E005C8F2F /* TagDate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4E424F3B537007A1107 /* TagDate.cpp */; }; + 9AE278ED2642869E005C8F2F /* printf_lite-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06325CE730F00EEAF06 /* printf_lite-test.cpp */; }; + 9AE278EE2642869E005C8F2F /* XStringArray_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06C25CE730F00EEAF06 /* XStringArray_test.cpp */; }; + 9AE278F02642869E005C8F2F /* Settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A852C0E25CC39E900C5662E /* Settings.cpp */; }; + 9AE278F12642869E005C8F2F /* b64cdecode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E51E24F3B82A007A1107 /* b64cdecode.cpp */; }; + 9AE278F22642869E005C8F2F /* XBuffer_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06025CE730F00EEAF06 /* XBuffer_tests.cpp */; }; + 9AE278F32642869E005C8F2F /* egemb_font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9257125CD770E00BD5E8B /* egemb_font.cpp */; }; + 9AE278F42642869E005C8F2F /* BasicIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F877C2642714700884E81 /* BasicIO.cpp */; }; + 9AE278F52642869E005C8F2F /* TagFloat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A36E4EA24F3B537007A1107 /* TagFloat.cpp */; }; + 9AE278F62642869E005C8F2F /* ConfigPlistAbstract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87A22642772B00884E81 /* ConfigPlistAbstract.cpp */; }; + 9AE278F72642869E005C8F2F /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9256F25CD770E00BD5E8B /* image.cpp */; }; + 9AE278F82642869E005C8F2F /* abort.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F87712642714700884E81 /* abort.cpp */; }; + 9AE278FA2642869E005C8F2F /* REFIT_MAINMENU_SCREEN.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD7B14F26079F5D00E850D1 /* REFIT_MAINMENU_SCREEN.cpp */; }; + 9AE278FB2642869E005C8F2F /* Platform.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0B085D240300E000E2B470 /* Platform.cpp */; }; + 9AE278FC2642869E005C8F2F /* XPointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA9E4E725CD283400BD5E8B /* XPointer.cpp */; }; + 9AF1EFF82634354A00F7C2C0 /* SettingsUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF1EFF22634354500F7C2C0 /* SettingsUtils.cpp */; }; + 9AF1EFF92634354A00F7C2C0 /* Volume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF1EFF32634354800F7C2C0 /* Volume.cpp */; }; + 9AF4E1C0261F0D9500365AD2 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AA925A925CD79A900BD5E8B /* main.cpp */; }; + 9AFDD05425CDBC1800EEAF06 /* printf_lite.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AA91E2625CD59F100BD5E8B /* printf_lite.c */; }; + 9AFDD07D25CE731000EEAF06 /* global_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD05C25CE730F00EEAF06 /* global_test.cpp */; }; + 9AFDD08125CE731000EEAF06 /* XBuffer_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06025CE730F00EEAF06 /* XBuffer_tests.cpp */; }; + 9AFDD08525CE731000EEAF06 /* LoadOptions_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06125CE730F00EEAF06 /* LoadOptions_test.cpp */; }; + 9AFDD08925CE731000EEAF06 /* printf_lite-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06325CE730F00EEAF06 /* printf_lite-test.cpp */; }; + 9AFDD08D25CE731000EEAF06 /* plist_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06825CE730F00EEAF06 /* plist_tests.cpp */; }; + 9AFDD09125CE731000EEAF06 /* MacOsVersion_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06925CE730F00EEAF06 /* MacOsVersion_test.cpp */; }; + 9AFDD09525CE731000EEAF06 /* strcmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06A25CE730F00EEAF06 /* strcmp_test.cpp */; }; + 9AFDD09925CE731000EEAF06 /* printlib-test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06B25CE730F00EEAF06 /* printlib-test.cpp */; }; + 9AFDD09D25CE731000EEAF06 /* XStringArray_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06C25CE730F00EEAF06 /* XStringArray_test.cpp */; }; + 9AFDD0A125CE731000EEAF06 /* find_replace_mask_Clover_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD06E25CE730F00EEAF06 /* find_replace_mask_Clover_tests.cpp */; }; + 9AFDD0A525CE731000EEAF06 /* all_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07125CE730F00EEAF06 /* all_tests.cpp */; }; + 9AFDD0A925CE731000EEAF06 /* XObjArray_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07325CE730F00EEAF06 /* XObjArray_tests.cpp */; }; + 9AFDD0AD25CE731000EEAF06 /* XArray_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07425CE730F00EEAF06 /* XArray_tests.cpp */; }; + 9AFDD0B125CE731000EEAF06 /* strncmp_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07525CE730F00EEAF06 /* strncmp_test.cpp */; }; + 9AFDD0B525CE731000EEAF06 /* XString_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07725CE730F00EEAF06 /* XString_test.cpp */; }; + 9AFDD0B925CE731000EEAF06 /* XToolsCommon_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07925CE730F00EEAF06 /* XToolsCommon_test.cpp */; }; + 9AFDD0BD25CE731000EEAF06 /* strlen_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07B25CE730F00EEAF06 /* strlen_test.cpp */; }; + 9AFDD0C125CE731000EEAF06 /* find_replace_mask_OC_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFDD07C25CE730F00EEAF06 /* find_replace_mask_OC_tests.cpp */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9A92232B2402FD1000483CBA /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = /usr/share/man/man1/; + dstSubfolderSpec = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 1; + }; + 9AE2778F2B051DAB006343AB /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = /usr/share/man/man1/; + dstSubfolderSpec = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 1; + }; + 9AE279512642869E005C8F2F /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = /usr/share/man/man1/; + dstSubfolderSpec = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 1; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 9A071C41261A44070007CC44 /* XmlLiteArrayTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmlLiteArrayTypes.cpp; sourceTree = ""; }; + 9A071C42261A44070007CC44 /* XmlLiteUnionTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmlLiteUnionTypes.cpp; sourceTree = ""; }; + 9A071C43261A44080007CC44 /* XmlLiteDictTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlLiteDictTypes.h; sourceTree = ""; }; + 9A071C44261A44080007CC44 /* XmlLiteDictTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmlLiteDictTypes.cpp; sourceTree = ""; }; + 9A071C45261A44080007CC44 /* XmlLiteUnionTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlLiteUnionTypes.h; sourceTree = ""; }; + 9A071C46261A44080007CC44 /* XmlLiteArrayTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlLiteArrayTypes.h; sourceTree = ""; }; + 9A0B084A2402FE9300E2B470 /* XArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XArray.h; sourceTree = ""; }; + 9A0B084B2402FE9300E2B470 /* XObjArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XObjArray.h; sourceTree = ""; }; + 9A0B085D240300E000E2B470 /* Platform.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Platform.cpp; sourceTree = ""; }; + 9A0D113625FF583F0040555F /* strcasecmp_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strcasecmp_test.cpp; sourceTree = ""; }; + 9A0D113725FF58400040555F /* strcasecmp_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strcasecmp_test.h; sourceTree = ""; }; + 9A0F09C32B0BD0B300F9BC7C /* OcUnicodeCollationEngGenericLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcUnicodeCollationEngGenericLib.lib; sourceTree = ""; }; + 9A0F09C42B0BD0B300F9BC7C /* OcTypingLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcTypingLib.lib; sourceTree = ""; }; + 9A0F09C52B0BD0B300F9BC7C /* ControlMsrE2.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = ControlMsrE2.lib; sourceTree = ""; }; + 9A0F09C62B0BD0B300F9BC7C /* OcAppleKeyMapLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleKeyMapLib.lib; sourceTree = ""; }; + 9A0F09C72B0BD0B300F9BC7C /* OcFlexArrayLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcFlexArrayLib.lib; sourceTree = ""; }; + 9A0F09C82B0BD0B300F9BC7C /* OcConsoleLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcConsoleLib.lib; sourceTree = ""; }; + 9A0F09C92B0BD0B300F9BC7C /* OcRtcLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcRtcLib.lib; sourceTree = ""; }; + 9A0F09CA2B0BD0B300F9BC7C /* OcDebugLogLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDebugLogLib.lib; sourceTree = ""; }; + 9A0F09CB2B0BD0B300F9BC7C /* OcCpuLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcCpuLib.lib; sourceTree = ""; }; + 9A0F09CC2B0BD0B300F9BC7C /* OcGuardLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcGuardLib.lib; sourceTree = ""; }; + 9A0F09CD2B0BD0B300F9BC7C /* OcMainLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMainLib.lib; sourceTree = ""; }; + 9A0F09CE2B0BD0B300F9BC7C /* OcDeviceMiscLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDeviceMiscLib.lib; sourceTree = ""; }; + 9A0F09CF2B0BD0B300F9BC7C /* OcDevicePathLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDevicePathLib.lib; sourceTree = ""; }; + 9A0F09D02B0BD0B300F9BC7C /* OcAppleKernelLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleKernelLib.lib; sourceTree = ""; }; + 9A0F09D12B0BD0B300F9BC7C /* OcAppleKeysLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleKeysLib.lib; sourceTree = ""; }; + 9A0F09D22B0BD0B300F9BC7C /* OcInputLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcInputLib.lib; sourceTree = ""; }; + 9A0F09D32B0BD0B300F9BC7C /* OpenRuntime.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OpenRuntime.lib; sourceTree = ""; }; + 9A0F09D42B0BD0B400F9BC7C /* OcAppleRamDiskLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleRamDiskLib.lib; sourceTree = ""; }; + 9A0F09D52B0BD0B400F9BC7C /* OcPeCoffLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcPeCoffLib.lib; sourceTree = ""; }; + 9A0F09D62B0BD0B400F9BC7C /* OcApfsLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcApfsLib.lib; sourceTree = ""; }; + 9A0F09D72B0BD0B400F9BC7C /* OcSmbiosLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcSmbiosLib.lib; sourceTree = ""; }; + 9A0F09D82B0BD0B400F9BC7C /* OcSerializeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcSerializeLib.lib; sourceTree = ""; }; + 9A0F09D92B0BD0B400F9BC7C /* OcRngLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcRngLib.lib; sourceTree = ""; }; + 9A0F09DA2B0BD0B400F9BC7C /* OcAfterBootCompatLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAfterBootCompatLib.lib; sourceTree = ""; }; + 9A0F09DB2B0BD0B400F9BC7C /* OcCompressionLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcCompressionLib.lib; sourceTree = ""; }; + 9A0F09DC2B0BD0B400F9BC7C /* OcAppleImageVerificationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleImageVerificationLib.lib; sourceTree = ""; }; + 9A0F09DD2B0BD0B400F9BC7C /* OcMemoryLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMemoryLib.lib; sourceTree = ""; }; + 9A0F09DE2B0BD0B400F9BC7C /* OcMacInfoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMacInfoLib.lib; sourceTree = ""; }; + 9A0F09DF2B0BD0B400F9BC7C /* OcBootManagementLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcBootManagementLib.lib; sourceTree = ""; }; + 9A0F09E02B0BD0B400F9BC7C /* OcAppleImg4Lib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleImg4Lib.lib; sourceTree = ""; }; + 9A0F09E12B0BD0B400F9BC7C /* OcAcpiLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAcpiLib.lib; sourceTree = ""; }; + 9A0F09E22B0BD0B400F9BC7C /* OcAppleDiskImageLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleDiskImageLib.lib; sourceTree = ""; }; + 9A0F09E32B0BD0B400F9BC7C /* OcMachoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMachoLib.lib; sourceTree = ""; }; + 9A0F09E42B0BD0B400F9BC7C /* OcSmcLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcSmcLib.lib; sourceTree = ""; }; + 9A0F09E52B0BD0B400F9BC7C /* OcBlitLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcBlitLib.lib; sourceTree = ""; }; + 9A0F09E62B0BD0B400F9BC7C /* OcFileLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcFileLib.lib; sourceTree = ""; }; + 9A0F09E72B0BD0B400F9BC7C /* OcAppleUserInterfaceThemeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleUserInterfaceThemeLib.lib; sourceTree = ""; }; + 9A0F09E82B0BD0B400F9BC7C /* OcPeCoffExtLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcPeCoffExtLib.lib; sourceTree = ""; }; + 9A0F09E92B0BD0B400F9BC7C /* OcDeviceTreeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDeviceTreeLib.lib; sourceTree = ""; }; + 9A0F09EA2B0BD0B400F9BC7C /* OcOSInfoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcOSInfoLib.lib; sourceTree = ""; }; + 9A0F09EB2B0BD0B400F9BC7C /* OcDriverConnectionLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDriverConnectionLib.lib; sourceTree = ""; }; + 9A0F09EC2B0BD0B400F9BC7C /* OpenCore.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = OpenCore.lib; path = ../../../Build/Clover/DEBUGMACOS_XCODE8/X64/OpenCorePkg/Application/OpenCore/OpenCoreLib/OUTPUT/OpenCore.lib; sourceTree = ""; }; + 9A0F09ED2B0BD0B400F9BC7C /* OcHashServicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcHashServicesLib.lib; sourceTree = ""; }; + 9A0F09EE2B0BD0B400F9BC7C /* OcMiscLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMiscLib.lib; sourceTree = ""; }; + 9A0F09EF2B0BD0B500F9BC7C /* OcAppleBootPolicyLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleBootPolicyLib.lib; sourceTree = ""; }; + 9A0F09F02B0BD0B500F9BC7C /* OcAppleSecureBootLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleSecureBootLib.lib; sourceTree = ""; }; + 9A0F09F22B0BD0B500F9BC7C /* VideoBiosPatchLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = VideoBiosPatchLib.lib; sourceTree = ""; }; + 9A0F09F32B0BD0B500F9BC7C /* VBoxPeCoffLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = VBoxPeCoffLib.lib; sourceTree = ""; }; + 9A0F09F42B0BD0B500F9BC7C /* DuetTimerLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DuetTimerLib.lib; sourceTree = ""; }; + 9A0F09F52B0BD0B500F9BC7C /* OpensslLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OpensslLib.lib; sourceTree = ""; }; + 9A0F09F62B0BD0B500F9BC7C /* HdaDevicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = HdaDevicesLib.lib; sourceTree = ""; }; + 9A0F09F72B0BD0B500F9BC7C /* WaveLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = WaveLib.lib; sourceTree = ""; }; + 9A0F09F92B0BD0B500F9BC7C /* BasePciCf8Lib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePciCf8Lib.lib; sourceTree = ""; }; + 9A0F09FA2B0BD0B500F9BC7C /* UefiApplicationEntryPoint.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiApplicationEntryPoint.lib; sourceTree = ""; }; + 9A0F09FB2B0BD0B500F9BC7C /* BaseLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseLib.lib; sourceTree = ""; }; + 9A0F09FC2B0BD0B500F9BC7C /* UefiRuntimeServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiRuntimeServicesTableLib.lib; sourceTree = ""; }; + 9A0F09FD2B0BD0B500F9BC7C /* BaseMemoryLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseMemoryLib.lib; sourceTree = ""; }; + 9A0F09FE2B0BD0B500F9BC7C /* BaseIoLibIntrinsic.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseIoLibIntrinsic.lib; sourceTree = ""; }; + 9A0F09FF2B0BD0B500F9BC7C /* DxeServicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DxeServicesLib.lib; sourceTree = ""; }; + 9A0F0A002B0BD0B500F9BC7C /* BaseCpuLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseCpuLib.lib; sourceTree = ""; }; + 9A0F0A012B0BD0B500F9BC7C /* UefiLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiLib.lib; sourceTree = ""; }; + 9A0F0A022B0BD0B500F9BC7C /* PeCoffExtraActionLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = PeCoffExtraActionLibNull.lib; sourceTree = ""; }; + 9A0F0A032B0BD0B500F9BC7C /* UefiMemoryAllocationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiMemoryAllocationLib.lib; sourceTree = ""; }; + 9A0F0A042B0BD0B500F9BC7C /* UefiFileHandleLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiFileHandleLib.lib; sourceTree = ""; }; + 9A0F0A052B0BD0B500F9BC7C /* DxeHobLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DxeHobLib.lib; sourceTree = ""; }; + 9A0F0A062B0BD0B500F9BC7C /* UefiBootServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiBootServicesTableLib.lib; sourceTree = ""; }; + 9A0F0A072B0BD0B500F9BC7C /* BaseDebugLibSerialPort.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseDebugLibSerialPort.lib; sourceTree = ""; }; + 9A0F0A082B0BD0B500F9BC7C /* DxeServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DxeServicesTableLib.lib; sourceTree = ""; }; + 9A0F0A092B0BD0B500F9BC7C /* BasePciLibCf8.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePciLibCf8.lib; sourceTree = ""; }; + 9A0F0A0A2B0BD0B500F9BC7C /* BasePrintLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePrintLib.lib; sourceTree = ""; }; + 9A0F0A0B2B0BD0B500F9BC7C /* UefiDevicePathLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiDevicePathLib.lib; sourceTree = ""; }; + 9A0F0A0C2B0BD0B500F9BC7C /* BaseDebugPrintErrorLevelLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseDebugPrintErrorLevelLib.lib; sourceTree = ""; }; + 9A0F0A0E2B0BD0B500F9BC7C /* MtrrLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = MtrrLib.lib; sourceTree = ""; }; + 9A0F0A102B0BD0B500F9BC7C /* BasePlatformHookLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePlatformHookLibNull.lib; sourceTree = ""; }; + 9A0F0A112B0BD0B500F9BC7C /* BaseSerialPortLib16550.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseSerialPortLib16550.lib; sourceTree = ""; }; + 9A0F0A122B0BD0B500F9BC7C /* FrameBufferBltLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameBufferBltLib.lib; sourceTree = ""; }; + 9A0F0A132B0BD0B500F9BC7C /* UefiSortLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiSortLib.lib; sourceTree = ""; }; + 9A0F0A152B0BD0B500F9BC7C /* AutoGen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoGen.h; sourceTree = ""; }; + 9A0F0A162B0BD0B500F9BC7C /* AutoGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AutoGen.c; sourceTree = ""; }; + 9A0F0A192B0BD0B500F9BC7C /* BaseMemoryLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseMemoryLib.c; sourceTree = ""; }; + 9A0F0A1A2B0BD0B500F9BC7C /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9A0F0A1B2B0BD0B500F9BC7C /* PrintLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = PrintLib.c; sourceTree = ""; }; + 9A0F0A1C2B0BD0B500F9BC7C /* DebugLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9A0F0A1D2B0BD0B500F9BC7C /* Globals.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Globals.cpp; sourceTree = ""; }; + 9A0F0A1E2B0BD0B500F9BC7C /* Base.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Base.h; sourceTree = ""; }; + 9A0F0A1F2B0BD0B500F9BC7C /* relink_release_libs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = relink_release_libs; sourceTree = ""; }; + 9A0F0A202B0BD0B500F9BC7C /* xcode_utf_fixed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xcode_utf_fixed.h; sourceTree = ""; }; + 9A0F1D332B0BD16000F9BC7C /* MemLogLib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MemLogLib; sourceTree = ""; }; + 9A0F1D4C2B0BDA5800F9BC7C /* MemLogLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLogLib.c; sourceTree = ""; }; + 9A0FF4082B0BB30800F9BC7C /* UtilsEFI.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = UtilsEFI.cpp; sourceTree = ""; }; + 9A0FF4092B0BB30800F9BC7C /* UtilsEFI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UtilsEFI.h; sourceTree = ""; }; + 9A0FF41C2B0BD09C00F9BC7C /* OcDataHubLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcDataHubLib.lib; sourceTree = ""; }; + 9A0FF41D2B0BD09C00F9BC7C /* OcXmlLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcXmlLib.lib; sourceTree = ""; }; + 9A0FF41E2B0BD09C00F9BC7C /* OcConfigurationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcConfigurationLib.lib; sourceTree = ""; }; + 9A0FF41F2B0BD09C00F9BC7C /* OcFirmwareVolumeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcFirmwareVolumeLib.lib; sourceTree = ""; }; + 9A0FF4202B0BD09C00F9BC7C /* OcStorageLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcStorageLib.lib; sourceTree = ""; }; + 9A0FF4212B0BD09C00F9BC7C /* OcVirtualFsLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcVirtualFsLib.lib; sourceTree = ""; }; + 9A0FF4222B0BD09C00F9BC7C /* OcAppleEventLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleEventLib.lib; sourceTree = ""; }; + 9A0FF4232B0BD09C00F9BC7C /* OcCryptoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcCryptoLib.lib; sourceTree = ""; }; + 9A0FF4242B0BD09C00F9BC7C /* OcAudioLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAudioLib.lib; sourceTree = ""; }; + 9A0FF4252B0BD09C00F9BC7C /* OcDevicePropertyLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcDevicePropertyLib.lib; sourceTree = ""; }; + 9A0FF4262B0BD09C00F9BC7C /* OcAppleChunklistLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleChunklistLib.lib; sourceTree = ""; }; + 9A0FF4272B0BD09C00F9BC7C /* OcStringLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcStringLib.lib; sourceTree = ""; }; + 9A0FF4282B0BD09C00F9BC7C /* OcTemplateLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcTemplateLib.lib; sourceTree = ""; }; + 9A0FF4292B0BD09C00F9BC7C /* OcUnicodeCollationEngGenericLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcUnicodeCollationEngGenericLib.lib; sourceTree = ""; }; + 9A0FF42A2B0BD09C00F9BC7C /* ControlMsrE2.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = ControlMsrE2.lib; sourceTree = ""; }; + 9A0FF42B2B0BD09C00F9BC7C /* OcAppleKeyMapLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleKeyMapLib.lib; sourceTree = ""; }; + 9A0FF42C2B0BD09C00F9BC7C /* OcConsoleLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcConsoleLib.lib; sourceTree = ""; }; + 9A0FF42D2B0BD09C00F9BC7C /* OcRtcLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcRtcLib.lib; sourceTree = ""; }; + 9A0FF42E2B0BD09C00F9BC7C /* OcDebugLogLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcDebugLogLib.lib; sourceTree = ""; }; + 9A0FF42F2B0BD09C00F9BC7C /* OcCpuLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcCpuLib.lib; sourceTree = ""; }; + 9A0FF4302B0BD09C00F9BC7C /* OcGuardLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcGuardLib.lib; sourceTree = ""; }; + 9A0FF4312B0BD09C00F9BC7C /* OcDevicePathLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcDevicePathLib.lib; sourceTree = ""; }; + 9A0FF4322B0BD09C00F9BC7C /* OcAppleKernelLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleKernelLib.lib; sourceTree = ""; }; + 9A0FF4332B0BD09C00F9BC7C /* OcAppleKeysLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleKeysLib.lib; sourceTree = ""; }; + 9A0FF4342B0BD09C00F9BC7C /* OcInputLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcInputLib.lib; sourceTree = ""; }; + 9A0FF4352B0BD09C00F9BC7C /* OpenRuntime.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OpenRuntime.lib; sourceTree = ""; }; + 9A0FF4362B0BD09C00F9BC7C /* OcAppleRamDiskLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleRamDiskLib.lib; sourceTree = ""; }; + 9A0FF4372B0BD09C00F9BC7C /* OcPeCoffLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcPeCoffLib.lib; sourceTree = ""; }; + 9A0FF4382B0BD09C00F9BC7C /* OcApfsLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcApfsLib.lib; sourceTree = ""; }; + 9A0FF4392B0BD09C00F9BC7C /* OcSmbiosLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcSmbiosLib.lib; sourceTree = ""; }; + 9A0FF43A2B0BD09C00F9BC7C /* OcSerializeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcSerializeLib.lib; sourceTree = ""; }; + 9A0FF43B2B0BD09C00F9BC7C /* OcRngLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcRngLib.lib; sourceTree = ""; }; + 9A0FF43C2B0BD09C00F9BC7C /* OcAfterBootCompatLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAfterBootCompatLib.lib; sourceTree = ""; }; + 9A0FF43D2B0BD09C00F9BC7C /* OcCompressionLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcCompressionLib.lib; sourceTree = ""; }; + 9A0FF43E2B0BD09C00F9BC7C /* OcAppleImageVerificationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleImageVerificationLib.lib; sourceTree = ""; }; + 9A0FF43F2B0BD09C00F9BC7C /* OcMemoryLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcMemoryLib.lib; sourceTree = ""; }; + 9A0FF4402B0BD09C00F9BC7C /* OcMacInfoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcMacInfoLib.lib; sourceTree = ""; }; + 9A0FF4412B0BD09C00F9BC7C /* OcBootManagementLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcBootManagementLib.lib; sourceTree = ""; }; + 9A0FF4422B0BD09C00F9BC7C /* OcAppleImg4Lib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleImg4Lib.lib; sourceTree = ""; }; + 9A0FF4432B0BD09C00F9BC7C /* OcAcpiLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAcpiLib.lib; sourceTree = ""; }; + 9A0FF4442B0BD09C00F9BC7C /* OcAppleDiskImageLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleDiskImageLib.lib; sourceTree = ""; }; + 9A0FF4452B0BD09C00F9BC7C /* OcMachoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcMachoLib.lib; sourceTree = ""; }; + 9A0FF4462B0BD09C00F9BC7C /* OcSmcLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcSmcLib.lib; sourceTree = ""; }; + 9A0FF4472B0BD09C00F9BC7C /* OcFileLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcFileLib.lib; sourceTree = ""; }; + 9A0FF4482B0BD09C00F9BC7C /* OcAppleUserInterfaceThemeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleUserInterfaceThemeLib.lib; sourceTree = ""; }; + 9A0FF4492B0BD09C00F9BC7C /* OcDeviceTreeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcDeviceTreeLib.lib; sourceTree = ""; }; + 9A0FF44A2B0BD09C00F9BC7C /* OcOSInfoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcOSInfoLib.lib; sourceTree = ""; }; + 9A0FF44B2B0BD09C00F9BC7C /* OcDriverConnectionLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcDriverConnectionLib.lib; sourceTree = ""; }; + 9A0FF44C2B0BD09C00F9BC7C /* OpenCore.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OpenCore.lib; sourceTree = ""; }; + 9A0FF44D2B0BD09C00F9BC7C /* OcHashServicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcHashServicesLib.lib; sourceTree = ""; }; + 9A0FF44E2B0BD09C00F9BC7C /* OcMiscLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcMiscLib.lib; sourceTree = ""; }; + 9A0FF44F2B0BD09C00F9BC7C /* OcAppleBootPolicyLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleBootPolicyLib.lib; sourceTree = ""; }; + 9A0FF4502B0BD09C00F9BC7C /* OcAppleSecureBootLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcAppleSecureBootLib.lib; sourceTree = ""; }; + 9A0FF4522B0BD09C00F9BC7C /* VideoBiosPatchLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = VideoBiosPatchLib.lib; sourceTree = ""; }; + 9A0FF4532B0BD09C00F9BC7C /* VBoxPeCoffLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = VBoxPeCoffLib.lib; sourceTree = ""; }; + 9A0FF4542B0BD09C00F9BC7C /* DuetTimerLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = DuetTimerLib.lib; sourceTree = ""; }; + 9A0FF4552B0BD09C00F9BC7C /* OpensslLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OpensslLib.lib; sourceTree = ""; }; + 9A0FF4562B0BD09C00F9BC7C /* HdaDevicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = HdaDevicesLib.lib; sourceTree = ""; }; + 9A0FF4572B0BD09C00F9BC7C /* WaveLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = WaveLib.lib; sourceTree = ""; }; + 9A0FF4592B0BD09C00F9BC7C /* BasePciCf8Lib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasePciCf8Lib.lib; sourceTree = ""; }; + 9A0FF45A2B0BD09C00F9BC7C /* UefiApplicationEntryPoint.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = UefiApplicationEntryPoint.lib; sourceTree = ""; }; + 9A0FF45B2B0BD09C00F9BC7C /* BaseLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BaseLib.lib; sourceTree = ""; }; + 9A0FF45C2B0BD09C00F9BC7C /* UefiRuntimeServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = UefiRuntimeServicesTableLib.lib; sourceTree = ""; }; + 9A0FF45D2B0BD09C00F9BC7C /* BaseMemoryLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BaseMemoryLib.lib; sourceTree = ""; }; + 9A0FF45E2B0BD09C00F9BC7C /* BaseIoLibIntrinsic.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BaseIoLibIntrinsic.lib; sourceTree = ""; }; + 9A0FF45F2B0BD09C00F9BC7C /* DxeServicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = DxeServicesLib.lib; sourceTree = ""; }; + 9A0FF4602B0BD09C00F9BC7C /* BaseCpuLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BaseCpuLib.lib; sourceTree = ""; }; + 9A0FF4612B0BD09C00F9BC7C /* UefiLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = UefiLib.lib; sourceTree = ""; }; + 9A0FF4622B0BD09C00F9BC7C /* BaseSerialPortLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BaseSerialPortLibNull.lib; sourceTree = ""; }; + 9A0FF4632B0BD09C00F9BC7C /* PeCoffExtraActionLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = PeCoffExtraActionLibNull.lib; sourceTree = ""; }; + 9A0FF4642B0BD09C00F9BC7C /* UefiMemoryAllocationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = UefiMemoryAllocationLib.lib; sourceTree = ""; }; + 9A0FF4652B0BD09C00F9BC7C /* BaseDebugLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BaseDebugLibNull.lib; sourceTree = ""; }; + 9A0FF4662B0BD09C00F9BC7C /* UefiFileHandleLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = UefiFileHandleLib.lib; sourceTree = ""; }; + 9A0FF4672B0BD09C00F9BC7C /* DxeHobLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = DxeHobLib.lib; sourceTree = ""; }; + 9A0FF4682B0BD09C00F9BC7C /* UefiBootServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = UefiBootServicesTableLib.lib; sourceTree = ""; }; + 9A0FF4692B0BD09C00F9BC7C /* DxeServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = DxeServicesTableLib.lib; sourceTree = ""; }; + 9A0FF46A2B0BD09C00F9BC7C /* BasePciLibCf8.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasePciLibCf8.lib; sourceTree = ""; }; + 9A0FF46B2B0BD09C00F9BC7C /* BasePrintLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasePrintLib.lib; sourceTree = ""; }; + 9A0FF46C2B0BD09C00F9BC7C /* UefiDevicePathLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = UefiDevicePathLib.lib; sourceTree = ""; }; + 9A0FF46D2B0BD09C00F9BC7C /* BaseDebugPrintErrorLevelLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BaseDebugPrintErrorLevelLib.lib; sourceTree = ""; }; + 9A0FF46F2B0BD09C00F9BC7C /* MtrrLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = MtrrLib.lib; sourceTree = ""; }; + 9A0FF4712B0BD09C00F9BC7C /* BasePlatformHookLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasePlatformHookLibNull.lib; sourceTree = ""; }; + 9A0FF4722B0BD09C00F9BC7C /* FrameBufferBltLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameBufferBltLib.lib; sourceTree = ""; }; + 9A0FF4742B0BD09C00F9BC7C /* AutoGen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoGen.h; sourceTree = ""; }; + 9A0FF4752B0BD09C00F9BC7C /* AutoGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AutoGen.c; sourceTree = ""; }; + 9A0FF4782B0BD09C00F9BC7C /* printf_lite-conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printf_lite-conf.h"; sourceTree = ""; }; + 9A0FF47B2B0BD09C00F9BC7C /* MemLogLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLogLib.c; sourceTree = ""; }; + 9A0FF47C2B0BD09C00F9BC7C /* ReadmeJief.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReadmeJief.txt; sourceTree = ""; }; + 9A0FF47D2B0BD09C00F9BC7C /* xcode_utf_fixed.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xcode_utf_fixed.cpp; sourceTree = ""; }; + 9A0FF4802B0BD09C00F9BC7C /* OcDataHubLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDataHubLib.lib; sourceTree = ""; }; + 9A0FF4812B0BD09C00F9BC7C /* OcXmlLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcXmlLib.lib; sourceTree = ""; }; + 9A0FF4822B0BD09C00F9BC7C /* OcConfigurationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcConfigurationLib.lib; sourceTree = ""; }; + 9A0FF4832B0BD09C00F9BC7C /* OcFirmwareVolumeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = file; path = OcFirmwareVolumeLib.lib; sourceTree = ""; }; + 9A0FF4842B0BD09C00F9BC7C /* OcStorageLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcStorageLib.lib; sourceTree = ""; }; + 9A0FF4852B0BD09C00F9BC7C /* OcVirtualFsLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcVirtualFsLib.lib; sourceTree = ""; }; + 9A0FF4862B0BD09C00F9BC7C /* OcAppleEventLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleEventLib.lib; sourceTree = ""; }; + 9A0FF4872B0BD09C00F9BC7C /* OcCryptoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcCryptoLib.lib; sourceTree = ""; }; + 9A0FF4882B0BD09C00F9BC7C /* OcAudioLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAudioLib.lib; sourceTree = ""; }; + 9A0FF4892B0BD09C00F9BC7C /* OcDevicePropertyLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDevicePropertyLib.lib; sourceTree = ""; }; + 9A0FF48A2B0BD09C00F9BC7C /* OcVariableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcVariableLib.lib; sourceTree = ""; }; + 9A0FF48B2B0BD09C00F9BC7C /* OcAppleChunklistLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleChunklistLib.lib; sourceTree = ""; }; + 9A0FF48C2B0BD09C00F9BC7C /* OcStringLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcStringLib.lib; sourceTree = ""; }; + 9A0FF48D2B0BD09C00F9BC7C /* OcTemplateLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcTemplateLib.lib; sourceTree = ""; }; + 9A1F87702642714700884E81 /* posix_additions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = posix_additions.cpp; sourceTree = ""; }; + 9A1F87712642714700884E81 /* abort.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = abort.cpp; sourceTree = ""; }; + 9A1F87722642714700884E81 /* posix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = posix.h; sourceTree = ""; }; + 9A1F87732642714700884E81 /* clover_strlen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = clover_strlen.cpp; sourceTree = ""; }; + 9A1F87742642714700884E81 /* posix_additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = posix_additions.h; sourceTree = ""; }; + 9A1F87752642714700884E81 /* abort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = abort.h; sourceTree = ""; }; + 9A1F87772642714700884E81 /* printlib-test-cpp_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printlib-test-cpp_conf.h"; sourceTree = ""; }; + 9A1F87782642714700884E81 /* printf_lite-test-cpp_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printf_lite-test-cpp_conf.h"; sourceTree = ""; }; + 9A1F87792642714700884E81 /* Platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Platform.h; sourceTree = ""; }; + 9A1F877A2642714700884E81 /* XToolsConf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XToolsConf.h; sourceTree = ""; }; + 9A1F877B2642714700884E81 /* BootLog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BootLog.cpp; sourceTree = ""; }; + 9A1F877C2642714700884E81 /* BasicIO.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BasicIO.cpp; sourceTree = ""; }; + 9A1F877E2642714700884E81 /* globals_dtor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = globals_dtor.h; sourceTree = ""; }; + 9A1F877F2642714700884E81 /* operatorNewDelete.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = operatorNewDelete.h; sourceTree = ""; }; + 9A1F87802642714700884E81 /* globals_ctor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = globals_ctor.h; sourceTree = ""; }; + 9A1F87872642772B00884E81 /* SelfOem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SelfOem.cpp; sourceTree = ""; }; + 9A1F87882642772B00884E81 /* ConfigManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfigManager.h; sourceTree = ""; }; + 9A1F87892642772B00884E81 /* Readme.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = Readme.md; sourceTree = ""; }; + 9A1F878A2642772B00884E81 /* SelfOem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelfOem.h; sourceTree = ""; }; + 9A1F878B2642772B00884E81 /* ConfigManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ConfigManager.cpp; sourceTree = ""; }; + 9A1F878D2642772B00884E81 /* SMBIOSPlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SMBIOSPlist.h; sourceTree = ""; }; + 9A1F878E2642772B00884E81 /* Config_GUI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Config_GUI.cpp; sourceTree = ""; }; + 9A1F878F2642772B00884E81 /* Config_KernelAndKextPatches.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_KernelAndKextPatches.h; sourceTree = ""; }; + 9A1F87902642772B00884E81 /* Config_Graphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Graphics.h; sourceTree = ""; }; + 9A1F87912642772B00884E81 /* Config_ACPI_DSDT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_ACPI_DSDT.h; sourceTree = ""; }; + 9A1F87922642772B00884E81 /* Config_Quirks.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Config_Quirks.cpp; sourceTree = ""; }; + 9A1F87932642772B00884E81 /* Config_Devices_Audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Devices_Audio.h; sourceTree = ""; }; + 9A1F87942642772B00884E81 /* Config_Quirks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Quirks.h; sourceTree = ""; }; + 9A1F87952642772B00884E81 /* ConfigPlistClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfigPlistClass.h; sourceTree = ""; }; + 9A1F87962642772B00884E81 /* Config_ACPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_ACPI.h; sourceTree = ""; }; + 9A1F87972642772B00884E81 /* Config_Devices_Properties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Devices_Properties.h; sourceTree = ""; }; + 9A1F87982642772B00884E81 /* Config_Boot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Boot.h; sourceTree = ""; }; + 9A1F87992642772B00884E81 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9A1F879A2642772B00884E81 /* Config_Devices_Arbitrary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Devices_Arbitrary.h; sourceTree = ""; }; + 9A1F879B2642772B00884E81 /* ConfigPlistAbstract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfigPlistAbstract.h; sourceTree = ""; }; + 9A1F879D2642772B00884E81 /* Config_SystemParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_SystemParameters.h; sourceTree = ""; }; + 9A1F879F2642772B00884E81 /* Config_Devices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Devices.h; sourceTree = ""; }; + 9A1F87A02642772B00884E81 /* Config_CPU.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_CPU.h; sourceTree = ""; }; + 9A1F87A12642772B00884E81 /* Config_BootGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_BootGraphics.h; sourceTree = ""; }; + 9A1F87A22642772B00884E81 /* ConfigPlistAbstract.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ConfigPlistAbstract.cpp; sourceTree = ""; }; + 9A1F87A32642772B00884E81 /* Config_ACPI_DSDT.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Config_ACPI_DSDT.cpp; sourceTree = ""; }; + 9A1F87A42642772B00884E81 /* Config_ACPI_SSDT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_ACPI_SSDT.h; sourceTree = ""; }; + 9A1F87A52642772B00884E81 /* Config_GUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_GUI.h; sourceTree = ""; }; + 9A1F87A62642772B00884E81 /* Config_RtVariables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_RtVariables.h; sourceTree = ""; }; + 9A1F87A72642772B00884E81 /* SMBIOSPlist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SMBIOSPlist.cpp; sourceTree = ""; }; + 9A1F87A82642772B00884E81 /* Config_Devices_FakeID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Devices_FakeID.h; sourceTree = ""; }; + 9A1F87A92642772B00884E81 /* Config_Devices_USB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Devices_USB.h; sourceTree = ""; }; + 9A1F87AA2642772B00884E81 /* Config_Devices_AddProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config_Devices_AddProperties.h; sourceTree = ""; }; + 9A1F87AB2642772B00884E81 /* Self.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Self.h; sourceTree = ""; }; + 9A1F87AC2642772B00884E81 /* Self.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Self.cpp; sourceTree = ""; }; + 9A1F87C126427A0400884E81 /* CloverVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CloverVersion.h; sourceTree = ""; }; + 9A1F87C226427A0500884E81 /* CloverVersion.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = CloverVersion.cpp; sourceTree = ""; }; + 9A1F87C326427A0500884E81 /* SmbiosFillPatchingValues.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbiosFillPatchingValues.h; sourceTree = ""; }; + 9A1F87C426427A0600884E81 /* SmbiosFillPatchingValues.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = SmbiosFillPatchingValues.cpp; sourceTree = ""; }; + 9A272A7C25D5062D00F03E19 /* DataHubExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataHubExt.h; sourceTree = ""; }; + 9A272A7D25D5062D00F03E19 /* DataHub.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DataHub.cpp; sourceTree = ""; }; + 9A272A7E25D5062E00F03E19 /* DataHub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataHub.h; sourceTree = ""; }; + 9A358B3725CF117A00A3850D /* XmlLiteParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlLiteParser.h; sourceTree = ""; }; + 9A358B3925CF117A00A3850D /* XmlLiteCompositeTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmlLiteCompositeTypes.cpp; sourceTree = ""; }; + 9A358B3A25CF117A00A3850D /* XmlLiteParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmlLiteParser.cpp; sourceTree = ""; }; + 9A358B3C25CF117A00A3850D /* XmlLiteCompositeTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlLiteCompositeTypes.h; sourceTree = ""; }; + 9A36E4DA24F3B536007A1107 /* TagBool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagBool.h; sourceTree = ""; }; + 9A36E4DB24F3B536007A1107 /* TagString8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagString8.cpp; sourceTree = ""; }; + 9A36E4DC24F3B536007A1107 /* plist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plist.h; sourceTree = ""; }; + 9A36E4DD24F3B536007A1107 /* plist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plist.cpp; sourceTree = ""; }; + 9A36E4DE24F3B536007A1107 /* TagInt64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagInt64.h; sourceTree = ""; }; + 9A36E4DF24F3B536007A1107 /* xml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xml.cpp; sourceTree = ""; }; + 9A36E4E024F3B537007A1107 /* TagBool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagBool.cpp; sourceTree = ""; }; + 9A36E4E124F3B537007A1107 /* TagDict.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagDict.cpp; sourceTree = ""; }; + 9A36E4E224F3B537007A1107 /* TagInt64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagInt64.cpp; sourceTree = ""; }; + 9A36E4E324F3B537007A1107 /* xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = ""; }; + 9A36E4E424F3B537007A1107 /* TagDate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagDate.cpp; sourceTree = ""; }; + 9A36E4E524F3B537007A1107 /* TagData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagData.cpp; sourceTree = ""; }; + 9A36E4E624F3B537007A1107 /* TagArray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagArray.cpp; sourceTree = ""; }; + 9A36E4E724F3B537007A1107 /* TagDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagDate.h; sourceTree = ""; }; + 9A36E4E824F3B537007A1107 /* TagData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagData.h; sourceTree = ""; }; + 9A36E4E924F3B537007A1107 /* TagArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagArray.h; sourceTree = ""; }; + 9A36E4EA24F3B537007A1107 /* TagFloat.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagFloat.cpp; sourceTree = ""; }; + 9A36E4EB24F3B537007A1107 /* TagFloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagFloat.h; sourceTree = ""; }; + 9A36E4EC24F3B537007A1107 /* TagKey.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TagKey.cpp; sourceTree = ""; }; + 9A36E4ED24F3B537007A1107 /* TagDict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagDict.h; sourceTree = ""; }; + 9A36E4EE24F3B537007A1107 /* TagKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagKey.h; sourceTree = ""; }; + 9A36E4EF24F3B537007A1107 /* TagString8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagString8.h; sourceTree = ""; }; + 9A36E51D24F3B82A007A1107 /* b64cdecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b64cdecode.h; sourceTree = ""; }; + 9A36E51E24F3B82A007A1107 /* b64cdecode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b64cdecode.cpp; sourceTree = ""; }; + 9A36E52424F3BB6B007A1107 /* FloatLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FloatLib.cpp; sourceTree = ""; }; + 9A36E52524F3BB6B007A1107 /* FloatLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FloatLib.h; sourceTree = ""; }; + 9A36E53A24F3EDED007A1107 /* base64.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = base64.h; sourceTree = ""; }; + 9A36E53B24F3EDED007A1107 /* base64.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = base64.cpp; sourceTree = ""; }; + 9A4147662604F82900440186 /* undefinable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = undefinable.h; sourceTree = ""; }; + 9A4185BE2439F73A00BEAFB8 /* XStringArray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XStringArray.cpp; sourceTree = ""; }; + 9A4185BF2439F73A00BEAFB8 /* XStringArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XStringArray.h; sourceTree = ""; }; + 9A4C5769255AAD07004F0B21 /* MacOsVersion.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MacOsVersion.cpp; sourceTree = ""; }; + 9A4C576A255AAD07004F0B21 /* MacOsVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacOsVersion.h; sourceTree = ""; }; + 9A4FFA7C2451C8330050B38B /* XString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XString.cpp; sourceTree = ""; }; + 9A57C266241A799B0029A39F /* XString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XString.h; sourceTree = ""; }; + 9A6BA73C2449977300BDA52C /* XStringAbstract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XStringAbstract.h; sourceTree = ""; }; + 9A78DF7E260A531100FE811A /* Languages.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Languages.h; sourceTree = ""; }; + 9A7A0DB22643DE8600FD8B2A /* main_read_config.plist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main_read_config.plist.cpp; path = src/main_read_config.plist.cpp; sourceTree = SOURCE_ROOT; }; + 9A7A0DB72643DFDE00FD8B2A /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + 9A7AEDE82459696C003AAD04 /* XToolsCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XToolsCommon.h; sourceTree = ""; }; + 9A7D518024FC32F700FA1CC3 /* XBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XBuffer.h; sourceTree = ""; }; + 9A7D518124FC32F700FA1CC3 /* XBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XBuffer.cpp; sourceTree = ""; }; + 9A7D518224FC32F700FA1CC3 /* XRBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XRBuffer.h; sourceTree = ""; }; + 9A7D518324FC32F700FA1CC3 /* XRBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XRBuffer.cpp; sourceTree = ""; }; + 9A838CAA25342626008303F5 /* MemoryOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryOperation.h; sourceTree = ""; }; + 9A838CB325347C36008303F5 /* MemoryOperation.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp.preprocessed; fileEncoding = 4; path = MemoryOperation.c; sourceTree = ""; }; + 9A852C0D25CC39E900C5662E /* Settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Settings.h; sourceTree = ""; }; + 9A852C0E25CC39E900C5662E /* Settings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Settings.cpp; sourceTree = ""; }; + 9A9037E225CFE7CD00F14179 /* config-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "config-test.h"; sourceTree = ""; }; + 9A9037E325CFE7CD00F14179 /* xml_lite-test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "xml_lite-test.cpp"; sourceTree = ""; }; + 9A9037E425CFE7D000F14179 /* config-test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "config-test.cpp"; sourceTree = ""; }; + 9A9037E525CFE7D000F14179 /* xml_lite-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "xml_lite-test.h"; sourceTree = ""; }; + 9A92232D2402FD1000483CBA /* CloverMacOsApp-UTF16_signed-DebugLibs */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "CloverMacOsApp-UTF16_signed-DebugLibs"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9A9AEB8B243F73CE00FBD7D8 /* unicode_conversions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unicode_conversions.h; sourceTree = ""; }; + 9A9AEB8C243F73CE00FBD7D8 /* unicode_conversions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unicode_conversions.cpp; sourceTree = ""; }; + 9AA3911825CC56840099DC1F /* FixBiosDsdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FixBiosDsdt.h; sourceTree = ""; }; + 9AA3911A25CC56E60099DC1F /* Devices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Devices.h; sourceTree = ""; }; + 9AA3911B25CC56E60099DC1F /* printlib-test-cpp_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printlib-test-cpp_conf.h"; sourceTree = ""; }; + 9AA3911C25CC56E60099DC1F /* syslinux_mbr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = syslinux_mbr.h; sourceTree = ""; }; + 9AA3911D25CC56E60099DC1F /* printf_lite-test-cpp_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printf_lite-test-cpp_conf.h"; sourceTree = ""; }; + 9AA3911E25CC56E60099DC1F /* rename_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rename_helper.h; sourceTree = ""; }; + 9AA3911F25CC56E60099DC1F /* Handle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Handle.h; sourceTree = ""; }; + 9AA3912025CC56E60099DC1F /* OneLinerMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OneLinerMacros.h; sourceTree = ""; }; + 9AA3912225CC56E60099DC1F /* Pci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pci.h; sourceTree = ""; }; + 9AA3912325CC56E60099DC1F /* Efi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Efi.h; sourceTree = ""; }; + 9AA3912425CC56E60099DC1F /* OC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OC.h; sourceTree = ""; }; + 9AA3912525CC56E60099DC1F /* XToolsConf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XToolsConf.h; sourceTree = ""; }; + 9AA909EA25CD451500BD5E8B /* PiPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPei.h; sourceTree = ""; }; + 9AA909EB25CD451500BD5E8B /* PiMm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiMm.h; sourceTree = ""; }; + 9AA909EC25CD451500BD5E8B /* Uefi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Uefi.h; sourceTree = ""; }; + 9AA909EE25CD451500BD5E8B /* Nasm.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = Nasm.inc; sourceTree = ""; }; + 9AA909EF25CD451500BD5E8B /* ProcessorBind.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProcessorBind.h; sourceTree = ""; }; + 9AA909F125CD451500BD5E8B /* UefiAcpiDataTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiAcpiDataTable.h; sourceTree = ""; }; + 9AA909F225CD451500BD5E8B /* UefiPxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiPxe.h; sourceTree = ""; }; + 9AA909F325CD451500BD5E8B /* UefiSpec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiSpec.h; sourceTree = ""; }; + 9AA909F425CD451500BD5E8B /* UefiGpt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiGpt.h; sourceTree = ""; }; + 9AA909F525CD451500BD5E8B /* UefiBaseType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiBaseType.h; sourceTree = ""; }; + 9AA909F625CD451500BD5E8B /* UefiInternalFormRepresentation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiInternalFormRepresentation.h; sourceTree = ""; }; + 9AA909F725CD451500BD5E8B /* UefiMultiPhase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiMultiPhase.h; sourceTree = ""; }; + 9AA909F925CD451500BD5E8B /* IpmiNetFnFirmware.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnFirmware.h; sourceTree = ""; }; + 9AA909FA25CD451500BD5E8B /* SdramSpdLpDdr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpdLpDdr.h; sourceTree = ""; }; + 9AA909FB25CD451500BD5E8B /* ElTorito.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ElTorito.h; sourceTree = ""; }; + 9AA909FC25CD451500BD5E8B /* SdramSpdDdr3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpdDdr3.h; sourceTree = ""; }; + 9AA909FD25CD451500BD5E8B /* Acpi62.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi62.h; sourceTree = ""; }; + 9AA909FE25CD451500BD5E8B /* WindowsSmmSecurityMitigationTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WindowsSmmSecurityMitigationTable.h; sourceTree = ""; }; + 9AA909FF25CD451500BD5E8B /* Nvme.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Nvme.h; sourceTree = ""; }; + 9AA90A0025CD451500BD5E8B /* IoRemappingTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoRemappingTable.h; sourceTree = ""; }; + 9AA90A0125CD451500BD5E8B /* LowPowerIdleTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LowPowerIdleTable.h; sourceTree = ""; }; + 9AA90A0225CD451500BD5E8B /* Emmc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Emmc.h; sourceTree = ""; }; + 9AA90A0325CD451500BD5E8B /* WatchdogActionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogActionTable.h; sourceTree = ""; }; + 9AA90A0425CD451500BD5E8B /* DmaRemappingReportingTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DmaRemappingReportingTable.h; sourceTree = ""; }; + 9AA90A0525CD451500BD5E8B /* AlertStandardFormatTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AlertStandardFormatTable.h; sourceTree = ""; }; + 9AA90A0625CD451500BD5E8B /* Acpi40.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi40.h; sourceTree = ""; }; + 9AA90A0725CD451500BD5E8B /* Bmp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bmp.h; sourceTree = ""; }; + 9AA90A0825CD451500BD5E8B /* UefiTcgPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiTcgPlatform.h; sourceTree = ""; }; + 9AA90A0925CD451500BD5E8B /* SerialPortConsoleRedirectionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortConsoleRedirectionTable.h; sourceTree = ""; }; + 9AA90A0A25CD451500BD5E8B /* Pci22.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci22.h; sourceTree = ""; }; + 9AA90A0B25CD451500BD5E8B /* Mbr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mbr.h; sourceTree = ""; }; + 9AA90A0C25CD451500BD5E8B /* Acpi61.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi61.h; sourceTree = ""; }; + 9AA90A0D25CD451500BD5E8B /* SdramSpdDdr4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpdDdr4.h; sourceTree = ""; }; + 9AA90A0E25CD451500BD5E8B /* TcgStorageOpal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgStorageOpal.h; sourceTree = ""; }; + 9AA90A0F25CD451500BD5E8B /* IpmiNetFnChassis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnChassis.h; sourceTree = ""; }; + 9AA90A1025CD451500BD5E8B /* Acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi.h; sourceTree = ""; }; + 9AA90A1125CD451500BD5E8B /* Tpm2Acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tpm2Acpi.h; sourceTree = ""; }; + 9AA90A1225CD451500BD5E8B /* PeImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeImage.h; sourceTree = ""; }; + 9AA90A1325CD451500BD5E8B /* PciExpress30.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress30.h; sourceTree = ""; }; + 9AA90A1425CD451500BD5E8B /* SdramSpd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdramSpd.h; sourceTree = ""; }; + 9AA90A1525CD451500BD5E8B /* Acpi10.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi10.h; sourceTree = ""; }; + 9AA90A1625CD451500BD5E8B /* MemoryMappedConfigurationSpaceAccessTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryMappedConfigurationSpaceAccessTable.h; sourceTree = ""; }; + 9AA90A1725CD451500BD5E8B /* IpmiFruInformationStorage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiFruInformationStorage.h; sourceTree = ""; }; + 9AA90A1825CD451500BD5E8B /* IpmiNetFnStorage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnStorage.h; sourceTree = ""; }; + 9AA90A1925CD451500BD5E8B /* IScsiBootFirmwareTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiBootFirmwareTable.h; sourceTree = ""; }; + 9AA90A1A25CD451500BD5E8B /* Bluetooth.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bluetooth.h; sourceTree = ""; }; + 9AA90A1B25CD451500BD5E8B /* AcpiAml.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiAml.h; sourceTree = ""; }; + 9AA90A1C25CD451500BD5E8B /* Acpi50.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi50.h; sourceTree = ""; }; + 9AA90A1D25CD451500BD5E8B /* Tpm20.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tpm20.h; sourceTree = ""; }; + 9AA90A1E25CD451500BD5E8B /* PciCodeId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCodeId.h; sourceTree = ""; }; + 9AA90A1F25CD451500BD5E8B /* IpmiNetFnTransport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnTransport.h; sourceTree = ""; }; + 9AA90A2025CD451500BD5E8B /* Dhcp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp.h; sourceTree = ""; }; + 9AA90A2125CD451500BD5E8B /* TpmPtp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TpmPtp.h; sourceTree = ""; }; + 9AA90A2225CD451500BD5E8B /* Acpi20.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi20.h; sourceTree = ""; }; + 9AA90A2325CD451500BD5E8B /* Pci23.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci23.h; sourceTree = ""; }; + 9AA90A2425CD451500BD5E8B /* IpmiNetFnApp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnApp.h; sourceTree = ""; }; + 9AA90A2525CD451500BD5E8B /* PciExpress40.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress40.h; sourceTree = ""; }; + 9AA90A2625CD451500BD5E8B /* IpmiNetFnSensorEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnSensorEvent.h; sourceTree = ""; }; + 9AA90A2725CD451500BD5E8B /* Acpi60.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi60.h; sourceTree = ""; }; + 9AA90A2825CD451500BD5E8B /* PciExpress21.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress21.h; sourceTree = ""; }; + 9AA90A2925CD451500BD5E8B /* PciExpress31.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpress31.h; sourceTree = ""; }; + 9AA90A2A25CD451500BD5E8B /* TcgStorageCore.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgStorageCore.h; sourceTree = ""; }; + 9AA90A2B25CD451500BD5E8B /* HighPrecisionEventTimerTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HighPrecisionEventTimerTable.h; sourceTree = ""; }; + 9AA90A2C25CD451500BD5E8B /* Usb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Usb.h; sourceTree = ""; }; + 9AA90A2D25CD451500BD5E8B /* Acpi51.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi51.h; sourceTree = ""; }; + 9AA90A2E25CD451500BD5E8B /* Sd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Sd.h; sourceTree = ""; }; + 9AA90A2F25CD451500BD5E8B /* WatchdogResourceTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogResourceTable.h; sourceTree = ""; }; + 9AA90A3025CD451500BD5E8B /* Acpi30.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi30.h; sourceTree = ""; }; + 9AA90A3125CD451500BD5E8B /* Udf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udf.h; sourceTree = ""; }; + 9AA90A3225CD451500BD5E8B /* DebugPortTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPortTable.h; sourceTree = ""; }; + 9AA90A3325CD451500BD5E8B /* SmBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmBios.h; sourceTree = ""; }; + 9AA90A3425CD451500BD5E8B /* MemoryOverwriteRequestControlLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryOverwriteRequestControlLock.h; sourceTree = ""; }; + 9AA90A3525CD451500BD5E8B /* Atapi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Atapi.h; sourceTree = ""; }; + 9AA90A3625CD451500BD5E8B /* TcpaAcpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpaAcpi.h; sourceTree = ""; }; + 9AA90A3725CD451500BD5E8B /* LegacyBiosMpTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyBiosMpTable.h; sourceTree = ""; }; + 9AA90A3825CD451500BD5E8B /* TpmTis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TpmTis.h; sourceTree = ""; }; + 9AA90A3925CD451500BD5E8B /* Acpi63.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi63.h; sourceTree = ""; }; + 9AA90A3A25CD451500BD5E8B /* SmBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmBus.h; sourceTree = ""; }; + 9AA90A3B25CD451500BD5E8B /* Http11.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Http11.h; sourceTree = ""; }; + 9AA90A3C25CD451500BD5E8B /* TcgPhysicalPresence.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgPhysicalPresence.h; sourceTree = ""; }; + 9AA90A3D25CD451500BD5E8B /* IpmiNetFnGroupExtension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnGroupExtension.h; sourceTree = ""; }; + 9AA90A3E25CD451500BD5E8B /* Tls1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tls1.h; sourceTree = ""; }; + 9AA90A3F25CD451500BD5E8B /* Pci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci.h; sourceTree = ""; }; + 9AA90A4025CD451500BD5E8B /* DebugPort2Table.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPort2Table.h; sourceTree = ""; }; + 9AA90A4125CD451500BD5E8B /* Scsi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Scsi.h; sourceTree = ""; }; + 9AA90A4225CD451500BD5E8B /* Pci30.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pci30.h; sourceTree = ""; }; + 9AA90A4325CD451500BD5E8B /* Hsti.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hsti.h; sourceTree = ""; }; + 9AA90A4425CD451500BD5E8B /* WindowsUxCapsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WindowsUxCapsule.h; sourceTree = ""; }; + 9AA90A4525CD451500BD5E8B /* Tpm12.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tpm12.h; sourceTree = ""; }; + 9AA90A4625CD451500BD5E8B /* Ipmi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ipmi.h; sourceTree = ""; }; + 9AA90A4725CD451500BD5E8B /* IpmiNetFnBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiNetFnBridge.h; sourceTree = ""; }; + 9AA90A4825CD451500BD5E8B /* ServiceProcessorManagementInterfaceTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ServiceProcessorManagementInterfaceTable.h; sourceTree = ""; }; + 9AA90A4A25CD451500BD5E8B /* OrderedCollectionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OrderedCollectionLib.h; sourceTree = ""; }; + 9AA90A4B25CD451500BD5E8B /* TimerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TimerLib.h; sourceTree = ""; }; + 9AA90A4C25CD451500BD5E8B /* PeiServicesTablePointerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiServicesTablePointerLib.h; sourceTree = ""; }; + 9AA90A4D25CD451500BD5E8B /* SmiHandlerProfileLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmiHandlerProfileLib.h; sourceTree = ""; }; + 9AA90A4E25CD451500BD5E8B /* UefiUsbLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiUsbLib.h; sourceTree = ""; }; + 9AA90A4F25CD451500BD5E8B /* UefiDecompressLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiDecompressLib.h; sourceTree = ""; }; + 9AA90A5025CD451500BD5E8B /* UefiRuntimeServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiRuntimeServicesTableLib.h; sourceTree = ""; }; + 9AA90A5125CD451500BD5E8B /* PeimEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeimEntryPoint.h; sourceTree = ""; }; + 9AA90A5225CD451500BD5E8B /* RngLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RngLib.h; sourceTree = ""; }; + 9AA90A5325CD451500BD5E8B /* PciCf8Lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCf8Lib.h; sourceTree = ""; }; + 9AA90A5425CD451500BD5E8B /* SmmPeriodicSmiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicSmiLib.h; sourceTree = ""; }; + 9AA90A5525CD451500BD5E8B /* PeiCoreEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiCoreEntryPoint.h; sourceTree = ""; }; + 9AA90A5625CD451500BD5E8B /* S3PciLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3PciLib.h; sourceTree = ""; }; + 9AA90A5725CD451500BD5E8B /* PciSegmentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentLib.h; sourceTree = ""; }; + 9AA90A5825CD451500BD5E8B /* DebugLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugLib.h; sourceTree = ""; }; + 9AA90A5925CD451500BD5E8B /* SynchronizationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SynchronizationLib.h; sourceTree = ""; }; + 9AA90A5A25CD451500BD5E8B /* SafeIntLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SafeIntLib.h; sourceTree = ""; }; + 9AA90A5B25CD451500BD5E8B /* S3SmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SmbusLib.h; sourceTree = ""; }; + 9AA90A5C25CD451500BD5E8B /* DevicePathLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathLib.h; sourceTree = ""; }; + 9AA90A5D25CD451500BD5E8B /* PcdLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdLib.h; sourceTree = ""; }; + 9AA90A5E25CD451500BD5E8B /* FileHandleLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileHandleLib.h; sourceTree = ""; }; + 9AA90A5F25CD451500BD5E8B /* UefiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiLib.h; sourceTree = ""; }; + 9AA90A6025CD451500BD5E8B /* SmmMemLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmMemLib.h; sourceTree = ""; }; + 9AA90A6125CD451500BD5E8B /* PostCodeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PostCodeLib.h; sourceTree = ""; }; + 9AA90A6225CD451500BD5E8B /* S3StallLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3StallLib.h; sourceTree = ""; }; + 9AA90A6325CD451500BD5E8B /* PciLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciLib.h; sourceTree = ""; }; + 9AA90A6425CD451500BD5E8B /* UefiBootServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiBootServicesTableLib.h; sourceTree = ""; }; + 9AA90A6525CD451500BD5E8B /* MmServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmServicesTableLib.h; sourceTree = ""; }; + 9AA90A6625CD451500BD5E8B /* PeCoffExtraActionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffExtraActionLib.h; sourceTree = ""; }; + 9AA90A6725CD451600BD5E8B /* PciExpressLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpressLib.h; sourceTree = ""; }; + 9AA90A6825CD451600BD5E8B /* S3IoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3IoLib.h; sourceTree = ""; }; + 9AA90A6925CD451600BD5E8B /* ReportStatusCodeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeLib.h; sourceTree = ""; }; + 9AA90A6A25CD451600BD5E8B /* UefiScsiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiScsiLib.h; sourceTree = ""; }; + 9AA90A6B25CD451600BD5E8B /* UefiRuntimeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiRuntimeLib.h; sourceTree = ""; }; + 9AA90A6C25CD451600BD5E8B /* SmmServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmServicesTableLib.h; sourceTree = ""; }; + 9AA90A6D25CD451600BD5E8B /* SerialPortLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortLib.h; sourceTree = ""; }; + 9AA90A6E25CD451600BD5E8B /* DxeCoreEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreEntryPoint.h; sourceTree = ""; }; + 9AA90A6F25CD451600BD5E8B /* PeCoffGetEntryPointLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffGetEntryPointLib.h; sourceTree = ""; }; + 9AA90A7025CD451600BD5E8B /* UefiDriverEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiDriverEntryPoint.h; sourceTree = ""; }; + 9AA90A7125CD451600BD5E8B /* BaseMemoryLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseMemoryLib.h; sourceTree = ""; }; + 9AA90A7225CD451600BD5E8B /* DxeServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeServicesLib.h; sourceTree = ""; }; + 9AA90A7325CD451600BD5E8B /* PeCoffLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffLib.h; sourceTree = ""; }; + 9AA90A7425CD451600BD5E8B /* S3PciSegmentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3PciSegmentLib.h; sourceTree = ""; }; + 9AA90A7525CD451600BD5E8B /* BaseLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseLib.h; sourceTree = ""; }; + 9AA90A7625CD451600BD5E8B /* SmmLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLib.h; sourceTree = ""; }; + 9AA90A7725CD451600BD5E8B /* PeiServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiServicesLib.h; sourceTree = ""; }; + 9AA90A7825CD451600BD5E8B /* DxeServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeServicesTableLib.h; sourceTree = ""; }; + 9AA90A7925CD451600BD5E8B /* SmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbusLib.h; sourceTree = ""; }; + 9AA90A7A25CD451600BD5E8B /* MemoryAllocationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryAllocationLib.h; sourceTree = ""; }; + 9AA90A7B25CD451600BD5E8B /* HstiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HstiLib.h; sourceTree = ""; }; + 9AA90A7C25CD451600BD5E8B /* ExtractGuidedSectionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExtractGuidedSectionLib.h; sourceTree = ""; }; + 9AA90A7D25CD451600BD5E8B /* ResourcePublicationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResourcePublicationLib.h; sourceTree = ""; }; + 9AA90A7E25CD451600BD5E8B /* S3BootScriptLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3BootScriptLib.h; sourceTree = ""; }; + 9AA90A7F25CD451600BD5E8B /* CacheMaintenanceLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CacheMaintenanceLib.h; sourceTree = ""; }; + 9AA90A8025CD451600BD5E8B /* CpuLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuLib.h; sourceTree = ""; }; + 9AA90A8125CD451600BD5E8B /* StandaloneMmDriverEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StandaloneMmDriverEntryPoint.h; sourceTree = ""; }; + 9AA90A8225CD451600BD5E8B /* SmmIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmIoLib.h; sourceTree = ""; }; + 9AA90A8325CD451600BD5E8B /* IoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoLib.h; sourceTree = ""; }; + 9AA90A8425CD451600BD5E8B /* PrintLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrintLib.h; sourceTree = ""; }; + 9AA90A8525CD451600BD5E8B /* UefiApplicationEntryPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiApplicationEntryPoint.h; sourceTree = ""; }; + 9AA90A8625CD451600BD5E8B /* PerformanceLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PerformanceLib.h; sourceTree = ""; }; + 9AA90A8725CD451600BD5E8B /* HobLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HobLib.h; sourceTree = ""; }; + 9AA90A8825CD451600BD5E8B /* DebugPrintErrorLevelLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPrintErrorLevelLib.h; sourceTree = ""; }; + 9AA90A8925CD451600BD5E8B /* PciSegmentInfoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentInfoLib.h; sourceTree = ""; }; + 9AA90A8B25CD451600BD5E8B /* LegacySpiController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiController.h; sourceTree = ""; }; + 9AA90A8C25CD451600BD5E8B /* SpiHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiHc.h; sourceTree = ""; }; + 9AA90A8D25CD451600BD5E8B /* Tcp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tcp4.h; sourceTree = ""; }; + 9AA90A8E25CD451600BD5E8B /* DriverFamilyOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverFamilyOverride.h; sourceTree = ""; }; + 9AA90A8F25CD451600BD5E8B /* MmSxDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmSxDispatch.h; sourceTree = ""; }; + 9AA90A9025CD451600BD5E8B /* MmCpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmCpu.h; sourceTree = ""; }; + 9AA90A9125CD451600BD5E8B /* TcgService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcgService.h; sourceTree = ""; }; + 9AA90A9225CD451600BD5E8B /* WiFi2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WiFi2.h; sourceTree = ""; }; + 9AA90A9325CD451600BD5E8B /* PartitionInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PartitionInfo.h; sourceTree = ""; }; + 9AA90A9425CD451600BD5E8B /* SmmReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmReportStatusCodeHandler.h; sourceTree = ""; }; + 9AA90A9525CD451600BD5E8B /* UgaDraw.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UgaDraw.h; sourceTree = ""; }; + 9AA90A9625CD451600BD5E8B /* Bis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bis.h; sourceTree = ""; }; + 9AA90A9725CD451600BD5E8B /* SmartCardEdge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmartCardEdge.h; sourceTree = ""; }; + 9AA90A9825CD451600BD5E8B /* EapConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EapConfiguration.h; sourceTree = ""; }; + 9AA90A9925CD451600BD5E8B /* ShellDynamicCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShellDynamicCommand.h; sourceTree = ""; }; + 9AA90A9A25CD451600BD5E8B /* Rest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Rest.h; sourceTree = ""; }; + 9AA90A9B25CD451600BD5E8B /* NvdimmLabel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvdimmLabel.h; sourceTree = ""; }; + 9AA90A9C25CD451600BD5E8B /* Udp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp4.h; sourceTree = ""; }; + 9AA90A9D25CD451600BD5E8B /* LoadedImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadedImage.h; sourceTree = ""; }; + 9AA90A9E25CD451600BD5E8B /* WiFi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WiFi.h; sourceTree = ""; }; + 9AA90A9F25CD451600BD5E8B /* SmmSwDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSwDispatch2.h; sourceTree = ""; }; + 9AA90AA025CD451600BD5E8B /* FormBrowser2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormBrowser2.h; sourceTree = ""; }; + 9AA90AA125CD451600BD5E8B /* I2cHost.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cHost.h; sourceTree = ""; }; + 9AA90AA225CD451600BD5E8B /* DevicePathFromText.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathFromText.h; sourceTree = ""; }; + 9AA90AA325CD451600BD5E8B /* Shell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Shell.h; sourceTree = ""; }; + 9AA90AA425CD451600BD5E8B /* IpSec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpSec.h; sourceTree = ""; }; + 9AA90AA525CD451600BD5E8B /* SimpleTextInEx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleTextInEx.h; sourceTree = ""; }; + 9AA90AA625CD451600BD5E8B /* CpuIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo2.h; sourceTree = ""; }; + 9AA90AA725CD451600BD5E8B /* Ip4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4.h; sourceTree = ""; }; + 9AA90AA825CD451600BD5E8B /* DriverConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverConfiguration.h; sourceTree = ""; }; + 9AA90AA925CD451600BD5E8B /* SpiSmmConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiSmmConfiguration.h; sourceTree = ""; }; + 9AA90AAA25CD451600BD5E8B /* DiskIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskIo.h; sourceTree = ""; }; + 9AA90AAB25CD451600BD5E8B /* Tls.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tls.h; sourceTree = ""; }; + 9AA90AAC25CD451600BD5E8B /* MmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmReadyToLock.h; sourceTree = ""; }; + 9AA90AAD25CD451600BD5E8B /* SimpleFileSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleFileSystem.h; sourceTree = ""; }; + 9AA90AAE25CD451600BD5E8B /* MmStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmStatusCode.h; sourceTree = ""; }; + 9AA90AAF25CD451600BD5E8B /* Http.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Http.h; sourceTree = ""; }; + 9AA90AB025CD451600BD5E8B /* ScsiPassThruExt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiPassThruExt.h; sourceTree = ""; }; + 9AA90AB125CD451600BD5E8B /* HiiConfigAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiConfigAccess.h; sourceTree = ""; }; + 9AA90AB225CD451600BD5E8B /* SmbusHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbusHc.h; sourceTree = ""; }; + 9AA90AB325CD451600BD5E8B /* DevicePathToText.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathToText.h; sourceTree = ""; }; + 9AA90AB425CD451600BD5E8B /* MmCpuIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmCpuIo.h; sourceTree = ""; }; + 9AA90AB525CD451600BD5E8B /* ServiceBinding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ServiceBinding.h; sourceTree = ""; }; + 9AA90AB625CD451600BD5E8B /* DriverConfiguration2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverConfiguration2.h; sourceTree = ""; }; + 9AA90AB725CD451600BD5E8B /* Usb2HostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Usb2HostController.h; sourceTree = ""; }; + 9AA90AB825CD451600BD5E8B /* FirmwareManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareManagement.h; sourceTree = ""; }; + 9AA90AB925CD451600BD5E8B /* EdidDiscovered.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdidDiscovered.h; sourceTree = ""; }; + 9AA90ABA25CD451600BD5E8B /* MmEndOfDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmEndOfDxe.h; sourceTree = ""; }; + 9AA90ABB25CD451600BD5E8B /* BootManagerPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootManagerPolicy.h; sourceTree = ""; }; + 9AA90ABC25CD451600BD5E8B /* RealTimeClock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RealTimeClock.h; sourceTree = ""; }; + 9AA90ABD25CD451600BD5E8B /* SimplePointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimplePointer.h; sourceTree = ""; }; + 9AA90ABE25CD451600BD5E8B /* Ip6Config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6Config.h; sourceTree = ""; }; + 9AA90ABF25CD451600BD5E8B /* I2cIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cIo.h; sourceTree = ""; }; + 9AA90AC025CD451600BD5E8B /* Dns6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dns6.h; sourceTree = ""; }; + 9AA90AC125CD451600BD5E8B /* UfsDeviceConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsDeviceConfig.h; sourceTree = ""; }; + 9AA90AC225CD451600BD5E8B /* DeviceIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceIo.h; sourceTree = ""; }; + 9AA90AC325CD451600BD5E8B /* ReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeHandler.h; sourceTree = ""; }; + 9AA90AC425CD451600BD5E8B /* TlsConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TlsConfig.h; sourceTree = ""; }; + 9AA90AC525CD451600BD5E8B /* ScsiIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiIo.h; sourceTree = ""; }; + 9AA90AC625CD451600BD5E8B /* Security.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Security.h; sourceTree = ""; }; + 9AA90AC725CD451600BD5E8B /* SmmSxDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSxDispatch2.h; sourceTree = ""; }; + 9AA90AC825CD451600BD5E8B /* MmControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmControl.h; sourceTree = ""; }; + 9AA90AC925CD451600BD5E8B /* NetworkInterfaceIdentifier.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetworkInterfaceIdentifier.h; sourceTree = ""; }; + 9AA90ACA25CD451600BD5E8B /* MmPowerButtonDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmPowerButtonDispatch.h; sourceTree = ""; }; + 9AA90ACB25CD451600BD5E8B /* Security2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Security2.h; sourceTree = ""; }; + 9AA90ACC25CD451600BD5E8B /* EdidActive.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdidActive.h; sourceTree = ""; }; + 9AA90ACD25CD451600BD5E8B /* UserCredential.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCredential.h; sourceTree = ""; }; + 9AA90ACE25CD451600BD5E8B /* MmAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmAccess.h; sourceTree = ""; }; + 9AA90ACF25CD451600BD5E8B /* UnicodeCollation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UnicodeCollation.h; sourceTree = ""; }; + 9AA90AD025CD451600BD5E8B /* MonotonicCounter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MonotonicCounter.h; sourceTree = ""; }; + 9AA90AD125CD451600BD5E8B /* BluetoothHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothHc.h; sourceTree = ""; }; + 9AA90AD225CD451600BD5E8B /* PlatformDriverOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformDriverOverride.h; sourceTree = ""; }; + 9AA90AD325CD451600BD5E8B /* ManagedNetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ManagedNetwork.h; sourceTree = ""; }; + 9AA90AD425CD451600BD5E8B /* DriverDiagnostics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverDiagnostics.h; sourceTree = ""; }; + 9AA90AD525CD451600BD5E8B /* HiiImageDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiImageDecoder.h; sourceTree = ""; }; + 9AA90AD625CD451600BD5E8B /* SimpleNetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleNetwork.h; sourceTree = ""; }; + 9AA90AD725CD451600BD5E8B /* HiiString.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiString.h; sourceTree = ""; }; + 9AA90AD825CD451600BD5E8B /* TrEEProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TrEEProtocol.h; sourceTree = ""; }; + 9AA90AD925CD451600BD5E8B /* VariableWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableWrite.h; sourceTree = ""; }; + 9AA90ADA25CD451600BD5E8B /* BluetoothLeConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothLeConfig.h; sourceTree = ""; }; + 9AA90ADB25CD451600BD5E8B /* Ip4Config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config.h; sourceTree = ""; }; + 9AA90ADC25CD451600BD5E8B /* MmMp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmMp.h; sourceTree = ""; }; + 9AA90ADD25CD451600BD5E8B /* HiiPopup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiPopup.h; sourceTree = ""; }; + 9AA90ADE25CD451600BD5E8B /* GraphicsOutput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsOutput.h; sourceTree = ""; }; + 9AA90ADF25CD451600BD5E8B /* IScsiInitiatorName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IScsiInitiatorName.h; sourceTree = ""; }; + 9AA90AE025CD451600BD5E8B /* Ftp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ftp4.h; sourceTree = ""; }; + 9AA90AE125CD451600BD5E8B /* AtaPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaPassThru.h; sourceTree = ""; }; + 9AA90AE225CD451600BD5E8B /* SimpleTextOut.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleTextOut.h; sourceTree = ""; }; + 9AA90AE325CD451600BD5E8B /* HiiConfigKeyword.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiConfigKeyword.h; sourceTree = ""; }; + 9AA90AE425CD451600BD5E8B /* PciOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciOverride.h; sourceTree = ""; }; + 9AA90AE525CD451600BD5E8B /* DiskIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskIo2.h; sourceTree = ""; }; + 9AA90AE625CD451600BD5E8B /* IsaHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaHc.h; sourceTree = ""; }; + 9AA90AE725CD451600BD5E8B /* ComponentName2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName2.h; sourceTree = ""; }; + 9AA90AE825CD451600BD5E8B /* SmmStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmStatusCode.h; sourceTree = ""; }; + 9AA90AE925CD451600BD5E8B /* PciPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciPlatform.h; sourceTree = ""; }; + 9AA90AEA25CD451600BD5E8B /* DriverDiagnostics2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverDiagnostics2.h; sourceTree = ""; }; + 9AA90AEB25CD451600BD5E8B /* Rng.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Rng.h; sourceTree = ""; }; + 9AA90AEC25CD451600BD5E8B /* Dhcp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp4.h; sourceTree = ""; }; + 9AA90AED25CD451600BD5E8B /* PxeBaseCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBaseCode.h; sourceTree = ""; }; + 9AA90AEE25CD451600BD5E8B /* GuidedSectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuidedSectionExtraction.h; sourceTree = ""; }; + 9AA90AEF25CD451600BD5E8B /* Variable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; + 9AA90AF025CD451600BD5E8B /* MmReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmReportStatusCodeHandler.h; sourceTree = ""; }; + 9AA90AF125CD451600BD5E8B /* DxeMmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeMmReadyToLock.h; sourceTree = ""; }; + 9AA90AF225CD451600BD5E8B /* DriverBinding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverBinding.h; sourceTree = ""; }; + 9AA90AF325CD451600BD5E8B /* FirmwareVolume2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume2.h; sourceTree = ""; }; + 9AA90AF425CD451600BD5E8B /* BlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; + 9AA90AF525CD451600BD5E8B /* MmBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmBase.h; sourceTree = ""; }; + 9AA90AF625CD451600BD5E8B /* SmmCpuIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuIo2.h; sourceTree = ""; }; + 9AA90AF725CD451600BD5E8B /* SmmUsbDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmUsbDispatch2.h; sourceTree = ""; }; + 9AA90AF825CD451600BD5E8B /* Mtftp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp6.h; sourceTree = ""; }; + 9AA90AF925CD451600BD5E8B /* S3SmmSaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SmmSaveState.h; sourceTree = ""; }; + 9AA90AFA25CD451600BD5E8B /* SpiNorFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiNorFlash.h; sourceTree = ""; }; + 9AA90AFB25CD451600BD5E8B /* Metronome.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Metronome.h; sourceTree = ""; }; + 9AA90AFC25CD451600BD5E8B /* SmmPowerButtonDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPowerButtonDispatch2.h; sourceTree = ""; }; + 9AA90AFD25CD451600BD5E8B /* Runtime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Runtime.h; sourceTree = ""; }; + 9AA90AFE25CD451600BD5E8B /* LegacySpiSmmFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiSmmFlash.h; sourceTree = ""; }; + 9AA90AFF25CD451600BD5E8B /* PlatformToDriverConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformToDriverConfiguration.h; sourceTree = ""; }; + 9AA90B0025CD451600BD5E8B /* Timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Timer.h; sourceTree = ""; }; + 9AA90B0125CD451600BD5E8B /* DevicePathUtilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathUtilities.h; sourceTree = ""; }; + 9AA90B0225CD451600BD5E8B /* PxeBaseCodeCallBack.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PxeBaseCodeCallBack.h; sourceTree = ""; }; + 9AA90B0325CD451600BD5E8B /* LegacySpiSmmController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiSmmController.h; sourceTree = ""; }; + 9AA90B0425CD451600BD5E8B /* LegacyRegion2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyRegion2.h; sourceTree = ""; }; + 9AA90B0525CD451600BD5E8B /* DebugPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPort.h; sourceTree = ""; }; + 9AA90B0625CD451600BD5E8B /* Tcp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tcp6.h; sourceTree = ""; }; + 9AA90B0725CD451600BD5E8B /* PciRootBridgeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciRootBridgeIo.h; sourceTree = ""; }; + 9AA90B0825CD451600BD5E8B /* Pcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pcd.h; sourceTree = ""; }; + 9AA90B0925CD451600BD5E8B /* UgaIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UgaIo.h; sourceTree = ""; }; + 9AA90B0A25CD451600BD5E8B /* SpiSmmNorFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiSmmNorFlash.h; sourceTree = ""; }; + 9AA90B0B25CD451600BD5E8B /* Hash2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hash2.h; sourceTree = ""; }; + 9AA90B0C25CD451600BD5E8B /* SpiConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiConfiguration.h; sourceTree = ""; }; + 9AA90B0D25CD451600BD5E8B /* SuperIoControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperIoControl.h; sourceTree = ""; }; + 9AA90B0E25CD451600BD5E8B /* DevicePath.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePath.h; sourceTree = ""; }; + 9AA90B0F25CD451600BD5E8B /* TapeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TapeIo.h; sourceTree = ""; }; + 9AA90B1025CD451600BD5E8B /* SmmCpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpu.h; sourceTree = ""; }; + 9AA90B1125CD451600BD5E8B /* DriverSupportedEfiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverSupportedEfiVersion.h; sourceTree = ""; }; + 9AA90B1225CD451600BD5E8B /* StorageSecurityCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StorageSecurityCommand.h; sourceTree = ""; }; + 9AA90B1325CD451600BD5E8B /* UserManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserManager.h; sourceTree = ""; }; + 9AA90B1425CD451600BD5E8B /* PiPcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcd.h; sourceTree = ""; }; + 9AA90B1525CD451600BD5E8B /* SecurityPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecurityPolicy.h; sourceTree = ""; }; + 9AA90B1625CD451600BD5E8B /* UsbFunctionIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbFunctionIo.h; sourceTree = ""; }; + 9AA90B1725CD451600BD5E8B /* BusSpecificDriverOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BusSpecificDriverOverride.h; sourceTree = ""; }; + 9AA90B1825CD451600BD5E8B /* MmSwDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmSwDispatch.h; sourceTree = ""; }; + 9AA90B1925CD451600BD5E8B /* Supplicant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Supplicant.h; sourceTree = ""; }; + 9AA90B1A25CD451600BD5E8B /* Udp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udp6.h; sourceTree = ""; }; + 9AA90B1B25CD451600BD5E8B /* SmmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmReadyToLock.h; sourceTree = ""; }; + 9AA90B1C25CD451600BD5E8B /* PciHotPlugRequest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHotPlugRequest.h; sourceTree = ""; }; + 9AA90B1D25CD451600BD5E8B /* AuthenticationInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AuthenticationInfo.h; sourceTree = ""; }; + 9AA90B1E25CD451600BD5E8B /* Ip4Config2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config2.h; sourceTree = ""; }; + 9AA90B1F25CD451600BD5E8B /* MmCommunication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmCommunication.h; sourceTree = ""; }; + 9AA90B2025CD451600BD5E8B /* EapManagement2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EapManagement2.h; sourceTree = ""; }; + 9AA90B2125CD451600BD5E8B /* Decompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Decompress.h; sourceTree = ""; }; + 9AA90B2225CD451600BD5E8B /* PiPcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcdInfo.h; sourceTree = ""; }; + 9AA90B2325CD451600BD5E8B /* PciHostBridgeResourceAllocation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostBridgeResourceAllocation.h; sourceTree = ""; }; + 9AA90B2425CD451600BD5E8B /* HiiPackageList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiPackageList.h; sourceTree = ""; }; + 9AA90B2525CD451600BD5E8B /* SpiIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiIo.h; sourceTree = ""; }; + 9AA90B2625CD451600BD5E8B /* HiiImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiImage.h; sourceTree = ""; }; + 9AA90B2725CD451600BD5E8B /* Pkcs7Verify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pkcs7Verify.h; sourceTree = ""; }; + 9AA90B2825CD451600BD5E8B /* SmmGpiDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmGpiDispatch2.h; sourceTree = ""; }; + 9AA90B2925CD451600BD5E8B /* SmmCommunication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCommunication.h; sourceTree = ""; }; + 9AA90B2A25CD451600BD5E8B /* NvmExpressPassthru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPassthru.h; sourceTree = ""; }; + 9AA90B2B25CD451600BD5E8B /* IpSecConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpSecConfig.h; sourceTree = ""; }; + 9AA90B2C25CD451600BD5E8B /* DeferredImageLoad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeferredImageLoad.h; sourceTree = ""; }; + 9AA90B2D25CD451600BD5E8B /* MmUsbDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmUsbDispatch.h; sourceTree = ""; }; + 9AA90B2E25CD451600BD5E8B /* SmmStandbyButtonDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmStandbyButtonDispatch2.h; sourceTree = ""; }; + 9AA90B2F25CD451600BD5E8B /* Capsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; + 9AA90B3025CD451600BD5E8B /* SuperIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperIo.h; sourceTree = ""; }; + 9AA90B3125CD451600BD5E8B /* RegularExpressionProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegularExpressionProtocol.h; sourceTree = ""; }; + 9AA90B3225CD451600BD5E8B /* IdeControllerInit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IdeControllerInit.h; sourceTree = ""; }; + 9AA90B3325CD451600BD5E8B /* Cpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpu.h; sourceTree = ""; }; + 9AA90B3425CD451600BD5E8B /* AbsolutePointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AbsolutePointer.h; sourceTree = ""; }; + 9AA90B3525CD451600BD5E8B /* UsbHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHostController.h; sourceTree = ""; }; + 9AA90B3625CD451600BD5E8B /* UsbIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbIo.h; sourceTree = ""; }; + 9AA90B3725CD451600BD5E8B /* HiiConfigRouting.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiConfigRouting.h; sourceTree = ""; }; + 9AA90B3825CD451600BD5E8B /* BluetoothAttribute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothAttribute.h; sourceTree = ""; }; + 9AA90B3925CD451600BD5E8B /* Ip6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip6.h; sourceTree = ""; }; + 9AA90B3A25CD451600BD5E8B /* BlockIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo2.h; sourceTree = ""; }; + 9AA90B3B25CD451600BD5E8B /* Dns4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dns4.h; sourceTree = ""; }; + 9AA90B3C25CD451600BD5E8B /* HiiDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiDatabase.h; sourceTree = ""; }; + 9AA90B3D25CD451600BD5E8B /* HiiImageEx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiImageEx.h; sourceTree = ""; }; + 9AA90B3E25CD451600BD5E8B /* PciIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciIo.h; sourceTree = ""; }; + 9AA90B3F25CD451600BD5E8B /* MmPeriodicTimerDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmPeriodicTimerDispatch.h; sourceTree = ""; }; + 9AA90B4025CD451600BD5E8B /* RamDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDisk.h; sourceTree = ""; }; + 9AA90B4125CD451600BD5E8B /* ScsiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiPassThru.h; sourceTree = ""; }; + 9AA90B4225CD451600BD5E8B /* DiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskInfo.h; sourceTree = ""; }; + 9AA90B4325CD451600BD5E8B /* Bds.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bds.h; sourceTree = ""; }; + 9AA90B4425CD451600BD5E8B /* SerialIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialIo.h; sourceTree = ""; }; + 9AA90B4525CD451600BD5E8B /* DriverHealth.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverHealth.h; sourceTree = ""; }; + 9AA90B4625CD451600BD5E8B /* Arp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Arp.h; sourceTree = ""; }; + 9AA90B4725CD451600BD5E8B /* ShellParameters.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShellParameters.h; sourceTree = ""; }; + 9AA90B4825CD451600BD5E8B /* IncompatiblePciDeviceSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IncompatiblePciDeviceSupport.h; sourceTree = ""; }; + 9AA90B4925CD451600BD5E8B /* LegacySpiFlash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacySpiFlash.h; sourceTree = ""; }; + 9AA90B4A25CD451600BD5E8B /* I2cMaster.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cMaster.h; sourceTree = ""; }; + 9AA90B4B25CD451600BD5E8B /* Smbios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Smbios.h; sourceTree = ""; }; + 9AA90B4C25CD451600BD5E8B /* EapManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EapManagement.h; sourceTree = ""; }; + 9AA90B4D25CD451600BD5E8B /* EraseBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EraseBlock.h; sourceTree = ""; }; + 9AA90B4E25CD451600BD5E8B /* Tcg2Protocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Tcg2Protocol.h; sourceTree = ""; }; + 9AA90B4F25CD451600BD5E8B /* AcpiSystemDescriptionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiSystemDescriptionTable.h; sourceTree = ""; }; + 9AA90B5025CD451600BD5E8B /* PciEnumerationComplete.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumerationComplete.h; sourceTree = ""; }; + 9AA90B5125CD451600BD5E8B /* ResetNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetNotification.h; sourceTree = ""; }; + 9AA90B5225CD451600BD5E8B /* PciHotPlugInit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHotPlugInit.h; sourceTree = ""; }; + 9AA90B5325CD451600BD5E8B /* Kms.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Kms.h; sourceTree = ""; }; + 9AA90B5425CD451600BD5E8B /* MmPciRootBridgeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmPciRootBridgeIo.h; sourceTree = ""; }; + 9AA90B5525CD451600BD5E8B /* I2cBusConfigurationManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cBusConfigurationManagement.h; sourceTree = ""; }; + 9AA90B5625CD451600BD5E8B /* LoadFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadFile.h; sourceTree = ""; }; + 9AA90B5725CD451600BD5E8B /* PcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdInfo.h; sourceTree = ""; }; + 9AA90B5825CD451600BD5E8B /* WatchdogTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogTimer.h; sourceTree = ""; }; + 9AA90B5925CD451600BD5E8B /* SmmEndOfDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmEndOfDxe.h; sourceTree = ""; }; + 9AA90B5A25CD451600BD5E8B /* MmConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmConfiguration.h; sourceTree = ""; }; + 9AA90B5B25CD451600BD5E8B /* SmmPeriodicTimerDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPeriodicTimerDispatch2.h; sourceTree = ""; }; + 9AA90B5C25CD451600BD5E8B /* S3SaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SaveState.h; sourceTree = ""; }; + 9AA90B5D25CD451600BD5E8B /* SdMmcPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPassThru.h; sourceTree = ""; }; + 9AA90B5E25CD451600BD5E8B /* Reset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Reset.h; sourceTree = ""; }; + 9AA90B5F25CD451600BD5E8B /* Dhcp6.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dhcp6.h; sourceTree = ""; }; + 9AA90B6025CD451600BD5E8B /* DxeSmmReadyToLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeSmmReadyToLock.h; sourceTree = ""; }; + 9AA90B6125CD451600BD5E8B /* MpService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MpService.h; sourceTree = ""; }; + 9AA90B6225CD451600BD5E8B /* SmmConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmConfiguration.h; sourceTree = ""; }; + 9AA90B6325CD451600BD5E8B /* MmGpiDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmGpiDispatch.h; sourceTree = ""; }; + 9AA90B6425CD451600BD5E8B /* SmmControl2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmControl2.h; sourceTree = ""; }; + 9AA90B6525CD451600BD5E8B /* StatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; + 9AA90B6625CD451600BD5E8B /* Timestamp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Timestamp.h; sourceTree = ""; }; + 9AA90B6725CD451600BD5E8B /* BlockIoCrypto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIoCrypto.h; sourceTree = ""; }; + 9AA90B6825CD451600BD5E8B /* SmartCardReader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmartCardReader.h; sourceTree = ""; }; + 9AA90B6925CD451600BD5E8B /* FirmwareVolumeBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeBlock.h; sourceTree = ""; }; + 9AA90B6A25CD451600BD5E8B /* HttpBootCallback.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpBootCallback.h; sourceTree = ""; }; + 9AA90B6B25CD451600BD5E8B /* SimpleTextIn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleTextIn.h; sourceTree = ""; }; + 9AA90B6C25CD451600BD5E8B /* MmIoTrapDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmIoTrapDispatch.h; sourceTree = ""; }; + 9AA90B6D25CD451600BD5E8B /* Hash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hash.h; sourceTree = ""; }; + 9AA90B6E25CD451600BD5E8B /* VlanConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VlanConfig.h; sourceTree = ""; }; + 9AA90B6F25CD451600BD5E8B /* HiiFont.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiFont.h; sourceTree = ""; }; + 9AA90B7025CD451600BD5E8B /* SmmAccess2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmAccess2.h; sourceTree = ""; }; + 9AA90B7125CD451600BD5E8B /* UserCredential2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCredential2.h; sourceTree = ""; }; + 9AA90B7225CD451600BD5E8B /* AcpiTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiTable.h; sourceTree = ""; }; + 9AA90B7325CD451600BD5E8B /* EdidOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdidOverride.h; sourceTree = ""; }; + 9AA90B7425CD451600BD5E8B /* I2cEnumerate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cEnumerate.h; sourceTree = ""; }; + 9AA90B7525CD451600BD5E8B /* BluetoothConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothConfig.h; sourceTree = ""; }; + 9AA90B7625CD451600BD5E8B /* BluetoothIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BluetoothIo.h; sourceTree = ""; }; + 9AA90B7725CD451600BD5E8B /* MmStandbyButtonDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmStandbyButtonDispatch.h; sourceTree = ""; }; + 9AA90B7825CD451600BD5E8B /* Mtftp4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mtftp4.h; sourceTree = ""; }; + 9AA90B7925CD451600BD5E8B /* SmmIoTrapDispatch2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmIoTrapDispatch2.h; sourceTree = ""; }; + 9AA90B7A25CD451600BD5E8B /* SpiSmmHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SpiSmmHc.h; sourceTree = ""; }; + 9AA90B7B25CD451600BD5E8B /* Ebc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ebc.h; sourceTree = ""; }; + 9AA90B7C25CD451600BD5E8B /* DebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugSupport.h; sourceTree = ""; }; + 9AA90B7D25CD451600BD5E8B /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + 9AA90B7E25CD451600BD5E8B /* Eap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Eap.h; sourceTree = ""; }; + 9AA90B7F25CD451600BD5E8B /* AdapterInformation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AdapterInformation.h; sourceTree = ""; }; + 9AA90B8025CD451600BD5E8B /* SmmBase2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmBase2.h; sourceTree = ""; }; + 9AA90B8125CD451600BD5E8B /* SmmPciRootBridgeIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmPciRootBridgeIo.h; sourceTree = ""; }; + 9AA90B8225CD451600BD5E8B /* HttpUtilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpUtilities.h; sourceTree = ""; }; + 9AA90B8325CD451600BD5E8B /* LoadFile2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadFile2.h; sourceTree = ""; }; + 9AA90B8525CD451600BD5E8B /* PiFirmwareVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiFirmwareVolume.h; sourceTree = ""; }; + 9AA90B8625CD451600BD5E8B /* PiMmCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiMmCis.h; sourceTree = ""; }; + 9AA90B8725CD451600BD5E8B /* PiDxeCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiDxeCis.h; sourceTree = ""; }; + 9AA90B8825CD451600BD5E8B /* PiStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiStatusCode.h; sourceTree = ""; }; + 9AA90B8925CD451600BD5E8B /* PiBootMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiBootMode.h; sourceTree = ""; }; + 9AA90B8A25CD451600BD5E8B /* PiHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiHob.h; sourceTree = ""; }; + 9AA90B8B25CD451600BD5E8B /* PiPeiCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPeiCis.h; sourceTree = ""; }; + 9AA90B8C25CD451600BD5E8B /* PiSmmCis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCis.h; sourceTree = ""; }; + 9AA90B8D25CD451600BD5E8B /* PiDependency.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiDependency.h; sourceTree = ""; }; + 9AA90B8E25CD451600BD5E8B /* PiS3BootScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiS3BootScript.h; sourceTree = ""; }; + 9AA90B8F25CD451600BD5E8B /* PiMultiPhase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiMultiPhase.h; sourceTree = ""; }; + 9AA90B9025CD451600BD5E8B /* PiFirmwareFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiFirmwareFile.h; sourceTree = ""; }; + 9AA90B9125CD451600BD5E8B /* PiI2c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiI2c.h; sourceTree = ""; }; + 9AA90B9225CD451600BD5E8B /* PiSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmm.h; sourceTree = ""; }; + 9AA90B9525CD451600BD5E8B /* Microcode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Microcode.h; sourceTree = ""; }; + 9AA90B9625CD451600BD5E8B /* SmramSaveStateMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmramSaveStateMap.h; sourceTree = ""; }; + 9AA90B9825CD451600BD5E8B /* Pentium4Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pentium4Msr.h; sourceTree = ""; }; + 9AA90B9925CD451600BD5E8B /* GoldmontPlusMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoldmontPlusMsr.h; sourceTree = ""; }; + 9AA90B9A25CD451600BD5E8B /* IvyBridgeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IvyBridgeMsr.h; sourceTree = ""; }; + 9AA90B9B25CD451600BD5E8B /* BroadwellMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BroadwellMsr.h; sourceTree = ""; }; + 9AA90B9C25CD451600BD5E8B /* HaswellEMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HaswellEMsr.h; sourceTree = ""; }; + 9AA90B9D25CD451600BD5E8B /* XeonE7Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonE7Msr.h; sourceTree = ""; }; + 9AA90B9E25CD451600BD5E8B /* Core2Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Core2Msr.h; sourceTree = ""; }; + 9AA90B9F25CD451600BD5E8B /* NehalemMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NehalemMsr.h; sourceTree = ""; }; + 9AA90BA025CD451600BD5E8B /* SandyBridgeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SandyBridgeMsr.h; sourceTree = ""; }; + 9AA90BA125CD451600BD5E8B /* P6Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = P6Msr.h; sourceTree = ""; }; + 9AA90BA225CD451600BD5E8B /* PentiumMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PentiumMsr.h; sourceTree = ""; }; + 9AA90BA325CD451600BD5E8B /* SilvermontMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SilvermontMsr.h; sourceTree = ""; }; + 9AA90BA425CD451600BD5E8B /* Xeon5600Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Xeon5600Msr.h; sourceTree = ""; }; + 9AA90BA525CD451600BD5E8B /* SkylakeMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SkylakeMsr.h; sourceTree = ""; }; + 9AA90BA625CD451600BD5E8B /* CoreMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CoreMsr.h; sourceTree = ""; }; + 9AA90BA725CD451600BD5E8B /* XeonDMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonDMsr.h; sourceTree = ""; }; + 9AA90BA825CD451600BD5E8B /* XeonPhiMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XeonPhiMsr.h; sourceTree = ""; }; + 9AA90BA925CD451600BD5E8B /* PentiumMMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PentiumMMsr.h; sourceTree = ""; }; + 9AA90BAA25CD451600BD5E8B /* GoldmontMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoldmontMsr.h; sourceTree = ""; }; + 9AA90BAB25CD451600BD5E8B /* HaswellMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HaswellMsr.h; sourceTree = ""; }; + 9AA90BAC25CD451600BD5E8B /* AtomMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtomMsr.h; sourceTree = ""; }; + 9AA90BAD25CD451600BD5E8B /* Cpuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; + 9AA90BAE25CD451600BD5E8B /* StmStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmStatusCode.h; sourceTree = ""; }; + 9AA90BAF25CD451600BD5E8B /* StmResourceDescriptor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmResourceDescriptor.h; sourceTree = ""; }; + 9AA90BB025CD451600BD5E8B /* LocalApic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LocalApic.h; sourceTree = ""; }; + 9AA90BB125CD451600BD5E8B /* StmApi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StmApi.h; sourceTree = ""; }; + 9AA90BB225CD451600BD5E8B /* ArchitecturalMsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ArchitecturalMsr.h; sourceTree = ""; }; + 9AA90BB325CD451600BD5E8B /* Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; + 9AA90BB525CD451600BD5E8B /* Cpuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cpuid.h; sourceTree = ""; }; + 9AA90BB625CD451600BD5E8B /* Fam17Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Fam17Msr.h; sourceTree = ""; }; + 9AA90BB725CD451600BD5E8B /* Msr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Msr.h; sourceTree = ""; }; + 9AA90BB825CD451600BD5E8B /* PiDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiDxe.h; sourceTree = ""; }; + 9AA90BBA25CD451600BD5E8B /* MdePkgTokenSpace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MdePkgTokenSpace.h; sourceTree = ""; }; + 9AA90BBB25CD451600BD5E8B /* SmramMemoryReserve.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmramMemoryReserve.h; sourceTree = ""; }; + 9AA90BBC25CD451600BD5E8B /* FileInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileInfo.h; sourceTree = ""; }; + 9AA90BBD25CD451600BD5E8B /* SystemResourceTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SystemResourceTable.h; sourceTree = ""; }; + 9AA90BBE25CD451600BD5E8B /* AprioriFileName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AprioriFileName.h; sourceTree = ""; }; + 9AA90BBF25CD451600BD5E8B /* PropertiesTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PropertiesTable.h; sourceTree = ""; }; + 9AA90BC025CD451600BD5E8B /* MemoryAllocationHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryAllocationHob.h; sourceTree = ""; }; + 9AA90BC125CD451600BD5E8B /* EventGroup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EventGroup.h; sourceTree = ""; }; + 9AA90BC225CD451600BD5E8B /* FirmwareFileSystem3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem3.h; sourceTree = ""; }; + 9AA90BC325CD451600BD5E8B /* Cper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cper.h; sourceTree = ""; }; + 9AA90BC425CD451600BD5E8B /* MemoryOverwriteControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryOverwriteControl.h; sourceTree = ""; }; + 9AA90BC525CD451600BD5E8B /* Gpt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Gpt.h; sourceTree = ""; }; + 9AA90BC625CD451600BD5E8B /* MemoryAttributesTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryAttributesTable.h; sourceTree = ""; }; + 9AA90BC725CD451600BD5E8B /* EventLegacyBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EventLegacyBios.h; sourceTree = ""; }; + 9AA90BC825CD451600BD5E8B /* FmpCapsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FmpCapsule.h; sourceTree = ""; }; + 9AA90BC925CD451600BD5E8B /* FirmwareContentsSigned.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareContentsSigned.h; sourceTree = ""; }; + 9AA90BCA25CD451600BD5E8B /* Acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Acpi.h; sourceTree = ""; }; + 9AA90BCB25CD451600BD5E8B /* Apriori.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Apriori.h; sourceTree = ""; }; + 9AA90BCC25CD451600BD5E8B /* DxeServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeServices.h; sourceTree = ""; }; + 9AA90BCD25CD451600BD5E8B /* Btt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Btt.h; sourceTree = ""; }; + 9AA90BCE25CD451600BD5E8B /* HobList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HobList.h; sourceTree = ""; }; + 9AA90BCF25CD451600BD5E8B /* GraphicsInfoHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsInfoHob.h; sourceTree = ""; }; + 9AA90BD025CD451600BD5E8B /* HiiFormMapMethodGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiFormMapMethodGuid.h; sourceTree = ""; }; + 9AA90BD125CD451600BD5E8B /* FileSystemVolumeLabelInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileSystemVolumeLabelInfo.h; sourceTree = ""; }; + 9AA90BD225CD451600BD5E8B /* FirmwareFileSystem2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareFileSystem2.h; sourceTree = ""; }; + 9AA90BD325CD451600BD5E8B /* StatusCodeDataTypeId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeId.h; sourceTree = ""; }; + 9AA90BD425CD451600BD5E8B /* DebugImageInfoTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugImageInfoTable.h; sourceTree = ""; }; + 9AA90BD525CD451600BD5E8B /* HiiKeyBoardLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiKeyBoardLayout.h; sourceTree = ""; }; + 9AA90BD625CD451600BD5E8B /* WinCertificate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WinCertificate.h; sourceTree = ""; }; + 9AA90BD725CD451600BD5E8B /* SmBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmBios.h; sourceTree = ""; }; + 9AA90BD825CD451600BD5E8B /* ImageAuthentication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ImageAuthentication.h; sourceTree = ""; }; + 9AA90BD925CD451600BD5E8B /* VectorHandoffTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VectorHandoffTable.h; sourceTree = ""; }; + 9AA90BDA25CD451600BD5E8B /* FileSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileSystemInfo.h; sourceTree = ""; }; + 9AA90BDB25CD451600BD5E8B /* HardwareErrorVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HardwareErrorVariable.h; sourceTree = ""; }; + 9AA90BDC25CD451600BD5E8B /* Mps.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mps.h; sourceTree = ""; }; + 9AA90BDD25CD451600BD5E8B /* PcAnsi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcAnsi.h; sourceTree = ""; }; + 9AA90BDE25CD451600BD5E8B /* GlobalVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GlobalVariable.h; sourceTree = ""; }; + 9AA90BDF25CD451600BD5E8B /* HiiPlatformSetupFormset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiPlatformSetupFormset.h; sourceTree = ""; }; + 9AA90BE025CD451600BD5E8B /* CapsuleReport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleReport.h; sourceTree = ""; }; + 9AA90BE225CD451600BD5E8B /* PeiCoreFvLocation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiCoreFvLocation.h; sourceTree = ""; }; + 9AA90BE325CD451600BD5E8B /* SecHobData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecHobData.h; sourceTree = ""; }; + 9AA90BE425CD451600BD5E8B /* VectorHandoffInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VectorHandoffInfo.h; sourceTree = ""; }; + 9AA90BE525CD451600BD5E8B /* ReadOnlyVariable2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReadOnlyVariable2.h; sourceTree = ""; }; + 9AA90BE625CD451600BD5E8B /* ReportStatusCodeHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeHandler.h; sourceTree = ""; }; + 9AA90BE725CD451600BD5E8B /* S3Resume2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3Resume2.h; sourceTree = ""; }; + 9AA90BE825CD451600BD5E8B /* MmControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmControl.h; sourceTree = ""; }; + 9AA90BE925CD451600BD5E8B /* Reset2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Reset2.h; sourceTree = ""; }; + 9AA90BEA25CD451600BD5E8B /* Security2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Security2.h; sourceTree = ""; }; + 9AA90BEB25CD451600BD5E8B /* MmAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MmAccess.h; sourceTree = ""; }; + 9AA90BEC25CD451600BD5E8B /* EndOfPeiPhase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EndOfPeiPhase.h; sourceTree = ""; }; + 9AA90BED25CD451600BD5E8B /* Smbus2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Smbus2.h; sourceTree = ""; }; + 9AA90BEE25CD451600BD5E8B /* BootInRecoveryMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootInRecoveryMode.h; sourceTree = ""; }; + 9AA90BEF25CD451600BD5E8B /* IsaHc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaHc.h; sourceTree = ""; }; + 9AA90BF025CD451600BD5E8B /* DxeIpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeIpl.h; sourceTree = ""; }; + 9AA90BF125CD451600BD5E8B /* GuidedSectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuidedSectionExtraction.h; sourceTree = ""; }; + 9AA90BF225CD451600BD5E8B /* MemoryDiscovered.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryDiscovered.h; sourceTree = ""; }; + 9AA90BF325CD451600BD5E8B /* BlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo.h; sourceTree = ""; }; + 9AA90BF425CD451600BD5E8B /* Pcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pcd.h; sourceTree = ""; }; + 9AA90BF525CD451600BD5E8B /* LoadImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadImage.h; sourceTree = ""; }; + 9AA90BF625CD451600BD5E8B /* FirmwareVolumeInfo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeInfo2.h; sourceTree = ""; }; + 9AA90BF725CD451600BD5E8B /* PiPcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcd.h; sourceTree = ""; }; + 9AA90BF825CD451600BD5E8B /* Stall.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Stall.h; sourceTree = ""; }; + 9AA90BF925CD451600BD5E8B /* PciCfg2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCfg2.h; sourceTree = ""; }; + 9AA90BFA25CD451600BD5E8B /* Decompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Decompress.h; sourceTree = ""; }; + 9AA90BFB25CD451600BD5E8B /* PiPcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiPcdInfo.h; sourceTree = ""; }; + 9AA90BFC25CD451600BD5E8B /* MasterBootMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MasterBootMode.h; sourceTree = ""; }; + 9AA90BFD25CD451600BD5E8B /* Capsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; + 9AA90BFE25CD451600BD5E8B /* SuperIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperIo.h; sourceTree = ""; }; + 9AA90BFF25CD451600BD5E8B /* BlockIo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIo2.h; sourceTree = ""; }; + 9AA90C0025CD451600BD5E8B /* FirmwareVolumeInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolumeInfo.h; sourceTree = ""; }; + 9AA90C0125CD451600BD5E8B /* I2cMaster.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cMaster.h; sourceTree = ""; }; + 9AA90C0225CD451600BD5E8B /* RecoveryModule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecoveryModule.h; sourceTree = ""; }; + 9AA90C0325CD451600BD5E8B /* SecPlatformInformation2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecPlatformInformation2.h; sourceTree = ""; }; + 9AA90C0425CD451600BD5E8B /* Graphics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Graphics.h; sourceTree = ""; }; + 9AA90C0525CD451700BD5E8B /* MpServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MpServices.h; sourceTree = ""; }; + 9AA90C0625CD451700BD5E8B /* TemporaryRamSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TemporaryRamSupport.h; sourceTree = ""; }; + 9AA90C0725CD451700BD5E8B /* TemporaryRamDone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TemporaryRamDone.h; sourceTree = ""; }; + 9AA90C0825CD451700BD5E8B /* DeviceRecoveryModule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceRecoveryModule.h; sourceTree = ""; }; + 9AA90C0925CD451700BD5E8B /* LoadFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadFile.h; sourceTree = ""; }; + 9AA90C0A25CD451700BD5E8B /* PcdInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdInfo.h; sourceTree = ""; }; + 9AA90C0B25CD451700BD5E8B /* Reset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Reset.h; sourceTree = ""; }; + 9AA90C0C25CD451700BD5E8B /* StatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCode.h; sourceTree = ""; }; + 9AA90C0D25CD451700BD5E8B /* SecPlatformInformation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecPlatformInformation.h; sourceTree = ""; }; + 9AA90C0E25CD451700BD5E8B /* CpuIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuIo.h; sourceTree = ""; }; + 9AA90C0F25CD451700BD5E8B /* FirmwareVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume.h; sourceTree = ""; }; + 9AA90C1025CD451700BD5E8B /* Base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Base.h; sourceTree = ""; }; + 9AA90C1325CD451700BD5E8B /* PeiServicesTablePointerLibIdt.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLibIdt.uni; sourceTree = ""; }; + 9AA90C1425CD451700BD5E8B /* PeiServicesTablePointerLibIdt.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLibIdt.inf; sourceTree = ""; }; + 9AA90C1525CD451700BD5E8B /* PeiServicesTablePointer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiServicesTablePointer.c; sourceTree = ""; }; + 9AA90C1725CD451700BD5E8B /* StandaloneMmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StandaloneMmServicesTableLib.c; sourceTree = ""; }; + 9AA90C1825CD451700BD5E8B /* StandaloneMmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmServicesTableLib.inf; sourceTree = ""; }; + 9AA90C1925CD451700BD5E8B /* StandaloneMmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmServicesTableLib.uni; sourceTree = ""; }; + 9AA90C1B25CD451700BD5E8B /* PeiPciLibPciCfg2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciLibPciCfg2.uni; sourceTree = ""; }; + 9AA90C1C25CD451700BD5E8B /* PeiPciLibPciCfg2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciLibPciCfg2.inf; sourceTree = ""; }; + 9AA90C1D25CD451700BD5E8B /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + 9AA90C1F25CD451700BD5E8B /* SmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbusLib.c; sourceTree = ""; }; + 9AA90C2025CD451700BD5E8B /* InternalSmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalSmbusLib.h; sourceTree = ""; }; + 9AA90C2125CD451700BD5E8B /* PeiSmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiSmbusLib.c; sourceTree = ""; }; + 9AA90C2225CD451700BD5E8B /* PeiSmbusLibSmbus2Ppi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiSmbusLibSmbus2Ppi.inf; sourceTree = ""; }; + 9AA90C2325CD451700BD5E8B /* PeiSmbusLibSmbus2Ppi.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiSmbusLibSmbus2Ppi.uni; sourceTree = ""; }; + 9AA90C2525CD451700BD5E8B /* BaseDebugPrintErrorLevelLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseDebugPrintErrorLevelLib.c; sourceTree = ""; }; + 9AA90C2625CD451700BD5E8B /* BaseDebugPrintErrorLevelLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugPrintErrorLevelLib.inf; sourceTree = ""; }; + 9AA90C2725CD451700BD5E8B /* BaseDebugPrintErrorLevelLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugPrintErrorLevelLib.uni; sourceTree = ""; }; + 9AA90C2925CD451700BD5E8B /* BaseCacheMaintenanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCacheMaintenanceLib.inf; sourceTree = ""; }; + 9AA90C2A25CD451700BD5E8B /* BaseCacheMaintenanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCacheMaintenanceLib.uni; sourceTree = ""; }; + 9AA90C2B25CD451700BD5E8B /* X86Cache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86Cache.c; sourceTree = ""; }; + 9AA90C2C25CD451700BD5E8B /* ArmCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ArmCache.c; sourceTree = ""; }; + 9AA90C2D25CD451700BD5E8B /* EbcCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcCache.c; sourceTree = ""; }; + 9AA90C2F25CD451700BD5E8B /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + 9AA90C3025CD451700BD5E8B /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + 9AA90C3125CD451700BD5E8B /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + 9AA90C3225CD451700BD5E8B /* DxeIoLibCpuIo2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIoLibCpuIo2.uni; sourceTree = ""; }; + 9AA90C3325CD451700BD5E8B /* DxeCpuIo2LibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCpuIo2LibInternal.h; sourceTree = ""; }; + 9AA90C3425CD451700BD5E8B /* DxeIoLibCpuIo2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIoLibCpuIo2.inf; sourceTree = ""; }; + 9AA90C3625CD451700BD5E8B /* BasePciLibCf8.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibCf8.inf; sourceTree = ""; }; + 9AA90C3725CD451700BD5E8B /* BasePciLibCf8.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibCf8.uni; sourceTree = ""; }; + 9AA90C3825CD451700BD5E8B /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + 9AA90C3A25CD451700BD5E8B /* PeiServicesTablePointerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLib.uni; sourceTree = ""; }; + 9AA90C3B25CD451700BD5E8B /* PeiServicesTablePointerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesTablePointerLib.inf; sourceTree = ""; }; + 9AA90C3C25CD451700BD5E8B /* PeiServicesTablePointer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiServicesTablePointer.c; sourceTree = ""; }; + 9AA90C3E25CD451700BD5E8B /* BaseDebugLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibNull.inf; sourceTree = ""; }; + 9AA90C3F25CD451700BD5E8B /* BaseDebugLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibNull.uni; sourceTree = ""; }; + 9AA90C4025CD451700BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA90C4225CD451700BD5E8B /* PciSegmentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentLib.h; sourceTree = ""; }; + 9AA90C4325CD451700BD5E8B /* UefiPciSegmentLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciSegmentLibPciRootBridgeIo.inf; sourceTree = ""; }; + 9AA90C4425CD451700BD5E8B /* UefiPciSegmentLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciSegmentLibPciRootBridgeIo.uni; sourceTree = ""; }; + 9AA90C4525CD451700BD5E8B /* PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; + 9AA90C4725CD451700BD5E8B /* PeiServicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesLib.inf; sourceTree = ""; }; + 9AA90C4825CD451700BD5E8B /* PeiServicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiServicesLib.c; sourceTree = ""; }; + 9AA90C4925CD451700BD5E8B /* PeiServicesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiServicesLib.uni; sourceTree = ""; }; + 9AA90C4B25CD451700BD5E8B /* BasePciExpressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciExpressLib.uni; sourceTree = ""; }; + 9AA90C4C25CD451700BD5E8B /* BasePciExpressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciExpressLib.inf; sourceTree = ""; }; + 9AA90C4D25CD451700BD5E8B /* PciExpressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; + 9AA90C4F25CD451700BD5E8B /* BaseS3SmbusLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3SmbusLib.inf; sourceTree = ""; }; + 9AA90C5025CD451700BD5E8B /* BaseS3SmbusLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3SmbusLib.uni; sourceTree = ""; }; + 9AA90C5125CD451700BD5E8B /* S3SmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3SmbusLib.c; sourceTree = ""; }; + 9AA90C5325CD451700BD5E8B /* Allocate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Allocate.c; sourceTree = ""; }; + 9AA90C5425CD451700BD5E8B /* DxeServicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeServicesLib.c; sourceTree = ""; }; + 9AA90C5625CD451700BD5E8B /* Allocate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Allocate.c; sourceTree = ""; }; + 9AA90C5725CD451700BD5E8B /* DxeServicesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesLib.uni; sourceTree = ""; }; + 9AA90C5825CD451700BD5E8B /* DxeServicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesLib.inf; sourceTree = ""; }; + 9AA90C5A25CD451700BD5E8B /* X86TimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86TimerLib.c; sourceTree = ""; }; + 9AA90C5B25CD451700BD5E8B /* SecPeiDxeTimerLibCpu.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiDxeTimerLibCpu.inf; sourceTree = ""; }; + 9AA90C5C25CD451700BD5E8B /* SecPeiDxeTimerLibCpu.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecPeiDxeTimerLibCpu.uni; sourceTree = ""; }; + 9AA90C5E25CD451700BD5E8B /* StandaloneMmDriverEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmDriverEntryPoint.inf; sourceTree = ""; }; + 9AA90C5F25CD451700BD5E8B /* StandaloneMmDriverEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StandaloneMmDriverEntryPoint.uni; sourceTree = ""; }; + 9AA90C6025CD451700BD5E8B /* StandaloneMmDriverEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StandaloneMmDriverEntryPoint.c; sourceTree = ""; }; + 9AA90C6225CD451700BD5E8B /* SmmPciLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPciLibPciRootBridgeIo.uni; sourceTree = ""; }; + 9AA90C6325CD451700BD5E8B /* SmmPciLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPciLibPciRootBridgeIo.inf; sourceTree = ""; }; + 9AA90C6425CD451700BD5E8B /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + 9AA90C6625CD451700BD5E8B /* SwapBytes32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes32.c; sourceTree = ""; }; + 9AA90C6725CD451700BD5E8B /* X86ReadIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86ReadIdtr.c; sourceTree = ""; }; + 9AA90C6925CD451700BD5E8B /* CpuBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; + 9AA90C6A25CD451700BD5E8B /* SwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwitchStack.c; sourceTree = ""; }; + 9AA90C6B25CD451700BD5E8B /* SetJumpLongJump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetJumpLongJump.c; sourceTree = ""; }; + 9AA90C6C25CD451700BD5E8B /* SpeculationBarrier.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrier.c; sourceTree = ""; }; + 9AA90C6D25CD451700BD5E8B /* BaseLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseLibInternals.h; sourceTree = ""; }; + 9AA90C6E25CD451700BD5E8B /* DivS64x64Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivS64x64Remainder.c; sourceTree = ""; }; + 9AA90C6F25CD451700BD5E8B /* X86WriteIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86WriteIdtr.c; sourceTree = ""; }; + 9AA90C7025CD451700BD5E8B /* FilePaths.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FilePaths.c; sourceTree = ""; }; + 9AA90C7125CD451700BD5E8B /* BaseLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseLib.uni; sourceTree = ""; }; + 9AA90C7225CD451700BD5E8B /* X86FxRestore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86FxRestore.c; sourceTree = ""; }; + 9AA90C7325CD451700BD5E8B /* RRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RRotU64.c; sourceTree = ""; }; + 9AA90C7425CD451700BD5E8B /* LongJump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LongJump.c; sourceTree = ""; }; + 9AA90C7525CD451700BD5E8B /* Cpu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Cpu.c; sourceTree = ""; }; + 9AA90C7625CD451700BD5E8B /* BaseLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseLib.inf; sourceTree = ""; }; + 9AA90C7725CD451700BD5E8B /* GetPowerOfTwo64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GetPowerOfTwo64.c; sourceTree = ""; }; + 9AA90C7925CD451700BD5E8B /* WriteMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm4.nasm; sourceTree = ""; }; + 9AA90C7A25CD451700BD5E8B /* WriteDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr6.nasm; sourceTree = ""; }; + 9AA90C7B25CD451700BD5E8B /* Nasm.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.pascal; path = Nasm.inc; sourceTree = ""; }; + 9AA90C7C25CD451700BD5E8B /* WriteTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteTr.nasm; sourceTree = ""; }; + 9AA90C7D25CD451700BD5E8B /* WriteCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr4.nasm; sourceTree = ""; }; + 9AA90C7E25CD451700BD5E8B /* Mwait.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Mwait.nasm; sourceTree = ""; }; + 9AA90C7F25CD451700BD5E8B /* ReadFs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadFs.nasm; sourceTree = ""; }; + 9AA90C8025CD451700BD5E8B /* ReadDs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDs.nasm; sourceTree = ""; }; + 9AA90C8125CD451700BD5E8B /* FxRestore.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxRestore.nasm; sourceTree = ""; }; + 9AA90C8225CD451700BD5E8B /* ReadMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm4.nasm; sourceTree = ""; }; + 9AA90C8325CD451700BD5E8B /* ReadDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr6.nasm; sourceTree = ""; }; + 9AA90C8425CD451700BD5E8B /* CpuPause.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuPause.nasm; sourceTree = ""; }; + 9AA90C8525CD451700BD5E8B /* ReadCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr4.nasm; sourceTree = ""; }; + 9AA90C8625CD451700BD5E8B /* WriteLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteLdtr.nasm; sourceTree = ""; }; + 9AA90C8725CD451700BD5E8B /* ReadDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr7.nasm; sourceTree = ""; }; + 9AA90C8825CD451700BD5E8B /* SwitchStack.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SwitchStack.nasm; sourceTree = ""; }; + 9AA90C8925CD451700BD5E8B /* ReadMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm5.nasm; sourceTree = ""; }; + 9AA90C8A25CD451700BD5E8B /* WriteMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMsr64.nasm; sourceTree = ""; }; + 9AA90C8B25CD451700BD5E8B /* ReadIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadIdtr.nasm; sourceTree = ""; }; + 9AA90C8C25CD451700BD5E8B /* WriteDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr7.nasm; sourceTree = ""; }; + 9AA90C8D25CD451700BD5E8B /* WriteMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm5.nasm; sourceTree = ""; }; + 9AA90C8E25CD451700BD5E8B /* ReadMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm2.nasm; sourceTree = ""; }; + 9AA90C8F25CD451700BD5E8B /* ReadDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr0.nasm; sourceTree = ""; }; + 9AA90C9025CD451700BD5E8B /* ReadEs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEs.nasm; sourceTree = ""; }; + 9AA90C9125CD451700BD5E8B /* ReadCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr2.nasm; sourceTree = ""; }; + 9AA90C9225CD451700BD5E8B /* EnableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableCache.nasm; sourceTree = ""; }; + 9AA90C9325CD451700BD5E8B /* CpuIdEx.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuIdEx.nasm; sourceTree = ""; }; + 9AA90C9425CD451700BD5E8B /* SetJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetJump.nasm; sourceTree = ""; }; + 9AA90C9525CD451700BD5E8B /* WriteMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm2.nasm; sourceTree = ""; }; + 9AA90C9625CD451700BD5E8B /* EnableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableInterrupts.nasm; sourceTree = ""; }; + 9AA90C9725CD451700BD5E8B /* RdRand.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RdRand.nasm; sourceTree = ""; }; + 9AA90C9825CD451700BD5E8B /* WriteDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr0.nasm; sourceTree = ""; }; + 9AA90C9925CD451700BD5E8B /* DisableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableCache.nasm; sourceTree = ""; }; + 9AA90C9A25CD451700BD5E8B /* WriteCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr2.nasm; sourceTree = ""; }; + 9AA90C9B25CD451700BD5E8B /* ReadGs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGs.nasm; sourceTree = ""; }; + 9AA90C9C25CD451700BD5E8B /* WriteGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteGdtr.nasm; sourceTree = ""; }; + 9AA90C9D25CD451700BD5E8B /* ReadCs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCs.nasm; sourceTree = ""; }; + 9AA90C9E25CD451700BD5E8B /* EnableDisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableDisableInterrupts.nasm; sourceTree = ""; }; + 9AA90C9F25CD451700BD5E8B /* WriteCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr3.nasm; sourceTree = ""; }; + 9AA90CA025CD451700BD5E8B /* WriteDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr1.nasm; sourceTree = ""; }; + 9AA90CA125CD451700BD5E8B /* ReadMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMsr64.c; sourceTree = ""; }; + 9AA90CA225CD451700BD5E8B /* WriteMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm3.nasm; sourceTree = ""; }; + 9AA90CA325CD451700BD5E8B /* Thunk16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Thunk16.nasm; sourceTree = ""; }; + 9AA90CA425CD451700BD5E8B /* ReadCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr3.nasm; sourceTree = ""; }; + 9AA90CA525CD451700BD5E8B /* ReadDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr1.nasm; sourceTree = ""; }; + 9AA90CA625CD451700BD5E8B /* ReadMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm3.nasm; sourceTree = ""; }; + 9AA90CA725CD451700BD5E8B /* ReadCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr0.nasm; sourceTree = ""; }; + 9AA90CA825CD451700BD5E8B /* DisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableInterrupts.nasm; sourceTree = ""; }; + 9AA90CA925CD451700BD5E8B /* ReadDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr2.nasm; sourceTree = ""; }; + 9AA90CAA25CD451700BD5E8B /* Lfence.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Lfence.nasm; sourceTree = ""; }; + 9AA90CAB25CD451700BD5E8B /* ReadMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm0.nasm; sourceTree = ""; }; + 9AA90CAC25CD451700BD5E8B /* DisablePaging64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisablePaging64.nasm; sourceTree = ""; }; + 9AA90CAD25CD451700BD5E8B /* WriteCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr0.nasm; sourceTree = ""; }; + 9AA90CAE25CD451700BD5E8B /* WriteDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr2.nasm; sourceTree = ""; }; + 9AA90CAF25CD451700BD5E8B /* WriteMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm0.nasm; sourceTree = ""; }; + 9AA90CB025CD451700BD5E8B /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + 9AA90CB125CD451700BD5E8B /* CpuBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; + 9AA90CB225CD451700BD5E8B /* WriteMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm1.nasm; sourceTree = ""; }; + 9AA90CB325CD451700BD5E8B /* ReadTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTr.nasm; sourceTree = ""; }; + 9AA90CB425CD451700BD5E8B /* WriteDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr3.nasm; sourceTree = ""; }; + 9AA90CB525CD451700BD5E8B /* ReadMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm1.nasm; sourceTree = ""; }; + 9AA90CB625CD451700BD5E8B /* ReadDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr3.nasm; sourceTree = ""; }; + 9AA90CB725CD451700BD5E8B /* CpuBreakpoint.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuBreakpoint.nasm; sourceTree = ""; }; + 9AA90CB825CD451700BD5E8B /* Invd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Invd.nasm; sourceTree = ""; }; + 9AA90CB925CD451700BD5E8B /* LongJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LongJump.nasm; sourceTree = ""; }; + 9AA90CBA25CD451700BD5E8B /* ReadGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGdtr.nasm; sourceTree = ""; }; + 9AA90CBB25CD451700BD5E8B /* Wbinvd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Wbinvd.nasm; sourceTree = ""; }; + 9AA90CBC25CD451700BD5E8B /* ReadEflags.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEflags.nasm; sourceTree = ""; }; + 9AA90CBD25CD451700BD5E8B /* WriteMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMsr64.c; sourceTree = ""; }; + 9AA90CBE25CD451700BD5E8B /* Non-existing.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "Non-existing.c"; sourceTree = ""; }; + 9AA90CBF25CD451700BD5E8B /* WriteDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr4.nasm; sourceTree = ""; }; + 9AA90CC025CD451700BD5E8B /* FlushCacheLine.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FlushCacheLine.nasm; sourceTree = ""; }; + 9AA90CC125CD451700BD5E8B /* WriteMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm6.nasm; sourceTree = ""; }; + 9AA90CC225CD451700BD5E8B /* ReadLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadLdtr.nasm; sourceTree = ""; }; + 9AA90CC325CD451700BD5E8B /* WriteIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteIdtr.nasm; sourceTree = ""; }; + 9AA90CC425CD451700BD5E8B /* FxSave.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxSave.nasm; sourceTree = ""; }; + 9AA90CC525CD451700BD5E8B /* Monitor.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Monitor.nasm; sourceTree = ""; }; + 9AA90CC625CD451700BD5E8B /* ReadDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr4.nasm; sourceTree = ""; }; + 9AA90CC725CD451700BD5E8B /* ReadMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm6.nasm; sourceTree = ""; }; + 9AA90CC825CD451700BD5E8B /* ReadMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMsr64.nasm; sourceTree = ""; }; + 9AA90CC925CD451700BD5E8B /* ReadMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm7.nasm; sourceTree = ""; }; + 9AA90CCA25CD451700BD5E8B /* ReadDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr5.nasm; sourceTree = ""; }; + 9AA90CCB25CD451700BD5E8B /* ReadSs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadSs.nasm; sourceTree = ""; }; + 9AA90CCC25CD451700BD5E8B /* WriteMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm7.nasm; sourceTree = ""; }; + 9AA90CCD25CD451700BD5E8B /* CpuId.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuId.nasm; sourceTree = ""; }; + 9AA90CCE25CD451700BD5E8B /* WriteDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr5.nasm; sourceTree = ""; }; + 9AA90CCF25CD451700BD5E8B /* ReadPmc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadPmc.nasm; sourceTree = ""; }; + 9AA90CD025CD451700BD5E8B /* ReadTsc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTsc.nasm; sourceTree = ""; }; + 9AA90CD125CD451700BD5E8B /* X86Msr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86Msr.c; sourceTree = ""; }; + 9AA90CD225CD451700BD5E8B /* DivU64x64Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x64Remainder.c; sourceTree = ""; }; + 9AA90CD325CD451700BD5E8B /* X86Thunk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86Thunk.c; sourceTree = ""; }; + 9AA90CD425CD451700BD5E8B /* CpuDeadLoop.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuDeadLoop.c; sourceTree = ""; }; + 9AA90CD525CD451700BD5E8B /* LowBitSet64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LowBitSet64.c; sourceTree = ""; }; + 9AA90CD625CD451700BD5E8B /* LRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LRotU64.c; sourceTree = ""; }; + 9AA90CD725CD451700BD5E8B /* X86PatchInstruction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86PatchInstruction.c; sourceTree = ""; }; + 9AA90CD825CD451700BD5E8B /* X86FxSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86FxSave.c; sourceTree = ""; }; + 9AA90CD925CD451700BD5E8B /* X86GetInterruptState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86GetInterruptState.c; sourceTree = ""; }; + 9AA90CDA25CD451700BD5E8B /* CheckSum.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CheckSum.c; sourceTree = ""; }; + 9AA90CDB25CD451700BD5E8B /* MultU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x32.c; sourceTree = ""; }; + 9AA90CDC25CD451700BD5E8B /* String.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; + 9AA90CDD25CD451700BD5E8B /* X86DisablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86DisablePaging32.c; sourceTree = ""; }; + 9AA90CDE25CD451700BD5E8B /* BitField.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BitField.c; sourceTree = ""; }; + 9AA90CDF25CD451700BD5E8B /* X86EnablePaging64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86EnablePaging64.c; sourceTree = ""; }; + 9AA90CE025CD451700BD5E8B /* HighBitSet64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HighBitSet64.c; sourceTree = ""; }; + 9AA90CE125CD451700BD5E8B /* LShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LShiftU64.c; sourceTree = ""; }; + 9AA90CE225CD451700BD5E8B /* SafeString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeString.c; sourceTree = ""; }; + 9AA90CE325CD451700BD5E8B /* MultS64x64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultS64x64.c; sourceTree = ""; }; + 9AA90CE425CD451700BD5E8B /* Unaligned.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Unaligned.c; sourceTree = ""; }; + 9AA90CE625CD451700BD5E8B /* EnablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnablePaging32.c; sourceTree = ""; }; + 9AA90CE725CD451700BD5E8B /* WriteMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm4.nasm; sourceTree = ""; }; + 9AA90CE825CD451700BD5E8B /* WriteDr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr3.c; sourceTree = ""; }; + 9AA90CE925CD451700BD5E8B /* ReadGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadGdtr.c; sourceTree = ""; }; + 9AA90CEA25CD451700BD5E8B /* WriteDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr6.nasm; sourceTree = ""; }; + 9AA90CEB25CD451700BD5E8B /* WriteTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteTr.nasm; sourceTree = ""; }; + 9AA90CEC25CD451700BD5E8B /* WriteCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr4.nasm; sourceTree = ""; }; + 9AA90CED25CD451700BD5E8B /* ReadDr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr2.c; sourceTree = ""; }; + 9AA90CEE25CD451700BD5E8B /* Mwait.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Mwait.nasm; sourceTree = ""; }; + 9AA90CEF25CD451700BD5E8B /* ReadFs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadFs.nasm; sourceTree = ""; }; + 9AA90CF025CD451700BD5E8B /* ReadDs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDs.nasm; sourceTree = ""; }; + 9AA90CF125CD451700BD5E8B /* FxRestore.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxRestore.nasm; sourceTree = ""; }; + 9AA90CF225CD451700BD5E8B /* ReadSs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadSs.c; sourceTree = ""; }; + 9AA90CF325CD451700BD5E8B /* ReadMm4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm4.nasm; sourceTree = ""; }; + 9AA90CF425CD451700BD5E8B /* DivS64x64Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivS64x64Remainder.c; sourceTree = ""; }; + 9AA90CF525CD451700BD5E8B /* Monitor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Monitor.c; sourceTree = ""; }; + 9AA90CF625CD451700BD5E8B /* ReadDr6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr6.nasm; sourceTree = ""; }; + 9AA90CF725CD451700BD5E8B /* WriteGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteGdtr.c; sourceTree = ""; }; + 9AA90CF825CD451700BD5E8B /* CpuPause.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuPause.nasm; sourceTree = ""; }; + 9AA90CF925CD451700BD5E8B /* ReadDr6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr6.c; sourceTree = ""; }; + 9AA90CFA25CD451700BD5E8B /* ReadPmc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadPmc.c; sourceTree = ""; }; + 9AA90CFB25CD451700BD5E8B /* Wbinvd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Wbinvd.c; sourceTree = ""; }; + 9AA90CFC25CD451700BD5E8B /* DisablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisablePaging32.c; sourceTree = ""; }; + 9AA90CFD25CD451700BD5E8B /* RShiftU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RShiftU64.nasm; sourceTree = ""; }; + 9AA90CFE25CD451700BD5E8B /* ReadCr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr4.nasm; sourceTree = ""; }; + 9AA90CFF25CD451700BD5E8B /* Invd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Invd.c; sourceTree = ""; }; + 9AA90D0025CD451700BD5E8B /* WriteDr7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr7.c; sourceTree = ""; }; + 9AA90D0125CD451700BD5E8B /* WriteMm7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm7.c; sourceTree = ""; }; + 9AA90D0225CD451700BD5E8B /* RRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RRotU64.c; sourceTree = ""; }; + 9AA90D0325CD451700BD5E8B /* ReadCr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr2.c; sourceTree = ""; }; + 9AA90D0425CD451700BD5E8B /* LShiftU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LShiftU64.nasm; sourceTree = ""; }; + 9AA90D0525CD451700BD5E8B /* ReadTr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadTr.c; sourceTree = ""; }; + 9AA90D0625CD451700BD5E8B /* ReadMm6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm6.c; sourceTree = ""; }; + 9AA90D0725CD451700BD5E8B /* WriteLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteLdtr.nasm; sourceTree = ""; }; + 9AA90D0825CD451700BD5E8B /* ReadDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr7.nasm; sourceTree = ""; }; + 9AA90D0925CD451700BD5E8B /* ReadMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm5.nasm; sourceTree = ""; }; + 9AA90D0A25CD451700BD5E8B /* WriteCr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr3.c; sourceTree = ""; }; + 9AA90D0B25CD451700BD5E8B /* WriteMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMsr64.nasm; sourceTree = ""; }; + 9AA90D0C25CD451700BD5E8B /* CpuPause.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuPause.c; sourceTree = ""; }; + 9AA90D0D25CD451700BD5E8B /* ReadMm2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm2.c; sourceTree = ""; }; + 9AA90D0E25CD451700BD5E8B /* ReadIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadIdtr.nasm; sourceTree = ""; }; + 9AA90D0F25CD451700BD5E8B /* WriteDr7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr7.nasm; sourceTree = ""; }; + 9AA90D1025CD451700BD5E8B /* CpuIdEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIdEx.c; sourceTree = ""; }; + 9AA90D1125CD451700BD5E8B /* WriteMm3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm3.c; sourceTree = ""; }; + 9AA90D1225CD451700BD5E8B /* WriteMm5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm5.nasm; sourceTree = ""; }; + 9AA90D1325CD451700BD5E8B /* ReadDr1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr1.c; sourceTree = ""; }; + 9AA90D1425CD451700BD5E8B /* ReadMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm2.nasm; sourceTree = ""; }; + 9AA90D1525CD451700BD5E8B /* ReadDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr0.nasm; sourceTree = ""; }; + 9AA90D1625CD451700BD5E8B /* ReadEs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEs.nasm; sourceTree = ""; }; + 9AA90D1725CD451700BD5E8B /* ReadEs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadEs.c; sourceTree = ""; }; + 9AA90D1825CD451700BD5E8B /* FlushCacheLine.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FlushCacheLine.c; sourceTree = ""; }; + 9AA90D1925CD451700BD5E8B /* ReadCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr2.nasm; sourceTree = ""; }; + 9AA90D1A25CD451700BD5E8B /* WriteDr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr0.c; sourceTree = ""; }; + 9AA90D1B25CD451700BD5E8B /* DisableInterrupts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisableInterrupts.c; sourceTree = ""; }; + 9AA90D1C25CD451700BD5E8B /* EnableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableCache.nasm; sourceTree = ""; }; + 9AA90D1D25CD451700BD5E8B /* CpuIdEx.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuIdEx.nasm; sourceTree = ""; }; + 9AA90D1E25CD451700BD5E8B /* SetJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetJump.nasm; sourceTree = ""; }; + 9AA90D1F25CD451700BD5E8B /* WriteMm2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm2.nasm; sourceTree = ""; }; + 9AA90D2025CD451700BD5E8B /* EnableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableInterrupts.nasm; sourceTree = ""; }; + 9AA90D2125CD451700BD5E8B /* RdRand.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RdRand.nasm; sourceTree = ""; }; + 9AA90D2225CD451700BD5E8B /* WriteDr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr0.nasm; sourceTree = ""; }; + 9AA90D2325CD451700BD5E8B /* DisableCache.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableCache.nasm; sourceTree = ""; }; + 9AA90D2425CD451700BD5E8B /* LRotU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LRotU64.c; sourceTree = ""; }; + 9AA90D2525CD451700BD5E8B /* WriteDr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr4.c; sourceTree = ""; }; + 9AA90D2625CD451700BD5E8B /* WriteCr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr2.nasm; sourceTree = ""; }; + 9AA90D2725CD451700BD5E8B /* ReadGs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGs.nasm; sourceTree = ""; }; + 9AA90D2825CD451700BD5E8B /* WriteGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteGdtr.nasm; sourceTree = ""; }; + 9AA90D2925CD451700BD5E8B /* ReadDr5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr5.c; sourceTree = ""; }; + 9AA90D2A25CD451700BD5E8B /* EnableCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnableCache.c; sourceTree = ""; }; + 9AA90D2B25CD451700BD5E8B /* ReadMm5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm5.c; sourceTree = ""; }; + 9AA90D2C25CD451700BD5E8B /* ReadCs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCs.nasm; sourceTree = ""; }; + 9AA90D2D25CD451700BD5E8B /* EnableInterrupts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnableInterrupts.c; sourceTree = ""; }; + 9AA90D2E25CD451700BD5E8B /* WriteCr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr0.c; sourceTree = ""; }; + 9AA90D2F25CD451700BD5E8B /* EnableDisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnableDisableInterrupts.nasm; sourceTree = ""; }; + 9AA90D3025CD451700BD5E8B /* MultU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x32.c; sourceTree = ""; }; + 9AA90D3125CD451700BD5E8B /* WriteCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr3.nasm; sourceTree = ""; }; + 9AA90D3225CD451700BD5E8B /* DivU64x64Remainder.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DivU64x64Remainder.nasm; sourceTree = ""; }; + 9AA90D3325CD451700BD5E8B /* WriteMm4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm4.c; sourceTree = ""; }; + 9AA90D3425CD451700BD5E8B /* WriteDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr1.nasm; sourceTree = ""; }; + 9AA90D3525CD451700BD5E8B /* WriteLdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteLdtr.c; sourceTree = ""; }; + 9AA90D3625CD451700BD5E8B /* ReadMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMsr64.c; sourceTree = ""; }; + 9AA90D3725CD451700BD5E8B /* WriteMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm3.nasm; sourceTree = ""; }; + 9AA90D3825CD451700BD5E8B /* Thunk16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Thunk16.nasm; sourceTree = ""; }; + 9AA90D3925CD451700BD5E8B /* ReadCr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr3.nasm; sourceTree = ""; }; + 9AA90D3A25CD451700BD5E8B /* WriteMm0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm0.c; sourceTree = ""; }; + 9AA90D3B25CD451700BD5E8B /* ReadDs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDs.c; sourceTree = ""; }; + 9AA90D3C25CD451700BD5E8B /* FxSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FxSave.c; sourceTree = ""; }; + 9AA90D3D25CD451700BD5E8B /* WriteCr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr4.c; sourceTree = ""; }; + 9AA90D3E25CD451700BD5E8B /* ReadDr1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr1.nasm; sourceTree = ""; }; + 9AA90D3F25CD451700BD5E8B /* ReadMm1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm1.c; sourceTree = ""; }; + 9AA90D4025CD451700BD5E8B /* ReadMm3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm3.nasm; sourceTree = ""; }; + 9AA90D4125CD451700BD5E8B /* ReadLdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadLdtr.c; sourceTree = ""; }; + 9AA90D4225CD451700BD5E8B /* ARShiftU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ARShiftU64.nasm; sourceTree = ""; }; + 9AA90D4325CD451700BD5E8B /* LShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LShiftU64.c; sourceTree = ""; }; + 9AA90D4425CD451700BD5E8B /* ReadCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadCr0.nasm; sourceTree = ""; }; + 9AA90D4525CD451700BD5E8B /* ReadDr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr0.c; sourceTree = ""; }; + 9AA90D4625CD451700BD5E8B /* DisableInterrupts.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisableInterrupts.nasm; sourceTree = ""; }; + 9AA90D4725CD451700BD5E8B /* SwapBytes64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SwapBytes64.nasm; sourceTree = ""; }; + 9AA90D4825CD451700BD5E8B /* ReadCs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCs.c; sourceTree = ""; }; + 9AA90D4925CD451700BD5E8B /* ReadDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr2.nasm; sourceTree = ""; }; + 9AA90D4A25CD451700BD5E8B /* Lfence.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Lfence.nasm; sourceTree = ""; }; + 9AA90D4B25CD451700BD5E8B /* ReadMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm0.nasm; sourceTree = ""; }; + 9AA90D4C25CD451700BD5E8B /* WriteDr1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr1.c; sourceTree = ""; }; + 9AA90D4D25CD451700BD5E8B /* MultU64x64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MultU64x64.nasm; sourceTree = ""; }; + 9AA90D4E25CD451700BD5E8B /* WriteDr5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr5.c; sourceTree = ""; }; + 9AA90D4F25CD451700BD5E8B /* LRotU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LRotU64.nasm; sourceTree = ""; }; + 9AA90D5025CD451700BD5E8B /* Mwait.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mwait.c; sourceTree = ""; }; + 9AA90D5125CD451700BD5E8B /* WriteCr0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteCr0.nasm; sourceTree = ""; }; + 9AA90D5225CD451700BD5E8B /* RRotU64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RRotU64.nasm; sourceTree = ""; }; + 9AA90D5325CD451700BD5E8B /* ReadDr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr4.c; sourceTree = ""; }; + 9AA90D5425CD451700BD5E8B /* ReadGs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadGs.c; sourceTree = ""; }; + 9AA90D5525CD451700BD5E8B /* WriteDr2.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr2.nasm; sourceTree = ""; }; + 9AA90D5625CD451700BD5E8B /* WriteMm0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm0.nasm; sourceTree = ""; }; + 9AA90D5725CD451700BD5E8B /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + 9AA90D5825CD451700BD5E8B /* CpuBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuBreakpoint.c; sourceTree = ""; }; + 9AA90D5925CD451700BD5E8B /* WriteMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm1.nasm; sourceTree = ""; }; + 9AA90D5A25CD451700BD5E8B /* ReadTr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTr.nasm; sourceTree = ""; }; + 9AA90D5B25CD451700BD5E8B /* InternalSwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InternalSwitchStack.c; sourceTree = ""; }; + 9AA90D5C25CD451700BD5E8B /* DivU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32.c; sourceTree = ""; }; + 9AA90D5D25CD451700BD5E8B /* ReadMm4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm4.c; sourceTree = ""; }; + 9AA90D5E25CD451700BD5E8B /* DivU64x32Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32Remainder.c; sourceTree = ""; }; + 9AA90D5F25CD451700BD5E8B /* WriteDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr3.nasm; sourceTree = ""; }; + 9AA90D6025CD451700BD5E8B /* ReadFs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadFs.c; sourceTree = ""; }; + 9AA90D6125CD451700BD5E8B /* ReadCr0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr0.c; sourceTree = ""; }; + 9AA90D6225CD451700BD5E8B /* CpuId.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuId.c; sourceTree = ""; }; + 9AA90D6325CD451700BD5E8B /* MultU64x32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = MultU64x32.nasm; sourceTree = ""; }; + 9AA90D6425CD451700BD5E8B /* WriteMm5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm5.c; sourceTree = ""; }; + 9AA90D6525CD451700BD5E8B /* DisablePaging32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DisablePaging32.nasm; sourceTree = ""; }; + 9AA90D6625CD451700BD5E8B /* SwapBytes64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes64.c; sourceTree = ""; }; + 9AA90D6725CD451700BD5E8B /* RShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RShiftU64.c; sourceTree = ""; }; + 9AA90D6825CD451700BD5E8B /* ReadMm1.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm1.nasm; sourceTree = ""; }; + 9AA90D6925CD451700BD5E8B /* WriteMm1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm1.c; sourceTree = ""; }; + 9AA90D6A25CD451700BD5E8B /* ReadDr3.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr3.nasm; sourceTree = ""; }; + 9AA90D6B25CD451700BD5E8B /* ReadCr4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr4.c; sourceTree = ""; }; + 9AA90D6C25CD451700BD5E8B /* DivU64x32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DivU64x32.nasm; sourceTree = ""; }; + 9AA90D6D25CD451700BD5E8B /* CpuBreakpoint.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuBreakpoint.nasm; sourceTree = ""; }; + 9AA90D6E25CD451700BD5E8B /* Invd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Invd.nasm; sourceTree = ""; }; + 9AA90D6F25CD451700BD5E8B /* ReadMm0.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm0.c; sourceTree = ""; }; + 9AA90D7025CD451700BD5E8B /* LongJump.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = LongJump.nasm; sourceTree = ""; }; + 9AA90D7125CD451700BD5E8B /* DisableCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisableCache.c; sourceTree = ""; }; + 9AA90D7225CD451700BD5E8B /* ReadGdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadGdtr.nasm; sourceTree = ""; }; + 9AA90D7325CD451700BD5E8B /* Wbinvd.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Wbinvd.nasm; sourceTree = ""; }; + 9AA90D7425CD451700BD5E8B /* ReadEflags.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadEflags.nasm; sourceTree = ""; }; + 9AA90D7525CD451700BD5E8B /* FxRestore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FxRestore.c; sourceTree = ""; }; + 9AA90D7625CD451700BD5E8B /* WriteMsr64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMsr64.c; sourceTree = ""; }; + 9AA90D7725CD451700BD5E8B /* Non-existing.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "Non-existing.c"; sourceTree = ""; }; + 9AA90D7825CD451700BD5E8B /* WriteDr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr2.c; sourceTree = ""; }; + 9AA90D7925CD451700BD5E8B /* EnablePaging64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnablePaging64.nasm; sourceTree = ""; }; + 9AA90D7A25CD451700BD5E8B /* WriteDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr4.nasm; sourceTree = ""; }; + 9AA90D7B25CD451700BD5E8B /* FlushCacheLine.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FlushCacheLine.nasm; sourceTree = ""; }; + 9AA90D7C25CD451700BD5E8B /* WriteIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteIdtr.c; sourceTree = ""; }; + 9AA90D7D25CD451700BD5E8B /* ReadDr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr3.c; sourceTree = ""; }; + 9AA90D7E25CD451700BD5E8B /* WriteMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm6.nasm; sourceTree = ""; }; + 9AA90D7F25CD451700BD5E8B /* ReadLdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadLdtr.nasm; sourceTree = ""; }; + 9AA90D8025CD451700BD5E8B /* ReadDr7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadDr7.c; sourceTree = ""; }; + 9AA90D8125CD451700BD5E8B /* ReadEflags.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadEflags.c; sourceTree = ""; }; + 9AA90D8225CD451700BD5E8B /* WriteIdtr.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteIdtr.nasm; sourceTree = ""; }; + 9AA90D8325CD451700BD5E8B /* MultU64x64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x64.c; sourceTree = ""; }; + 9AA90D8425CD451700BD5E8B /* DivU64x32Remainder.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = DivU64x32Remainder.nasm; sourceTree = ""; }; + 9AA90D8525CD451700BD5E8B /* FxSave.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = FxSave.nasm; sourceTree = ""; }; + 9AA90D8625CD451700BD5E8B /* Monitor.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Monitor.nasm; sourceTree = ""; }; + 9AA90D8725CD451700BD5E8B /* WriteDr6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteDr6.c; sourceTree = ""; }; + 9AA90D8825CD451700BD5E8B /* ReadDr4.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr4.nasm; sourceTree = ""; }; + 9AA90D8925CD451700BD5E8B /* ReadMm6.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm6.nasm; sourceTree = ""; }; + 9AA90D8A25CD451700BD5E8B /* ReadMsr64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMsr64.nasm; sourceTree = ""; }; + 9AA90D8B25CD451700BD5E8B /* ReadIdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadIdtr.c; sourceTree = ""; }; + 9AA90D8C25CD451700BD5E8B /* ARShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ARShiftU64.c; sourceTree = ""; }; + 9AA90D8D25CD451700BD5E8B /* ReadCr3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadCr3.c; sourceTree = ""; }; + 9AA90D8E25CD451700BD5E8B /* ReadMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadMm7.nasm; sourceTree = ""; }; + 9AA90D8F25CD451700BD5E8B /* ReadDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadDr5.nasm; sourceTree = ""; }; + 9AA90D9025CD451700BD5E8B /* WriteMm6.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm6.c; sourceTree = ""; }; + 9AA90D9125CD451700BD5E8B /* ReadTsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadTsc.c; sourceTree = ""; }; + 9AA90D9225CD451700BD5E8B /* WriteCr2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteCr2.c; sourceTree = ""; }; + 9AA90D9325CD451700BD5E8B /* ModU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ModU64x32.c; sourceTree = ""; }; + 9AA90D9425CD451700BD5E8B /* ReadSs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadSs.nasm; sourceTree = ""; }; + 9AA90D9525CD451700BD5E8B /* ReadMm7.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm7.c; sourceTree = ""; }; + 9AA90D9625CD451700BD5E8B /* EnableDisableInterrupts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnableDisableInterrupts.c; sourceTree = ""; }; + 9AA90D9725CD451700BD5E8B /* WriteMm7.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteMm7.nasm; sourceTree = ""; }; + 9AA90D9825CD451700BD5E8B /* ReadMm3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadMm3.c; sourceTree = ""; }; + 9AA90D9925CD451700BD5E8B /* CpuId.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuId.nasm; sourceTree = ""; }; + 9AA90D9A25CD451700BD5E8B /* InternalSwitchStack.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InternalSwitchStack.nasm; sourceTree = ""; }; + 9AA90D9B25CD451700BD5E8B /* WriteDr5.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = WriteDr5.nasm; sourceTree = ""; }; + 9AA90D9C25CD451700BD5E8B /* ReadPmc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadPmc.nasm; sourceTree = ""; }; + 9AA90D9D25CD451700BD5E8B /* WriteMm2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WriteMm2.c; sourceTree = ""; }; + 9AA90D9E25CD451700BD5E8B /* ModU64x32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ModU64x32.nasm; sourceTree = ""; }; + 9AA90D9F25CD451700BD5E8B /* ReadTsc.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ReadTsc.nasm; sourceTree = ""; }; + 9AA90DA025CD451700BD5E8B /* EnablePaging32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EnablePaging32.nasm; sourceTree = ""; }; + 9AA90DA125CD451700BD5E8B /* GetPowerOfTwo32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GetPowerOfTwo32.c; sourceTree = ""; }; + 9AA90DA225CD451700BD5E8B /* Math64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Math64.c; sourceTree = ""; }; + 9AA90DA325CD451700BD5E8B /* RRotU32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RRotU32.c; sourceTree = ""; }; + 9AA90DA425CD451700BD5E8B /* DivU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32.c; sourceTree = ""; }; + 9AA90DA525CD451700BD5E8B /* DivU64x32Remainder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DivU64x32Remainder.c; sourceTree = ""; }; + 9AA90DA625CD451700BD5E8B /* X86MemoryFence.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86MemoryFence.c; sourceTree = ""; }; + 9AA90DA725CD451700BD5E8B /* SwapBytes64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes64.c; sourceTree = ""; }; + 9AA90DA825CD451700BD5E8B /* RShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RShiftU64.c; sourceTree = ""; }; + 9AA90DA925CD451700BD5E8B /* SwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwitchStack.c; sourceTree = ""; }; + 9AA90DAA25CD451700BD5E8B /* ChkStkGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ChkStkGcc.c; sourceTree = ""; }; + 9AA90DAB25CD451700BD5E8B /* SetJump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetJump.c; sourceTree = ""; }; + 9AA90DAC25CD451700BD5E8B /* X86EnablePaging32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86EnablePaging32.c; sourceTree = ""; }; + 9AA90DAD25CD451700BD5E8B /* X86WriteGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86WriteGdtr.c; sourceTree = ""; }; + 9AA90DAE25CD451700BD5E8B /* SwapBytes16.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SwapBytes16.c; sourceTree = ""; }; + 9AA90DAF25CD451700BD5E8B /* HighBitSet32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HighBitSet32.c; sourceTree = ""; }; + 9AA90DB025CD451700BD5E8B /* X86RdRand.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86RdRand.c; sourceTree = ""; }; + 9AA90DB225CD451700BD5E8B /* Math64.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = Math64.S; sourceTree = ""; }; + 9AA90DB325CD451700BD5E8B /* CpuPause.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuPause.asm; sourceTree = ""; }; + 9AA90DB425CD451700BD5E8B /* EnableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = EnableInterrupts.asm; sourceTree = ""; }; + 9AA90DB525CD451700BD5E8B /* SwitchStack.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SwitchStack.S; sourceTree = ""; }; + 9AA90DB625CD451700BD5E8B /* CpuBreakpoint.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuBreakpoint.S; sourceTree = ""; }; + 9AA90DB725CD451700BD5E8B /* SetJumpLongJump.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetJumpLongJump.asm; sourceTree = ""; }; + 9AA90DB825CD451700BD5E8B /* CpuBreakpoint.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuBreakpoint.asm; sourceTree = ""; }; + 9AA90DB925CD451700BD5E8B /* GetInterruptsState.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = GetInterruptsState.S; sourceTree = ""; }; + 9AA90DBA25CD451700BD5E8B /* MemoryFence.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = MemoryFence.asm; sourceTree = ""; }; + 9AA90DBB25CD451700BD5E8B /* SpeculationBarrier.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SpeculationBarrier.S; sourceTree = ""; }; + 9AA90DBC25CD451700BD5E8B /* DisableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DisableInterrupts.asm; sourceTree = ""; }; + 9AA90DBD25CD451700BD5E8B /* SetJumpLongJump.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetJumpLongJump.S; sourceTree = ""; }; + 9AA90DBE25CD451700BD5E8B /* GetInterruptsState.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = GetInterruptsState.asm; sourceTree = ""; }; + 9AA90DBF25CD451700BD5E8B /* Unaligned.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Unaligned.c; sourceTree = ""; }; + 9AA90DC025CD451700BD5E8B /* InternalSwitchStack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InternalSwitchStack.c; sourceTree = ""; }; + 9AA90DC125CD451700BD5E8B /* SpeculationBarrier.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SpeculationBarrier.asm; sourceTree = ""; }; + 9AA90DC225CD451700BD5E8B /* MemoryFence.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = MemoryFence.S; sourceTree = ""; }; + 9AA90DC325CD451700BD5E8B /* DisableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = DisableInterrupts.S; sourceTree = ""; }; + 9AA90DC425CD451700BD5E8B /* SwitchStack.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SwitchStack.asm; sourceTree = ""; }; + 9AA90DC525CD451700BD5E8B /* EnableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = EnableInterrupts.S; sourceTree = ""; }; + 9AA90DC625CD451700BD5E8B /* MultU64x64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MultU64x64.c; sourceTree = ""; }; + 9AA90DC725CD451700BD5E8B /* X86DisablePaging64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86DisablePaging64.c; sourceTree = ""; }; + 9AA90DC825CD451700BD5E8B /* X86ReadGdtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86ReadGdtr.c; sourceTree = ""; }; + 9AA90DC925CD451700BD5E8B /* ARShiftU64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ARShiftU64.c; sourceTree = ""; }; + 9AA90DCB25CD451700BD5E8B /* EnableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = EnableInterrupts.asm; sourceTree = ""; }; + 9AA90DCC25CD451700BD5E8B /* SwitchStack.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SwitchStack.S; sourceTree = ""; }; + 9AA90DCD25CD451700BD5E8B /* CpuBreakpoint.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuBreakpoint.S; sourceTree = ""; }; + 9AA90DCE25CD451700BD5E8B /* SetJumpLongJump.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetJumpLongJump.asm; sourceTree = ""; }; + 9AA90DCF25CD451700BD5E8B /* CpuBreakpoint.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuBreakpoint.asm; sourceTree = ""; }; + 9AA90DD025CD451700BD5E8B /* GetInterruptsState.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = GetInterruptsState.S; sourceTree = ""; }; + 9AA90DD125CD451700BD5E8B /* MemoryFence.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = MemoryFence.asm; sourceTree = ""; }; + 9AA90DD225CD451700BD5E8B /* SpeculationBarrier.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SpeculationBarrier.S; sourceTree = ""; }; + 9AA90DD325CD451700BD5E8B /* DisableInterrupts.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = DisableInterrupts.asm; sourceTree = ""; }; + 9AA90DD425CD451700BD5E8B /* SetJumpLongJump.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetJumpLongJump.S; sourceTree = ""; }; + 9AA90DD525CD451700BD5E8B /* GetInterruptsState.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = GetInterruptsState.asm; sourceTree = ""; }; + 9AA90DD625CD451700BD5E8B /* SpeculationBarrier.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SpeculationBarrier.asm; sourceTree = ""; }; + 9AA90DD725CD451700BD5E8B /* MemoryFence.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = MemoryFence.S; sourceTree = ""; }; + 9AA90DD825CD451700BD5E8B /* DisableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = DisableInterrupts.S; sourceTree = ""; }; + 9AA90DD925CD451700BD5E8B /* SwitchStack.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SwitchStack.asm; sourceTree = ""; }; + 9AA90DDA25CD451700BD5E8B /* EnableInterrupts.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = EnableInterrupts.S; sourceTree = ""; }; + 9AA90DDB25CD451700BD5E8B /* LowBitSet32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LowBitSet32.c; sourceTree = ""; }; + 9AA90DDC25CD451700BD5E8B /* LRotU32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LRotU32.c; sourceTree = ""; }; + 9AA90DDD25CD451700BD5E8B /* ModU64x32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ModU64x32.c; sourceTree = ""; }; + 9AA90DDE25CD451700BD5E8B /* LinkedList.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LinkedList.c; sourceTree = ""; }; + 9AA90DDF25CD451700BD5E8B /* X86SpeculationBarrier.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86SpeculationBarrier.c; sourceTree = ""; }; + 9AA90DE125CD451800BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA90DE225CD451800BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA90DE325CD451800BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA90DE425CD451800BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA90DE625CD451800BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA90DE725CD451800BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA90DE825CD451800BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA90DE925CD451800BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA90DEA25CD451800BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA90DEB25CD451800BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA90DEC25CD451800BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA90DED25CD451800BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA90DEE25CD451800BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA90DEF25CD451800BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA90DF025CD451800BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA90DF125CD451800BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA90DF225CD451800BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA90DF325CD451800BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA90DF525CD451800BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA90DF625CD451800BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA90DF725CD451800BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA90DF825CD451800BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA90DF925CD451800BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA90DFA25CD451800BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA90DFB25CD451800BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA90DFC25CD451800BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA90DFD25CD451800BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA90DFE25CD451800BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA90DFF25CD451800BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA90E0025CD451800BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA90E0125CD451800BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA90E0225CD451800BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA90E0325CD451800BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA90E0425CD451800BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA90E0525CD451800BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA90E0625CD451800BD5E8B /* BaseMemoryLibRepStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibRepStr.uni; sourceTree = ""; }; + 9AA90E0725CD451800BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA90E0825CD451800BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA90E0925CD451800BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA90E0A25CD451800BD5E8B /* BaseMemoryLibRepStr.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibRepStr.inf; sourceTree = ""; }; + 9AA90E0C25CD451800BD5E8B /* BaseSynchronizationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSynchronizationLib.uni; sourceTree = ""; }; + 9AA90E0E25CD451800BD5E8B /* Synchronization.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Synchronization.c; sourceTree = ""; }; + 9AA90E0F25CD451800BD5E8B /* BaseSynchronizationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSynchronizationLib.inf; sourceTree = ""; }; + 9AA90E1125CD451800BD5E8B /* InterlockedCompareExchange64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange64.c; sourceTree = ""; }; + 9AA90E1225CD451800BD5E8B /* InterlockedIncrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedIncrement.nasm; sourceTree = ""; }; + 9AA90E1325CD451800BD5E8B /* InterlockedCompareExchange16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange16.nasm; sourceTree = ""; }; + 9AA90E1425CD451800BD5E8B /* InterlockedCompareExchange16.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange16.c; sourceTree = ""; }; + 9AA90E1525CD451800BD5E8B /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + 9AA90E1625CD451800BD5E8B /* InterlockedCompareExchange32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange32.c; sourceTree = ""; }; + 9AA90E1725CD451800BD5E8B /* InterlockedCompareExchange64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange64.nasm; sourceTree = ""; }; + 9AA90E1825CD451800BD5E8B /* InterlockedCompareExchange32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange32.nasm; sourceTree = ""; }; + 9AA90E1925CD451800BD5E8B /* InterlockedDecrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedDecrement.nasm; sourceTree = ""; }; + 9AA90E1A25CD451800BD5E8B /* InterlockedIncrementMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedIncrementMsc.c; sourceTree = ""; }; + 9AA90E1C25CD451800BD5E8B /* InterlockedCompareExchange64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange64.c; sourceTree = ""; }; + 9AA90E1D25CD451800BD5E8B /* InternalGetSpinLockProperties.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InternalGetSpinLockProperties.c; sourceTree = ""; }; + 9AA90E1E25CD451800BD5E8B /* InterlockedIncrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedIncrement.nasm; sourceTree = ""; }; + 9AA90E1F25CD451800BD5E8B /* InterlockedCompareExchange16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange16.nasm; sourceTree = ""; }; + 9AA90E2025CD451800BD5E8B /* InterlockedCompareExchange16.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange16.c; sourceTree = ""; }; + 9AA90E2125CD451800BD5E8B /* GccInline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GccInline.c; sourceTree = ""; }; + 9AA90E2225CD451800BD5E8B /* InterlockedCompareExchange32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedCompareExchange32.c; sourceTree = ""; }; + 9AA90E2325CD451800BD5E8B /* InterlockedCompareExchange64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange64.nasm; sourceTree = ""; }; + 9AA90E2425CD451800BD5E8B /* InterlockedCompareExchange32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedCompareExchange32.nasm; sourceTree = ""; }; + 9AA90E2525CD451800BD5E8B /* InterlockedDecrement.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = InterlockedDecrement.nasm; sourceTree = ""; }; + 9AA90E2625CD451800BD5E8B /* BaseSynchronizationLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseSynchronizationLibInternals.h; sourceTree = ""; }; + 9AA90E2725CD451800BD5E8B /* SynchronizationMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SynchronizationMsc.c; sourceTree = ""; }; + 9AA90E2825CD451800BD5E8B /* Synchronization.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Synchronization.c; sourceTree = ""; }; + 9AA90E2A25CD451800BD5E8B /* Synchronization.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = Synchronization.S; sourceTree = ""; }; + 9AA90E2B25CD451800BD5E8B /* Synchronization.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Synchronization.asm; sourceTree = ""; }; + 9AA90E2D25CD451800BD5E8B /* Synchronization.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = Synchronization.S; sourceTree = ""; }; + 9AA90E2E25CD451800BD5E8B /* Synchronization.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = Synchronization.asm; sourceTree = ""; }; + 9AA90E2F25CD451800BD5E8B /* SynchronizationGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SynchronizationGcc.c; sourceTree = ""; }; + 9AA90E3025CD451800BD5E8B /* InterlockedDecrementMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InterlockedDecrementMsc.c; sourceTree = ""; }; + 9AA90E3225CD451800BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA90E3325CD451800BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA90E3425CD451800BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA90E3525CD451800BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA90E3625CD451800BD5E8B /* MemLibGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; + 9AA90E3725CD451800BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA90E3825CD451800BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA90E3925CD451800BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA90E3A25CD451800BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA90E3B25CD451800BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA90E3C25CD451800BD5E8B /* MemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLib.c; sourceTree = ""; }; + 9AA90E3D25CD451800BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA90E3E25CD451800BD5E8B /* UefiMemoryLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryLib.inf; sourceTree = ""; }; + 9AA90E3F25CD451800BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA90E4025CD451800BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA90E4125CD451800BD5E8B /* UefiMemoryLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryLib.uni; sourceTree = ""; }; + 9AA90E4225CD451800BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA90E4325CD451800BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA90E4525CD451800BD5E8B /* PciSegmentLibCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciSegmentLibCommon.h; sourceTree = ""; }; + 9AA90E4625CD451800BD5E8B /* DxeRuntimePciSegmentLibSegmentInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciSegmentLibSegmentInfo.inf; sourceTree = ""; }; + 9AA90E4725CD451800BD5E8B /* BasePciSegmentLibSegmentInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibSegmentInfo.inf; sourceTree = ""; }; + 9AA90E4825CD451800BD5E8B /* DxeRuntimePciSegmentLibSegmentInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciSegmentLibSegmentInfo.uni; sourceTree = ""; }; + 9AA90E4925CD451800BD5E8B /* BasePciSegmentLibSegmentInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibSegmentInfo.uni; sourceTree = ""; }; + 9AA90E4A25CD451800BD5E8B /* BasePciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BasePciSegmentLib.c; sourceTree = ""; }; + 9AA90E4B25CD451800BD5E8B /* PciSegmentLibCommon.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLibCommon.c; sourceTree = ""; }; + 9AA90E4C25CD451800BD5E8B /* DxeRuntimePciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeRuntimePciSegmentLib.c; sourceTree = ""; }; + 9AA90E4F25CD451800BD5E8B /* CpuSleepFlushTlb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuSleepFlushTlb.c; sourceTree = ""; }; + 9AA90E5125CD451800BD5E8B /* CpuSleep.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuSleep.nasm; sourceTree = ""; }; + 9AA90E5225CD451800BD5E8B /* CpuFlushTlb.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuFlushTlb.nasm; sourceTree = ""; }; + 9AA90E5325CD451800BD5E8B /* BaseCpuLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCpuLib.uni; sourceTree = ""; }; + 9AA90E5425CD451800BD5E8B /* BaseCpuLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseCpuLib.inf; sourceTree = ""; }; + 9AA90E5625CD451800BD5E8B /* CpuSleep.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuSleep.c; sourceTree = ""; }; + 9AA90E5725CD451800BD5E8B /* CpuFlushTlbGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuFlushTlbGcc.c; sourceTree = ""; }; + 9AA90E5825CD451800BD5E8B /* CpuFlushTlb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuFlushTlb.c; sourceTree = ""; }; + 9AA90E5925CD451800BD5E8B /* CpuSleep.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuSleep.nasm; sourceTree = ""; }; + 9AA90E5A25CD451800BD5E8B /* CpuFlushTlb.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuFlushTlb.nasm; sourceTree = ""; }; + 9AA90E5B25CD451800BD5E8B /* CpuSleepGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuSleepGcc.c; sourceTree = ""; }; + 9AA90E5D25CD451800BD5E8B /* CpuFlushTlb.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuFlushTlb.S; sourceTree = ""; }; + 9AA90E5E25CD451800BD5E8B /* CpuFlushTlb.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuFlushTlb.asm; sourceTree = ""; }; + 9AA90E5F25CD451800BD5E8B /* CpuSleep.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuSleep.asm; sourceTree = ""; }; + 9AA90E6025CD451800BD5E8B /* CpuSleep.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuSleep.S; sourceTree = ""; }; + 9AA90E6225CD451800BD5E8B /* CpuFlushTlb.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuFlushTlb.S; sourceTree = ""; }; + 9AA90E6325CD451800BD5E8B /* CpuFlushTlb.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuFlushTlb.asm; sourceTree = ""; }; + 9AA90E6425CD451800BD5E8B /* CpuSleep.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CpuSleep.asm; sourceTree = ""; }; + 9AA90E6525CD451800BD5E8B /* CpuSleep.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CpuSleep.S; sourceTree = ""; }; + 9AA90E6725CD451800BD5E8B /* PeiExtractGuidedSectionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiExtractGuidedSectionLib.c; sourceTree = ""; }; + 9AA90E6825CD451800BD5E8B /* PeiExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiExtractGuidedSectionLib.uni; sourceTree = ""; }; + 9AA90E6925CD451800BD5E8B /* PeiExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiExtractGuidedSectionLib.inf; sourceTree = ""; }; + 9AA90E6B25CD451800BD5E8B /* DriverEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverEntryPoint.c; sourceTree = ""; }; + 9AA90E6C25CD451800BD5E8B /* UefiDriverEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDriverEntryPoint.inf; sourceTree = ""; }; + 9AA90E6D25CD451800BD5E8B /* UefiDriverEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDriverEntryPoint.uni; sourceTree = ""; }; + 9AA90E6F25CD451800BD5E8B /* DebugLibConstructor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; + 9AA90E7025CD451800BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA90E7125CD451800BD5E8B /* UefiDebugLibDebugPortProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibDebugPortProtocol.uni; sourceTree = ""; }; + 9AA90E7225CD451800BD5E8B /* UefiDebugLibDebugPortProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibDebugPortProtocol.inf; sourceTree = ""; }; + 9AA90E7425CD451800BD5E8B /* SmmPciExpressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPciExpressLib.inf; sourceTree = ""; }; + 9AA90E7525CD451800BD5E8B /* PciExpressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; + 9AA90E7725CD451800BD5E8B /* DxeRuntimePciExpressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciExpressLib.uni; sourceTree = ""; }; + 9AA90E7825CD451800BD5E8B /* DxeRuntimePciExpressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimePciExpressLib.inf; sourceTree = ""; }; + 9AA90E7925CD451800BD5E8B /* PciExpressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciExpressLib.c; sourceTree = ""; }; + 9AA90E7B25CD451800BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA90E7C25CD451800BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA90E7D25CD451800BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA90E7E25CD451800BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA90E8025CD451800BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA90E8125CD451800BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA90E8225CD451800BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA90E8325CD451800BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA90E8425CD451800BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA90E8525CD451800BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA90E8625CD451800BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA90E8725CD451800BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA90E8825CD451800BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA90E8925CD451800BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA90E8A25CD451800BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA90E8B25CD451800BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA90E8C25CD451800BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA90E8D25CD451800BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA90E8F25CD451800BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA90E9025CD451800BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA90E9125CD451800BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA90E9225CD451800BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA90E9325CD451800BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA90E9425CD451800BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA90E9525CD451800BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA90E9625CD451800BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA90E9725CD451800BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA90E9825CD451800BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA90E9925CD451800BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA90E9A25CD451800BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA90E9B25CD451800BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA90E9C25CD451800BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA90E9D25CD451800BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA90E9E25CD451800BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA90EA025CD451800BD5E8B /* ScanMemGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMemGeneric.c; sourceTree = ""; }; + 9AA90EA125CD451800BD5E8B /* CompareMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CompareMem.asm; sourceTree = ""; }; + 9AA90EA225CD451800BD5E8B /* CopyMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CopyMem.S; sourceTree = ""; }; + 9AA90EA325CD451800BD5E8B /* SetMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetMem.S; sourceTree = ""; }; + 9AA90EA425CD451800BD5E8B /* ScanMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ScanMem.asm; sourceTree = ""; }; + 9AA90EA525CD451800BD5E8B /* CopyMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CopyMem.asm; sourceTree = ""; }; + 9AA90EA625CD451800BD5E8B /* CompareMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareMem.S; sourceTree = ""; }; + 9AA90EA725CD451800BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA90EA825CD451800BD5E8B /* SetMem.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = SetMem.asm; sourceTree = ""; }; + 9AA90EA925CD451800BD5E8B /* CompareGuid.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = CompareGuid.asm; sourceTree = ""; }; + 9AA90EAA25CD451800BD5E8B /* CompareGuid.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareGuid.S; sourceTree = ""; }; + 9AA90EAB25CD451800BD5E8B /* ScanMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ScanMem.S; sourceTree = ""; }; + 9AA90EAC25CD451800BD5E8B /* BaseMemoryLibOptDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptDxe.uni; sourceTree = ""; }; + 9AA90EAD25CD451800BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA90EAE25CD451800BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA90EB025CD451800BD5E8B /* CopyMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CopyMem.S; sourceTree = ""; }; + 9AA90EB125CD451800BD5E8B /* SetMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = SetMem.S; sourceTree = ""; }; + 9AA90EB225CD451800BD5E8B /* CompareMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareMem.S; sourceTree = ""; }; + 9AA90EB325CD451800BD5E8B /* CompareGuid.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = CompareGuid.S; sourceTree = ""; }; + 9AA90EB425CD451800BD5E8B /* ScanMem.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ScanMem.S; sourceTree = ""; }; + 9AA90EB525CD451800BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA90EB625CD451800BD5E8B /* BaseMemoryLibOptDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptDxe.inf; sourceTree = ""; }; + 9AA90EB725CD451800BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA90EB925CD451800BD5E8B /* PerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PerformanceLib.c; sourceTree = ""; }; + 9AA90EBA25CD451800BD5E8B /* BasePerformanceLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePerformanceLibNull.inf; sourceTree = ""; }; + 9AA90EBB25CD451800BD5E8B /* BasePerformanceLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePerformanceLibNull.uni; sourceTree = ""; }; + 9AA90EBD25CD451800BD5E8B /* BasePciSegmentLibPci.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibPci.inf; sourceTree = ""; }; + 9AA90EBE25CD451800BD5E8B /* BasePciSegmentLibPci.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentLibPci.uni; sourceTree = ""; }; + 9AA90EBF25CD451800BD5E8B /* PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; + 9AA90EC125CD451800BD5E8B /* PostCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; + 9AA90EC225CD451800BD5E8B /* PeiDxePostCodeLibReportStatusCode.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxePostCodeLibReportStatusCode.inf; sourceTree = ""; }; + 9AA90EC325CD451800BD5E8B /* PeiDxePostCodeLibReportStatusCode.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxePostCodeLibReportStatusCode.uni; sourceTree = ""; }; + 9AA90EC525CD451800BD5E8B /* BasePcdLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePcdLibNull.uni; sourceTree = ""; }; + 9AA90EC625CD451800BD5E8B /* BasePcdLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePcdLibNull.inf; sourceTree = ""; }; + 9AA90EC725CD451800BD5E8B /* PcdLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcdLib.c; sourceTree = ""; }; + 9AA90EC925CD451800BD5E8B /* BaseStackCheckGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseStackCheckGcc.c; sourceTree = ""; }; + 9AA90ECA25CD451800BD5E8B /* BaseStackCheckLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseStackCheckLib.uni; sourceTree = ""; }; + 9AA90ECB25CD451800BD5E8B /* BaseStackCheckNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseStackCheckNull.c; sourceTree = ""; }; + 9AA90ECC25CD451800BD5E8B /* BaseStackCheckLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseStackCheckLib.inf; sourceTree = ""; }; + 9AA90ECE25CD451800BD5E8B /* BaseRngLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseRngLib.uni; sourceTree = ""; }; + 9AA90ECF25CD451800BD5E8B /* BaseRngLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseRngLib.inf; sourceTree = ""; }; + 9AA90ED025CD451800BD5E8B /* BaseRng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseRng.c; sourceTree = ""; }; + 9AA90ED225CD451800BD5E8B /* DxeCoreEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCoreEntryPoint.c; sourceTree = ""; }; + 9AA90ED325CD451800BD5E8B /* DxeCoreEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreEntryPoint.uni; sourceTree = ""; }; + 9AA90ED425CD451800BD5E8B /* DxeCoreEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreEntryPoint.inf; sourceTree = ""; }; + 9AA90ED625CD451800BD5E8B /* PostCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; + 9AA90ED725CD451800BD5E8B /* BasePostCodeLibPort80.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibPort80.inf; sourceTree = ""; }; + 9AA90ED825CD451800BD5E8B /* BasePostCodeLibPort80.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibPort80.uni; sourceTree = ""; }; + 9AA90EDA25CD451800BD5E8B /* PeiCoreEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCoreEntryPoint.uni; sourceTree = ""; }; + 9AA90EDB25CD451800BD5E8B /* PeiCoreEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCoreEntryPoint.inf; sourceTree = ""; }; + 9AA90EDC25CD451800BD5E8B /* PeiCoreEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCoreEntryPoint.c; sourceTree = ""; }; + 9AA90EDE25CD451800BD5E8B /* BasePeCoffLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BasePeCoffLibInternals.h; sourceTree = ""; }; + 9AA90EDF25CD451800BD5E8B /* BasePeCoff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BasePeCoff.c; sourceTree = ""; }; + 9AA90EE025CD451800BD5E8B /* PeCoffLoaderEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffLoaderEx.c; sourceTree = ""; }; + 9AA90EE225CD451800BD5E8B /* PeCoffLoaderEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffLoaderEx.c; sourceTree = ""; }; + 9AA90EE325CD451800BD5E8B /* BasePeCoffLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffLib.uni; sourceTree = ""; }; + 9AA90EE425CD451800BD5E8B /* BasePeCoffLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffLib.inf; sourceTree = ""; }; + 9AA90EE625CD451800BD5E8B /* SmmLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLibNull.uni; sourceTree = ""; }; + 9AA90EE725CD451800BD5E8B /* SmmLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLibNull.inf; sourceTree = ""; }; + 9AA90EE825CD451800BD5E8B /* SmmLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLibNull.c; sourceTree = ""; }; + 9AA90EEA25CD451800BD5E8B /* BasePciCf8Lib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciCf8Lib.uni; sourceTree = ""; }; + 9AA90EEB25CD451800BD5E8B /* BasePciCf8Lib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciCf8Lib.inf; sourceTree = ""; }; + 9AA90EEC25CD451800BD5E8B /* PciCf8Lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCf8Lib.c; sourceTree = ""; }; + 9AA90EEE25CD451800BD5E8B /* MmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MmServicesTableLib.uni; sourceTree = ""; }; + 9AA90EEF25CD451800BD5E8B /* MmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MmServicesTableLib.inf; sourceTree = ""; }; + 9AA90EF025CD451800BD5E8B /* MmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MmServicesTableLib.c; sourceTree = ""; }; + 9AA90EF225CD451800BD5E8B /* SafeIntLib64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLib64.c; sourceTree = ""; }; + 9AA90EF325CD451800BD5E8B /* SafeIntLibEbc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLibEbc.c; sourceTree = ""; }; + 9AA90EF425CD451800BD5E8B /* BaseSafeIntLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSafeIntLib.inf; sourceTree = ""; }; + 9AA90EF525CD451800BD5E8B /* SafeIntLib32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLib32.c; sourceTree = ""; }; + 9AA90EF625CD451800BD5E8B /* SafeIntLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SafeIntLib.c; sourceTree = ""; }; + 9AA90EF825CD451800BD5E8B /* SmmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmServicesTableLib.c; sourceTree = ""; }; + 9AA90EF925CD451800BD5E8B /* SmmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmServicesTableLib.inf; sourceTree = ""; }; + 9AA90EFA25CD451800BD5E8B /* SmmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmServicesTableLib.uni; sourceTree = ""; }; + 9AA90EFC25CD451800BD5E8B /* DxeExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeExtractGuidedSectionLib.uni; sourceTree = ""; }; + 9AA90EFD25CD451800BD5E8B /* DxeExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeExtractGuidedSectionLib.inf; sourceTree = ""; }; + 9AA90EFE25CD451800BD5E8B /* DxeExtractGuidedSectionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeExtractGuidedSectionLib.c; sourceTree = ""; }; + 9AA90F0025CD451800BD5E8B /* UefiApplicationEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiApplicationEntryPoint.uni; sourceTree = ""; }; + 9AA90F0125CD451800BD5E8B /* UefiApplicationEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiApplicationEntryPoint.inf; sourceTree = ""; }; + 9AA90F0225CD451800BD5E8B /* ApplicationEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ApplicationEntryPoint.c; sourceTree = ""; }; + 9AA90F0425CD451800BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA90F0525CD451800BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA90F0625CD451800BD5E8B /* BaseMemoryLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLib.inf; sourceTree = ""; }; + 9AA90F0725CD451800BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA90F0825CD451800BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA90F0925CD451800BD5E8B /* BaseMemoryLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLib.uni; sourceTree = ""; }; + 9AA90F0A25CD451800BD5E8B /* MemLibGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; + 9AA90F0B25CD451800BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA90F0C25CD451800BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA90F0D25CD451800BD5E8B /* CopyMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMem.c; sourceTree = ""; }; + 9AA90F0E25CD451800BD5E8B /* SetMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem.c; sourceTree = ""; }; + 9AA90F0F25CD451800BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA90F1025CD451800BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA90F1125CD451800BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA90F1225CD451800BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA90F1325CD451800BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA90F1425CD451800BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA90F1525CD451800BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA90F1625CD451800BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA90F1825CD451800BD5E8B /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + 9AA90F1925CD451800BD5E8B /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + 9AA90F1A25CD451800BD5E8B /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + 9AA90F1B25CD451800BD5E8B /* SmmCpuIoLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCpuIoLibInternal.h; sourceTree = ""; }; + 9AA90F1C25CD451800BD5E8B /* SmmIoLibSmmCpuIo2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLibSmmCpuIo2.uni; sourceTree = ""; }; + 9AA90F1D25CD451800BD5E8B /* SmmIoLibSmmCpuIo2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLibSmmCpuIo2.inf; sourceTree = ""; }; + 9AA90F1F25CD451800BD5E8B /* DxeSmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeSmbusLib.c; sourceTree = ""; }; + 9AA90F2025CD451800BD5E8B /* SmbusLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbusLib.c; sourceTree = ""; }; + 9AA90F2125CD451800BD5E8B /* InternalSmbusLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalSmbusLib.h; sourceTree = ""; }; + 9AA90F2225CD451800BD5E8B /* DxeSmbusLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSmbusLib.inf; sourceTree = ""; }; + 9AA90F2325CD451800BD5E8B /* DxeSmbusLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSmbusLib.uni; sourceTree = ""; }; + 9AA90F2525CD451800BD5E8B /* BaseSmbusLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSmbusLibNull.c; sourceTree = ""; }; + 9AA90F2625CD451800BD5E8B /* BaseSmbusLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSmbusLibNull.uni; sourceTree = ""; }; + 9AA90F2725CD451800BD5E8B /* BaseSmbusLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSmbusLibNull.inf; sourceTree = ""; }; + 9AA90F2925CD451800BD5E8B /* BaseTimerLibNullTemplate.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseTimerLibNullTemplate.uni; sourceTree = ""; }; + 9AA90F2A25CD451800BD5E8B /* BaseTimerLibNullTemplate.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseTimerLibNullTemplate.inf; sourceTree = ""; }; + 9AA90F2B25CD451800BD5E8B /* TimerLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TimerLibNull.c; sourceTree = ""; }; + 9AA90F2D25CD451800BD5E8B /* BaseS3IoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3IoLib.inf; sourceTree = ""; }; + 9AA90F2E25CD451800BD5E8B /* BaseS3IoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3IoLib.uni; sourceTree = ""; }; + 9AA90F2F25CD451800BD5E8B /* S3IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3IoLib.c; sourceTree = ""; }; + 9AA90F3125CD451800BD5E8B /* BaseDebugLibSerialPort.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibSerialPort.uni; sourceTree = ""; }; + 9AA90F3225CD451800BD5E8B /* BaseDebugLibSerialPort.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseDebugLibSerialPort.inf; sourceTree = ""; }; + 9AA90F3325CD451800BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA90F3525CD451800BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA90F3625CD451800BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA90F3725CD451800BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA90F3825CD451800BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA90F3A25CD451800BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA90F3B25CD451800BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA90F3C25CD451800BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA90F3D25CD451800BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA90F3E25CD451800BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA90F3F25CD451800BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA90F4025CD451800BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA90F4125CD451800BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA90F4225CD451800BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA90F4325CD451800BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA90F4425CD451800BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA90F4525CD451800BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA90F4625CD451800BD5E8B /* BaseMemoryLibSse2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibSse2.uni; sourceTree = ""; }; + 9AA90F4725CD451800BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA90F4825CD451800BD5E8B /* BaseMemoryLibSse2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibSse2.inf; sourceTree = ""; }; + 9AA90F4925CD451800BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA90F4B25CD451800BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA90F4C25CD451800BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA90F4D25CD451800BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA90F4E25CD451800BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA90F4F25CD451800BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA90F5025CD451800BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA90F5125CD451800BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA90F5225CD451800BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA90F5325CD451800BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA90F5425CD451800BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA90F5525CD451800BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA90F5625CD451800BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA90F5725CD451800BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA90F5825CD451800BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA90F5925CD451800BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA90F5A25CD451800BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA90F5B25CD451800BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA90F5C25CD451800BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA90F5D25CD451800BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA90F5E25CD451800BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA90F6025CD451800BD5E8B /* BaseUefiDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiDecompressLib.uni; sourceTree = ""; }; + 9AA90F6125CD451800BD5E8B /* BaseUefiDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiDecompressLib.inf; sourceTree = ""; }; + 9AA90F6225CD451800BD5E8B /* BaseUefiDecompressLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseUefiDecompressLibInternals.h; sourceTree = ""; }; + 9AA90F6325CD451800BD5E8B /* BaseUefiTianoCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseUefiTianoCustomDecompressLib.inf; sourceTree = ""; }; + 9AA90F6425CD451800BD5E8B /* BaseUefiDecompressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseUefiDecompressLib.c; sourceTree = ""; }; + 9AA90F6525CD451800BD5E8B /* BaseUefiTianoCustomDecompressLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseUefiTianoCustomDecompressLib.c; sourceTree = ""; }; + 9AA90F6725CD451800BD5E8B /* BaseSerialPortLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLibNull.uni; sourceTree = ""; }; + 9AA90F6825CD451800BD5E8B /* BaseSerialPortLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLibNull.inf; sourceTree = ""; }; + 9AA90F6925CD451800BD5E8B /* BaseSerialPortLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSerialPortLibNull.c; sourceTree = ""; }; + 9AA90F6B25CD451800BD5E8B /* BaseS3BootScriptLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3BootScriptLibNull.inf; sourceTree = ""; }; + 9AA90F6C25CD451800BD5E8B /* BootScriptLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootScriptLib.c; sourceTree = ""; }; + 9AA90F6D25CD451800BD5E8B /* BaseS3BootScriptLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3BootScriptLibNull.uni; sourceTree = ""; }; + 9AA90F6F25CD451800BD5E8B /* DxePcdLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxePcdLib.c; sourceTree = ""; }; + 9AA90F7025CD451800BD5E8B /* DxePcdLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePcdLib.uni; sourceTree = ""; }; + 9AA90F7125CD451800BD5E8B /* DxePcdLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePcdLib.inf; sourceTree = ""; }; + 9AA90F7325CD451800BD5E8B /* SmmPeriodicSmiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPeriodicSmiLib.inf; sourceTree = ""; }; + 9AA90F7425CD451800BD5E8B /* SmmPeriodicSmiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPeriodicSmiLib.uni; sourceTree = ""; }; + 9AA90F7525CD451800BD5E8B /* SmmPeriodicSmiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmPeriodicSmiLib.c; sourceTree = ""; }; + 9AA90F7725CD451800BD5E8B /* UefiScsiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiScsiLib.c; sourceTree = ""; }; + 9AA90F7825CD451800BD5E8B /* UefiScsiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiScsiLib.uni; sourceTree = ""; }; + 9AA90F7925CD451800BD5E8B /* UefiScsiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiScsiLib.inf; sourceTree = ""; }; + 9AA90F7B25CD451800BD5E8B /* PeiResourcePublicationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiResourcePublicationLib.c; sourceTree = ""; }; + 9AA90F7C25CD451800BD5E8B /* PeiResourcePublicationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResourcePublicationLib.inf; sourceTree = ""; }; + 9AA90F7D25CD451800BD5E8B /* PeiResourcePublicationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResourcePublicationLib.uni; sourceTree = ""; }; + 9AA90F7F25CD451800BD5E8B /* DxeHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHobLib.inf; sourceTree = ""; }; + 9AA90F8025CD451800BD5E8B /* DxeHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHobLib.uni; sourceTree = ""; }; + 9AA90F8125CD451800BD5E8B /* HobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; + 9AA90F8325CD451800BD5E8B /* S3PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3PciSegmentLib.c; sourceTree = ""; }; + 9AA90F8425CD451800BD5E8B /* BaseS3PciSegmentLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciSegmentLib.uni; sourceTree = ""; }; + 9AA90F8525CD451800BD5E8B /* BaseS3PciSegmentLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciSegmentLib.inf; sourceTree = ""; }; + 9AA90F8725CD451800BD5E8B /* BasePciSegmentInfoLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentInfoLibNull.inf; sourceTree = ""; }; + 9AA90F8825CD451800BD5E8B /* BasePciSegmentInfoLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciSegmentInfoLibNull.uni; sourceTree = ""; }; + 9AA90F8925CD451800BD5E8B /* PciSegmentInfoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentInfoLib.c; sourceTree = ""; }; + 9AA90F8B25CD451800BD5E8B /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9AA90F8C25CD451800BD5E8B /* SmmMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationLib.uni; sourceTree = ""; }; + 9AA90F8D25CD451800BD5E8B /* SmmMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationLib.inf; sourceTree = ""; }; + 9AA90F8F25CD451900BD5E8B /* BaseExtractGuidedSectionLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseExtractGuidedSectionLib.uni; sourceTree = ""; }; + 9AA90F9025CD451900BD5E8B /* BaseExtractGuidedSectionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseExtractGuidedSectionLib.inf; sourceTree = ""; }; + 9AA90F9125CD451900BD5E8B /* BaseExtractGuidedSectionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseExtractGuidedSectionLib.c; sourceTree = ""; }; + 9AA90F9325CD451900BD5E8B /* UefiBootServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootServicesTableLib.uni; sourceTree = ""; }; + 9AA90F9425CD451900BD5E8B /* UefiBootServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootServicesTableLib.inf; sourceTree = ""; }; + 9AA90F9525CD451900BD5E8B /* UefiBootServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiBootServicesTableLib.c; sourceTree = ""; }; + 9AA90F9725CD451900BD5E8B /* DebugLibConstructor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; + 9AA90F9825CD451900BD5E8B /* UefiDebugLibStdErr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibStdErr.uni; sourceTree = ""; }; + 9AA90F9925CD451900BD5E8B /* UefiDebugLibStdErr.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibStdErr.inf; sourceTree = ""; }; + 9AA90F9A25CD451900BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA90F9C25CD451900BD5E8B /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9AA90F9D25CD451900BD5E8B /* PeiMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryAllocationLib.uni; sourceTree = ""; }; + 9AA90F9E25CD451900BD5E8B /* PeiMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryAllocationLib.inf; sourceTree = ""; }; + 9AA90FA025CD451900BD5E8B /* DevicePathUtilities.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePathUtilities.c; sourceTree = ""; }; + 9AA90FA125CD451900BD5E8B /* UefiDevicePathLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLib.c; sourceTree = ""; }; + 9AA90FA225CD451900BD5E8B /* DevicePathFromText.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePathFromText.c; sourceTree = ""; }; + 9AA90FA325CD451900BD5E8B /* UefiDevicePathLibOptionalDevicePathProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibOptionalDevicePathProtocol.uni; sourceTree = ""; }; + 9AA90FA425CD451900BD5E8B /* DevicePathToText.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePathToText.c; sourceTree = ""; }; + 9AA90FA525CD451900BD5E8B /* UefiDevicePathLibOptionalDevicePathProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLibOptionalDevicePathProtocol.c; sourceTree = ""; }; + 9AA90FA625CD451900BD5E8B /* UefiDevicePathLibOptionalDevicePathProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibOptionalDevicePathProtocol.inf; sourceTree = ""; }; + 9AA90FA725CD451900BD5E8B /* UefiDevicePathLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLib.uni; sourceTree = ""; }; + 9AA90FA825CD451900BD5E8B /* UefiDevicePathLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLib.inf; sourceTree = ""; }; + 9AA90FA925CD451900BD5E8B /* UefiDevicePathLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiDevicePathLib.h; sourceTree = ""; }; + 9AA90FAB25CD451900BD5E8B /* PeiHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiHobLib.uni; sourceTree = ""; }; + 9AA90FAC25CD451900BD5E8B /* PeiHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiHobLib.inf; sourceTree = ""; }; + 9AA90FAD25CD451900BD5E8B /* HobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; + 9AA90FAF25CD451900BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA90FB025CD451900BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA90FB125CD451900BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA90FB225CD451900BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA90FB325CD451900BD5E8B /* MemLibGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGeneric.c; sourceTree = ""; }; + 9AA90FB425CD451900BD5E8B /* PeiMemoryLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryLib.inf; sourceTree = ""; }; + 9AA90FB525CD451900BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA90FB625CD451900BD5E8B /* PeiMemoryLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMemoryLib.uni; sourceTree = ""; }; + 9AA90FB725CD451900BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA90FB825CD451900BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA90FB925CD451900BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA90FBA25CD451900BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA90FBB25CD451900BD5E8B /* MemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLib.c; sourceTree = ""; }; + 9AA90FBC25CD451900BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA90FBD25CD451900BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA90FBE25CD451900BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA90FBF25CD451900BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA90FC025CD451900BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA90FC225CD451900BD5E8B /* BaseIoLibIntrinsic.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsic.inf; sourceTree = ""; }; + 9AA90FC325CD451900BD5E8B /* IoLibEbc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibEbc.c; sourceTree = ""; }; + 9AA90FC425CD451900BD5E8B /* BaseIoLibIntrinsic.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsic.uni; sourceTree = ""; }; + 9AA90FC525CD451900BD5E8B /* IoLibGcc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibGcc.c; sourceTree = ""; }; + 9AA90FC625CD451900BD5E8B /* BaseIoLibIntrinsicSev.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsicSev.inf; sourceTree = ""; }; + 9AA90FC725CD451900BD5E8B /* BaseIoLibIntrinsicInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseIoLibIntrinsicInternal.h; sourceTree = ""; }; + 9AA90FC825CD451900BD5E8B /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + 9AA90FCA25CD451900BD5E8B /* IoFifo.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifo.nasm; sourceTree = ""; }; + 9AA90FCB25CD451900BD5E8B /* IoFifoSev.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifoSev.nasm; sourceTree = ""; }; + 9AA90FCC25CD451900BD5E8B /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + 9AA90FCD25CD451900BD5E8B /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + 9AA90FCE25CD451900BD5E8B /* IoLibMsc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMsc.c; sourceTree = ""; }; + 9AA90FD025CD451900BD5E8B /* IoFifo.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifo.nasm; sourceTree = ""; }; + 9AA90FD125CD451900BD5E8B /* IoFifoSev.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IoFifoSev.nasm; sourceTree = ""; }; + 9AA90FD225CD451900BD5E8B /* IoLibArm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibArm.c; sourceTree = ""; }; + 9AA90FD425CD451900BD5E8B /* ArmVirtMmio.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ArmVirtMmio.S; sourceTree = ""; }; + 9AA90FD525CD451900BD5E8B /* ArmVirtMmio.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ArmVirtMmio.asm; sourceTree = ""; }; + 9AA90FD625CD451900BD5E8B /* BaseIoLibIntrinsicArmVirt.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsicArmVirt.inf; sourceTree = ""; }; + 9AA90FD825CD451900BD5E8B /* ArmVirtMmio.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = ArmVirtMmio.S; sourceTree = ""; }; + 9AA90FD925CD451900BD5E8B /* ArmVirtMmio.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ArmVirtMmio.asm; sourceTree = ""; }; + 9AA90FDA25CD451900BD5E8B /* IoLibArmVirt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibArmVirt.c; sourceTree = ""; }; + 9AA90FDB25CD451900BD5E8B /* BaseIoLibIntrinsicArmVirt.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIoLibIntrinsicArmVirt.uni; sourceTree = ""; }; + 9AA90FDD25CD451900BD5E8B /* PeiPciSegmentLibPciCfg2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciSegmentLibPciCfg2.inf; sourceTree = ""; }; + 9AA90FDE25CD451900BD5E8B /* PeiPciSegmentLibPciCfg2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPciSegmentLibPciCfg2.uni; sourceTree = ""; }; + 9AA90FDF25CD451900BD5E8B /* PciSegmentLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciSegmentLib.c; sourceTree = ""; }; + 9AA90FE125CD451900BD5E8B /* BasePeCoffGetEntryPointLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffGetEntryPointLib.uni; sourceTree = ""; }; + 9AA90FE225CD451900BD5E8B /* BasePeCoffGetEntryPointLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffGetEntryPointLib.inf; sourceTree = ""; }; + 9AA90FE325CD451900BD5E8B /* PeCoffGetEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffGetEntryPoint.c; sourceTree = ""; }; + 9AA90FE525CD451900BD5E8B /* UefiDevicePathLibDevicePathProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibDevicePathProtocol.inf; sourceTree = ""; }; + 9AA90FE625CD451900BD5E8B /* UefiDevicePathLibDevicePathProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDevicePathLibDevicePathProtocol.uni; sourceTree = ""; }; + 9AA90FE725CD451900BD5E8B /* UefiDevicePathLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDevicePathLib.c; sourceTree = ""; }; + 9AA90FE925CD451900BD5E8B /* SmmIoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmIoLib.c; sourceTree = ""; }; + 9AA90FEA25CD451900BD5E8B /* SmmIoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLib.uni; sourceTree = ""; }; + 9AA90FEB25CD451900BD5E8B /* SmmIoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIoLib.inf; sourceTree = ""; }; + 9AA90FED25CD451900BD5E8B /* HobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HobLib.c; sourceTree = ""; }; + 9AA90FEE25CD451900BD5E8B /* DxeCoreHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreHobLib.inf; sourceTree = ""; }; + 9AA90FEF25CD451900BD5E8B /* DxeCoreHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreHobLib.uni; sourceTree = ""; }; + 9AA90FF125CD451900BD5E8B /* UefiRuntimeServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeServicesTableLib.uni; sourceTree = ""; }; + 9AA90FF225CD451900BD5E8B /* UefiRuntimeServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeServicesTableLib.inf; sourceTree = ""; }; + 9AA90FF325CD451900BD5E8B /* UefiRuntimeServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiRuntimeServicesTableLib.c; sourceTree = ""; }; + 9AA90FF525CD451900BD5E8B /* PeiPcdLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiPcdLib.c; sourceTree = ""; }; + 9AA90FF625CD451900BD5E8B /* PeiPcdLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPcdLib.inf; sourceTree = ""; }; + 9AA90FF725CD451900BD5E8B /* PeiPcdLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPcdLib.uni; sourceTree = ""; }; + 9AA90FF925CD451900BD5E8B /* SmmMemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemLib.uni; sourceTree = ""; }; + 9AA90FFA25CD451900BD5E8B /* SmmMemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmMemLib.c; sourceTree = ""; }; + 9AA90FFB25CD451900BD5E8B /* SmmMemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemLib.inf; sourceTree = ""; }; + 9AA90FFD25CD451900BD5E8B /* UefiFileHandleLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiFileHandleLib.inf; sourceTree = ""; }; + 9AA90FFE25CD451900BD5E8B /* UefiFileHandleLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiFileHandleLib.uni; sourceTree = ""; }; + 9AA90FFF25CD451900BD5E8B /* UefiFileHandleLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiFileHandleLib.c; sourceTree = ""; }; + 9AA9100125CD451900BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA9100225CD451900BD5E8B /* DxeRuntimeDebugLibSerialPort.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeDebugLibSerialPort.inf; sourceTree = ""; }; + 9AA9100325CD451900BD5E8B /* DxeRuntimeDebugLibSerialPort.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeDebugLibSerialPort.uni; sourceTree = ""; }; + 9AA9100525CD451900BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA9100625CD451900BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA9100725CD451900BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA9100825CD451900BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA9100A25CD451900BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA9100B25CD451900BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA9100C25CD451900BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA9100D25CD451900BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA9100E25CD451900BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA9100F25CD451900BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA9101025CD451900BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA9101125CD451900BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA9101225CD451900BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA9101325CD451900BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA9101425CD451900BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA9101525CD451900BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA9101625CD451900BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA9101725CD451900BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA9101925CD451900BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA9101A25CD451900BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA9101B25CD451900BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA9101C25CD451900BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA9101D25CD451900BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA9101E25CD451900BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA9101F25CD451900BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA9102025CD451900BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA9102125CD451900BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA9102225CD451900BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA9102325CD451900BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA9102425CD451900BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA9102525CD451900BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA9102625CD451900BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA9102725CD451900BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA9102825CD451900BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA9102925CD451900BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA9102A25CD451900BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA9102B25CD451900BD5E8B /* BaseMemoryLibMmx.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibMmx.inf; sourceTree = ""; }; + 9AA9102C25CD451900BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA9102D25CD451900BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA9102E25CD451900BD5E8B /* BaseMemoryLibMmx.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibMmx.uni; sourceTree = ""; }; + 9AA9103025CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseOrderedCollectionRedBlackTreeLib.inf; sourceTree = ""; }; + 9AA9103125CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseOrderedCollectionRedBlackTreeLib.uni; sourceTree = ""; }; + 9AA9103225CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseOrderedCollectionRedBlackTreeLib.c; sourceTree = ""; }; + 9AA9103425CD451900BD5E8B /* UefiMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationLib.inf; sourceTree = ""; }; + 9AA9103525CD451900BD5E8B /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9AA9103625CD451900BD5E8B /* UefiMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationLib.uni; sourceTree = ""; }; + 9AA9103825CD451900BD5E8B /* UefiRuntimeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeLib.uni; sourceTree = ""; }; + 9AA9103925CD451900BD5E8B /* UefiRuntimeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiRuntimeLib.inf; sourceTree = ""; }; + 9AA9103A25CD451900BD5E8B /* RuntimeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RuntimeLib.c; sourceTree = ""; }; + 9AA9103C25CD451900BD5E8B /* UefiDebugLibConOut.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibConOut.inf; sourceTree = ""; }; + 9AA9103D25CD451900BD5E8B /* UefiDebugLibConOut.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiDebugLibConOut.uni; sourceTree = ""; }; + 9AA9103E25CD451900BD5E8B /* DebugLibConstructor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLibConstructor.c; sourceTree = ""; }; + 9AA9103F25CD451900BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA9104125CD451900BD5E8B /* BasePciLibPciExpress.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibPciExpress.uni; sourceTree = ""; }; + 9AA9104225CD451900BD5E8B /* BasePciLibPciExpress.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePciLibPciExpress.inf; sourceTree = ""; }; + 9AA9104325CD451900BD5E8B /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + 9AA9104525CD451900BD5E8B /* UefiLibPrint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiLibPrint.c; sourceTree = ""; }; + 9AA9104625CD451900BD5E8B /* UefiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiLib.uni; sourceTree = ""; }; + 9AA9104725CD451900BD5E8B /* UefiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiLib.inf; sourceTree = ""; }; + 9AA9104825CD451900BD5E8B /* UefiDriverModel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiDriverModel.c; sourceTree = ""; }; + 9AA9104925CD451900BD5E8B /* UefiNotTiano.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiNotTiano.c; sourceTree = ""; }; + 9AA9104A25CD451900BD5E8B /* Console.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Console.c; sourceTree = ""; }; + 9AA9104B25CD451900BD5E8B /* UefiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiLib.c; sourceTree = ""; }; + 9AA9104C25CD451900BD5E8B /* UefiLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiLibInternal.h; sourceTree = ""; }; + 9AA9104D25CD451900BD5E8B /* Acpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Acpi.c; sourceTree = ""; }; + 9AA9104F25CD451900BD5E8B /* DxeHstiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHstiLib.uni; sourceTree = ""; }; + 9AA9105025CD451900BD5E8B /* HstiDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HstiDxe.c; sourceTree = ""; }; + 9AA9105125CD451900BD5E8B /* DxeHstiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHstiLib.inf; sourceTree = ""; }; + 9AA9105225CD451900BD5E8B /* HstiAip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HstiAip.c; sourceTree = ""; }; + 9AA9105325CD451900BD5E8B /* HstiDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HstiDxe.h; sourceTree = ""; }; + 9AA9105525CD451900BD5E8B /* PostCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PostCode.c; sourceTree = ""; }; + 9AA9105625CD451900BD5E8B /* BasePostCodeLibDebug.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibDebug.uni; sourceTree = ""; }; + 9AA9105725CD451900BD5E8B /* BasePostCodeLibDebug.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePostCodeLibDebug.inf; sourceTree = ""; }; + 9AA9105925CD451900BD5E8B /* BaseS3StallLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3StallLib.inf; sourceTree = ""; }; + 9AA9105A25CD451900BD5E8B /* BaseS3StallLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3StallLib.uni; sourceTree = ""; }; + 9AA9105B25CD451900BD5E8B /* S3StallLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3StallLib.c; sourceTree = ""; }; + 9AA9105D25CD451900BD5E8B /* SetMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem64Wrapper.c; sourceTree = ""; }; + 9AA9105E25CD451900BD5E8B /* ZeroMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ZeroMemWrapper.c; sourceTree = ""; }; + 9AA9105F25CD451900BD5E8B /* BaseMemoryLibOptPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptPei.uni; sourceTree = ""; }; + 9AA9106025CD451900BD5E8B /* CopyMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CopyMemWrapper.c; sourceTree = ""; }; + 9AA9106125CD451900BD5E8B /* ScanMem64Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem64Wrapper.c; sourceTree = ""; }; + 9AA9106225CD451900BD5E8B /* BaseMemoryLibOptPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryLibOptPei.inf; sourceTree = ""; }; + 9AA9106425CD451900BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA9106525CD451900BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA9106625CD451900BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA9106725CD451900BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA9106825CD451900BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA9106925CD451900BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA9106A25CD451900BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA9106B25CD451900BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA9106C25CD451900BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA9106D25CD451900BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA9106E25CD451900BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA9106F25CD451900BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA9107025CD451900BD5E8B /* ScanMem8Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem8Wrapper.c; sourceTree = ""; }; + 9AA9107125CD451900BD5E8B /* SetMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem32Wrapper.c; sourceTree = ""; }; + 9AA9107325CD451900BD5E8B /* ZeroMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ZeroMem.nasm; sourceTree = ""; }; + 9AA9107425CD451900BD5E8B /* CompareMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CompareMem.nasm; sourceTree = ""; }; + 9AA9107525CD451900BD5E8B /* SetMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem16.nasm; sourceTree = ""; }; + 9AA9107625CD451900BD5E8B /* ScanMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem64.nasm; sourceTree = ""; }; + 9AA9107725CD451900BD5E8B /* ScanMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem32.nasm; sourceTree = ""; }; + 9AA9107825CD451900BD5E8B /* SetMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem.nasm; sourceTree = ""; }; + 9AA9107925CD451900BD5E8B /* IsZeroBuffer.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IsZeroBuffer.nasm; sourceTree = ""; }; + 9AA9107A25CD451900BD5E8B /* SetMem64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem64.nasm; sourceTree = ""; }; + 9AA9107B25CD451900BD5E8B /* ScanMem8.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem8.nasm; sourceTree = ""; }; + 9AA9107C25CD451900BD5E8B /* SetMem32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = SetMem32.nasm; sourceTree = ""; }; + 9AA9107D25CD451900BD5E8B /* ScanMem16.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ScanMem16.nasm; sourceTree = ""; }; + 9AA9107E25CD451900BD5E8B /* CopyMem.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CopyMem.nasm; sourceTree = ""; }; + 9AA9107F25CD451900BD5E8B /* ScanMem32Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem32Wrapper.c; sourceTree = ""; }; + 9AA9108025CD451900BD5E8B /* IsZeroBufferWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsZeroBufferWrapper.c; sourceTree = ""; }; + 9AA9108125CD451900BD5E8B /* SetMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMemWrapper.c; sourceTree = ""; }; + 9AA9108225CD451900BD5E8B /* CompareMemWrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CompareMemWrapper.c; sourceTree = ""; }; + 9AA9108325CD451900BD5E8B /* SetMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetMem16Wrapper.c; sourceTree = ""; }; + 9AA9108425CD451900BD5E8B /* MemLibGuid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemLibGuid.c; sourceTree = ""; }; + 9AA9108525CD451900BD5E8B /* MemLibInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLibInternals.h; sourceTree = ""; }; + 9AA9108625CD451900BD5E8B /* ScanMem16Wrapper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScanMem16Wrapper.c; sourceTree = ""; }; + 9AA9108825CD451900BD5E8B /* UefiPciLibPciRootBridgeIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciLibPciRootBridgeIo.uni; sourceTree = ""; }; + 9AA9108925CD451900BD5E8B /* UefiPciLibPciRootBridgeIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiPciLibPciRootBridgeIo.inf; sourceTree = ""; }; + 9AA9108A25CD451900BD5E8B /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + 9AA9108C25CD451900BD5E8B /* PeimEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeimEntryPoint.c; sourceTree = ""; }; + 9AA9108D25CD451900BD5E8B /* PeimEntryPoint.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeimEntryPoint.uni; sourceTree = ""; }; + 9AA9108E25CD451900BD5E8B /* PeimEntryPoint.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeimEntryPoint.inf; sourceTree = ""; }; + 9AA9109025CD451900BD5E8B /* SmiHandlerProfileLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfileLibNull.c; sourceTree = ""; }; + 9AA9109125CD451900BD5E8B /* SmiHandlerProfileLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileLibNull.inf; sourceTree = ""; }; + 9AA9109225CD451900BD5E8B /* SmiHandlerProfileLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileLibNull.uni; sourceTree = ""; }; + 9AA9109425CD451900BD5E8B /* S3PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3PciLib.c; sourceTree = ""; }; + 9AA9109525CD451900BD5E8B /* BaseS3PciLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciLib.uni; sourceTree = ""; }; + 9AA9109625CD451900BD5E8B /* BaseS3PciLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseS3PciLib.inf; sourceTree = ""; }; + 9AA9109825CD451900BD5E8B /* PrintLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrintLibInternal.h; sourceTree = ""; }; + 9AA9109925CD451900BD5E8B /* PrintLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrintLib.c; sourceTree = ""; }; + 9AA9109A25CD451900BD5E8B /* BasePrintLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePrintLib.inf; sourceTree = ""; }; + 9AA9109B25CD451900BD5E8B /* BasePrintLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePrintLib.uni; sourceTree = ""; }; + 9AA9109C25CD451900BD5E8B /* PrintLibInternal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrintLibInternal.c; sourceTree = ""; }; + 9AA9109E25CD451900BD5E8B /* IoLibMmioBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLibMmioBuffer.c; sourceTree = ""; }; + 9AA9109F25CD451900BD5E8B /* IoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoLib.c; sourceTree = ""; }; + 9AA910A025CD451900BD5E8B /* IoHighLevel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IoHighLevel.c; sourceTree = ""; }; + 9AA910A125CD451900BD5E8B /* PeiIoLibCpuIo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIoLibCpuIo.uni; sourceTree = ""; }; + 9AA910A225CD451900BD5E8B /* PeiIoLibCpuIo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIoLibCpuIo.inf; sourceTree = ""; }; + 9AA910A425CD451900BD5E8B /* BaseReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseReportStatusCodeLib.c; sourceTree = ""; }; + 9AA910A525CD451900BD5E8B /* BaseReportStatusCodeLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseReportStatusCodeLibNull.uni; sourceTree = ""; }; + 9AA910A625CD451900BD5E8B /* BaseReportStatusCodeLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseReportStatusCodeLibNull.inf; sourceTree = ""; }; + 9AA910A825CD451900BD5E8B /* DxeServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeServicesTableLib.c; sourceTree = ""; }; + 9AA910A925CD451900BD5E8B /* DxeServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesTableLib.inf; sourceTree = ""; }; + 9AA910AA25CD451900BD5E8B /* DxeServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeServicesTableLib.uni; sourceTree = ""; }; + 9AA910AC25CD451900BD5E8B /* BasePeCoffExtraActionLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePeCoffExtraActionLibNull.inf; sourceTree = ""; }; + 9AA910AD25CD451900BD5E8B /* PeCoffExtraActionLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeCoffExtraActionLibNull.uni; sourceTree = ""; }; + 9AA910AE25CD451900BD5E8B /* PeCoffExtraActionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoffExtraActionLib.c; sourceTree = ""; }; + 9AA910B025CD451900BD5E8B /* UsbDxeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbDxeLib.c; sourceTree = ""; }; + 9AA910B125CD451900BD5E8B /* UefiUsbLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiUsbLib.inf; sourceTree = ""; }; + 9AA910B225CD451900BD5E8B /* UefiUsbLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiUsbLib.uni; sourceTree = ""; }; + 9AA910B325CD451900BD5E8B /* Hid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Hid.c; sourceTree = ""; }; + 9AA910B425CD451900BD5E8B /* UefiUsbLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiUsbLibInternal.h; sourceTree = ""; }; + 9AA910B525CD451900BD5E8B /* MdePkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkg.dec; sourceTree = ""; }; + 9AA910B625CD451900BD5E8B /* MdePkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkg.uni; sourceTree = ""; }; + 9AA910B725CD451900BD5E8B /* MdePkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkgExtra.uni; sourceTree = ""; }; + 9AA910B825CD451900BD5E8B /* MdePkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdePkg.dsc; sourceTree = ""; }; + 9AA910BC25CD452900BD5E8B /* Runtime.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Runtime.c; sourceTree = ""; }; + 9AA910BD25CD452900BD5E8B /* RuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxe.inf; sourceTree = ""; }; + 9AA910BE25CD452900BD5E8B /* RuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxe.uni; sourceTree = ""; }; + 9AA910BF25CD452900BD5E8B /* Crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Crc32.c; sourceTree = ""; }; + 9AA910C025CD452900BD5E8B /* Runtime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Runtime.h; sourceTree = ""; }; + 9AA910C125CD452900BD5E8B /* RuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA910C425CD452900BD5E8B /* Stall.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Stall.c; sourceTree = ""; }; + 9AA910C525CD452900BD5E8B /* MemoryProtection.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryProtection.c; sourceTree = ""; }; + 9AA910C625CD452900BD5E8B /* DebugImageInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugImageInfo.c; sourceTree = ""; }; + 9AA910C725CD452900BD5E8B /* InstallConfigurationTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InstallConfigurationTable.c; sourceTree = ""; }; + 9AA910C825CD452900BD5E8B /* SetWatchdogTimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetWatchdogTimer.c; sourceTree = ""; }; + 9AA910C925CD452900BD5E8B /* PropertiesTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PropertiesTable.c; sourceTree = ""; }; + 9AA910CA25CD452900BD5E8B /* MemoryAttributesTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAttributesTable.c; sourceTree = ""; }; + 9AA910CC25CD452900BD5E8B /* Handle.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Handle.c; sourceTree = ""; }; + 9AA910CD25CD452900BD5E8B /* Handle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Handle.h; sourceTree = ""; }; + 9AA910CE25CD452900BD5E8B /* Locate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Locate.c; sourceTree = ""; }; + 9AA910CF25CD452900BD5E8B /* DriverSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverSupport.c; sourceTree = ""; }; + 9AA910D025CD452900BD5E8B /* Notify.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Notify.c; sourceTree = ""; }; + 9AA910D125CD452900BD5E8B /* DxeMain.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeMain.inf; sourceTree = ""; }; + 9AA910D325CD452900BD5E8B /* FwVolBlock.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolBlock.c; sourceTree = ""; }; + 9AA910D425CD452900BD5E8B /* FwVolBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwVolBlock.h; sourceTree = ""; }; + 9AA910D625CD452900BD5E8B /* Dispatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; + 9AA910D725CD452900BD5E8B /* Dependency.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; + 9AA910D925CD452900BD5E8B /* FwVolAttrib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolAttrib.c; sourceTree = ""; }; + 9AA910DA25CD452900BD5E8B /* FwVolRead.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolRead.c; sourceTree = ""; }; + 9AA910DB25CD452900BD5E8B /* FwVolDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwVolDriver.h; sourceTree = ""; }; + 9AA910DC25CD452900BD5E8B /* Ffs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ffs.c; sourceTree = ""; }; + 9AA910DD25CD452900BD5E8B /* FwVolWrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVolWrite.c; sourceTree = ""; }; + 9AA910DE25CD452900BD5E8B /* FwVol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVol.c; sourceTree = ""; }; + 9AA910E025CD452900BD5E8B /* DxeProtocolNotify.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeProtocolNotify.c; sourceTree = ""; }; + 9AA910E125CD452900BD5E8B /* DxeMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeMain.c; sourceTree = ""; }; + 9AA910E325CD452900BD5E8B /* Library.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Library.c; sourceTree = ""; }; + 9AA910E525CD452900BD5E8B /* Gcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Gcd.c; sourceTree = ""; }; + 9AA910E625CD452900BD5E8B /* Gcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Gcd.h; sourceTree = ""; }; + 9AA910E825CD452900BD5E8B /* Image.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; + 9AA910E925CD452900BD5E8B /* Image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Image.h; sourceTree = ""; }; + 9AA910EA25CD452900BD5E8B /* DxeMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeMain.h; sourceTree = ""; }; + 9AA910EB25CD452900BD5E8B /* DxeCore.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCore.uni; sourceTree = ""; }; + 9AA910ED25CD452900BD5E8B /* CoreSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CoreSectionExtraction.c; sourceTree = ""; }; + 9AA910EF25CD452900BD5E8B /* Timer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Timer.c; sourceTree = ""; }; + 9AA910F025CD452900BD5E8B /* Event.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Event.h; sourceTree = ""; }; + 9AA910F125CD452900BD5E8B /* Event.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Event.c; sourceTree = ""; }; + 9AA910F225CD452900BD5E8B /* Tpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Tpl.c; sourceTree = ""; }; + 9AA910F325CD452900BD5E8B /* DxeCoreExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreExtra.uni; sourceTree = ""; }; + 9AA910F525CD452900BD5E8B /* HeapGuard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HeapGuard.c; sourceTree = ""; }; + 9AA910F625CD452900BD5E8B /* MemData.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemData.c; sourceTree = ""; }; + 9AA910F725CD452900BD5E8B /* MemoryProfileRecord.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryProfileRecord.c; sourceTree = ""; }; + 9AA910F825CD452900BD5E8B /* Page.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Page.c; sourceTree = ""; }; + 9AA910F925CD452900BD5E8B /* HeapGuard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeapGuard.h; sourceTree = ""; }; + 9AA910FA25CD452900BD5E8B /* Imem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Imem.h; sourceTree = ""; }; + 9AA910FB25CD452900BD5E8B /* Pool.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pool.c; sourceTree = ""; }; + 9AA910FD25CD452900BD5E8B /* Smi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Smi.c; sourceTree = ""; }; + 9AA910FE25CD452900BD5E8B /* SmiHandlerProfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfile.c; sourceTree = ""; }; + 9AA910FF25CD452900BD5E8B /* HeapGuard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HeapGuard.c; sourceTree = ""; }; + 9AA9110025CD452900BD5E8B /* PiSmmCore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCore.c; sourceTree = ""; }; + 9AA9110125CD452900BD5E8B /* Dispatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; + 9AA9110225CD452900BD5E8B /* PiSmmIplExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmIplExtra.uni; sourceTree = ""; }; + 9AA9110325CD452900BD5E8B /* SmramProfileRecord.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmramProfileRecord.c; sourceTree = ""; }; + 9AA9110425CD452900BD5E8B /* Handle.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Handle.c; sourceTree = ""; }; + 9AA9110525CD452900BD5E8B /* PiSmmCoreExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreExtra.uni; sourceTree = ""; }; + 9AA9110625CD452900BD5E8B /* InstallConfigurationTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InstallConfigurationTable.c; sourceTree = ""; }; + 9AA9110725CD452900BD5E8B /* PiSmmCorePrivateData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCorePrivateData.h; sourceTree = ""; }; + 9AA9110825CD452900BD5E8B /* PiSmmIpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmIpl.c; sourceTree = ""; }; + 9AA9110925CD452900BD5E8B /* Page.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Page.c; sourceTree = ""; }; + 9AA9110A25CD452900BD5E8B /* PiSmmCore.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCore.h; sourceTree = ""; }; + 9AA9110B25CD452900BD5E8B /* HeapGuard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeapGuard.h; sourceTree = ""; }; + 9AA9110C25CD452900BD5E8B /* PiSmmCore.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCore.inf; sourceTree = ""; }; + 9AA9110D25CD452900BD5E8B /* Locate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Locate.c; sourceTree = ""; }; + 9AA9110E25CD452900BD5E8B /* Dependency.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; + 9AA9110F25CD452900BD5E8B /* Pool.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pool.c; sourceTree = ""; }; + 9AA9111025CD452900BD5E8B /* PiSmmCore.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCore.uni; sourceTree = ""; }; + 9AA9111125CD452900BD5E8B /* MemoryAttributesTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAttributesTable.c; sourceTree = ""; }; + 9AA9111225CD452900BD5E8B /* PiSmmIpl.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmIpl.uni; sourceTree = ""; }; + 9AA9111325CD452900BD5E8B /* Notify.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Notify.c; sourceTree = ""; }; + 9AA9111425CD452900BD5E8B /* PiSmmIpl.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmIpl.inf; sourceTree = ""; }; + 9AA9111625CD452900BD5E8B /* PeiMain.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiMain.inf; sourceTree = ""; }; + 9AA9111825CD452900BD5E8B /* PciCfg2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCfg2.c; sourceTree = ""; }; + 9AA9111A25CD452900BD5E8B /* MemoryServices.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryServices.c; sourceTree = ""; }; + 9AA9111C25CD452900BD5E8B /* Hob.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Hob.c; sourceTree = ""; }; + 9AA9111E25CD452900BD5E8B /* Security.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Security.c; sourceTree = ""; }; + 9AA9112025CD452900BD5E8B /* Reset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Reset.c; sourceTree = ""; }; + 9AA9112225CD452900BD5E8B /* Dispatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dispatcher.c; sourceTree = ""; }; + 9AA9112425CD452900BD5E8B /* FwVol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FwVol.h; sourceTree = ""; }; + 9AA9112525CD452900BD5E8B /* FwVol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FwVol.c; sourceTree = ""; }; + 9AA9112725CD452900BD5E8B /* Dependency.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Dependency.h; sourceTree = ""; }; + 9AA9112825CD452900BD5E8B /* Dependency.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Dependency.c; sourceTree = ""; }; + 9AA9112A25CD452900BD5E8B /* Image.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; + 9AA9112C25CD452900BD5E8B /* PeiMain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiMain.c; sourceTree = ""; }; + 9AA9112E25CD452900BD5E8B /* StatusCode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCode.c; sourceTree = ""; }; + 9AA9113025CD452900BD5E8B /* BootMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMode.c; sourceTree = ""; }; + 9AA9113225CD452900BD5E8B /* CpuIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuIo.c; sourceTree = ""; }; + 9AA9113425CD452900BD5E8B /* Ppi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ppi.c; sourceTree = ""; }; + 9AA9113525CD452900BD5E8B /* PeiCoreExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCoreExtra.uni; sourceTree = ""; }; + 9AA9113625CD452900BD5E8B /* PeiMain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiMain.h; sourceTree = ""; }; + 9AA9113725CD452900BD5E8B /* PeiCore.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCore.uni; sourceTree = ""; }; + 9AA9113925CD452900BD5E8B /* DxeIpl.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpl.uni; sourceTree = ""; }; + 9AA9113B25CD452900BD5E8B /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + 9AA9113C25CD452900BD5E8B /* DxeLoad.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoad.c; sourceTree = ""; }; + 9AA9113D25CD452900BD5E8B /* DxeIpl.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpl.inf; sourceTree = ""; }; + 9AA9113F25CD452900BD5E8B /* VirtualMemory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VirtualMemory.c; sourceTree = ""; }; + 9AA9114025CD452900BD5E8B /* VirtualMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; + 9AA9114125CD452900BD5E8B /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + 9AA9114225CD452900BD5E8B /* DxeIpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeIpl.h; sourceTree = ""; }; + 9AA9114425CD452900BD5E8B /* IdtVectorAsm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = IdtVectorAsm.nasm; sourceTree = ""; }; + 9AA9114525CD452900BD5E8B /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + 9AA9114725CD452900BD5E8B /* DxeLoadFunc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeLoadFunc.c; sourceTree = ""; }; + 9AA9114825CD452900BD5E8B /* DxeIplExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIplExtra.uni; sourceTree = ""; }; + 9AA9114B25CD452900BD5E8B /* DebugPort.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugPort.c; sourceTree = ""; }; + 9AA9114C25CD452900BD5E8B /* DebugPortDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugPortDxeExtra.uni; sourceTree = ""; }; + 9AA9114D25CD452900BD5E8B /* DebugPortDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugPortDxe.inf; sourceTree = ""; }; + 9AA9114E25CD452900BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9114F25CD452900BD5E8B /* DebugPortDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugPortDxe.uni; sourceTree = ""; }; + 9AA9115025CD452900BD5E8B /* DebugPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugPort.h; sourceTree = ""; }; + 9AA9115225CD452900BD5E8B /* EsrtFmpDebugPrint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtFmpDebugPrint.c; sourceTree = ""; }; + 9AA9115325CD452900BD5E8B /* EsrtFmpDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtFmpDxeExtra.uni; sourceTree = ""; }; + 9AA9115425CD452900BD5E8B /* EsrtFmpDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtFmpDxe.inf; sourceTree = ""; }; + 9AA9115525CD452900BD5E8B /* EsrtFmpDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtFmpDxe.uni; sourceTree = ""; }; + 9AA9115625CD452900BD5E8B /* EsrtFmp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtFmp.c; sourceTree = ""; }; + 9AA9115925CD452900BD5E8B /* PlDebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlDebugSupport.h; sourceTree = ""; }; + 9AA9115A25CD452900BD5E8B /* PlDebugSupportX64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlDebugSupportX64.c; sourceTree = ""; }; + 9AA9115B25CD452900BD5E8B /* AsmFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; + 9AA9115C25CD452900BD5E8B /* DebugSupportDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugSupportDxeExtra.uni; sourceTree = ""; }; + 9AA9115D25CD452900BD5E8B /* DebugSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugSupport.c; sourceTree = ""; }; + 9AA9115F25CD452900BD5E8B /* PlDebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlDebugSupport.h; sourceTree = ""; }; + 9AA9116025CD452900BD5E8B /* AsmFuncs.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = AsmFuncs.nasm; sourceTree = ""; }; + 9AA9116125CD452900BD5E8B /* PlDebugSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlDebugSupport.c; sourceTree = ""; }; + 9AA9116225CD452900BD5E8B /* PlDebugSupportIa32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlDebugSupportIa32.c; sourceTree = ""; }; + 9AA9116325CD452900BD5E8B /* DebugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugSupport.h; sourceTree = ""; }; + 9AA9116425CD452900BD5E8B /* DebugSupportDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugSupportDxe.uni; sourceTree = ""; }; + 9AA9116525CD452900BD5E8B /* DebugSupportDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugSupportDxe.inf; sourceTree = ""; }; + 9AA9116825CD452900BD5E8B /* AmlNamespace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlNamespace.c; sourceTree = ""; }; + 9AA9116925CD452900BD5E8B /* AcpiTableDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTableDxeExtra.uni; sourceTree = ""; }; + 9AA9116A25CD452900BD5E8B /* AcpiTableProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiTableProtocol.c; sourceTree = ""; }; + 9AA9116B25CD452900BD5E8B /* AmlOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlOption.c; sourceTree = ""; }; + 9AA9116C25CD452900BD5E8B /* AmlString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlString.c; sourceTree = ""; }; + 9AA9116D25CD452900BD5E8B /* AcpiSdt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiSdt.c; sourceTree = ""; }; + 9AA9116E25CD452900BD5E8B /* AcpiTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiTable.c; sourceTree = ""; }; + 9AA9116F25CD452900BD5E8B /* AcpiTableDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTableDxe.uni; sourceTree = ""; }; + 9AA9117025CD452900BD5E8B /* AmlChild.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AmlChild.c; sourceTree = ""; }; + 9AA9117125CD452900BD5E8B /* AcpiTableDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTableDxe.inf; sourceTree = ""; }; + 9AA9117225CD452900BD5E8B /* AcpiSdt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiSdt.h; sourceTree = ""; }; + 9AA9117325CD452900BD5E8B /* Aml.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Aml.c; sourceTree = ""; }; + 9AA9117425CD452900BD5E8B /* AcpiTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiTable.h; sourceTree = ""; }; + 9AA9117625CD452900BD5E8B /* AcpiS3ContextSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiS3ContextSave.c; sourceTree = ""; }; + 9AA9117725CD452900BD5E8B /* S3SaveStateDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3SaveStateDxeExtra.uni; sourceTree = ""; }; + 9AA9117825CD452900BD5E8B /* S3SaveState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = S3SaveState.c; sourceTree = ""; }; + 9AA9117925CD452900BD5E8B /* S3SaveStateDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3SaveStateDxe.uni; sourceTree = ""; }; + 9AA9117A25CD452900BD5E8B /* S3SaveStateDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = S3SaveStateDxe.inf; sourceTree = ""; }; + 9AA9117B25CD452900BD5E8B /* InternalS3SaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalS3SaveState.h; sourceTree = ""; }; + 9AA9117D25CD452900BD5E8B /* BootGraphicsResourceTableDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootGraphicsResourceTableDxeExtra.uni; sourceTree = ""; }; + 9AA9117E25CD452900BD5E8B /* BootGraphicsResourceTableDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootGraphicsResourceTableDxe.c; sourceTree = ""; }; + 9AA9117F25CD452900BD5E8B /* BootGraphicsResourceTableDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootGraphicsResourceTableDxe.inf; sourceTree = ""; }; + 9AA9118025CD452900BD5E8B /* BootGraphicsResourceTableDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootGraphicsResourceTableDxe.uni; sourceTree = ""; }; + 9AA9118225CD452900BD5E8B /* FirmwarePerformanceSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceSmm.uni; sourceTree = ""; }; + 9AA9118325CD452900BD5E8B /* FirmwarePerformanceSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceSmm.inf; sourceTree = ""; }; + 9AA9118425CD452900BD5E8B /* FirmwarePerformanceSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceSmmExtra.uni; sourceTree = ""; }; + 9AA9118525CD452900BD5E8B /* FirmwarePerformanceSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformanceSmm.c; sourceTree = ""; }; + 9AA9118725CD452900BD5E8B /* FirmwarePerformancePei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformancePei.c; sourceTree = ""; }; + 9AA9118825CD452900BD5E8B /* FirmwarePerformancePeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformancePeiExtra.uni; sourceTree = ""; }; + 9AA9118925CD452900BD5E8B /* FirmwarePerformancePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformancePei.inf; sourceTree = ""; }; + 9AA9118A25CD452900BD5E8B /* FirmwarePerformancePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformancePei.uni; sourceTree = ""; }; + 9AA9118C25CD452900BD5E8B /* AcpiPlatform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiPlatform.c; sourceTree = ""; }; + 9AA9118D25CD452900BD5E8B /* AcpiPlatformDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiPlatformDxe.inf; sourceTree = ""; }; + 9AA9118E25CD452900BD5E8B /* AcpiPlatformExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiPlatformExtra.uni; sourceTree = ""; }; + 9AA9118F25CD452900BD5E8B /* AcpiPlatform.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiPlatform.uni; sourceTree = ""; }; + 9AA9119125CD452900BD5E8B /* BootScriptExecutorDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootScriptExecutorDxe.inf; sourceTree = ""; }; + 9AA9119225CD452900BD5E8B /* BootScriptExecutorDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootScriptExecutorDxe.uni; sourceTree = ""; }; + 9AA9119425CD452900BD5E8B /* S3Asm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = S3Asm.nasm; sourceTree = ""; }; + 9AA9119525CD452900BD5E8B /* SetIdtEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetIdtEntry.c; sourceTree = ""; }; + 9AA9119625CD452900BD5E8B /* ScriptExecute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScriptExecute.h; sourceTree = ""; }; + 9AA9119725CD452900BD5E8B /* BootScriptExecutorDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootScriptExecutorDxeExtra.uni; sourceTree = ""; }; + 9AA9119925CD452900BD5E8B /* S3Asm.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = S3Asm.nasm; sourceTree = ""; }; + 9AA9119A25CD452900BD5E8B /* SetIdtEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SetIdtEntry.c; sourceTree = ""; }; + 9AA9119B25CD452900BD5E8B /* ScriptExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScriptExecute.c; sourceTree = ""; }; + 9AA9119D25CD452900BD5E8B /* SmmS3SaveStateExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmS3SaveStateExtra.uni; sourceTree = ""; }; + 9AA9119E25CD452900BD5E8B /* SmmS3SaveState.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmS3SaveState.inf; sourceTree = ""; }; + 9AA9119F25CD452900BD5E8B /* SmmS3SaveState.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmS3SaveState.uni; sourceTree = ""; }; + 9AA911A025CD452900BD5E8B /* InternalSmmSaveState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalSmmSaveState.h; sourceTree = ""; }; + 9AA911A125CD452900BD5E8B /* SmmS3SaveState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmS3SaveState.c; sourceTree = ""; }; + 9AA911A325CD452900BD5E8B /* FirmwarePerformanceDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceDxe.inf; sourceTree = ""; }; + 9AA911A425CD452900BD5E8B /* FirmwarePerformanceDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceDxe.uni; sourceTree = ""; }; + 9AA911A525CD452900BD5E8B /* FirmwarePerformanceDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FirmwarePerformanceDxeExtra.uni; sourceTree = ""; }; + 9AA911A625CD452900BD5E8B /* FirmwarePerformanceDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FirmwarePerformanceDxe.c; sourceTree = ""; }; + 9AA911A825CD452900BD5E8B /* EbcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDxe.uni; sourceTree = ""; }; + 9AA911A925CD452900BD5E8B /* EbcInt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcInt.h; sourceTree = ""; }; + 9AA911AA25CD452900BD5E8B /* EbcExecute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcExecute.h; sourceTree = ""; }; + 9AA911AB25CD452900BD5E8B /* EbcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDxe.inf; sourceTree = ""; }; + 9AA911AD25CD452900BD5E8B /* EbcSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; + 9AA911AE25CD452900BD5E8B /* EbcLowLevel.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EbcLowLevel.nasm; sourceTree = ""; }; + 9AA911AF25CD452900BD5E8B /* EbcDebugger.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebugger.inf; sourceTree = ""; }; + 9AA911B025CD452900BD5E8B /* EbcDebuggerHook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcDebuggerHook.c; sourceTree = ""; }; + 9AA911B225CD452900BD5E8B /* EdbCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbCommand.h; sourceTree = ""; }; + 9AA911B325CD452900BD5E8B /* EdbDisasm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbDisasm.h; sourceTree = ""; }; + 9AA911B425CD452900BD5E8B /* EdbDisasmSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbDisasmSupport.c; sourceTree = ""; }; + 9AA911B525CD452900BD5E8B /* EdbSymbol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSymbol.c; sourceTree = ""; }; + 9AA911B625CD452900BD5E8B /* EdbSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbSupport.h; sourceTree = ""; }; + 9AA911B725CD452900BD5E8B /* EdbCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbCommon.h; sourceTree = ""; }; + 9AA911B825CD452900BD5E8B /* EdbHook.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbHook.c; sourceTree = ""; }; + 9AA911B925CD452900BD5E8B /* EdbSupportUI.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSupportUI.c; sourceTree = ""; }; + 9AA911BA25CD452900BD5E8B /* EdbSupportString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSupportString.c; sourceTree = ""; }; + 9AA911BB25CD452900BD5E8B /* EdbCmdExtIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdExtIo.c; sourceTree = ""; }; + 9AA911BC25CD452900BD5E8B /* Edb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Edb.c; sourceTree = ""; }; + 9AA911BD25CD452900BD5E8B /* EdbCmdMemory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdMemory.c; sourceTree = ""; }; + 9AA911BE25CD452900BD5E8B /* EbcDebuggerConfig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcDebuggerConfig.c; sourceTree = ""; }; + 9AA911BF25CD452900BD5E8B /* EdbDisasmSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbDisasmSupport.h; sourceTree = ""; }; + 9AA911C025CD452900BD5E8B /* EdbSymbol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbSymbol.h; sourceTree = ""; }; + 9AA911C125CD452900BD5E8B /* EdbSupportFile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbSupportFile.c; sourceTree = ""; }; + 9AA911C225CD452900BD5E8B /* EdbCommand.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCommand.c; sourceTree = ""; }; + 9AA911C325CD452900BD5E8B /* EdbCmdStep.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdStep.c; sourceTree = ""; }; + 9AA911C425CD452900BD5E8B /* EdbDisasm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbDisasm.c; sourceTree = ""; }; + 9AA911C525CD452900BD5E8B /* EdbCmdRegister.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdRegister.c; sourceTree = ""; }; + 9AA911C625CD452900BD5E8B /* EdbHook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EdbHook.h; sourceTree = ""; }; + 9AA911C725CD452900BD5E8B /* EdbCmdGo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdGo.c; sourceTree = ""; }; + 9AA911C825CD452900BD5E8B /* EdbCmdScope.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdScope.c; sourceTree = ""; }; + 9AA911C925CD452900BD5E8B /* EdbCmdQuit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdQuit.c; sourceTree = ""; }; + 9AA911CA25CD452900BD5E8B /* EdbCmdHelp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdHelp.c; sourceTree = ""; }; + 9AA911CB25CD452900BD5E8B /* EdbCmdExtPci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdExtPci.c; sourceTree = ""; }; + 9AA911CC25CD452900BD5E8B /* EdbCmdBranch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdBranch.c; sourceTree = ""; }; + 9AA911CD25CD452900BD5E8B /* Edb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Edb.h; sourceTree = ""; }; + 9AA911CE25CD452900BD5E8B /* EdbCmdBreak.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdBreak.c; sourceTree = ""; }; + 9AA911CF25CD452900BD5E8B /* EdbCmdSymbol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdSymbol.c; sourceTree = ""; }; + 9AA911D025CD452900BD5E8B /* EdbCmdBreakpoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EdbCmdBreakpoint.c; sourceTree = ""; }; + 9AA911D125CD452900BD5E8B /* EbcDebugger.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebugger.uni; sourceTree = ""; }; + 9AA911D225CD452900BD5E8B /* EbcDebuggerConfig.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerConfig.uni; sourceTree = ""; }; + 9AA911D425CD452900BD5E8B /* EbcSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; + 9AA911D525CD452900BD5E8B /* EbcLowLevel.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = EbcLowLevel.nasm; sourceTree = ""; }; + 9AA911D625CD452900BD5E8B /* EbcInt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcInt.c; sourceTree = ""; }; + 9AA911D725CD452900BD5E8B /* EbcDebuggerConfig.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerConfig.inf; sourceTree = ""; }; + 9AA911D825CD452900BD5E8B /* EbcExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcExecute.c; sourceTree = ""; }; + 9AA911D925CD452900BD5E8B /* EbcDebuggerHook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcDebuggerHook.h; sourceTree = ""; }; + 9AA911DB25CD452900BD5E8B /* EbcSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EbcSupport.c; sourceTree = ""; }; + 9AA911DC25CD452900BD5E8B /* EbcLowLevel.S */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = EbcLowLevel.S; sourceTree = ""; }; + 9AA911DD25CD452900BD5E8B /* EbcDebuggerConfigExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerConfigExtra.uni; sourceTree = ""; }; + 9AA911DE25CD452900BD5E8B /* EbcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDxeExtra.uni; sourceTree = ""; }; + 9AA911DF25CD452900BD5E8B /* EbcDebuggerExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EbcDebuggerExtra.uni; sourceTree = ""; }; + 9AA911E125CD452900BD5E8B /* EsrtDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtDxe.c; sourceTree = ""; }; + 9AA911E225CD452900BD5E8B /* EsrtImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EsrtImpl.c; sourceTree = ""; }; + 9AA911E325CD452900BD5E8B /* EsrtDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtDxe.uni; sourceTree = ""; }; + 9AA911E425CD452900BD5E8B /* EsrtImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EsrtImpl.h; sourceTree = ""; }; + 9AA911E525CD452900BD5E8B /* EsrtDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtDxe.inf; sourceTree = ""; }; + 9AA911E625CD452900BD5E8B /* EsrtDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EsrtDxeExtra.uni; sourceTree = ""; }; + 9AA911E825CD452900BD5E8B /* SmbiosDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbiosDxe.h; sourceTree = ""; }; + 9AA911E925CD452900BD5E8B /* SmbiosDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosDxe.c; sourceTree = ""; }; + 9AA911EA25CD452900BD5E8B /* SmbiosDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosDxe.inf; sourceTree = ""; }; + 9AA911EB25CD452900BD5E8B /* SmbiosDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosDxe.uni; sourceTree = ""; }; + 9AA911EC25CD452900BD5E8B /* SmbiosDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosDxeExtra.uni; sourceTree = ""; }; + 9AA911EE25CD452900BD5E8B /* SectionExtractionDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionDxe.uni; sourceTree = ""; }; + 9AA911EF25CD452900BD5E8B /* SectionExtractionDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionDxe.inf; sourceTree = ""; }; + 9AA911F025CD452900BD5E8B /* SectionExtractionDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SectionExtractionDxe.c; sourceTree = ""; }; + 9AA911F125CD452900BD5E8B /* SectionExtractionDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionDxeExtra.uni; sourceTree = ""; }; + 9AA911F325CD452900BD5E8B /* RegularExpressionDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RegularExpressionDxe.inf; sourceTree = ""; }; + 9AA911F425CD452900BD5E8B /* RegularExpressionDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegularExpressionDxe.h; sourceTree = ""; }; + 9AA911F625CD452900BD5E8B /* unicode_property_data_posix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_property_data_posix.c; sourceTree = ""; }; + 9AA911F725CD452900BD5E8B /* unicode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode.c; sourceTree = ""; }; + 9AA911F825CD452900BD5E8B /* st.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = st.h; sourceTree = ""; }; + 9AA911F925CD452900BD5E8B /* ascii.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ascii.c; sourceTree = ""; }; + 9AA911FA25CD452900BD5E8B /* unicode_fold2_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold2_key.c; sourceTree = ""; }; + 9AA911FB25CD452900BD5E8B /* regparse.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = regparse.h; sourceTree = ""; }; + 9AA911FC25CD452900BD5E8B /* AUTHORS */ = {isa = PBXFileReference; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; + 9AA911FD25CD452900BD5E8B /* unicode_fold3_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold3_key.c; sourceTree = ""; }; + 9AA911FE25CD452900BD5E8B /* regposix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regposix.c; sourceTree = ""; }; + 9AA911FF25CD452900BD5E8B /* unicode_fold1_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold1_key.c; sourceTree = ""; }; + 9AA9120025CD452900BD5E8B /* unicode_wb_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_wb_data.c; sourceTree = ""; }; + 9AA9120125CD452900BD5E8B /* regexec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regexec.c; sourceTree = ""; }; + 9AA9120225CD452900BD5E8B /* regint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = regint.h; sourceTree = ""; }; + 9AA9120325CD452900BD5E8B /* regenc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = regenc.h; sourceTree = ""; }; + 9AA9120425CD452900BD5E8B /* regcomp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regcomp.c; sourceTree = ""; }; + 9AA9120525CD452900BD5E8B /* unicode_egcb_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_egcb_data.c; sourceTree = ""; }; + 9AA9120625CD452900BD5E8B /* regtrav.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regtrav.c; sourceTree = ""; }; + 9AA9120725CD452900BD5E8B /* regsyntax.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regsyntax.c; sourceTree = ""; }; + 9AA9120825CD452900BD5E8B /* OnigurumaIntrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OnigurumaIntrinsics.c; sourceTree = ""; }; + 9AA9120925CD452900BD5E8B /* regversion.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regversion.c; sourceTree = ""; }; + 9AA9120A25CD452900BD5E8B /* OnigurumaUefiPort.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OnigurumaUefiPort.c; sourceTree = ""; }; + 9AA9120B25CD452900BD5E8B /* unicode_property_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_property_data.c; sourceTree = ""; }; + 9AA9120C25CD452900BD5E8B /* README */ = {isa = PBXFileReference; lastKnownFileType = text; path = README; sourceTree = ""; }; + 9AA9120D25CD452900BD5E8B /* st.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = st.c; sourceTree = ""; }; + 9AA9120E25CD452900BD5E8B /* oniggnu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = oniggnu.h; sourceTree = ""; }; + 9AA9120F25CD452900BD5E8B /* onigposix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = onigposix.h; sourceTree = ""; }; + 9AA9121025CD452900BD5E8B /* COPYING */ = {isa = PBXFileReference; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; + 9AA9121125CD452900BD5E8B /* utf16_le.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = utf16_le.c; sourceTree = ""; }; + 9AA9121225CD452900BD5E8B /* oniguruma.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = oniguruma.h; sourceTree = ""; }; + 9AA9121325CD452900BD5E8B /* regposerr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regposerr.c; sourceTree = ""; }; + 9AA9121425CD452900BD5E8B /* regparse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regparse.c; sourceTree = ""; }; + 9AA9121525CD452900BD5E8B /* onig_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = onig_init.c; sourceTree = ""; }; + 9AA9121625CD452900BD5E8B /* regenc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regenc.c; sourceTree = ""; }; + 9AA9121725CD452900BD5E8B /* regerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = regerror.c; sourceTree = ""; }; + 9AA9121825CD452900BD5E8B /* OnigurumaUefiPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OnigurumaUefiPort.h; sourceTree = ""; }; + 9AA9121925CD452900BD5E8B /* unicode_unfold_key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_unfold_key.c; sourceTree = ""; }; + 9AA9121A25CD452900BD5E8B /* reggnu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = reggnu.c; sourceTree = ""; }; + 9AA9121B25CD452900BD5E8B /* unicode_fold_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unicode_fold_data.c; sourceTree = ""; }; + 9AA9121C25CD452900BD5E8B /* RegularExpressionDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RegularExpressionDxe.c; sourceTree = ""; }; + 9AA9121F25CD452900BD5E8B /* Measurement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Measurement.c; sourceTree = ""; }; + 9AA9122025CD452900BD5E8B /* SpeculationBarrierDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrierDxe.c; sourceTree = ""; }; + 9AA9122125CD452900BD5E8B /* VariableStandaloneMm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableStandaloneMm.inf; sourceTree = ""; }; + 9AA9122225CD452900BD5E8B /* VariableSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmm.uni; sourceTree = ""; }; + 9AA9122325CD452900BD5E8B /* VariableSmmRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmRuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA9122425CD452900BD5E8B /* SpeculationBarrierSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SpeculationBarrierSmm.c; sourceTree = ""; }; + 9AA9122525CD452900BD5E8B /* VariableSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmm.inf; sourceTree = ""; }; + 9AA9122625CD452900BD5E8B /* VariableTraditionalMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableTraditionalMm.c; sourceTree = ""; }; + 9AA9122725CD452900BD5E8B /* PrivilegePolymorphic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrivilegePolymorphic.h; sourceTree = ""; }; + 9AA9122825CD452900BD5E8B /* VariableExLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableExLib.c; sourceTree = ""; }; + 9AA9122925CD452900BD5E8B /* Variable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; + 9AA9122A25CD452900BD5E8B /* VariableSmmRuntimeDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableSmmRuntimeDxe.c; sourceTree = ""; }; + 9AA9122B25CD452900BD5E8B /* VariableSmmRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmRuntimeDxe.inf; sourceTree = ""; }; + 9AA9122C25CD452900BD5E8B /* VariableStandaloneMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableStandaloneMm.c; sourceTree = ""; }; + 9AA9122D25CD452900BD5E8B /* VariableSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmExtra.uni; sourceTree = ""; }; + 9AA9122E25CD452900BD5E8B /* VariableSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableSmm.c; sourceTree = ""; }; + 9AA9122F25CD452900BD5E8B /* TcgMorLockSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcgMorLockSmm.c; sourceTree = ""; }; + 9AA9123025CD452900BD5E8B /* Reclaim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Reclaim.c; sourceTree = ""; }; + 9AA9123125CD452900BD5E8B /* VariableDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableDxe.c; sourceTree = ""; }; + 9AA9123225CD452900BD5E8B /* VariableSmmRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableSmmRuntimeDxe.uni; sourceTree = ""; }; + 9AA9123325CD452900BD5E8B /* TcgMorLockDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TcgMorLockDxe.c; sourceTree = ""; }; + 9AA9123425CD452900BD5E8B /* VarCheck.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheck.c; sourceTree = ""; }; + 9AA9123525CD452900BD5E8B /* VariableRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableRuntimeDxe.inf; sourceTree = ""; }; + 9AA9123625CD452900BD5E8B /* VariableRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableRuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA9123725CD452900BD5E8B /* VariableRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableRuntimeDxe.uni; sourceTree = ""; }; + 9AA9123825CD452900BD5E8B /* Variable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; + 9AA9123A25CD452900BD5E8B /* PeiVariableExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiVariableExtra.uni; sourceTree = ""; }; + 9AA9123B25CD452900BD5E8B /* PeiVariable.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiVariable.uni; sourceTree = ""; }; + 9AA9123C25CD452900BD5E8B /* Variable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Variable.h; sourceTree = ""; }; + 9AA9123D25CD452900BD5E8B /* VariablePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariablePei.inf; sourceTree = ""; }; + 9AA9123E25CD452900BD5E8B /* Variable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; + 9AA9124025CD452900BD5E8B /* InputHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InputHandler.c; sourceTree = ""; }; + 9AA9124125CD452900BD5E8B /* FormDisplay.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FormDisplay.c; sourceTree = ""; }; + 9AA9124225CD452900BD5E8B /* DisplayEngine.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayEngine.uni; sourceTree = ""; }; + 9AA9124325CD452900BD5E8B /* FormDisplayStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FormDisplayStr.uni; sourceTree = ""; }; + 9AA9124425CD452900BD5E8B /* FormDisplay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormDisplay.h; sourceTree = ""; }; + 9AA9124525CD452900BD5E8B /* Popup.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Popup.c; sourceTree = ""; }; + 9AA9124625CD452900BD5E8B /* ProcessOptions.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ProcessOptions.c; sourceTree = ""; }; + 9AA9124725CD452900BD5E8B /* DisplayEngineDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayEngineDxe.inf; sourceTree = ""; }; + 9AA9124825CD452900BD5E8B /* DisplayEngineExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayEngineExtra.uni; sourceTree = ""; }; + 9AA9124A25CD452900BD5E8B /* CapsuleOnDiskLoadPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleOnDiskLoadPeiExtra.uni; sourceTree = ""; }; + 9AA9124B25CD452900BD5E8B /* CapsuleOnDiskLoadPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDiskLoadPei.c; sourceTree = ""; }; + 9AA9124C25CD452900BD5E8B /* CapsuleOnDiskLoadPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleOnDiskLoadPei.inf; sourceTree = ""; }; + 9AA9124D25CD452900BD5E8B /* CapsuleOnDiskLoadPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleOnDiskLoadPei.uni; sourceTree = ""; }; + 9AA9124F25CD452900BD5E8B /* DriverHealthManagerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerDxeExtra.uni; sourceTree = ""; }; + 9AA9125025CD452900BD5E8B /* DriverHealthManagerDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverHealthManagerDxe.h; sourceTree = ""; }; + 9AA9125125CD452900BD5E8B /* DriverHealthManagerVfr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverHealthManagerVfr.h; sourceTree = ""; }; + 9AA9125225CD452900BD5E8B /* DriverHealthManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerStrings.uni; sourceTree = ""; }; + 9AA9125325CD452900BD5E8B /* DriverHealthManagerVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerVfr.Vfr; sourceTree = ""; }; + 9AA9125425CD452900BD5E8B /* DriverHealthManagerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerDxe.uni; sourceTree = ""; }; + 9AA9125525CD452A00BD5E8B /* DriverHealthConfigureVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthConfigureVfr.Vfr; sourceTree = ""; }; + 9AA9125625CD452A00BD5E8B /* DriverHealthManagerDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverHealthManagerDxe.c; sourceTree = ""; }; + 9AA9125725CD452A00BD5E8B /* DriverHealthManagerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverHealthManagerDxe.inf; sourceTree = ""; }; + 9AA9125925CD452A00BD5E8B /* MonotonicCounterRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MonotonicCounterRuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA9125A25CD452A00BD5E8B /* MonotonicCounterRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MonotonicCounterRuntimeDxe.inf; sourceTree = ""; }; + 9AA9125B25CD452A00BD5E8B /* MonotonicCounter.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MonotonicCounter.c; sourceTree = ""; }; + 9AA9125C25CD452A00BD5E8B /* MonotonicCounterRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MonotonicCounterRuntimeDxe.uni; sourceTree = ""; }; + 9AA9125E25CD452A00BD5E8B /* LegacyRegion2Dxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LegacyRegion2Dxe.uni; sourceTree = ""; }; + 9AA9125F25CD452A00BD5E8B /* LegacyRegion2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LegacyRegion2.c; sourceTree = ""; }; + 9AA9126025CD452A00BD5E8B /* LegacyRegion2Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LegacyRegion2Dxe.inf; sourceTree = ""; }; + 9AA9126125CD452A00BD5E8B /* LegacyRegion2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyRegion2.h; sourceTree = ""; }; + 9AA9126225CD452A00BD5E8B /* LegacyRegion2DxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LegacyRegion2DxeExtra.uni; sourceTree = ""; }; + 9AA9126425CD452A00BD5E8B /* WatchdogTimer.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = WatchdogTimer.inf; sourceTree = ""; }; + 9AA9126525CD452A00BD5E8B /* WatchdogTimer.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = WatchdogTimer.uni; sourceTree = ""; }; + 9AA9126625CD452A00BD5E8B /* WatchdogTimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WatchdogTimer.c; sourceTree = ""; }; + 9AA9126725CD452A00BD5E8B /* WatchdogTimerExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = WatchdogTimerExtra.uni; sourceTree = ""; }; + 9AA9126825CD452A00BD5E8B /* WatchdogTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WatchdogTimer.h; sourceTree = ""; }; + 9AA9126A25CD452A00BD5E8B /* FaultTolerantWriteSmmDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmmDxeExtra.uni; sourceTree = ""; }; + 9AA9126B25CD452A00BD5E8B /* FaultTolerantWriteSmmCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWriteSmmCommon.h; sourceTree = ""; }; + 9AA9126C25CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWriteSmmDxe.h; sourceTree = ""; }; + 9AA9126D25CD452A00BD5E8B /* FaultTolerantWriteStandaloneMm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteStandaloneMm.inf; sourceTree = ""; }; + 9AA9126E25CD452A00BD5E8B /* SmmFaultTolerantWriteDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmFaultTolerantWriteDxeExtra.uni; sourceTree = ""; }; + 9AA9126F25CD452A00BD5E8B /* FaultTolerantWrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWrite.c; sourceTree = ""; }; + 9AA9127025CD452A00BD5E8B /* FaultTolerantWriteDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteDxe.inf; sourceTree = ""; }; + 9AA9127125CD452A00BD5E8B /* FaultTolerantWriteStandaloneMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteStandaloneMm.c; sourceTree = ""; }; + 9AA9127225CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteSmmDxe.c; sourceTree = ""; }; + 9AA9127325CD452A00BD5E8B /* FaultTolerantWriteDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteDxeExtra.uni; sourceTree = ""; }; + 9AA9127425CD452A00BD5E8B /* FaultTolerantWriteDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteDxe.uni; sourceTree = ""; }; + 9AA9127525CD452A00BD5E8B /* FaultTolerantWriteSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmm.inf; sourceTree = ""; }; + 9AA9127625CD452A00BD5E8B /* FaultTolerantWriteTraditionalMm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteTraditionalMm.c; sourceTree = ""; }; + 9AA9127725CD452A00BD5E8B /* FaultTolerantWriteDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteDxe.c; sourceTree = ""; }; + 9AA9127825CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmmDxe.uni; sourceTree = ""; }; + 9AA9127925CD452A00BD5E8B /* FaultTolerantWriteSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWriteSmm.c; sourceTree = ""; }; + 9AA9127A25CD452A00BD5E8B /* FtwMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FtwMisc.c; sourceTree = ""; }; + 9AA9127B25CD452A00BD5E8B /* SmmFaultTolerantWriteDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmFaultTolerantWriteDxe.uni; sourceTree = ""; }; + 9AA9127C25CD452A00BD5E8B /* UpdateWorkingBlock.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UpdateWorkingBlock.c; sourceTree = ""; }; + 9AA9127D25CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWriteSmmDxe.inf; sourceTree = ""; }; + 9AA9127E25CD452A00BD5E8B /* FaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; + 9AA9128025CD452A00BD5E8B /* DevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; + 9AA9128125CD452A00BD5E8B /* DevicePathDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DevicePathDxe.inf; sourceTree = ""; }; + 9AA9128225CD452A00BD5E8B /* DevicePathDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DevicePathDxeExtra.uni; sourceTree = ""; }; + 9AA9128325CD452A00BD5E8B /* DevicePathDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DevicePathDxe.uni; sourceTree = ""; }; + 9AA9128525CD452A00BD5E8B /* NVDataStruc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NVDataStruc.h; sourceTree = ""; }; + 9AA9128625CD452A00BD5E8B /* DriverSample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DriverSample.c; sourceTree = ""; }; + 9AA9128725CD452A00BD5E8B /* DriverSampleDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverSampleDxe.inf; sourceTree = ""; }; + 9AA9128825CD452A00BD5E8B /* Inventory.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Inventory.vfr; sourceTree = ""; }; + 9AA9128925CD452A00BD5E8B /* Vfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vfr.vfr; sourceTree = ""; }; + 9AA9128A25CD452A00BD5E8B /* DriverSample.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverSample.uni; sourceTree = ""; }; + 9AA9128B25CD452A00BD5E8B /* InventoryStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = InventoryStrings.uni; sourceTree = ""; }; + 9AA9128C25CD452A00BD5E8B /* DriverSampleExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DriverSampleExtra.uni; sourceTree = ""; }; + 9AA9128D25CD452A00BD5E8B /* DriverSample.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverSample.h; sourceTree = ""; }; + 9AA9128E25CD452A00BD5E8B /* VfrStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; + 9AA9129025CD452A00BD5E8B /* SmbiosMeasurementDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosMeasurementDxeExtra.uni; sourceTree = ""; }; + 9AA9129125CD452A00BD5E8B /* SmbiosMeasurementDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosMeasurementDxe.c; sourceTree = ""; }; + 9AA9129225CD452A00BD5E8B /* SmbiosMeasurementDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosMeasurementDxe.inf; sourceTree = ""; }; + 9AA9129325CD452A00BD5E8B /* SmbiosMeasurementDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosMeasurementDxe.uni; sourceTree = ""; }; + 9AA9129525CD452A00BD5E8B /* HiiResourcesSample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiResourcesSample.c; sourceTree = ""; }; + 9AA9129625CD452A00BD5E8B /* HiiResourcesSample.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiResourcesSample.uni; sourceTree = ""; }; + 9AA9129725CD452A00BD5E8B /* HiiResourcesSampleDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiResourcesSampleDxe.inf; sourceTree = ""; }; + 9AA9129825CD452A00BD5E8B /* HiiResourcesSampleExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiResourcesSampleExtra.uni; sourceTree = ""; }; + 9AA9129925CD452A00BD5E8B /* SampleStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SampleStrings.uni; sourceTree = ""; }; + 9AA9129A25CD452A00BD5E8B /* Sample.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Sample.vfr; sourceTree = ""; }; + 9AA9129C25CD452A00BD5E8B /* InternalPlatDriOverrideDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalPlatDriOverrideDxe.h; sourceTree = ""; }; + 9AA9129D25CD452A00BD5E8B /* Vfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = Vfr.vfr; sourceTree = ""; }; + 9AA9129E25CD452A00BD5E8B /* PlatOverMngr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatOverMngr.h; sourceTree = ""; }; + 9AA9129F25CD452A00BD5E8B /* PlatformDriOverrideDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformDriOverrideDxe.inf; sourceTree = ""; }; + 9AA912A025CD452A00BD5E8B /* PlatDriOverrideLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatDriOverrideLib.c; sourceTree = ""; }; + 9AA912A125CD452A00BD5E8B /* PlatDriOverrideDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatDriOverrideDxe.uni; sourceTree = ""; }; + 9AA912A225CD452A00BD5E8B /* PlatDriOverrideDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatDriOverrideDxeExtra.uni; sourceTree = ""; }; + 9AA912A325CD452A00BD5E8B /* PlatDriOverrideDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatDriOverrideDxe.c; sourceTree = ""; }; + 9AA912A425CD452A00BD5E8B /* VfrStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; + 9AA912A625CD452A00BD5E8B /* LoadFileOnFv2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LoadFileOnFv2.c; sourceTree = ""; }; + 9AA912A725CD452A00BD5E8B /* LoadFileOnFv2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LoadFileOnFv2.inf; sourceTree = ""; }; + 9AA912A825CD452A00BD5E8B /* LoadFileOnFv2.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LoadFileOnFv2.uni; sourceTree = ""; }; + 9AA912A925CD452A00BD5E8B /* LoadFileOnFv2Extra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LoadFileOnFv2Extra.uni; sourceTree = ""; }; + 9AA912AB25CD452A00BD5E8B /* BootManagerPolicyDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerPolicyDxe.uni; sourceTree = ""; }; + 9AA912AC25CD452A00BD5E8B /* BootManagerPolicyDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerPolicyDxe.inf; sourceTree = ""; }; + 9AA912AD25CD452A00BD5E8B /* BootManagerPolicyDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerPolicyDxeExtra.uni; sourceTree = ""; }; + 9AA912AE25CD452A00BD5E8B /* BootManagerPolicyDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootManagerPolicyDxe.c; sourceTree = ""; }; + 9AA912B125CD452A00BD5E8B /* Pcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pcd.c; sourceTree = ""; }; + 9AA912B225CD452A00BD5E8B /* PcdDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdDxeExtra.uni; sourceTree = ""; }; + 9AA912B325CD452A00BD5E8B /* Service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service.h; sourceTree = ""; }; + 9AA912B425CD452A00BD5E8B /* Pcd.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Pcd.inf; sourceTree = ""; }; + 9AA912B525CD452A00BD5E8B /* Service.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Service.c; sourceTree = ""; }; + 9AA912B625CD452A00BD5E8B /* PcdDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdDxe.uni; sourceTree = ""; }; + 9AA912B825CD452A00BD5E8B /* Pcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pcd.c; sourceTree = ""; }; + 9AA912B925CD452A00BD5E8B /* Service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service.h; sourceTree = ""; }; + 9AA912BA25CD452A00BD5E8B /* Pcd.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Pcd.inf; sourceTree = ""; }; + 9AA912BB25CD452A00BD5E8B /* PcdPeim.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdPeim.uni; sourceTree = ""; }; + 9AA912BC25CD452A00BD5E8B /* PcdPeimExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcdPeimExtra.uni; sourceTree = ""; }; + 9AA912BD25CD452A00BD5E8B /* Service.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Service.c; sourceTree = ""; }; + 9AA912BF25CD452A00BD5E8B /* SectionExtractionPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SectionExtractionPei.c; sourceTree = ""; }; + 9AA912C025CD452A00BD5E8B /* SectionExtractionPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionPeiExtra.uni; sourceTree = ""; }; + 9AA912C125CD452A00BD5E8B /* SectionExtractionPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionPei.uni; sourceTree = ""; }; + 9AA912C225CD452A00BD5E8B /* SectionExtractionPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SectionExtractionPei.inf; sourceTree = ""; }; + 9AA912C525CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerRuntimeDxe.c; sourceTree = ""; }; + 9AA912C625CD452A00BD5E8B /* MemoryStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryStatusCodeWorker.c; sourceTree = ""; }; + 9AA912C725CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA912C825CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxe.uni; sourceTree = ""; }; + 9AA912C925CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerRuntimeDxe.inf; sourceTree = ""; }; + 9AA912CA25CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerRuntimeDxe.h; sourceTree = ""; }; + 9AA912CB25CD452A00BD5E8B /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; + 9AA912CD25CD452A00BD5E8B /* StatusCodeHandlerPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerPei.uni; sourceTree = ""; }; + 9AA912CE25CD452A00BD5E8B /* StatusCodeHandlerPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerPeiExtra.uni; sourceTree = ""; }; + 9AA912CF25CD452A00BD5E8B /* StatusCodeHandlerPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerPei.inf; sourceTree = ""; }; + 9AA912D025CD452A00BD5E8B /* StatusCodeHandlerPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerPei.h; sourceTree = ""; }; + 9AA912D125CD452A00BD5E8B /* MemoryStausCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryStausCodeWorker.c; sourceTree = ""; }; + 9AA912D225CD452A00BD5E8B /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; + 9AA912D325CD452A00BD5E8B /* StatusCodeHandlerPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerPei.c; sourceTree = ""; }; + 9AA912D525CD452A00BD5E8B /* MemoryStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryStatusCodeWorker.c; sourceTree = ""; }; + 9AA912D625CD452A00BD5E8B /* StatusCodeHandlerSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = StatusCodeHandlerSmm.c; sourceTree = ""; }; + 9AA912D725CD452A00BD5E8B /* StatusCodeHandlerSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerSmmExtra.uni; sourceTree = ""; }; + 9AA912D825CD452A00BD5E8B /* StatusCodeHandlerSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerSmm.inf; sourceTree = ""; }; + 9AA912D925CD452A00BD5E8B /* SerialStatusCodeWorker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialStatusCodeWorker.c; sourceTree = ""; }; + 9AA912DA25CD452A00BD5E8B /* StatusCodeHandlerSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeHandlerSmm.h; sourceTree = ""; }; + 9AA912DB25CD452A00BD5E8B /* StatusCodeHandlerSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = StatusCodeHandlerSmm.uni; sourceTree = ""; }; + 9AA912DD25CD452A00BD5E8B /* DebugServicePei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugServicePei.c; sourceTree = ""; }; + 9AA912DE25CD452A00BD5E8B /* DebugService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugService.h; sourceTree = ""; }; + 9AA912DF25CD452A00BD5E8B /* DebugServicePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugServicePei.inf; sourceTree = ""; }; + 9AA912E025CD452A00BD5E8B /* DebugServicePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugServicePei.uni; sourceTree = ""; }; + 9AA912E225CD452A00BD5E8B /* TimestampDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TimestampDxe.c; sourceTree = ""; }; + 9AA912E325CD452A00BD5E8B /* TimestampDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TimestampDxe.uni; sourceTree = ""; }; + 9AA912E425CD452A00BD5E8B /* TimestampDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TimestampDxe.inf; sourceTree = ""; }; + 9AA912E525CD452A00BD5E8B /* TimestampDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TimestampDxeExtra.uni; sourceTree = ""; }; + 9AA912E725CD452A00BD5E8B /* ResetSystemPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemPeiExtra.uni; sourceTree = ""; }; + 9AA912E825CD452A00BD5E8B /* ResetSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetSystem.h; sourceTree = ""; }; + 9AA912E925CD452A00BD5E8B /* ResetSystemPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemPei.inf; sourceTree = ""; }; + 9AA912EA25CD452A00BD5E8B /* ResetSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetSystem.c; sourceTree = ""; }; + 9AA912EB25CD452A00BD5E8B /* ResetSystemPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemPei.uni; sourceTree = ""; }; + 9AA912ED25CD452A00BD5E8B /* FvSimpleFileSystemEntryPoint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FvSimpleFileSystemEntryPoint.c; sourceTree = ""; }; + 9AA912EE25CD452A00BD5E8B /* FvSimpleFileSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FvSimpleFileSystem.c; sourceTree = ""; }; + 9AA912EF25CD452A00BD5E8B /* FvSimpleFileSystemDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FvSimpleFileSystemDxe.inf; sourceTree = ""; }; + 9AA912F025CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA912F125CD452A00BD5E8B /* FvSimpleFileSystemInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FvSimpleFileSystemInternal.h; sourceTree = ""; }; + 9AA912F225CD452A00BD5E8B /* FvSimpleFileSystem.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FvSimpleFileSystem.uni; sourceTree = ""; }; + 9AA912F325CD452A00BD5E8B /* FvSimpleFileSystemExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FvSimpleFileSystemExtra.uni; sourceTree = ""; }; + 9AA912F525CD452A00BD5E8B /* Defer3rdPartyImageLoad.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Defer3rdPartyImageLoad.c; sourceTree = ""; }; + 9AA912F625CD452A00BD5E8B /* SecurityStubDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecurityStubDxe.uni; sourceTree = ""; }; + 9AA912F725CD452A00BD5E8B /* SecurityStub.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SecurityStub.c; sourceTree = ""; }; + 9AA912F825CD452A00BD5E8B /* SecurityStubDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecurityStubDxe.inf; sourceTree = ""; }; + 9AA912F925CD452A00BD5E8B /* SecurityStubDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SecurityStubDxeExtra.uni; sourceTree = ""; }; + 9AA912FA25CD452A00BD5E8B /* Defer3rdPartyImageLoad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Defer3rdPartyImageLoad.h; sourceTree = ""; }; + 9AA912FD25CD452A00BD5E8B /* DiskIoDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DiskIoDxe.uni; sourceTree = ""; }; + 9AA912FE25CD452A00BD5E8B /* DiskIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DiskIo.h; sourceTree = ""; }; + 9AA912FF25CD452A00BD5E8B /* DiskIoDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DiskIoDxe.inf; sourceTree = ""; }; + 9AA9130025CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9130125CD452A00BD5E8B /* DiskIoDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DiskIoDxeExtra.uni; sourceTree = ""; }; + 9AA9130225CD452A00BD5E8B /* DiskIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DiskIo.c; sourceTree = ""; }; + 9AA9130425CD452A00BD5E8B /* CdExpressPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CdExpressPei.inf; sourceTree = ""; }; + 9AA9130525CD452A00BD5E8B /* PeiCdExpress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCdExpress.c; sourceTree = ""; }; + 9AA9130625CD452A00BD5E8B /* CdExpressPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CdExpressPei.uni; sourceTree = ""; }; + 9AA9130725CD452A00BD5E8B /* PeiCdExpress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiCdExpress.h; sourceTree = ""; }; + 9AA9130825CD452A00BD5E8B /* CdExpressPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CdExpressPeiExtra.uni; sourceTree = ""; }; + 9AA9130A25CD452A00BD5E8B /* Partition.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Partition.c; sourceTree = ""; }; + 9AA9130B25CD452A00BD5E8B /* Udf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udf.c; sourceTree = ""; }; + 9AA9130C25CD452A00BD5E8B /* PartitionDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PartitionDxeExtra.uni; sourceTree = ""; }; + 9AA9130D25CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9130E25CD452A00BD5E8B /* ElTorito.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ElTorito.c; sourceTree = ""; }; + 9AA9130F25CD452A00BD5E8B /* PartitionDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PartitionDxe.uni; sourceTree = ""; }; + 9AA9131025CD452A00BD5E8B /* Partition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Partition.h; sourceTree = ""; }; + 9AA9131125CD452A00BD5E8B /* PartitionDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PartitionDxe.inf; sourceTree = ""; }; + 9AA9131225CD452A00BD5E8B /* Mbr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Mbr.c; sourceTree = ""; }; + 9AA9131325CD452A00BD5E8B /* Gpt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Gpt.c; sourceTree = ""; }; + 9AA9131525CD452A00BD5E8B /* RamDiskImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDiskImpl.h; sourceTree = ""; }; + 9AA9131625CD452A00BD5E8B /* RamDiskFileExplorer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskFileExplorer.c; sourceTree = ""; }; + 9AA9131725CD452A00BD5E8B /* RamDiskNVData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDiskNVData.h; sourceTree = ""; }; + 9AA9131825CD452A00BD5E8B /* RamDiskHiiStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskHiiStrings.uni; sourceTree = ""; }; + 9AA9131925CD452A00BD5E8B /* RamDiskImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskImpl.c; sourceTree = ""; }; + 9AA9131A25CD452A00BD5E8B /* RamDiskBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskBlockIo.c; sourceTree = ""; }; + 9AA9131B25CD452A00BD5E8B /* RamDiskProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskProtocol.c; sourceTree = ""; }; + 9AA9131C25CD452A00BD5E8B /* RamDiskHii.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskHii.vfr; sourceTree = ""; }; + 9AA9131D25CD452A00BD5E8B /* RamDisk.asl */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDisk.asl; sourceTree = ""; }; + 9AA9131E25CD452A00BD5E8B /* RamDiskDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskDxe.inf; sourceTree = ""; }; + 9AA9131F25CD452A00BD5E8B /* RamDiskDriver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RamDiskDriver.c; sourceTree = ""; }; + 9AA9132025CD452A00BD5E8B /* RamDiskDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RamDiskDxe.uni; sourceTree = ""; }; + 9AA9132325CD452A00BD5E8B /* EnglishDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EnglishDxe.uni; sourceTree = ""; }; + 9AA9132425CD452A00BD5E8B /* EnglishDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EnglishDxeExtra.uni; sourceTree = ""; }; + 9AA9132525CD452A00BD5E8B /* UnicodeCollationEng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UnicodeCollationEng.c; sourceTree = ""; }; + 9AA9132625CD452A00BD5E8B /* EnglishDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EnglishDxe.inf; sourceTree = ""; }; + 9AA9132725CD452A00BD5E8B /* UnicodeCollationEng.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UnicodeCollationEng.h; sourceTree = ""; }; + 9AA9132925CD452A00BD5E8B /* FileName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileName.c; sourceTree = ""; }; + 9AA9132A25CD452A00BD5E8B /* Udf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Udf.c; sourceTree = ""; }; + 9AA9132B25CD452A00BD5E8B /* FileSystemOperations.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileSystemOperations.c; sourceTree = ""; }; + 9AA9132C25CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9132D25CD452A00BD5E8B /* UdfDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UdfDxe.inf; sourceTree = ""; }; + 9AA9132E25CD452A00BD5E8B /* Udf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Udf.h; sourceTree = ""; }; + 9AA9132F25CD452A00BD5E8B /* File.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = File.c; sourceTree = ""; }; + 9AA9133225CD452A00BD5E8B /* LightMemoryTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LightMemoryTest.c; sourceTree = ""; }; + 9AA9133325CD452A00BD5E8B /* GenericMemoryTestDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GenericMemoryTestDxe.inf; sourceTree = ""; }; + 9AA9133425CD452A00BD5E8B /* GenericMemoryTestDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GenericMemoryTestDxeExtra.uni; sourceTree = ""; }; + 9AA9133525CD452A00BD5E8B /* GenericMemoryTestDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GenericMemoryTestDxe.uni; sourceTree = ""; }; + 9AA9133625CD452A00BD5E8B /* LightMemoryTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LightMemoryTest.h; sourceTree = ""; }; + 9AA9133825CD452A00BD5E8B /* NullMemoryTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NullMemoryTest.h; sourceTree = ""; }; + 9AA9133925CD452A00BD5E8B /* NullMemoryTestDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NullMemoryTestDxeExtra.uni; sourceTree = ""; }; + 9AA9133A25CD452A00BD5E8B /* NullMemoryTestDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NullMemoryTestDxe.inf; sourceTree = ""; }; + 9AA9133B25CD452A00BD5E8B /* NullMemoryTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NullMemoryTest.c; sourceTree = ""; }; + 9AA9133C25CD452A00BD5E8B /* NullMemoryTestDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NullMemoryTestDxe.uni; sourceTree = ""; }; + 9AA9133E25CD452A00BD5E8B /* HiiDatabaseDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiDatabaseDxe.inf; sourceTree = ""; }; + 9AA9133F25CD452A00BD5E8B /* HiiDatabase.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiDatabase.uni; sourceTree = ""; }; + 9AA9134025CD452A00BD5E8B /* Database.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Database.c; sourceTree = ""; }; + 9AA9134125CD452A00BD5E8B /* ConfigRouting.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConfigRouting.c; sourceTree = ""; }; + 9AA9134225CD452A00BD5E8B /* Font.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Font.c; sourceTree = ""; }; + 9AA9134325CD452A00BD5E8B /* String.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; + 9AA9134425CD452A00BD5E8B /* Image.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; + 9AA9134525CD452A00BD5E8B /* HiiDatabaseExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HiiDatabaseExtra.uni; sourceTree = ""; }; + 9AA9134625CD452A00BD5E8B /* HiiDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiDatabase.h; sourceTree = ""; }; + 9AA9134725CD452A00BD5E8B /* ConfigKeywordHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConfigKeywordHandler.c; sourceTree = ""; }; + 9AA9134825CD452A00BD5E8B /* HiiDatabaseEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiDatabaseEntry.c; sourceTree = ""; }; + 9AA9134925CD452A00BD5E8B /* ImageEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ImageEx.c; sourceTree = ""; }; + 9AA9134B25CD452A00BD5E8B /* PciCfg2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCfg2.c; sourceTree = ""; }; + 9AA9134C25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2Pei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2Pei.inf; sourceTree = ""; }; + 9AA9134D25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2Pei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2Pei.uni; sourceTree = ""; }; + 9AA9134E25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2PeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PcatSingleSegmentPciCfg2PeiExtra.uni; sourceTree = ""; }; + 9AA9135025CD452A00BD5E8B /* FaultTolerantWritePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWritePei.inf; sourceTree = ""; }; + 9AA9135125CD452A00BD5E8B /* FaultTolerantWritePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWritePei.uni; sourceTree = ""; }; + 9AA9135225CD452A00BD5E8B /* FaultTolerantWritePei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FaultTolerantWritePei.c; sourceTree = ""; }; + 9AA9135325CD452A00BD5E8B /* FaultTolerantWritePeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FaultTolerantWritePeiExtra.uni; sourceTree = ""; }; + 9AA9135525CD452A00BD5E8B /* Language.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Language.h; sourceTree = ""; }; + 9AA9135625CD452A00BD5E8B /* BdsEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BdsEntry.c; sourceTree = ""; }; + 9AA9135725CD452A00BD5E8B /* HwErrRecSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HwErrRecSupport.c; sourceTree = ""; }; + 9AA9135825CD452A00BD5E8B /* BdsDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxe.inf; sourceTree = ""; }; + 9AA9135925CD452A00BD5E8B /* BdsDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxeExtra.uni; sourceTree = ""; }; + 9AA9135A25CD452A00BD5E8B /* BdsDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxe.uni; sourceTree = ""; }; + 9AA9135B25CD452A00BD5E8B /* Bds.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bds.h; sourceTree = ""; }; + 9AA9135C25CD452A00BD5E8B /* Language.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Language.c; sourceTree = ""; }; + 9AA9135D25CD452A00BD5E8B /* HwErrRecSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HwErrRecSupport.h; sourceTree = ""; }; + 9AA9135F25CD452A00BD5E8B /* SmmCommunicationBufferExtraDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCommunicationBufferExtraDxe.uni; sourceTree = ""; }; + 9AA9136025CD452A00BD5E8B /* SmmCommunicationBufferDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCommunicationBufferDxe.c; sourceTree = ""; }; + 9AA9136125CD452A00BD5E8B /* SmmCommunicationBufferDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCommunicationBufferDxe.uni; sourceTree = ""; }; + 9AA9136225CD452A00BD5E8B /* SmmCommunicationBufferDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCommunicationBufferDxe.inf; sourceTree = ""; }; + 9AA9136425CD452A00BD5E8B /* CapsulePei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsulePei.uni; sourceTree = ""; }; + 9AA9136525CD452A00BD5E8B /* CapsulePei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsulePei.inf; sourceTree = ""; }; + 9AA9136625CD452A00BD5E8B /* CapsuleX64Extra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleX64Extra.uni; sourceTree = ""; }; + 9AA9136725CD452A00BD5E8B /* CapsulePeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsulePeiExtra.uni; sourceTree = ""; }; + 9AA9136925CD452A00BD5E8B /* X64Entry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X64Entry.c; sourceTree = ""; }; + 9AA9136A25CD452A00BD5E8B /* PageFaultHandler.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = PageFaultHandler.nasm; sourceTree = ""; }; + 9AA9136C25CD452A00BD5E8B /* CapsuleCoalesce.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleCoalesce.c; sourceTree = ""; }; + 9AA9136D25CD452A00BD5E8B /* CommonHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommonHeader.h; sourceTree = ""; }; + 9AA9136E25CD452A00BD5E8B /* CapsuleX64.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleX64.uni; sourceTree = ""; }; + 9AA9136F25CD452A00BD5E8B /* Capsule.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Capsule.h; sourceTree = ""; }; + 9AA9137025CD452A00BD5E8B /* CapsuleX64.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleX64.inf; sourceTree = ""; }; + 9AA9137125CD452A00BD5E8B /* UefiCapsule.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiCapsule.c; sourceTree = ""; }; + 9AA9137325CD452A00BD5E8B /* ResetSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetSystem.h; sourceTree = ""; }; + 9AA9137425CD452A00BD5E8B /* ResetSystemRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemRuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA9137525CD452A00BD5E8B /* ResetSystemRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemRuntimeDxe.uni; sourceTree = ""; }; + 9AA9137625CD452A00BD5E8B /* ResetSystemRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystemRuntimeDxe.inf; sourceTree = ""; }; + 9AA9137725CD452A00BD5E8B /* ResetSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetSystem.c; sourceTree = ""; }; + 9AA9137925CD452A00BD5E8B /* Print.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Print.c; sourceTree = ""; }; + 9AA9137A25CD452A00BD5E8B /* PrintDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PrintDxeExtra.uni; sourceTree = ""; }; + 9AA9137B25CD452A00BD5E8B /* PrintDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PrintDxe.uni; sourceTree = ""; }; + 9AA9137C25CD452A00BD5E8B /* PrintDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PrintDxe.inf; sourceTree = ""; }; + 9AA9137E25CD452A00BD5E8B /* SerialIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialIo.c; sourceTree = ""; }; + 9AA9137F25CD452A00BD5E8B /* SerialDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SerialDxe.inf; sourceTree = ""; }; + 9AA9138025CD452A00BD5E8B /* SerialDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SerialDxe.uni; sourceTree = ""; }; + 9AA9138125CD452A00BD5E8B /* SerialDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SerialDxeExtra.uni; sourceTree = ""; }; + 9AA9138425CD452A00BD5E8B /* SmmLockBoxExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxExtra.uni; sourceTree = ""; }; + 9AA9138525CD452A00BD5E8B /* SmmLockBox.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBox.inf; sourceTree = ""; }; + 9AA9138625CD452A00BD5E8B /* SmmLockBox.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBox.uni; sourceTree = ""; }; + 9AA9138725CD452A00BD5E8B /* SmmLockBox.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBox.c; sourceTree = ""; }; + 9AA9138925CD452A00BD5E8B /* FileExplorerDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileExplorerDxe.c; sourceTree = ""; }; + 9AA9138A25CD452A00BD5E8B /* FileExplorerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerDxe.uni; sourceTree = ""; }; + 9AA9138B25CD452A00BD5E8B /* FileExplorerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerDxeExtra.uni; sourceTree = ""; }; + 9AA9138C25CD452A00BD5E8B /* FileExplorerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerDxe.inf; sourceTree = ""; }; + 9AA9138F25CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterRuntimeDxe.c; sourceTree = ""; }; + 9AA9139025CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA9139125CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxe.uni; sourceTree = ""; }; + 9AA9139225CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterRuntimeDxe.inf; sourceTree = ""; }; + 9AA9139325CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterRuntimeDxe.h; sourceTree = ""; }; + 9AA9139525CD452A00BD5E8B /* ReportStatusCodeRouterPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterPei.inf; sourceTree = ""; }; + 9AA9139625CD452A00BD5E8B /* ReportStatusCodeRouterPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterPei.uni; sourceTree = ""; }; + 9AA9139725CD452A00BD5E8B /* ReportStatusCodeRouterPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterPeiExtra.uni; sourceTree = ""; }; + 9AA9139825CD452A00BD5E8B /* ReportStatusCodeRouterPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterPei.h; sourceTree = ""; }; + 9AA9139925CD452A00BD5E8B /* ReportStatusCodeRouterPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterPei.c; sourceTree = ""; }; + 9AA9139B25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeRouterSmm.c; sourceTree = ""; }; + 9AA9139C25CD452A00BD5E8B /* ReportStatusCodeRouterSmmExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterSmmExtra.uni; sourceTree = ""; }; + 9AA9139D25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterSmm.uni; sourceTree = ""; }; + 9AA9139E25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReportStatusCodeRouterSmm.h; sourceTree = ""; }; + 9AA9139F25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReportStatusCodeRouterSmm.inf; sourceTree = ""; }; + 9AA913A125CD452A00BD5E8B /* CapsuleCache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleCache.c; sourceTree = ""; }; + 9AA913A225CD452A00BD5E8B /* CapsuleCacheNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleCacheNull.c; sourceTree = ""; }; + 9AA913A425CD452A00BD5E8B /* SaveLongModeContext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SaveLongModeContext.c; sourceTree = ""; }; + 9AA913A525CD452A00BD5E8B /* CapsuleService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleService.h; sourceTree = ""; }; + 9AA913A625CD452A00BD5E8B /* CapsuleRuntimeDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleRuntimeDxe.uni; sourceTree = ""; }; + 9AA913A725CD452A00BD5E8B /* CapsuleRuntimeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleRuntimeDxe.inf; sourceTree = ""; }; + 9AA913A825CD452A00BD5E8B /* CapsuleRuntimeDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleRuntimeDxeExtra.uni; sourceTree = ""; }; + 9AA913A925CD452A00BD5E8B /* CapsuleReset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleReset.c; sourceTree = ""; }; + 9AA913AA25CD452A00BD5E8B /* SaveLongModeContext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SaveLongModeContext.c; sourceTree = ""; }; + 9AA913AC25CD452A00BD5E8B /* CapsuleReset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleReset.c; sourceTree = ""; }; + 9AA913AD25CD452A00BD5E8B /* CapsuleService.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleService.c; sourceTree = ""; }; + 9AA913AF25CD452A00BD5E8B /* Expression.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Expression.c; sourceTree = ""; }; + 9AA913B025CD452A00BD5E8B /* SetupBrowserExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SetupBrowserExtra.uni; sourceTree = ""; }; + 9AA913B125CD452A00BD5E8B /* Setup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Setup.h; sourceTree = ""; }; + 9AA913B225CD452A00BD5E8B /* Presentation.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Presentation.c; sourceTree = ""; }; + 9AA913B325CD452A00BD5E8B /* SetupBrowserDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SetupBrowserDxe.inf; sourceTree = ""; }; + 9AA913B425CD452A00BD5E8B /* Setup.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Setup.c; sourceTree = ""; }; + 9AA913B525CD452A00BD5E8B /* Expression.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Expression.h; sourceTree = ""; }; + 9AA913B625CD452A00BD5E8B /* IfrParse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IfrParse.c; sourceTree = ""; }; + 9AA913B725CD452A00BD5E8B /* SetupBrowser.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SetupBrowser.uni; sourceTree = ""; }; + 9AA913BA25CD452A00BD5E8B /* GraphicsConsoleDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsConsoleDxeExtra.uni; sourceTree = ""; }; + 9AA913BB25CD452A00BD5E8B /* GraphicsConsole.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsConsole.h; sourceTree = ""; }; + 9AA913BC25CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA913BD25CD452A00BD5E8B /* GraphicsConsoleDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsConsoleDxe.inf; sourceTree = ""; }; + 9AA913BE25CD452A00BD5E8B /* GraphicsConsoleDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsConsoleDxe.uni; sourceTree = ""; }; + 9AA913BF25CD452A00BD5E8B /* LaffStd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LaffStd.c; sourceTree = ""; }; + 9AA913C025CD452A00BD5E8B /* GraphicsConsole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GraphicsConsole.c; sourceTree = ""; }; + 9AA913C225CD452A00BD5E8B /* TerminalDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TerminalDxeExtra.uni; sourceTree = ""; }; + 9AA913C325CD452A00BD5E8B /* TerminalDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TerminalDxe.uni; sourceTree = ""; }; + 9AA913C425CD452A00BD5E8B /* TerminalConOut.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TerminalConOut.c; sourceTree = ""; }; + 9AA913C525CD452A00BD5E8B /* TerminalConIn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TerminalConIn.c; sourceTree = ""; }; + 9AA913C625CD452A00BD5E8B /* TerminalDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TerminalDxe.inf; sourceTree = ""; }; + 9AA913C725CD452A00BD5E8B /* Terminal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Terminal.c; sourceTree = ""; }; + 9AA913C825CD452A00BD5E8B /* Vtutf8.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Vtutf8.c; sourceTree = ""; }; + 9AA913C925CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA913CA25CD452A00BD5E8B /* Terminal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Terminal.h; sourceTree = ""; }; + 9AA913CB25CD452A00BD5E8B /* Ansi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ansi.c; sourceTree = ""; }; + 9AA913CD25CD452A00BD5E8B /* ConPlatformDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConPlatformDxeExtra.uni; sourceTree = ""; }; + 9AA913CE25CD452A00BD5E8B /* ConPlatform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConPlatform.c; sourceTree = ""; }; + 9AA913CF25CD452A00BD5E8B /* ConPlatformDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConPlatformDxe.inf; sourceTree = ""; }; + 9AA913D025CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA913D125CD452A00BD5E8B /* ConPlatformDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConPlatformDxe.uni; sourceTree = ""; }; + 9AA913D225CD452A00BD5E8B /* ConPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConPlatform.h; sourceTree = ""; }; + 9AA913D425CD452A00BD5E8B /* ConSplitter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConSplitter.h; sourceTree = ""; }; + 9AA913D525CD452A00BD5E8B /* ConSplitterGraphics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConSplitterGraphics.c; sourceTree = ""; }; + 9AA913D625CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA913D725CD452A00BD5E8B /* ConSplitter.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConSplitter.c; sourceTree = ""; }; + 9AA913D825CD452A00BD5E8B /* ConSplitterDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConSplitterDxe.uni; sourceTree = ""; }; + 9AA913D925CD452A00BD5E8B /* ConSplitterDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConSplitterDxeExtra.uni; sourceTree = ""; }; + 9AA913DA25CD452A00BD5E8B /* ConSplitterDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ConSplitterDxe.inf; sourceTree = ""; }; + 9AA913DC25CD452A00BD5E8B /* GraphicsOutput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GraphicsOutput.h; sourceTree = ""; }; + 9AA913DD25CD452A00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA913DE25CD452A00BD5E8B /* GraphicsOutputDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GraphicsOutputDxe.inf; sourceTree = ""; }; + 9AA913DF25CD452A00BD5E8B /* GraphicsOutput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GraphicsOutput.c; sourceTree = ""; }; + 9AA913E125CD452A00BD5E8B /* Metronome.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Metronome.inf; sourceTree = ""; }; + 9AA913E225CD452A00BD5E8B /* Metronome.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Metronome.c; sourceTree = ""; }; + 9AA913E325CD452A00BD5E8B /* Metronome.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Metronome.uni; sourceTree = ""; }; + 9AA913E425CD452A00BD5E8B /* MetronomeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MetronomeExtra.uni; sourceTree = ""; }; + 9AA913E525CD452A00BD5E8B /* Metronome.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Metronome.h; sourceTree = ""; }; + 9AA913E825CD452A00BD5E8B /* FmpAuthenticationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FmpAuthenticationLib.h; sourceTree = ""; }; + 9AA913E925CD452A00BD5E8B /* PlatformHookLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformHookLib.h; sourceTree = ""; }; + 9AA913EA25CD452A00BD5E8B /* UefiBootManagerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiBootManagerLib.h; sourceTree = ""; }; + 9AA913EB25CD452A00BD5E8B /* HttpLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpLib.h; sourceTree = ""; }; + 9AA913EC25CD452A00BD5E8B /* TpmMeasurementLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TpmMeasurementLib.h; sourceTree = ""; }; + 9AA913ED25CD452A00BD5E8B /* PciHostBridgeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostBridgeLib.h; sourceTree = ""; }; + 9AA913EE25CD452A00BD5E8B /* SecurityManagementLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecurityManagementLib.h; sourceTree = ""; }; + 9AA913EF25CD452A00BD5E8B /* DisplayUpdateProgressLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DisplayUpdateProgressLib.h; sourceTree = ""; }; + 9AA913F025CD452A00BD5E8B /* IpmiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiLib.h; sourceTree = ""; }; + 9AA913F125CD452A00BD5E8B /* DebugAgentLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugAgentLib.h; sourceTree = ""; }; + 9AA913F225CD452A00BD5E8B /* UefiHiiServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiHiiServicesLib.h; sourceTree = ""; }; + 9AA913F325CD452A00BD5E8B /* PlatformBootManagerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformBootManagerLib.h; sourceTree = ""; }; + 9AA913F425CD452A00BD5E8B /* UdpIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UdpIoLib.h; sourceTree = ""; }; + 9AA913F525CD452A00BD5E8B /* MemoryProfileLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryProfileLib.h; sourceTree = ""; }; + 9AA913F625CD452A00BD5E8B /* SmmCorePlatformHookLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCorePlatformHookLib.h; sourceTree = ""; }; + 9AA913F725CD452A00BD5E8B /* CustomizedDisplayLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomizedDisplayLib.h; sourceTree = ""; }; + 9AA913F825CD452A00BD5E8B /* ResetUtilityLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetUtilityLib.h; sourceTree = ""; }; + 9AA913F925CD452A00BD5E8B /* SortLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SortLib.h; sourceTree = ""; }; + 9AA913FA25CD452A00BD5E8B /* FrameBufferBltLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameBufferBltLib.h; sourceTree = ""; }; + 9AA913FB25CD452A00BD5E8B /* NetLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetLib.h; sourceTree = ""; }; + 9AA913FC25CD452A00BD5E8B /* OemHookStatusCodeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OemHookStatusCodeLib.h; sourceTree = ""; }; + 9AA913FD25CD452A00BD5E8B /* BmpSupportLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BmpSupportLib.h; sourceTree = ""; }; + 9AA913FE25CD452A00BD5E8B /* LockBoxLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LockBoxLib.h; sourceTree = ""; }; + 9AA913FF25CD452A00BD5E8B /* ResetSystemLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetSystemLib.h; sourceTree = ""; }; + 9AA9140025CD452A00BD5E8B /* VarCheckLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckLib.h; sourceTree = ""; }; + 9AA9140125CD452A00BD5E8B /* RecoveryLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecoveryLib.h; sourceTree = ""; }; + 9AA9140225CD452A00BD5E8B /* AuthVariableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AuthVariableLib.h; sourceTree = ""; }; + 9AA9140325CD452A00BD5E8B /* HiiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiLib.h; sourceTree = ""; }; + 9AA9140425CD452A00BD5E8B /* NonDiscoverableDeviceRegistrationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDeviceRegistrationLib.h; sourceTree = ""; }; + 9AA9140525CD452A00BD5E8B /* TcpIoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TcpIoLib.h; sourceTree = ""; }; + 9AA9140625CD452A00BD5E8B /* BootLogoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootLogoLib.h; sourceTree = ""; }; + 9AA9140725CD452A00BD5E8B /* PlatformVarCleanupLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformVarCleanupLib.h; sourceTree = ""; }; + 9AA9140825CD452A00BD5E8B /* CpuExceptionHandlerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuExceptionHandlerLib.h; sourceTree = ""; }; + 9AA9140925CD452A00BD5E8B /* CapsuleLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleLib.h; sourceTree = ""; }; + 9AA9140A25CD452A00BD5E8B /* S3Lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3Lib.h; sourceTree = ""; }; + 9AA9140B25CD452A00BD5E8B /* FileExplorerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileExplorerLib.h; sourceTree = ""; }; + 9AA9140D25CD452A00BD5E8B /* Ps2Policy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ps2Policy.h; sourceTree = ""; }; + 9AA9140E25CD452A00BD5E8B /* FileExplorer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileExplorer.h; sourceTree = ""; }; + 9AA9140F25CD452A00BD5E8B /* UfsHostControllerPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHostControllerPlatform.h; sourceTree = ""; }; + 9AA9141025CD452A00BD5E8B /* EsrtManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EsrtManagement.h; sourceTree = ""; }; + 9AA9141125CD452A00BD5E8B /* NonDiscoverableDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDevice.h; sourceTree = ""; }; + 9AA9141225CD452A00BD5E8B /* PlatformSpecificResetFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetFilter.h; sourceTree = ""; }; + 9AA9141325CD452A00BD5E8B /* IpmiProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiProtocol.h; sourceTree = ""; }; + 9AA9141425CD452A00BD5E8B /* SwapAddressRange.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SwapAddressRange.h; sourceTree = ""; }; + 9AA9141525CD452A00BD5E8B /* DebuggerConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebuggerConfiguration.h; sourceTree = ""; }; + 9AA9141625CD452A00BD5E8B /* IoMmu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoMmu.h; sourceTree = ""; }; + 9AA9141725CD452A00BD5E8B /* PlatformSpecificResetHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetHandler.h; sourceTree = ""; }; + 9AA9141825CD452A00BD5E8B /* LoadPe32Image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadPe32Image.h; sourceTree = ""; }; + 9AA9141925CD452A00BD5E8B /* VarCheck.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheck.h; sourceTree = ""; }; + 9AA9141A25CD452A00BD5E8B /* FirmwareManagementProgress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareManagementProgress.h; sourceTree = ""; }; + 9AA9141B25CD452A00BD5E8B /* AtaAtapiPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaAtapiPolicy.h; sourceTree = ""; }; + 9AA9141C25CD452A00BD5E8B /* SmmMemoryAttribute.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmMemoryAttribute.h; sourceTree = ""; }; + 9AA9141D25CD452A00BD5E8B /* SdMmcOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcOverride.h; sourceTree = ""; }; + 9AA9141E25CD452A00BD5E8B /* FormBrowserEx2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormBrowserEx2.h; sourceTree = ""; }; + 9AA9141F25CD452A00BD5E8B /* SmmSwapAddressRange.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmSwapAddressRange.h; sourceTree = ""; }; + 9AA9142025CD452A00BD5E8B /* UfsHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHostController.h; sourceTree = ""; }; + 9AA9142125CD452A00BD5E8B /* SmmFirmwareVolumeBlock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmFirmwareVolumeBlock.h; sourceTree = ""; }; + 9AA9142225CD452A00BD5E8B /* EbcVmTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcVmTest.h; sourceTree = ""; }; + 9AA9142325CD452A00BD5E8B /* PlatformLogo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformLogo.h; sourceTree = ""; }; + 9AA9142425CD452A00BD5E8B /* PeCoffImageEmulator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffImageEmulator.h; sourceTree = ""; }; + 9AA9142525CD452A00BD5E8B /* Print2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Print2.h; sourceTree = ""; }; + 9AA9142625CD452B00BD5E8B /* BootLogo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootLogo.h; sourceTree = ""; }; + 9AA9142725CD452B00BD5E8B /* SmmReadyToBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmReadyToBoot.h; sourceTree = ""; }; + 9AA9142825CD452B00BD5E8B /* SmmLegacyBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLegacyBoot.h; sourceTree = ""; }; + 9AA9142925CD452B00BD5E8B /* SmmVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmVariable.h; sourceTree = ""; }; + 9AA9142A25CD452B00BD5E8B /* SmmFaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmFaultTolerantWrite.h; sourceTree = ""; }; + 9AA9142B25CD452B00BD5E8B /* LockBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LockBox.h; sourceTree = ""; }; + 9AA9142C25CD452B00BD5E8B /* GenericMemoryTest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GenericMemoryTest.h; sourceTree = ""; }; + 9AA9142D25CD452B00BD5E8B /* DisplayProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DisplayProtocol.h; sourceTree = ""; }; + 9AA9142E25CD452B00BD5E8B /* BootLogo2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootLogo2.h; sourceTree = ""; }; + 9AA9142F25CD452B00BD5E8B /* FormBrowserEx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormBrowserEx.h; sourceTree = ""; }; + 9AA9143025CD452B00BD5E8B /* VariableLock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableLock.h; sourceTree = ""; }; + 9AA9143125CD452B00BD5E8B /* EbcSimpleDebugger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EbcSimpleDebugger.h; sourceTree = ""; }; + 9AA9143225CD452B00BD5E8B /* SmmVarCheck.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmVarCheck.h; sourceTree = ""; }; + 9AA9143325CD452B00BD5E8B /* SmmExitBootServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmExitBootServices.h; sourceTree = ""; }; + 9AA9143425CD452B00BD5E8B /* FaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; + 9AA9143625CD452B00BD5E8B /* EndOfS3Resume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EndOfS3Resume.h; sourceTree = ""; }; + 9AA9143725CD452B00BD5E8B /* MdeModulePkgTokenSpace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MdeModulePkgTokenSpace.h; sourceTree = ""; }; + 9AA9143825CD452B00BD5E8B /* LoadModuleAtFixedAddress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoadModuleAtFixedAddress.h; sourceTree = ""; }; + 9AA9143925CD452B00BD5E8B /* SystemNvDataGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SystemNvDataGuid.h; sourceTree = ""; }; + 9AA9143A25CD452B00BD5E8B /* ExtendedFirmwarePerformance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExtendedFirmwarePerformance.h; sourceTree = ""; }; + 9AA9143B25CD452B00BD5E8B /* MdeModuleHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MdeModuleHii.h; sourceTree = ""; }; + 9AA9143C25CD452B00BD5E8B /* NonDiscoverableDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverableDevice.h; sourceTree = ""; }; + 9AA9143D25CD452B00BD5E8B /* PlatformHasAcpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformHasAcpi.h; sourceTree = ""; }; + 9AA9143E25CD452B00BD5E8B /* SmmVariableCommon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmVariableCommon.h; sourceTree = ""; }; + 9AA9143F25CD452B00BD5E8B /* MemoryProfile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryProfile.h; sourceTree = ""; }; + 9AA9144025CD452B00BD5E8B /* RamDiskHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RamDiskHii.h; sourceTree = ""; }; + 9AA9144125CD452B00BD5E8B /* PcdDataBaseSignatureGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdDataBaseSignatureGuid.h; sourceTree = ""; }; + 9AA9144225CD452B00BD5E8B /* VariableIndexTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableIndexTable.h; sourceTree = ""; }; + 9AA9144325CD452B00BD5E8B /* ConsoleInDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConsoleInDevice.h; sourceTree = ""; }; + 9AA9144425CD452B00BD5E8B /* SerialPortLibVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortLibVendor.h; sourceTree = ""; }; + 9AA9144525CD452B00BD5E8B /* RecoveryDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecoveryDevice.h; sourceTree = ""; }; + 9AA9144625CD452B00BD5E8B /* IdleLoopEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IdleLoopEvent.h; sourceTree = ""; }; + 9AA9144725CD452B00BD5E8B /* Performance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Performance.h; sourceTree = ""; }; + 9AA9144825CD452B00BD5E8B /* UsbKeyBoardLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbKeyBoardLayout.h; sourceTree = ""; }; + 9AA9144925CD452B00BD5E8B /* ZeroGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ZeroGuid.h; sourceTree = ""; }; + 9AA9144A25CD452B00BD5E8B /* PcdDataBaseHobGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcdDataBaseHobGuid.h; sourceTree = ""; }; + 9AA9144B25CD452B00BD5E8B /* LzmaDecompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzmaDecompress.h; sourceTree = ""; }; + 9AA9144C25CD452B00BD5E8B /* Ip4Config2Hii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4Config2Hii.h; sourceTree = ""; }; + 9AA9144D25CD452B00BD5E8B /* PiSmmMemoryAttributesTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmMemoryAttributesTable.h; sourceTree = ""; }; + 9AA9144E25CD452B00BD5E8B /* VarErrorFlag.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarErrorFlag.h; sourceTree = ""; }; + 9AA9144F25CD452B00BD5E8B /* ConsoleOutDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConsoleOutDevice.h; sourceTree = ""; }; + 9AA9145025CD452B00BD5E8B /* SmmLockBox.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLockBox.h; sourceTree = ""; }; + 9AA9145125CD452B00BD5E8B /* BootScriptExecutorVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootScriptExecutorVariable.h; sourceTree = ""; }; + 9AA9145225CD452B00BD5E8B /* MtcVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MtcVendor.h; sourceTree = ""; }; + 9AA9145325CD452B00BD5E8B /* DriverSampleHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DriverSampleHii.h; sourceTree = ""; }; + 9AA9145425CD452B00BD5E8B /* StandardErrorDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StandardErrorDevice.h; sourceTree = ""; }; + 9AA9145525CD452B00BD5E8B /* MemoryStatusCodeRecord.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryStatusCodeRecord.h; sourceTree = ""; }; + 9AA9145625CD452B00BD5E8B /* S3SmmInitDone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3SmmInitDone.h; sourceTree = ""; }; + 9AA9145725CD452B00BD5E8B /* StatusCodeDataTypeDebug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeDebug.h; sourceTree = ""; }; + 9AA9145825CD452B00BD5E8B /* EventExitBootServiceFailed.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EventExitBootServiceFailed.h; sourceTree = ""; }; + 9AA9145925CD452B00BD5E8B /* S3StorageDeviceInitList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = S3StorageDeviceInitList.h; sourceTree = ""; }; + 9AA9145A25CD452B00BD5E8B /* CapsuleVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleVendor.h; sourceTree = ""; }; + 9AA9145B25CD452B00BD5E8B /* ConnectConInEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConnectConInEvent.h; sourceTree = ""; }; + 9AA9145C25CD452B00BD5E8B /* VlanConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VlanConfigHii.h; sourceTree = ""; }; + 9AA9145D25CD452B00BD5E8B /* SmiHandlerProfile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmiHandlerProfile.h; sourceTree = ""; }; + 9AA9145E25CD452B00BD5E8B /* PerformanceMeasurement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PerformanceMeasurement.h; sourceTree = ""; }; + 9AA9145F25CD452B00BD5E8B /* HiiBootMaintenanceFormset.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiBootMaintenanceFormset.h; sourceTree = ""; }; + 9AA9146025CD452B00BD5E8B /* PlatDriOverrideHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatDriOverrideHii.h; sourceTree = ""; }; + 9AA9146125CD452B00BD5E8B /* DebugMask.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugMask.h; sourceTree = ""; }; + 9AA9146225CD452B00BD5E8B /* VariableFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VariableFormat.h; sourceTree = ""; }; + 9AA9146325CD452B00BD5E8B /* AcpiS3Context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiS3Context.h; sourceTree = ""; }; + 9AA9146425CD452B00BD5E8B /* StatusCodeDataTypeVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeDataTypeVariable.h; sourceTree = ""; }; + 9AA9146525CD452B00BD5E8B /* Ip4IScsiConfigHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ip4IScsiConfigHii.h; sourceTree = ""; }; + 9AA9146625CD452B00BD5E8B /* Crc32GuidedSectionExtraction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Crc32GuidedSectionExtraction.h; sourceTree = ""; }; + 9AA9146725CD452B00BD5E8B /* TtyTerm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TtyTerm.h; sourceTree = ""; }; + 9AA9146825CD452B00BD5E8B /* PiSmmCommunicationRegionTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCommunicationRegionTable.h; sourceTree = ""; }; + 9AA9146925CD452B00BD5E8B /* StatusCodeCallbackGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StatusCodeCallbackGuid.h; sourceTree = ""; }; + 9AA9146A25CD452B00BD5E8B /* HiiResourceSampleHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiResourceSampleHii.h; sourceTree = ""; }; + 9AA9146B25CD452B00BD5E8B /* MemoryTypeInformation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryTypeInformation.h; sourceTree = ""; }; + 9AA9146C25CD452B00BD5E8B /* FirmwarePerformance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwarePerformance.h; sourceTree = ""; }; + 9AA9146D25CD452B00BD5E8B /* FaultTolerantWrite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FaultTolerantWrite.h; sourceTree = ""; }; + 9AA9146F25CD452B00BD5E8B /* SerialPortPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SerialPortPei.h; sourceTree = ""; }; + 9AA9147025CD452B00BD5E8B /* PlatformSpecificResetFilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetFilter.h; sourceTree = ""; }; + 9AA9147125CD452B00BD5E8B /* Debug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Debug.h; sourceTree = ""; }; + 9AA9147225CD452B00BD5E8B /* SdMmcHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcHostController.h; sourceTree = ""; }; + 9AA9147325CD452B00BD5E8B /* IoMmu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IoMmu.h; sourceTree = ""; }; + 9AA9147425CD452B00BD5E8B /* Usb2HostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Usb2HostController.h; sourceTree = ""; }; + 9AA9147525CD452B00BD5E8B /* AtaController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaController.h; sourceTree = ""; }; + 9AA9147625CD452B00BD5E8B /* AtaAhciController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaAhciController.h; sourceTree = ""; }; + 9AA9147725CD452B00BD5E8B /* PlatformSpecificResetHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetHandler.h; sourceTree = ""; }; + 9AA9147825CD452B00BD5E8B /* AtaPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaPassThru.h; sourceTree = ""; }; + 9AA9147925CD452B00BD5E8B /* IpmiPpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IpmiPpi.h; sourceTree = ""; }; + 9AA9147A25CD452B00BD5E8B /* UfsHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHostController.h; sourceTree = ""; }; + 9AA9147B25CD452B00BD5E8B /* PlatformSpecificResetNotification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSpecificResetNotification.h; sourceTree = ""; }; + 9AA9147C25CD452B00BD5E8B /* StorageSecurityCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StorageSecurityCommand.h; sourceTree = ""; }; + 9AA9147D25CD452B00BD5E8B /* SmmControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmControl.h; sourceTree = ""; }; + 9AA9147E25CD452B00BD5E8B /* SmmCommunication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCommunication.h; sourceTree = ""; }; + 9AA9147F25CD452B00BD5E8B /* NvmExpressPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPassThru.h; sourceTree = ""; }; + 9AA9148025CD452B00BD5E8B /* UsbHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHostController.h; sourceTree = ""; }; + 9AA9148125CD452B00BD5E8B /* UsbIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbIo.h; sourceTree = ""; }; + 9AA9148225CD452B00BD5E8B /* NvmExpressHostController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressHostController.h; sourceTree = ""; }; + 9AA9148325CD452B00BD5E8B /* UsbController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbController.h; sourceTree = ""; }; + 9AA9148425CD452B00BD5E8B /* SmmAccess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmAccess.h; sourceTree = ""; }; + 9AA9148525CD452B00BD5E8B /* CapsuleOnDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleOnDisk.h; sourceTree = ""; }; + 9AA9148625CD452B00BD5E8B /* PostBootScriptTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PostBootScriptTable.h; sourceTree = ""; }; + 9AA9148725CD452B00BD5E8B /* SecPerformance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SecPerformance.h; sourceTree = ""; }; + 9AA9148825CD452B00BD5E8B /* MdeModulePkgExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkgExtra.uni; sourceTree = ""; }; + 9AA9148C25CD452B00BD5E8B /* SdBlockIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdBlockIoPei.c; sourceTree = ""; }; + 9AA9148D25CD452B00BD5E8B /* SdHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdHcMem.c; sourceTree = ""; }; + 9AA9148E25CD452B00BD5E8B /* SdBlockIoPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdBlockIoPeiExtra.uni; sourceTree = ""; }; + 9AA9148F25CD452B00BD5E8B /* SdHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdHci.h; sourceTree = ""; }; + 9AA9149025CD452B00BD5E8B /* SdBlockIoPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdBlockIoPei.uni; sourceTree = ""; }; + 9AA9149125CD452B00BD5E8B /* SdBlockIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdBlockIoPei.inf; sourceTree = ""; }; + 9AA9149225CD452B00BD5E8B /* SdHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdHcMem.h; sourceTree = ""; }; + 9AA9149325CD452B00BD5E8B /* SdBlockIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdBlockIoPei.h; sourceTree = ""; }; + 9AA9149425CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA9149525CD452B00BD5E8B /* SdHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdHci.c; sourceTree = ""; }; + 9AA9149725CD452B00BD5E8B /* EmmcHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcHcMem.c; sourceTree = ""; }; + 9AA9149825CD452B00BD5E8B /* EmmcHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcHci.c; sourceTree = ""; }; + 9AA9149925CD452B00BD5E8B /* EmmcBlockIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcBlockIoPei.c; sourceTree = ""; }; + 9AA9149A25CD452B00BD5E8B /* EmmcBlockIoPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcBlockIoPeiExtra.uni; sourceTree = ""; }; + 9AA9149B25CD452B00BD5E8B /* EmmcHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcHcMem.h; sourceTree = ""; }; + 9AA9149C25CD452B00BD5E8B /* EmmcHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcHci.h; sourceTree = ""; }; + 9AA9149D25CD452B00BD5E8B /* EmmcBlockIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcBlockIoPei.h; sourceTree = ""; }; + 9AA9149E25CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA9149F25CD452B00BD5E8B /* EmmcBlockIoPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcBlockIoPei.uni; sourceTree = ""; }; + 9AA914A025CD452B00BD5E8B /* EmmcBlockIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcBlockIoPei.inf; sourceTree = ""; }; + 9AA914A225CD452B00BD5E8B /* SdBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdBlockIo.c; sourceTree = ""; }; + 9AA914A325CD452B00BD5E8B /* SdDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdDxe.uni; sourceTree = ""; }; + 9AA914A425CD452B00BD5E8B /* SdDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdDxe.c; sourceTree = ""; }; + 9AA914A525CD452B00BD5E8B /* SdDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdDxe.inf; sourceTree = ""; }; + 9AA914A625CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA914A725CD452B00BD5E8B /* SdDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdDiskInfo.h; sourceTree = ""; }; + 9AA914A825CD452B00BD5E8B /* SdBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdBlockIo.h; sourceTree = ""; }; + 9AA914A925CD452B00BD5E8B /* SdDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdDxe.h; sourceTree = ""; }; + 9AA914AA25CD452B00BD5E8B /* SdDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdDxeExtra.uni; sourceTree = ""; }; + 9AA914AB25CD452B00BD5E8B /* SdDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdDiskInfo.c; sourceTree = ""; }; + 9AA914AD25CD452B00BD5E8B /* EmmcDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcDxe.h; sourceTree = ""; }; + 9AA914AE25CD452B00BD5E8B /* EmmcDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcDiskInfo.h; sourceTree = ""; }; + 9AA914AF25CD452B00BD5E8B /* EmmcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcDxe.uni; sourceTree = ""; }; + 9AA914B025CD452B00BD5E8B /* EmmcBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcBlockIo.c; sourceTree = ""; }; + 9AA914B125CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA914B225CD452B00BD5E8B /* EmmcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcDxe.inf; sourceTree = ""; }; + 9AA914B325CD452B00BD5E8B /* EmmcDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcDxe.c; sourceTree = ""; }; + 9AA914B425CD452B00BD5E8B /* EmmcDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcDiskInfo.c; sourceTree = ""; }; + 9AA914B525CD452B00BD5E8B /* EmmcBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmmcBlockIo.h; sourceTree = ""; }; + 9AA914B625CD452B00BD5E8B /* EmmcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EmmcDxeExtra.uni; sourceTree = ""; }; + 9AA914B925CD452B00BD5E8B /* AtapiPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtapiPeim.h; sourceTree = ""; }; + 9AA914BA25CD452B00BD5E8B /* IdeBusPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeBusPei.uni; sourceTree = ""; }; + 9AA914BB25CD452B00BD5E8B /* IdeBusPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeBusPeiExtra.uni; sourceTree = ""; }; + 9AA914BC25CD452B00BD5E8B /* IdeBusPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IdeBusPei.inf; sourceTree = ""; }; + 9AA914BD25CD452B00BD5E8B /* AtapiPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtapiPeim.c; sourceTree = ""; }; + 9AA914BF25CD452B00BD5E8B /* SdMmcPciHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHci.c; sourceTree = ""; }; + 9AA914C025CD452B00BD5E8B /* SdMmcPciHcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcDxeExtra.uni; sourceTree = ""; }; + 9AA914C125CD452B00BD5E8B /* SdDevice.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdDevice.c; sourceTree = ""; }; + 9AA914C225CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA914C325CD452B00BD5E8B /* SdMmcPciHcDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHcDxe.h; sourceTree = ""; }; + 9AA914C425CD452B00BD5E8B /* SdMmcPciHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHci.h; sourceTree = ""; }; + 9AA914C525CD452B00BD5E8B /* EmmcDevice.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EmmcDevice.c; sourceTree = ""; }; + 9AA914C625CD452B00BD5E8B /* SdMmcPciHcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcDxe.inf; sourceTree = ""; }; + 9AA914C725CD452B00BD5E8B /* SdMmcPciHcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcDxe.uni; sourceTree = ""; }; + 9AA914C825CD452B00BD5E8B /* SdMmcPciHcDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHcDxe.c; sourceTree = ""; }; + 9AA914CA25CD452B00BD5E8B /* IncompatiblePciDeviceSupportDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IncompatiblePciDeviceSupportDxe.inf; sourceTree = ""; }; + 9AA914CB25CD452B00BD5E8B /* IncompatiblePciDeviceSupportExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IncompatiblePciDeviceSupportExtra.uni; sourceTree = ""; }; + 9AA914CC25CD452B00BD5E8B /* IncompatiblePciDeviceSupport.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IncompatiblePciDeviceSupport.uni; sourceTree = ""; }; + 9AA914CD25CD452B00BD5E8B /* IncompatiblePciDeviceSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IncompatiblePciDeviceSupport.c; sourceTree = ""; }; + 9AA914CF25CD452B00BD5E8B /* PciEnumerator.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciEnumerator.c; sourceTree = ""; }; + 9AA914D025CD452B00BD5E8B /* PciDriverOverride.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciDriverOverride.c; sourceTree = ""; }; + 9AA914D125CD452B00BD5E8B /* PciResourceSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciResourceSupport.c; sourceTree = ""; }; + 9AA914D225CD452B00BD5E8B /* PciDeviceSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciDeviceSupport.c; sourceTree = ""; }; + 9AA914D325CD452B00BD5E8B /* PciIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciIo.c; sourceTree = ""; }; + 9AA914D425CD452B00BD5E8B /* PciCommand.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCommand.c; sourceTree = ""; }; + 9AA914D525CD452B00BD5E8B /* PciHotPlugSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciHotPlugSupport.c; sourceTree = ""; }; + 9AA914D625CD452B00BD5E8B /* PciOptionRomSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciOptionRomSupport.h; sourceTree = ""; }; + 9AA914D725CD452B00BD5E8B /* PciRomTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciRomTable.h; sourceTree = ""; }; + 9AA914D825CD452B00BD5E8B /* PciEnumeratorSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciEnumeratorSupport.c; sourceTree = ""; }; + 9AA914D925CD452B00BD5E8B /* PciLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciLib.h; sourceTree = ""; }; + 9AA914DA25CD452B00BD5E8B /* PciBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciBusDxeExtra.uni; sourceTree = ""; }; + 9AA914DB25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA914DC25CD452B00BD5E8B /* PciBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciBus.c; sourceTree = ""; }; + 9AA914DD25CD452B00BD5E8B /* PciPowerManagement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciPowerManagement.c; sourceTree = ""; }; + 9AA914DE25CD452B00BD5E8B /* PciResourceSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciResourceSupport.h; sourceTree = ""; }; + 9AA914DF25CD452B00BD5E8B /* PciDriverOverride.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciDriverOverride.h; sourceTree = ""; }; + 9AA914E025CD452B00BD5E8B /* PciEnumerator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumerator.h; sourceTree = ""; }; + 9AA914E125CD452B00BD5E8B /* PciCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCommand.h; sourceTree = ""; }; + 9AA914E225CD452B00BD5E8B /* PciIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciIo.h; sourceTree = ""; }; + 9AA914E325CD452B00BD5E8B /* PciDeviceSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciDeviceSupport.h; sourceTree = ""; }; + 9AA914E425CD452B00BD5E8B /* PciRomTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciRomTable.c; sourceTree = ""; }; + 9AA914E525CD452B00BD5E8B /* PciBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciBusDxe.inf; sourceTree = ""; }; + 9AA914E625CD452B00BD5E8B /* PciOptionRomSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciOptionRomSupport.c; sourceTree = ""; }; + 9AA914E725CD452B00BD5E8B /* PciHotPlugSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHotPlugSupport.h; sourceTree = ""; }; + 9AA914E825CD452B00BD5E8B /* PciPowerManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciPowerManagement.h; sourceTree = ""; }; + 9AA914E925CD452B00BD5E8B /* PciBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciBus.h; sourceTree = ""; }; + 9AA914EA25CD452B00BD5E8B /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + 9AA914EB25CD452B00BD5E8B /* PciBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciBusDxe.uni; sourceTree = ""; }; + 9AA914EC25CD452B00BD5E8B /* PciEnumeratorSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumeratorSupport.h; sourceTree = ""; }; + 9AA914ED25CD452B00BD5E8B /* PciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciLib.c; sourceTree = ""; }; + 9AA914EF25CD452B00BD5E8B /* XhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciSched.h; sourceTree = ""; }; + 9AA914F025CD452B00BD5E8B /* XhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciPei.inf; sourceTree = ""; }; + 9AA914F125CD452B00BD5E8B /* XhcPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhcPeim.h; sourceTree = ""; }; + 9AA914F225CD452B00BD5E8B /* XhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciPei.uni; sourceTree = ""; }; + 9AA914F325CD452B00BD5E8B /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + 9AA914F425CD452B00BD5E8B /* XhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhciSched.c; sourceTree = ""; }; + 9AA914F525CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA914F625CD452B00BD5E8B /* XhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciPeiExtra.uni; sourceTree = ""; }; + 9AA914F725CD452B00BD5E8B /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + 9AA914F825CD452B00BD5E8B /* XhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciReg.h; sourceTree = ""; }; + 9AA914F925CD452B00BD5E8B /* XhcPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhcPeim.c; sourceTree = ""; }; + 9AA914FB25CD452B00BD5E8B /* EhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciPeiExtra.uni; sourceTree = ""; }; + 9AA914FC25CD452B00BD5E8B /* EhciUrb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciUrb.h; sourceTree = ""; }; + 9AA914FD25CD452B00BD5E8B /* EhcPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhcPeim.h; sourceTree = ""; }; + 9AA914FE25CD452B00BD5E8B /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + 9AA914FF25CD452B00BD5E8B /* EhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciSched.c; sourceTree = ""; }; + 9AA9150025CD452B00BD5E8B /* EhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciPei.uni; sourceTree = ""; }; + 9AA9150125CD452B00BD5E8B /* EhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciPei.inf; sourceTree = ""; }; + 9AA9150225CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA9150325CD452B00BD5E8B /* EhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciReg.h; sourceTree = ""; }; + 9AA9150425CD452B00BD5E8B /* EhcPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhcPeim.c; sourceTree = ""; }; + 9AA9150525CD452B00BD5E8B /* EhciUrb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciUrb.c; sourceTree = ""; }; + 9AA9150625CD452B00BD5E8B /* EhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciSched.h; sourceTree = ""; }; + 9AA9150725CD452B00BD5E8B /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + 9AA9150925CD452B00BD5E8B /* UfsPciHcDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcDxeExtra.uni; sourceTree = ""; }; + 9AA9150A25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9150B25CD452B00BD5E8B /* UfsPciHcDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPciHcDxe.c; sourceTree = ""; }; + 9AA9150C25CD452B00BD5E8B /* UfsPciHcDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcDxe.uni; sourceTree = ""; }; + 9AA9150D25CD452B00BD5E8B /* UfsPciHcDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPciHcDxe.h; sourceTree = ""; }; + 9AA9150E25CD452B00BD5E8B /* UfsPciHcDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcDxe.inf; sourceTree = ""; }; + 9AA9151025CD452B00BD5E8B /* UhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciSched.h; sourceTree = ""; }; + 9AA9151125CD452B00BD5E8B /* UhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciReg.h; sourceTree = ""; }; + 9AA9151225CD452B00BD5E8B /* UhciDebug.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciDebug.c; sourceTree = ""; }; + 9AA9151325CD452B00BD5E8B /* UhciQueue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciQueue.h; sourceTree = ""; }; + 9AA9151425CD452B00BD5E8B /* Uhci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Uhci.c; sourceTree = ""; }; + 9AA9151525CD452B00BD5E8B /* UhciDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciDxeExtra.uni; sourceTree = ""; }; + 9AA9151625CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9151725CD452B00BD5E8B /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + 9AA9151825CD452B00BD5E8B /* UhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciSched.c; sourceTree = ""; }; + 9AA9151925CD452B00BD5E8B /* UhciDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciDxe.inf; sourceTree = ""; }; + 9AA9151A25CD452B00BD5E8B /* UhciDebug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhciDebug.h; sourceTree = ""; }; + 9AA9151B25CD452B00BD5E8B /* UhciReg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciReg.c; sourceTree = ""; }; + 9AA9151C25CD452B00BD5E8B /* UhciDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciDxe.uni; sourceTree = ""; }; + 9AA9151D25CD452B00BD5E8B /* UhciQueue.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhciQueue.c; sourceTree = ""; }; + 9AA9151E25CD452B00BD5E8B /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + 9AA9151F25CD452B00BD5E8B /* Uhci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Uhci.h; sourceTree = ""; }; + 9AA9152025CD452B00BD5E8B /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + 9AA9152225CD452B00BD5E8B /* DevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; + 9AA9152325CD452B00BD5E8B /* NvmExpressPeiHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiHci.h; sourceTree = ""; }; + 9AA9152425CD452B00BD5E8B /* NvmExpressPeiStorageSecurity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiStorageSecurity.h; sourceTree = ""; }; + 9AA9152525CD452B00BD5E8B /* NvmExpressPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPei.c; sourceTree = ""; }; + 9AA9152625CD452B00BD5E8B /* NvmExpressPeiBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiBlockIo.c; sourceTree = ""; }; + 9AA9152725CD452B00BD5E8B /* NvmExpressPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressPeiExtra.uni; sourceTree = ""; }; + 9AA9152825CD452B00BD5E8B /* NvmExpressPeiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiPassThru.h; sourceTree = ""; }; + 9AA9152925CD452B00BD5E8B /* NvmExpressPeiS3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiS3.c; sourceTree = ""; }; + 9AA9152A25CD452B00BD5E8B /* NvmExpressPeiStorageSecurity.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiStorageSecurity.c; sourceTree = ""; }; + 9AA9152B25CD452B00BD5E8B /* NvmExpressPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPei.h; sourceTree = ""; }; + 9AA9152C25CD452B00BD5E8B /* NvmExpressPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressPei.inf; sourceTree = ""; }; + 9AA9152D25CD452B00BD5E8B /* NvmExpressPeiHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiHci.c; sourceTree = ""; }; + 9AA9152E25CD452B00BD5E8B /* NvmExpressPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressPei.uni; sourceTree = ""; }; + 9AA9152F25CD452B00BD5E8B /* NvmExpressPeiBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressPeiBlockIo.h; sourceTree = ""; }; + 9AA9153025CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA9153125CD452B00BD5E8B /* NvmExpressPeiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPeiPassThru.c; sourceTree = ""; }; + 9AA9153325CD452B00BD5E8B /* SdMmcPciHcPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcPei.inf; sourceTree = ""; }; + 9AA9153425CD452B00BD5E8B /* SdMmcPciHcPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdMmcPciHcPei.c; sourceTree = ""; }; + 9AA9153525CD452B00BD5E8B /* SdMmcPciHcPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcPei.uni; sourceTree = ""; }; + 9AA9153625CD452B00BD5E8B /* SdMmcPciHcPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SdMmcPciHcPeiExtra.uni; sourceTree = ""; }; + 9AA9153725CD452B00BD5E8B /* SdMmcPciHcPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SdMmcPciHcPei.h; sourceTree = ""; }; + 9AA9153925CD452B00BD5E8B /* SataController.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SataController.c; sourceTree = ""; }; + 9AA9153A25CD452B00BD5E8B /* SataControllerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SataControllerDxe.uni; sourceTree = ""; }; + 9AA9153B25CD452B00BD5E8B /* SataControllerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SataControllerDxeExtra.uni; sourceTree = ""; }; + 9AA9153C25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9153D25CD452B00BD5E8B /* SataControllerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SataControllerDxe.inf; sourceTree = ""; }; + 9AA9153E25CD452B00BD5E8B /* SataController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SataController.h; sourceTree = ""; }; + 9AA9154025CD452B00BD5E8B /* PciSioSerialDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciSioSerialDxe.inf; sourceTree = ""; }; + 9AA9154125CD452B00BD5E8B /* Serial.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Serial.c; sourceTree = ""; }; + 9AA9154225CD452B00BD5E8B /* SerialIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SerialIo.c; sourceTree = ""; }; + 9AA9154325CD452B00BD5E8B /* PciSioSerialDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciSioSerialDxe.uni; sourceTree = ""; }; + 9AA9154425CD452B00BD5E8B /* PciSioSerialDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciSioSerialDxeExtra.uni; sourceTree = ""; }; + 9AA9154525CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9154625CD452B00BD5E8B /* Serial.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Serial.h; sourceTree = ""; }; + 9AA9154825CD452B00BD5E8B /* PciRootBridgeIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciRootBridgeIo.c; sourceTree = ""; }; + 9AA9154925CD452B00BD5E8B /* PciHostResource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostResource.h; sourceTree = ""; }; + 9AA9154A25CD452B00BD5E8B /* PciHostBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciHostBridge.h; sourceTree = ""; }; + 9AA9154B25CD452B00BD5E8B /* PciRootBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciRootBridge.h; sourceTree = ""; }; + 9AA9154C25CD452B00BD5E8B /* PciHostBridgeDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciHostBridgeDxe.inf; sourceTree = ""; }; + 9AA9154D25CD452B00BD5E8B /* PciHostBridge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciHostBridge.c; sourceTree = ""; }; + 9AA9154F25CD452B00BD5E8B /* XhciDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciDxeExtra.uni; sourceTree = ""; }; + 9AA9155025CD452B00BD5E8B /* XhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciSched.h; sourceTree = ""; }; + 9AA9155125CD452B00BD5E8B /* Xhci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Xhci.c; sourceTree = ""; }; + 9AA9155225CD452B00BD5E8B /* XhciReg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhciReg.c; sourceTree = ""; }; + 9AA9155325CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9155425CD452B00BD5E8B /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + 9AA9155525CD452B00BD5E8B /* XhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = XhciSched.c; sourceTree = ""; }; + 9AA9155625CD452B00BD5E8B /* XhciDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciDxe.inf; sourceTree = ""; }; + 9AA9155725CD452B00BD5E8B /* XhciDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = XhciDxe.uni; sourceTree = ""; }; + 9AA9155825CD452B00BD5E8B /* Xhci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Xhci.h; sourceTree = ""; }; + 9AA9155925CD452B00BD5E8B /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + 9AA9155A25CD452B00BD5E8B /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + 9AA9155B25CD452B00BD5E8B /* XhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XhciReg.h; sourceTree = ""; }; + 9AA9155D25CD452B00BD5E8B /* UhcPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UhcPeim.c; sourceTree = ""; }; + 9AA9155E25CD452B00BD5E8B /* UhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciPei.inf; sourceTree = ""; }; + 9AA9155F25CD452B00BD5E8B /* UhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciPei.uni; sourceTree = ""; }; + 9AA9156025CD452B00BD5E8B /* UhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UhciPeiExtra.uni; sourceTree = ""; }; + 9AA9156125CD452B00BD5E8B /* UhcPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UhcPeim.h; sourceTree = ""; }; + 9AA9156225CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA9156425CD452B00BD5E8B /* NvmExpressHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressHci.c; sourceTree = ""; }; + 9AA9156525CD452B00BD5E8B /* NvmExpressPassthru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressPassthru.c; sourceTree = ""; }; + 9AA9156625CD452B00BD5E8B /* NvmExpressBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressBlockIo.c; sourceTree = ""; }; + 9AA9156725CD452B00BD5E8B /* NvmExpressDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressDxe.inf; sourceTree = ""; }; + 9AA9156825CD452B00BD5E8B /* NvmExpressDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressDxe.uni; sourceTree = ""; }; + 9AA9156925CD452B00BD5E8B /* NvmExpress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpress.c; sourceTree = ""; }; + 9AA9156A25CD452B00BD5E8B /* NvmExpressDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressDiskInfo.h; sourceTree = ""; }; + 9AA9156B25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9156C25CD452B00BD5E8B /* NvmExpressBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressBlockIo.h; sourceTree = ""; }; + 9AA9156D25CD452B00BD5E8B /* NvmExpressHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpressHci.h; sourceTree = ""; }; + 9AA9156E25CD452B00BD5E8B /* NvmExpressDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = NvmExpressDxeExtra.uni; sourceTree = ""; }; + 9AA9156F25CD452B00BD5E8B /* NvmExpressDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NvmExpressDiskInfo.c; sourceTree = ""; }; + 9AA9157025CD452B00BD5E8B /* NvmExpress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NvmExpress.h; sourceTree = ""; }; + 9AA9157225CD452B00BD5E8B /* NonDiscoverablePciDeviceDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NonDiscoverablePciDeviceDxe.inf; sourceTree = ""; }; + 9AA9157325CD452B00BD5E8B /* NonDiscoverablePciDeviceIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NonDiscoverablePciDeviceIo.c; sourceTree = ""; }; + 9AA9157425CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9157525CD452B00BD5E8B /* NonDiscoverablePciDeviceDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NonDiscoverablePciDeviceDxe.c; sourceTree = ""; }; + 9AA9157625CD452B00BD5E8B /* NonDiscoverablePciDeviceIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NonDiscoverablePciDeviceIo.h; sourceTree = ""; }; + 9AA9157825CD452B00BD5E8B /* EhciReg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciReg.c; sourceTree = ""; }; + 9AA9157925CD452B00BD5E8B /* EhciUrb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciUrb.h; sourceTree = ""; }; + 9AA9157A25CD452B00BD5E8B /* EhciDebug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciDebug.h; sourceTree = ""; }; + 9AA9157B25CD452B00BD5E8B /* EhciDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciDxe.uni; sourceTree = ""; }; + 9AA9157C25CD452B00BD5E8B /* Ehci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ehci.h; sourceTree = ""; }; + 9AA9157D25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9157E25CD452B00BD5E8B /* EhciDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciDxe.inf; sourceTree = ""; }; + 9AA9157F25CD452B00BD5E8B /* UsbHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHcMem.h; sourceTree = ""; }; + 9AA9158025CD452B00BD5E8B /* EhciSched.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciSched.c; sourceTree = ""; }; + 9AA9158125CD452B00BD5E8B /* EhciDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = EhciDxeExtra.uni; sourceTree = ""; }; + 9AA9158225CD452B00BD5E8B /* Ehci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ehci.c; sourceTree = ""; }; + 9AA9158325CD452B00BD5E8B /* EhciDebug.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciDebug.c; sourceTree = ""; }; + 9AA9158425CD452B00BD5E8B /* EhciReg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciReg.h; sourceTree = ""; }; + 9AA9158525CD452B00BD5E8B /* EhciUrb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EhciUrb.c; sourceTree = ""; }; + 9AA9158625CD452B00BD5E8B /* EhciSched.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EhciSched.h; sourceTree = ""; }; + 9AA9158725CD452B00BD5E8B /* UsbHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHcMem.c; sourceTree = ""; }; + 9AA9158825CD452B00BD5E8B /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + 9AA9158A25CD452B00BD5E8B /* UfsPciHcPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcPei.uni; sourceTree = ""; }; + 9AA9158B25CD452B00BD5E8B /* UfsPciHcPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcPei.inf; sourceTree = ""; }; + 9AA9158C25CD452B00BD5E8B /* UfsPciHcPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPciHcPei.h; sourceTree = ""; }; + 9AA9158D25CD452B00BD5E8B /* UfsPciHcPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPciHcPeiExtra.uni; sourceTree = ""; }; + 9AA9158E25CD452B00BD5E8B /* UfsPciHcPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPciHcPei.c; sourceTree = ""; }; + 9AA9159125CD452B00BD5E8B /* IsaBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaBusDxeExtra.uni; sourceTree = ""; }; + 9AA9159225CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9159325CD452B00BD5E8B /* IsaBusDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IsaBusDxe.h; sourceTree = ""; }; + 9AA9159425CD452B00BD5E8B /* IsaBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaBusDxe.inf; sourceTree = ""; }; + 9AA9159525CD452B00BD5E8B /* IsaBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = IsaBusDxe.uni; sourceTree = ""; }; + 9AA9159625CD452B00BD5E8B /* IsaBusDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IsaBusDxe.c; sourceTree = ""; }; + 9AA9159725CD452B00BD5E8B /* ComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ComponentName.h; sourceTree = ""; }; + 9AA9159925CD452B00BD5E8B /* Ps2KbdTextIn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2KbdTextIn.c; sourceTree = ""; }; + 9AA9159A25CD452B00BD5E8B /* Ps2KeyboardDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2KeyboardDxeExtra.uni; sourceTree = ""; }; + 9AA9159B25CD452B00BD5E8B /* Ps2Keyboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2Keyboard.c; sourceTree = ""; }; + 9AA9159C25CD452B00BD5E8B /* Ps2KbdCtrller.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2KbdCtrller.c; sourceTree = ""; }; + 9AA9159D25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9159E25CD452B00BD5E8B /* Ps2KeyboardDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2KeyboardDxe.inf; sourceTree = ""; }; + 9AA9159F25CD452B00BD5E8B /* Ps2KeyboardDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2KeyboardDxe.uni; sourceTree = ""; }; + 9AA915A025CD452B00BD5E8B /* Ps2Keyboard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ps2Keyboard.h; sourceTree = ""; }; + 9AA915A225CD452B00BD5E8B /* Ps2Mouse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ps2Mouse.c; sourceTree = ""; }; + 9AA915A325CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA915A425CD452B00BD5E8B /* CommPs2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommPs2.h; sourceTree = ""; }; + 9AA915A525CD452B00BD5E8B /* Ps2Mouse.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ps2Mouse.h; sourceTree = ""; }; + 9AA915A625CD452B00BD5E8B /* Ps2MouseDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2MouseDxeExtra.uni; sourceTree = ""; }; + 9AA915A725CD452B00BD5E8B /* Ps2MouseDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2MouseDxe.inf; sourceTree = ""; }; + 9AA915A825CD452B00BD5E8B /* CommPs2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CommPs2.c; sourceTree = ""; }; + 9AA915A925CD452B00BD5E8B /* Ps2MouseDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Ps2MouseDxe.uni; sourceTree = ""; }; + 9AA915AC25CD452B00BD5E8B /* ScsiDiskDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiDiskDxe.inf; sourceTree = ""; }; + 9AA915AD25CD452B00BD5E8B /* ScsiDisk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScsiDisk.c; sourceTree = ""; }; + 9AA915AE25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA915AF25CD452B00BD5E8B /* ScsiDisk.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiDisk.uni; sourceTree = ""; }; + 9AA915B025CD452B00BD5E8B /* ScsiDiskExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiDiskExtra.uni; sourceTree = ""; }; + 9AA915B125CD452B00BD5E8B /* ScsiDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiDisk.h; sourceTree = ""; }; + 9AA915B325CD452B00BD5E8B /* ScsiBusExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiBusExtra.uni; sourceTree = ""; }; + 9AA915B425CD452B00BD5E8B /* ScsiBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ScsiBus.c; sourceTree = ""; }; + 9AA915B525CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA915B625CD452B00BD5E8B /* ScsiBus.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiBus.uni; sourceTree = ""; }; + 9AA915B725CD452B00BD5E8B /* ScsiBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ScsiBusDxe.inf; sourceTree = ""; }; + 9AA915B825CD452B00BD5E8B /* ScsiBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScsiBus.h; sourceTree = ""; }; + 9AA915BB25CD452B00BD5E8B /* UfsBlockIoPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsBlockIoPei.inf; sourceTree = ""; }; + 9AA915BC25CD452B00BD5E8B /* UfsHcMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsHcMem.c; sourceTree = ""; }; + 9AA915BD25CD452B00BD5E8B /* UfsBlockIoPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsBlockIoPeiExtra.uni; sourceTree = ""; }; + 9AA915BE25CD452B00BD5E8B /* UfsHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsHci.c; sourceTree = ""; }; + 9AA915BF25CD452B00BD5E8B /* UfsBlockIoPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsBlockIoPei.uni; sourceTree = ""; }; + 9AA915C025CD452B00BD5E8B /* UfsBlockIoPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsBlockIoPei.c; sourceTree = ""; }; + 9AA915C125CD452B00BD5E8B /* UfsHcMem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHcMem.h; sourceTree = ""; }; + 9AA915C225CD452B00BD5E8B /* UfsHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsHci.h; sourceTree = ""; }; + 9AA915C325CD452B00BD5E8B /* UfsBlockIoPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsBlockIoPei.h; sourceTree = ""; }; + 9AA915C425CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA915C625CD452B00BD5E8B /* UfsPassThru.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPassThru.uni; sourceTree = ""; }; + 9AA915C725CD452B00BD5E8B /* UfsPassThruHci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPassThruHci.c; sourceTree = ""; }; + 9AA915C825CD452B00BD5E8B /* UfsPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPassThru.h; sourceTree = ""; }; + 9AA915C925CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA915CA25CD452B00BD5E8B /* UfsDevConfigProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsDevConfigProtocol.c; sourceTree = ""; }; + 9AA915CB25CD452B00BD5E8B /* UfsPassThruHci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UfsPassThruHci.h; sourceTree = ""; }; + 9AA915CC25CD452B00BD5E8B /* UfsPassThruDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPassThruDxe.inf; sourceTree = ""; }; + 9AA915CD25CD452B00BD5E8B /* UfsPassThruExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UfsPassThruExtra.uni; sourceTree = ""; }; + 9AA915CE25CD452B00BD5E8B /* UfsPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UfsPassThru.c; sourceTree = ""; }; + 9AA915D125CD452B00BD5E8B /* I2cBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cBusDxeExtra.uni; sourceTree = ""; }; + 9AA915D225CD452B00BD5E8B /* I2cDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cDxeExtra.uni; sourceTree = ""; }; + 9AA915D325CD452B00BD5E8B /* I2cDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cDxe.inf; sourceTree = ""; }; + 9AA915D425CD452B00BD5E8B /* I2cBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = I2cBus.c; sourceTree = ""; }; + 9AA915D525CD452B00BD5E8B /* I2cDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = I2cDxe.h; sourceTree = ""; }; + 9AA915D625CD452B00BD5E8B /* I2cDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cDxe.uni; sourceTree = ""; }; + 9AA915D725CD452B00BD5E8B /* I2cHost.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = I2cHost.c; sourceTree = ""; }; + 9AA915D825CD452B00BD5E8B /* I2cBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cBusDxe.uni; sourceTree = ""; }; + 9AA915D925CD452B00BD5E8B /* I2cBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cBusDxe.inf; sourceTree = ""; }; + 9AA915DA25CD452B00BD5E8B /* I2cHostDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cHostDxe.inf; sourceTree = ""; }; + 9AA915DB25CD452B00BD5E8B /* I2cHostDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cHostDxeExtra.uni; sourceTree = ""; }; + 9AA915DC25CD452B00BD5E8B /* I2cDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = I2cDxe.c; sourceTree = ""; }; + 9AA915DD25CD452B00BD5E8B /* I2cHostDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = I2cHostDxe.uni; sourceTree = ""; }; + 9AA915E025CD452B00BD5E8B /* UsbMouseDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseDxeExtra.uni; sourceTree = ""; }; + 9AA915E125CD452B00BD5E8B /* UsbMouse.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMouse.h; sourceTree = ""; }; + 9AA915E225CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA915E325CD452B00BD5E8B /* UsbMouseDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseDxe.inf; sourceTree = ""; }; + 9AA915E425CD452B00BD5E8B /* UsbMouse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMouse.c; sourceTree = ""; }; + 9AA915E525CD452B00BD5E8B /* MouseHid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MouseHid.c; sourceTree = ""; }; + 9AA915E625CD452B00BD5E8B /* UsbMouseDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseDxe.uni; sourceTree = ""; }; + 9AA915E825CD452B00BD5E8B /* UsbMouseAbsolutePointerDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxeExtra.uni; sourceTree = ""; }; + 9AA915E925CD452B00BD5E8B /* UsbMouseAbsolutePointer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMouseAbsolutePointer.c; sourceTree = ""; }; + 9AA915EA25CD452B00BD5E8B /* UsbMouseAbsolutePointerDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxe.inf; sourceTree = ""; }; + 9AA915EB25CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA915EC25CD452B00BD5E8B /* UsbMouseAbsolutePointerDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMouseAbsolutePointerDxe.uni; sourceTree = ""; }; + 9AA915ED25CD452B00BD5E8B /* UsbMouseAbsolutePointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMouseAbsolutePointer.h; sourceTree = ""; }; + 9AA915EE25CD452B00BD5E8B /* MouseHid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MouseHid.c; sourceTree = ""; }; + 9AA915F025CD452B00BD5E8B /* UsbEnumer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbEnumer.h; sourceTree = ""; }; + 9AA915F125CD452B00BD5E8B /* UsbBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusDxe.uni; sourceTree = ""; }; + 9AA915F225CD452B00BD5E8B /* UsbDesc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbDesc.c; sourceTree = ""; }; + 9AA915F325CD452B00BD5E8B /* UsbBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusDxe.inf; sourceTree = ""; }; + 9AA915F425CD452B00BD5E8B /* UsbHub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHub.h; sourceTree = ""; }; + 9AA915F525CD452B00BD5E8B /* UsbBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbBus.c; sourceTree = ""; }; + 9AA915F625CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA915F725CD452B00BD5E8B /* UsbUtility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbUtility.h; sourceTree = ""; }; + 9AA915F825CD452B00BD5E8B /* UsbEnumer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbEnumer.c; sourceTree = ""; }; + 9AA915F925CD452B00BD5E8B /* UsbBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusDxeExtra.uni; sourceTree = ""; }; + 9AA915FA25CD452B00BD5E8B /* UsbDesc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbDesc.h; sourceTree = ""; }; + 9AA915FB25CD452B00BD5E8B /* UsbHub.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbHub.c; sourceTree = ""; }; + 9AA915FC25CD452B00BD5E8B /* UsbUtility.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbUtility.c; sourceTree = ""; }; + 9AA915FD25CD452B00BD5E8B /* UsbBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbBus.h; sourceTree = ""; }; + 9AA915FF25CD452B00BD5E8B /* UsbKbDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxeExtra.uni; sourceTree = ""; }; + 9AA9160025CD452B00BD5E8B /* KeyBoard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KeyBoard.c; sourceTree = ""; }; + 9AA9160125CD452B00BD5E8B /* UsbKbDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxe.inf; sourceTree = ""; }; + 9AA9160225CD452B00BD5E8B /* EfiKey.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiKey.h; sourceTree = ""; }; + 9AA9160325CD452B00BD5E8B /* UsbKbDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxe.uni; sourceTree = ""; }; + 9AA9160425CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9160525CD452B00BD5E8B /* KeyBoard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KeyBoard.h; sourceTree = ""; }; + 9AA9160625CD452B00BD5E8B /* EfiKey.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EfiKey.c; sourceTree = ""; }; + 9AA9160825CD452B00BD5E8B /* PeiUsbLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiUsbLib.c; sourceTree = ""; }; + 9AA9160925CD452B00BD5E8B /* HubPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HubPeim.h; sourceTree = ""; }; + 9AA9160A25CD452B00BD5E8B /* UsbBusPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusPeiExtra.uni; sourceTree = ""; }; + 9AA9160B25CD452B00BD5E8B /* UsbPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbPeim.h; sourceTree = ""; }; + 9AA9160C25CD452B00BD5E8B /* UsbIoPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbIoPeim.c; sourceTree = ""; }; + 9AA9160D25CD452B00BD5E8B /* PeiUsbLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiUsbLib.h; sourceTree = ""; }; + 9AA9160E25CD452B00BD5E8B /* HubPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HubPeim.c; sourceTree = ""; }; + 9AA9160F25CD452B00BD5E8B /* UsbBusPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusPei.uni; sourceTree = ""; }; + 9AA9161025CD452B00BD5E8B /* UsbPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbPeim.c; sourceTree = ""; }; + 9AA9161125CD452B00BD5E8B /* UsbBusPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBusPei.inf; sourceTree = ""; }; + 9AA9161325CD452B00BD5E8B /* PeiUsbLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiUsbLib.c; sourceTree = ""; }; + 9AA9161425CD452B00BD5E8B /* UsbBotPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBotPeiExtra.uni; sourceTree = ""; }; + 9AA9161525CD452B00BD5E8B /* UsbBotPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbBotPeim.h; sourceTree = ""; }; + 9AA9161625CD452B00BD5E8B /* UsbPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbPeim.h; sourceTree = ""; }; + 9AA9161725CD452B00BD5E8B /* BotPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BotPeim.c; sourceTree = ""; }; + 9AA9161825CD452B00BD5E8B /* UsbBotPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBotPei.inf; sourceTree = ""; }; + 9AA9161925CD452B00BD5E8B /* PeiUsbLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeiUsbLib.h; sourceTree = ""; }; + 9AA9161A25CD452B00BD5E8B /* PeiAtapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiAtapi.c; sourceTree = ""; }; + 9AA9161B25CD452B00BD5E8B /* UsbBotPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbBotPei.uni; sourceTree = ""; }; + 9AA9161C25CD452B00BD5E8B /* UsbBotPeim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbBotPeim.c; sourceTree = ""; }; + 9AA9161D25CD452B00BD5E8B /* BotPeim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BotPeim.h; sourceTree = ""; }; + 9AA9161F25CD452B00BD5E8B /* UsbMassDiskInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassDiskInfo.c; sourceTree = ""; }; + 9AA9162025CD452B00BD5E8B /* UsbMassCbi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassCbi.h; sourceTree = ""; }; + 9AA9162125CD452B00BD5E8B /* UsbMassImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassImpl.h; sourceTree = ""; }; + 9AA9162225CD452B00BD5E8B /* UsbMassBoot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassBoot.c; sourceTree = ""; }; + 9AA9162325CD452B00BD5E8B /* UsbMassBot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassBot.h; sourceTree = ""; }; + 9AA9162425CD452B00BD5E8B /* UsbMassStorageDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMassStorageDxe.uni; sourceTree = ""; }; + 9AA9162525CD452B00BD5E8B /* UsbMassStorageDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMassStorageDxeExtra.uni; sourceTree = ""; }; + 9AA9162625CD452B00BD5E8B /* UsbMassStorageDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbMassStorageDxe.inf; sourceTree = ""; }; + 9AA9162725CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9162825CD452B00BD5E8B /* UsbMassCbi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassCbi.c; sourceTree = ""; }; + 9AA9162925CD452B00BD5E8B /* UsbMass.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMass.h; sourceTree = ""; }; + 9AA9162A25CD452B00BD5E8B /* UsbMassImpl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassImpl.c; sourceTree = ""; }; + 9AA9162B25CD452B00BD5E8B /* UsbMassDiskInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassDiskInfo.h; sourceTree = ""; }; + 9AA9162C25CD452B00BD5E8B /* UsbMassBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassBoot.h; sourceTree = ""; }; + 9AA9162D25CD452B00BD5E8B /* UsbMassBot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UsbMassBot.c; sourceTree = ""; }; + 9AA9163025CD452B00BD5E8B /* DevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DevicePath.c; sourceTree = ""; }; + 9AA9163125CD452B00BD5E8B /* AhciPei.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AhciPei.inf; sourceTree = ""; }; + 9AA9163225CD452B00BD5E8B /* AhciPei.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPei.h; sourceTree = ""; }; + 9AA9163325CD452B00BD5E8B /* AhciPeiBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiBlockIo.c; sourceTree = ""; }; + 9AA9163425CD452B00BD5E8B /* AhciPei.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AhciPei.uni; sourceTree = ""; }; + 9AA9163525CD452B00BD5E8B /* AhciPeiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiPassThru.c; sourceTree = ""; }; + 9AA9163625CD452B00BD5E8B /* AhciPeiExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AhciPeiExtra.uni; sourceTree = ""; }; + 9AA9163725CD452B00BD5E8B /* AhciPeiStorageSecurity.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiStorageSecurity.c; sourceTree = ""; }; + 9AA9163825CD452B00BD5E8B /* AhciPeiBlockIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPeiBlockIo.h; sourceTree = ""; }; + 9AA9163925CD452B00BD5E8B /* AhciPei.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPei.c; sourceTree = ""; }; + 9AA9163A25CD452B00BD5E8B /* AhciPeiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPeiPassThru.h; sourceTree = ""; }; + 9AA9163B25CD452B00BD5E8B /* DmaMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmaMem.c; sourceTree = ""; }; + 9AA9163C25CD452B00BD5E8B /* AhciPeiStorageSecurity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciPeiStorageSecurity.h; sourceTree = ""; }; + 9AA9163D25CD452B00BD5E8B /* AhciMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciMode.c; sourceTree = ""; }; + 9AA9163E25CD452B00BD5E8B /* AhciPeiS3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciPeiS3.c; sourceTree = ""; }; + 9AA9164025CD452B00BD5E8B /* AtaAtapiPassThru.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaAtapiPassThru.h; sourceTree = ""; }; + 9AA9164125CD452B00BD5E8B /* AhciMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AhciMode.h; sourceTree = ""; }; + 9AA9164225CD452B00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9164325CD452C00BD5E8B /* AtaAtapiPassThru.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaAtapiPassThru.inf; sourceTree = ""; }; + 9AA9164425CD452C00BD5E8B /* IdeMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = IdeMode.c; sourceTree = ""; }; + 9AA9164525CD452C00BD5E8B /* AtaAtapiPassThruDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaAtapiPassThruDxeExtra.uni; sourceTree = ""; }; + 9AA9164625CD452C00BD5E8B /* AtaAtapiPassThru.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtaAtapiPassThru.c; sourceTree = ""; }; + 9AA9164725CD452C00BD5E8B /* AtaAtapiPassThruDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaAtapiPassThruDxe.uni; sourceTree = ""; }; + 9AA9164825CD452C00BD5E8B /* IdeMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IdeMode.h; sourceTree = ""; }; + 9AA9164925CD452C00BD5E8B /* AhciMode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AhciMode.c; sourceTree = ""; }; + 9AA9164B25CD452C00BD5E8B /* AtaBusDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaBusDxe.inf; sourceTree = ""; }; + 9AA9164C25CD452C00BD5E8B /* AtaPassThruExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtaPassThruExecute.c; sourceTree = ""; }; + 9AA9164D25CD452C00BD5E8B /* AtaBusDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaBusDxe.uni; sourceTree = ""; }; + 9AA9164E25CD452C00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA9164F25CD452C00BD5E8B /* AtaBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtaBus.h; sourceTree = ""; }; + 9AA9165025CD452C00BD5E8B /* AtaBusDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AtaBusDxeExtra.uni; sourceTree = ""; }; + 9AA9165125CD452C00BD5E8B /* AtaBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AtaBus.c; sourceTree = ""; }; + 9AA9165425CD452C00BD5E8B /* DxeCapsuleRuntime.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleRuntime.c; sourceTree = ""; }; + 9AA9165525CD452C00BD5E8B /* CapsuleOnDisk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDisk.c; sourceTree = ""; }; + 9AA9165625CD452C00BD5E8B /* DxeCapsuleProcessLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleProcessLibNull.c; sourceTree = ""; }; + 9AA9165725CD452C00BD5E8B /* DxeCapsuleReportLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleReportLibNull.c; sourceTree = ""; }; + 9AA9165825CD452C00BD5E8B /* DxeCapsuleProcessLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleProcessLib.c; sourceTree = ""; }; + 9AA9165925CD452C00BD5E8B /* DxeCapsuleReportLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleReportLib.c; sourceTree = ""; }; + 9AA9165A25CD452C00BD5E8B /* CapsuleOnDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleOnDisk.h; sourceTree = ""; }; + 9AA9165B25CD452C00BD5E8B /* DxeRuntimeCapsuleLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeCapsuleLib.inf; sourceTree = ""; }; + 9AA9165C25CD452C00BD5E8B /* DxeCapsuleLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLib.uni; sourceTree = ""; }; + 9AA9165D25CD452C00BD5E8B /* DxeCapsuleLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleLib.c; sourceTree = ""; }; + 9AA9165E25CD452C00BD5E8B /* DxeRuntimeCapsuleLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeRuntimeCapsuleLib.uni; sourceTree = ""; }; + 9AA9165F25CD452C00BD5E8B /* DxeCapsuleLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLib.inf; sourceTree = ""; }; + 9AA9166125CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmIpmiLibSmmIpmiProtocol.c; sourceTree = ""; }; + 9AA9166225CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIpmiLibSmmIpmiProtocol.inf; sourceTree = ""; }; + 9AA9166325CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmIpmiLibSmmIpmiProtocol.uni; sourceTree = ""; }; + 9AA9166525CD452C00BD5E8B /* OemHookStatusCodeLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OemHookStatusCodeLibNull.inf; sourceTree = ""; }; + 9AA9166625CD452C00BD5E8B /* OemHookStatusCodeLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OemHookStatusCodeLibNull.c; sourceTree = ""; }; + 9AA9166725CD452C00BD5E8B /* OemHookStatusCodeLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = OemHookStatusCodeLibNull.uni; sourceTree = ""; }; + 9AA9166925CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCrc32GuidedSectionExtractLib.c; sourceTree = ""; }; + 9AA9166A25CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCrc32GuidedSectionExtractLib.inf; sourceTree = ""; }; + 9AA9166B25CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCrc32GuidedSectionExtractLib.uni; sourceTree = ""; }; + 9AA9166D25CD452C00BD5E8B /* BootLogoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootLogoLib.c; sourceTree = ""; }; + 9AA9166E25CD452C00BD5E8B /* BootLogoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootLogoLib.inf; sourceTree = ""; }; + 9AA9166F25CD452C00BD5E8B /* BootLogoLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootLogoLib.uni; sourceTree = ""; }; + 9AA9167125CD452C00BD5E8B /* LockBoxNullLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LockBoxNullLib.inf; sourceTree = ""; }; + 9AA9167225CD452C00BD5E8B /* LockBoxNullLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LockBoxNullLib.c; sourceTree = ""; }; + 9AA9167325CD452C00BD5E8B /* LockBoxNullLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LockBoxNullLib.uni; sourceTree = ""; }; + 9AA9167525CD452C00BD5E8B /* FmpAuthenticationLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FmpAuthenticationLibNull.c; sourceTree = ""; }; + 9AA9167625CD452C00BD5E8B /* FmpAuthenticationLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FmpAuthenticationLibNull.inf; sourceTree = ""; }; + 9AA9167725CD452C00BD5E8B /* FmpAuthenticationLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FmpAuthenticationLibNull.uni; sourceTree = ""; }; + 9AA9167925CD452C00BD5E8B /* PlatVarCleanup.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatVarCleanup.vfr; sourceTree = ""; }; + 9AA9167A25CD452C00BD5E8B /* PlatVarCleanupLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatVarCleanupLib.c; sourceTree = ""; }; + 9AA9167B25CD452C00BD5E8B /* PlatVarCleanup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatVarCleanup.h; sourceTree = ""; }; + 9AA9167C25CD452C00BD5E8B /* PlatformVarCleanupLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformVarCleanupLib.inf; sourceTree = ""; }; + 9AA9167D25CD452C00BD5E8B /* PlatVarCleanupHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatVarCleanupHii.h; sourceTree = ""; }; + 9AA9167E25CD452C00BD5E8B /* VfrStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VfrStrings.uni; sourceTree = ""; }; + 9AA9167F25CD452C00BD5E8B /* PlatformVarCleanupLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformVarCleanupLib.uni; sourceTree = ""; }; + 9AA9168125CD452C00BD5E8B /* PeiIpmiLibIpmiPpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiIpmiLibIpmiPpi.c; sourceTree = ""; }; + 9AA9168225CD452C00BD5E8B /* PeiIpmiLibIpmiPpi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIpmiLibIpmiPpi.inf; sourceTree = ""; }; + 9AA9168325CD452C00BD5E8B /* PeiIpmiLibIpmiPpi.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiIpmiLibIpmiPpi.uni; sourceTree = ""; }; + 9AA9168525CD452C00BD5E8B /* LzmaArchCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaArchCustomDecompressLib.inf; sourceTree = ""; }; + 9AA9168625CD452C00BD5E8B /* F86GuidedSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = F86GuidedSectionExtraction.c; sourceTree = ""; }; + 9AA9168725CD452C00BD5E8B /* LzmaCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaCustomDecompressLib.inf; sourceTree = ""; }; + 9AA9168A25CD452C00BD5E8B /* lzma-sdk.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "lzma-sdk.txt"; sourceTree = ""; }; + 9AA9168B25CD452C00BD5E8B /* lzma-history.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "lzma-history.txt"; sourceTree = ""; }; + 9AA9168D25CD452C00BD5E8B /* LzHash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzHash.h; sourceTree = ""; }; + 9AA9168E25CD452C00BD5E8B /* 7zTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 7zTypes.h; sourceTree = ""; }; + 9AA9168F25CD452C00BD5E8B /* Compiler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Compiler.h; sourceTree = ""; }; + 9AA9169025CD452C00BD5E8B /* LzFind.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LzFind.c; sourceTree = ""; }; + 9AA9169125CD452C00BD5E8B /* Precomp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Precomp.h; sourceTree = ""; }; + 9AA9169225CD452C00BD5E8B /* CpuArch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuArch.h; sourceTree = ""; }; + 9AA9169325CD452C00BD5E8B /* Bra86.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Bra86.c; sourceTree = ""; }; + 9AA9169425CD452C00BD5E8B /* LzmaDec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LzmaDec.c; sourceTree = ""; }; + 9AA9169525CD452C00BD5E8B /* LzFind.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzFind.h; sourceTree = ""; }; + 9AA9169625CD452C00BD5E8B /* 7zVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = 7zVersion.h; sourceTree = ""; }; + 9AA9169725CD452C00BD5E8B /* Bra.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bra.h; sourceTree = ""; }; + 9AA9169825CD452C00BD5E8B /* LzmaDec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzmaDec.h; sourceTree = ""; }; + 9AA9169925CD452C00BD5E8B /* LzmaDecompressLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzmaDecompressLibInternal.h; sourceTree = ""; }; + 9AA9169A25CD452C00BD5E8B /* LZMA-SDK-README.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "LZMA-SDK-README.txt"; sourceTree = ""; }; + 9AA9169B25CD452C00BD5E8B /* LzmaArchDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaArchDecompressLib.uni; sourceTree = ""; }; + 9AA9169C25CD452C00BD5E8B /* LzmaDecompress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LzmaDecompress.c; sourceTree = ""; }; + 9AA9169D25CD452C00BD5E8B /* LzmaDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LzmaDecompressLib.uni; sourceTree = ""; }; + 9AA9169E25CD452C00BD5E8B /* GuidedSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GuidedSectionExtraction.c; sourceTree = ""; }; + 9AA9169F25CD452C00BD5E8B /* UefiLzma.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiLzma.h; sourceTree = ""; }; + 9AA916A125CD452C00BD5E8B /* DeviceManagerUiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerUiLib.uni; sourceTree = ""; }; + 9AA916A225CD452C00BD5E8B /* DeviceManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerStrings.uni; sourceTree = ""; }; + 9AA916A325CD452C00BD5E8B /* DeviceManagerUiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerUiLib.inf; sourceTree = ""; }; + 9AA916A425CD452C00BD5E8B /* DeviceManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceManager.h; sourceTree = ""; }; + 9AA916A525CD452C00BD5E8B /* DeviceManagerVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = DeviceManagerVfr.Vfr; sourceTree = ""; }; + 9AA916A625CD452C00BD5E8B /* DeviceManager.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DeviceManager.c; sourceTree = ""; }; + 9AA916A825CD452C00BD5E8B /* BaseIpmiLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseIpmiLibNull.c; sourceTree = ""; }; + 9AA916A925CD452C00BD5E8B /* BaseIpmiLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIpmiLibNull.inf; sourceTree = ""; }; + 9AA916AA25CD452C00BD5E8B /* BaseIpmiLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseIpmiLibNull.uni; sourceTree = ""; }; + 9AA916AC25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCrc32GuidedSectionExtractLib.uni; sourceTree = ""; }; + 9AA916AD25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiCrc32GuidedSectionExtractLib.inf; sourceTree = ""; }; + 9AA916AE25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiCrc32GuidedSectionExtractLib.c; sourceTree = ""; }; + 9AA916B025CD452C00BD5E8B /* BmConnect.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmConnect.c; sourceTree = ""; }; + 9AA916B125CD452C00BD5E8B /* BmConsole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmConsole.c; sourceTree = ""; }; + 9AA916B225CD452C00BD5E8B /* BmHotkey.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmHotkey.c; sourceTree = ""; }; + 9AA916B325CD452C00BD5E8B /* InternalBm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalBm.h; sourceTree = ""; }; + 9AA916B425CD452C00BD5E8B /* UefiBootManagerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootManagerLib.inf; sourceTree = ""; }; + 9AA916B525CD452C00BD5E8B /* BmLoadOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmLoadOption.c; sourceTree = ""; }; + 9AA916B625CD452C00BD5E8B /* BmBootDescription.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmBootDescription.c; sourceTree = ""; }; + 9AA916B725CD452C00BD5E8B /* UefiBootManagerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootManagerLib.uni; sourceTree = ""; }; + 9AA916B825CD452C00BD5E8B /* BmDriverHealth.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmDriverHealth.c; sourceTree = ""; }; + 9AA916B925CD452C00BD5E8B /* BmBoot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmBoot.c; sourceTree = ""; }; + 9AA916BA25CD452C00BD5E8B /* BmMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmMisc.c; sourceTree = ""; }; + 9AA916BC25CD452C00BD5E8B /* DxeNetLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeNetLib.inf; sourceTree = ""; }; + 9AA916BD25CD452C00BD5E8B /* DxeNetLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeNetLib.uni; sourceTree = ""; }; + 9AA916BE25CD452C00BD5E8B /* NetBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NetBuffer.c; sourceTree = ""; }; + 9AA916BF25CD452C00BD5E8B /* DxeNetLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeNetLib.c; sourceTree = ""; }; + 9AA916C125CD452C00BD5E8B /* FileExplorer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileExplorer.h; sourceTree = ""; }; + 9AA916C225CD452C00BD5E8B /* FileExplorerString.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerString.uni; sourceTree = ""; }; + 9AA916C325CD452C00BD5E8B /* FormGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormGuid.h; sourceTree = ""; }; + 9AA916C425CD452C00BD5E8B /* FileExplorer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileExplorer.c; sourceTree = ""; }; + 9AA916C525CD452C00BD5E8B /* FileExplorerVfr.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerVfr.vfr; sourceTree = ""; }; + 9AA916C625CD452C00BD5E8B /* FileExplorerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerLib.inf; sourceTree = ""; }; + 9AA916C725CD452C00BD5E8B /* FileExplorerLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FileExplorerLib.uni; sourceTree = ""; }; + 9AA916C925CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpmiLibIpmiProtocol.uni; sourceTree = ""; }; + 9AA916CA25CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpmiLibIpmiProtocol.inf; sourceTree = ""; }; + 9AA916CB25CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeIpmiLibIpmiProtocol.c; sourceTree = ""; }; + 9AA916CD25CD452C00BD5E8B /* VarCheckLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckLib.c; sourceTree = ""; }; + 9AA916CE25CD452C00BD5E8B /* VarCheckLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckLib.inf; sourceTree = ""; }; + 9AA916CF25CD452C00BD5E8B /* VarCheckLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckLib.uni; sourceTree = ""; }; + 9AA916D125CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibGraphics.uni; sourceTree = ""; }; + 9AA916D225CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibGraphics.inf; sourceTree = ""; }; + 9AA916D325CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisplayUpdateProgressLibGraphics.c; sourceTree = ""; }; + 9AA916D525CD452C00BD5E8B /* AuthVariableLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = AuthVariableLibNull.uni; sourceTree = ""; }; + 9AA916D625CD452C00BD5E8B /* AuthVariableLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AuthVariableLibNull.inf; sourceTree = ""; }; + 9AA916D725CD452C00BD5E8B /* AuthVariableLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AuthVariableLibNull.c; sourceTree = ""; }; + 9AA916D925CD452C00BD5E8B /* SmmReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmReportStatusCodeLib.uni; sourceTree = ""; }; + 9AA916DA25CD452C00BD5E8B /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + 9AA916DB25CD452C00BD5E8B /* SmmReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmReportStatusCodeLib.inf; sourceTree = ""; }; + 9AA916DD25CD452C00BD5E8B /* PeiReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiReportStatusCodeLib.uni; sourceTree = ""; }; + 9AA916DE25CD452C00BD5E8B /* PeiReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiReportStatusCodeLib.inf; sourceTree = ""; }; + 9AA916DF25CD452C00BD5E8B /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + 9AA916E125CD452C00BD5E8B /* PeiPerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPerformanceLib.uni; sourceTree = ""; }; + 9AA916E225CD452C00BD5E8B /* PeiPerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiPerformanceLib.c; sourceTree = ""; }; + 9AA916E325CD452C00BD5E8B /* PeiPerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiPerformanceLib.inf; sourceTree = ""; }; + 9AA916E525CD452C00BD5E8B /* SmmLockBoxSmmLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxSmmLib.c; sourceTree = ""; }; + 9AA916E625CD452C00BD5E8B /* SmmLockBoxPeiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxPeiLib.uni; sourceTree = ""; }; + 9AA916E725CD452C00BD5E8B /* SmmLockBoxDxeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxDxeLib.uni; sourceTree = ""; }; + 9AA916E825CD452C00BD5E8B /* SmmLockBoxPeiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxPeiLib.inf; sourceTree = ""; }; + 9AA916E925CD452C00BD5E8B /* SmmLockBoxDxeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxDxeLib.inf; sourceTree = ""; }; + 9AA916EA25CD452C00BD5E8B /* SmmLockBoxSmmLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxSmmLib.inf; sourceTree = ""; }; + 9AA916EB25CD452C00BD5E8B /* SmmLockBoxSmmLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmLockBoxSmmLib.uni; sourceTree = ""; }; + 9AA916EC25CD452C00BD5E8B /* SmmLockBoxPeiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxPeiLib.c; sourceTree = ""; }; + 9AA916ED25CD452C00BD5E8B /* SmmLockBoxLibPrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmLockBoxLibPrivate.h; sourceTree = ""; }; + 9AA916EE25CD452C00BD5E8B /* SmmLockBoxDxeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmLockBoxDxeLib.c; sourceTree = ""; }; + 9AA916F025CD452C00BD5E8B /* DxePerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxePerformanceLib.c; sourceTree = ""; }; + 9AA916F125CD452C00BD5E8B /* DxePerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePerformanceLib.uni; sourceTree = ""; }; + 9AA916F225CD452C00BD5E8B /* DxePerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePerformanceLib.inf; sourceTree = ""; }; + 9AA916F425CD452C00BD5E8B /* SmmMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationProfileLib.uni; sourceTree = ""; }; + 9AA916F525CD452C00BD5E8B /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9AA916F625CD452C00BD5E8B /* SmmMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmMemoryAllocationProfileLib.inf; sourceTree = ""; }; + 9AA916F725CD452C00BD5E8B /* SmmMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmMemoryProfileLib.c; sourceTree = ""; }; + 9AA916F925CD452C00BD5E8B /* PlatformBootManager.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatformBootManager.c; sourceTree = ""; }; + 9AA916FA25CD452C00BD5E8B /* PlatformBootManagerLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformBootManagerLibNull.inf; sourceTree = ""; }; + 9AA916FB25CD452C00BD5E8B /* PlatformBootManagerLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformBootManagerLibNull.uni; sourceTree = ""; }; + 9AA916FD25CD452C00BD5E8B /* DxeFileExplorerProtocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeFileExplorerProtocol.inf; sourceTree = ""; }; + 9AA916FE25CD452C00BD5E8B /* DxeFileExplorerProtocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeFileExplorerProtocol.uni; sourceTree = ""; }; + 9AA916FF25CD452C00BD5E8B /* DxeFileExplorerProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeFileExplorerProtocol.c; sourceTree = ""; }; + 9AA9170125CD452C00BD5E8B /* InternalBootScriptLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalBootScriptLib.h; sourceTree = ""; }; + 9AA9170225CD452C00BD5E8B /* BootScriptInternalFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootScriptInternalFormat.h; sourceTree = ""; }; + 9AA9170325CD452C00BD5E8B /* BootScriptSave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootScriptSave.c; sourceTree = ""; }; + 9AA9170425CD452C00BD5E8B /* BootScriptExecute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootScriptExecute.c; sourceTree = ""; }; + 9AA9170525CD452C00BD5E8B /* DxeS3BootScriptLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeS3BootScriptLib.inf; sourceTree = ""; }; + 9AA9170625CD452C00BD5E8B /* DxeS3BootScriptLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeS3BootScriptLib.uni; sourceTree = ""; }; + 9AA9170825CD452C00BD5E8B /* DxeHttpLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeHttpLib.c; sourceTree = ""; }; + 9AA9170925CD452C00BD5E8B /* DxeHttpLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHttpLib.inf; sourceTree = ""; }; + 9AA9170A25CD452C00BD5E8B /* DxeHttpLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeHttpLib.uni; sourceTree = ""; }; + 9AA9170B25CD452C00BD5E8B /* DxeHttpLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeHttpLib.h; sourceTree = ""; }; + 9AA9170D25CD452C00BD5E8B /* BasePlatformHookLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePlatformHookLibNull.inf; sourceTree = ""; }; + 9AA9170E25CD452C00BD5E8B /* BasePlatformHookLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BasePlatformHookLibNull.uni; sourceTree = ""; }; + 9AA9170F25CD452C00BD5E8B /* BasePlatformHookLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BasePlatformHookLibNull.c; sourceTree = ""; }; + 9AA9171125CD452C00BD5E8B /* BaseResetSystemLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseResetSystemLibNull.uni; sourceTree = ""; }; + 9AA9171225CD452C00BD5E8B /* BaseResetSystemLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseResetSystemLibNull.inf; sourceTree = ""; }; + 9AA9171325CD452C00BD5E8B /* BaseResetSystemLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseResetSystemLibNull.c; sourceTree = ""; }; + 9AA9171525CD452C00BD5E8B /* NonDiscoverableDeviceRegistrationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NonDiscoverableDeviceRegistrationLib.c; sourceTree = ""; }; + 9AA9171625CD452C00BD5E8B /* NonDiscoverableDeviceRegistrationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = NonDiscoverableDeviceRegistrationLib.inf; sourceTree = ""; }; + 9AA9171825CD452C00BD5E8B /* FrameBufferBltLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrameBufferBltLib.c; sourceTree = ""; }; + 9AA9171925CD452C00BD5E8B /* FrameBufferBltLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = FrameBufferBltLib.inf; sourceTree = ""; }; + 9AA9171B25CD452C00BD5E8B /* PciHostBridgeLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciHostBridgeLibNull.uni; sourceTree = ""; }; + 9AA9171C25CD452C00BD5E8B /* PciHostBridgeLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciHostBridgeLibNull.inf; sourceTree = ""; }; + 9AA9171D25CD452C00BD5E8B /* PciHostBridgeLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciHostBridgeLibNull.c; sourceTree = ""; }; + 9AA9171F25CD452C00BD5E8B /* PeiDxeDebugLibReportStatusCode.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxeDebugLibReportStatusCode.uni; sourceTree = ""; }; + 9AA9172025CD452C00BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA9172125CD452C00BD5E8B /* PeiDxeDebugLibReportStatusCode.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDxeDebugLibReportStatusCode.inf; sourceTree = ""; }; + 9AA9172325CD452C00BD5E8B /* TpmMeasurementLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = TpmMeasurementLibNull.uni; sourceTree = ""; }; + 9AA9172425CD452C00BD5E8B /* TpmMeasurementLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TpmMeasurementLibNull.c; sourceTree = ""; }; + 9AA9172525CD452C00BD5E8B /* TpmMeasurementLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = TpmMeasurementLibNull.inf; sourceTree = ""; }; + 9AA9172725CD452C00BD5E8B /* PeiDebugPrintHobLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDebugPrintHobLib.uni; sourceTree = ""; }; + 9AA9172825CD452C00BD5E8B /* PeiDebugPrintHobLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiDebugPrintHobLib.c; sourceTree = ""; }; + 9AA9172925CD452C00BD5E8B /* PeiDebugPrintHobLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDebugPrintHobLib.inf; sourceTree = ""; }; + 9AA9172B25CD452C00BD5E8B /* RuntimeDxeReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxeReportStatusCodeLib.inf; sourceTree = ""; }; + 9AA9172C25CD452C00BD5E8B /* RuntimeDxeReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeDxeReportStatusCodeLib.uni; sourceTree = ""; }; + 9AA9172D25CD452C00BD5E8B /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + 9AA9172F25CD452C00BD5E8B /* UefiSortLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiSortLib.inf; sourceTree = ""; }; + 9AA9173025CD452C00BD5E8B /* UefiSortLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiSortLib.c; sourceTree = ""; }; + 9AA9173125CD452C00BD5E8B /* UefiSortLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiSortLib.uni; sourceTree = ""; }; + 9AA9173325CD452C00BD5E8B /* VarCheckHiiGen.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGen.c; sourceTree = ""; }; + 9AA9173425CD452C00BD5E8B /* VarCheckHii.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckHii.h; sourceTree = ""; }; + 9AA9173525CD452C00BD5E8B /* VarCheckHiiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckHiiLib.uni; sourceTree = ""; }; + 9AA9173625CD452C00BD5E8B /* VarCheckHiiGenFromFv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGenFromFv.c; sourceTree = ""; }; + 9AA9173725CD452C00BD5E8B /* VarCheckHiiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckHiiLib.inf; sourceTree = ""; }; + 9AA9173825CD452C00BD5E8B /* InternalVarCheckStructure.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalVarCheckStructure.h; sourceTree = ""; }; + 9AA9173925CD452C00BD5E8B /* VarCheckHiiGenFromHii.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiGenFromHii.c; sourceTree = ""; }; + 9AA9173A25CD452C00BD5E8B /* VarCheckHiiLibNullClass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckHiiLibNullClass.c; sourceTree = ""; }; + 9AA9173B25CD452C00BD5E8B /* VarCheckHiiGen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckHiiGen.h; sourceTree = ""; }; + 9AA9173D25CD452C00BD5E8B /* BaseMemoryAllocationLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseMemoryAllocationLibNull.c; sourceTree = ""; }; + 9AA9173E25CD452C00BD5E8B /* BaseMemoryAllocationLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryAllocationLibNull.inf; sourceTree = ""; }; + 9AA9173F25CD452C00BD5E8B /* BaseMemoryAllocationLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseMemoryAllocationLibNull.uni; sourceTree = ""; }; + 9AA9174125CD452C00BD5E8B /* DisplayUpdateProgressLibText.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DisplayUpdateProgressLibText.c; sourceTree = ""; }; + 9AA9174225CD452C00BD5E8B /* DisplayUpdateProgressLibText.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibText.inf; sourceTree = ""; }; + 9AA9174325CD452C00BD5E8B /* DisplayUpdateProgressLibText.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DisplayUpdateProgressLibText.uni; sourceTree = ""; }; + 9AA9174525CD452C00BD5E8B /* CustomizedDisplayLibModStrs.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CustomizedDisplayLibModStrs.uni; sourceTree = ""; }; + 9AA9174625CD452C00BD5E8B /* Colors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Colors.h; sourceTree = ""; }; + 9AA9174725CD452C00BD5E8B /* CustomizedDisplayLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomizedDisplayLibInternal.h; sourceTree = ""; }; + 9AA9174825CD452C00BD5E8B /* CustomizedDisplayLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CustomizedDisplayLib.inf; sourceTree = ""; }; + 9AA9174925CD452C00BD5E8B /* CustomizedDisplayLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CustomizedDisplayLib.uni; sourceTree = ""; }; + 9AA9174A25CD452C00BD5E8B /* CustomizedDisplayLibInternal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CustomizedDisplayLibInternal.c; sourceTree = ""; }; + 9AA9174B25CD452C00BD5E8B /* CustomizedDisplayLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CustomizedDisplayLib.c; sourceTree = ""; }; + 9AA9174D25CD452C00BD5E8B /* SmmCorePlatformHookLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePlatformHookLibNull.inf; sourceTree = ""; }; + 9AA9174E25CD452C00BD5E8B /* SmmCorePlatformHookLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePlatformHookLibNull.uni; sourceTree = ""; }; + 9AA9174F25CD452C00BD5E8B /* SmmCorePlatformHookLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCorePlatformHookLibNull.c; sourceTree = ""; }; + 9AA9175125CD452C00BD5E8B /* DebugAgentLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugAgentLibNull.uni; sourceTree = ""; }; + 9AA9175225CD452C00BD5E8B /* DebugAgentLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DebugAgentLibNull.inf; sourceTree = ""; }; + 9AA9175325CD452C00BD5E8B /* DebugAgentLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugAgentLibNull.c; sourceTree = ""; }; + 9AA9175525CD452C00BD5E8B /* UefiHiiServicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiServicesLib.inf; sourceTree = ""; }; + 9AA9175625CD452C00BD5E8B /* UefiHiiServicesLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiServicesLib.uni; sourceTree = ""; }; + 9AA9175725CD452C00BD5E8B /* UefiHiiServicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiHiiServicesLib.c; sourceTree = ""; }; + 9AA9175925CD452C00BD5E8B /* BmLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmLib.c; sourceTree = ""; }; + 9AA9175A25CD452C00BD5E8B /* BootMaintenanceManagerUiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManagerUiLib.inf; sourceTree = ""; }; + 9AA9175B25CD452C00BD5E8B /* BootOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootOption.c; sourceTree = ""; }; + 9AA9175C25CD452C00BD5E8B /* BootMaintenanceManagerUiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManagerUiLib.uni; sourceTree = ""; }; + 9AA9175D25CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUiSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMaintenanceManagerCustomizedUiSupport.c; sourceTree = ""; }; + 9AA9175E25CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMaintenanceManagerCustomizedUi.c; sourceTree = ""; }; + 9AA9175F25CD452C00BD5E8B /* BootMaintenanceManager.vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManager.vfr; sourceTree = ""; }; + 9AA9176025CD452C00BD5E8B /* BootMaintenanceManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootMaintenanceManagerStrings.uni; sourceTree = ""; }; + 9AA9176125CD452C00BD5E8B /* BootMaintenanceManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManager.h; sourceTree = ""; }; + 9AA9176225CD452C00BD5E8B /* BootMaintenance.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootMaintenance.c; sourceTree = ""; }; + 9AA9176325CD452C00BD5E8B /* FormGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FormGuid.h; sourceTree = ""; }; + 9AA9176425CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUiSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManagerCustomizedUiSupport.h; sourceTree = ""; }; + 9AA9176525CD452C00BD5E8B /* UpdatePage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UpdatePage.c; sourceTree = ""; }; + 9AA9176625CD452C00BD5E8B /* Data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Data.c; sourceTree = ""; }; + 9AA9176725CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootMaintenanceManagerCustomizedUi.h; sourceTree = ""; }; + 9AA9176825CD452C00BD5E8B /* ConsoleOption.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConsoleOption.c; sourceTree = ""; }; + 9AA9176925CD452C00BD5E8B /* Variable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Variable.c; sourceTree = ""; }; + 9AA9176B25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformHookLibSerialPortPpi.inf; sourceTree = ""; }; + 9AA9176C25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PlatformHookLibSerialPortPpi.uni; sourceTree = ""; }; + 9AA9176D25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatformHookLibSerialPortPpi.c; sourceTree = ""; }; + 9AA9176F25CD452C00BD5E8B /* BaseSerialPortLib16550.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSerialPortLib16550.c; sourceTree = ""; }; + 9AA9177025CD452C00BD5E8B /* BaseSerialPortLib16550.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLib16550.inf; sourceTree = ""; }; + 9AA9177125CD452C00BD5E8B /* BaseSerialPortLib16550.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSerialPortLib16550.uni; sourceTree = ""; }; + 9AA9177325CD452C00BD5E8B /* BaseHobLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseHobLibNull.c; sourceTree = ""; }; + 9AA9177425CD452C00BD5E8B /* BaseHobLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseHobLibNull.inf; sourceTree = ""; }; + 9AA9177525CD452C00BD5E8B /* BaseHobLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseHobLibNull.uni; sourceTree = ""; }; + 9AA9177725CD452C00BD5E8B /* SmmPerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmPerformanceLib.c; sourceTree = ""; }; + 9AA9177825CD452C00BD5E8B /* SmmPerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPerformanceLib.inf; sourceTree = ""; }; + 9AA9177925CD452C00BD5E8B /* SmmPerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmPerformanceLib.uni; sourceTree = ""; }; + 9AA9177B25CD452C00BD5E8B /* DxeCapsuleLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLibNull.inf; sourceTree = ""; }; + 9AA9177C25CD452C00BD5E8B /* DxeCapsuleLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCapsuleLibNull.uni; sourceTree = ""; }; + 9AA9177D25CD452C00BD5E8B /* DxeCapsuleLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCapsuleLibNull.c; sourceTree = ""; }; + 9AA9177F25CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeDebugPrintErrorLevelLib.inf; sourceTree = ""; }; + 9AA9178025CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeDebugPrintErrorLevelLib.uni; sourceTree = ""; }; + 9AA9178125CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeDebugPrintErrorLevelLib.c; sourceTree = ""; }; + 9AA9178325CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreSmmServicesTableLib.uni; sourceTree = ""; }; + 9AA9178425CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreSmmServicesTableLib.inf; sourceTree = ""; }; + 9AA9178525CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreSmmServicesTableLib.c; sourceTree = ""; }; + 9AA9178725CD452C00BD5E8B /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + 9AA9178825CD452C00BD5E8B /* BrotliDecompressLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BrotliDecompressLibInternal.h; sourceTree = ""; }; + 9AA9178A25CD452C00BD5E8B /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = port.h; sourceTree = ""; }; + 9AA9178B25CD452C00BD5E8B /* types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = ""; }; + 9AA9178C25CD452C00BD5E8B /* decode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = decode.h; sourceTree = ""; }; + 9AA9178D25CD452C00BD5E8B /* BrotliDecompress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BrotliDecompress.c; sourceTree = ""; }; + 9AA9178F25CD452C00BD5E8B /* brotli-comparison-study-2015-09-22.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "brotli-comparison-study-2015-09-22.pdf"; sourceTree = ""; }; + 9AA9179025CD452C00BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA9179225CD452C00BD5E8B /* dictionary.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = dictionary.c; sourceTree = ""; }; + 9AA9179325CD452C00BD5E8B /* version.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = ""; }; + 9AA9179425CD452C00BD5E8B /* transform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = transform.c; sourceTree = ""; }; + 9AA9179525CD452C00BD5E8B /* context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = context.h; sourceTree = ""; }; + 9AA9179625CD452C00BD5E8B /* constants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = constants.h; sourceTree = ""; }; + 9AA9179725CD452C00BD5E8B /* dictionary.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dictionary.h; sourceTree = ""; }; + 9AA9179825CD452C00BD5E8B /* transform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = transform.h; sourceTree = ""; }; + 9AA9179925CD452C00BD5E8B /* platform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = ""; }; + 9AA9179B25CD452C00BD5E8B /* state.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = state.c; sourceTree = ""; }; + 9AA9179C25CD452C00BD5E8B /* bit_reader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bit_reader.h; sourceTree = ""; }; + 9AA9179D25CD452C00BD5E8B /* decode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = decode.c; sourceTree = ""; }; + 9AA9179E25CD452C00BD5E8B /* huffman.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = huffman.c; sourceTree = ""; }; + 9AA9179F25CD452C00BD5E8B /* bit_reader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bit_reader.c; sourceTree = ""; }; + 9AA917A025CD452C00BD5E8B /* prefix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = prefix.h; sourceTree = ""; }; + 9AA917A125CD452C00BD5E8B /* state.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = state.h; sourceTree = ""; }; + 9AA917A225CD452C00BD5E8B /* huffman.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = huffman.h; sourceTree = ""; }; + 9AA917A325CD452C00BD5E8B /* ReadMe.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; + 9AA917A425CD452C00BD5E8B /* BrotliDecompressLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BrotliDecompressLib.uni; sourceTree = ""; }; + 9AA917A525CD452C00BD5E8B /* BrotliCustomDecompressLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BrotliCustomDecompressLib.inf; sourceTree = ""; }; + 9AA917A625CD452C00BD5E8B /* GuidedSectionExtraction.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GuidedSectionExtraction.c; sourceTree = ""; }; + 9AA917A825CD452C00BD5E8B /* ResetUtility.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetUtility.c; sourceTree = ""; }; + 9AA917A925CD452C00BD5E8B /* ResetUtilityLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetUtilityLib.inf; sourceTree = ""; }; + 9AA917AB25CD452C00BD5E8B /* SmmCorePerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmCorePerformanceLib.c; sourceTree = ""; }; + 9AA917AC25CD452C00BD5E8B /* SmmCorePerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePerformanceLib.uni; sourceTree = ""; }; + 9AA917AD25CD452C00BD5E8B /* SmmCorePerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmCorePerformanceLib.inf; sourceTree = ""; }; + 9AA917AE25CD452C00BD5E8B /* SmmCorePerformanceLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmmCorePerformanceLibInternal.h; sourceTree = ""; }; + 9AA917B025CD452C00BD5E8B /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9AA917B125CD452C00BD5E8B /* UefiMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationProfileLib.uni; sourceTree = ""; }; + 9AA917B225CD452C00BD5E8B /* UefiMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiMemoryAllocationProfileLib.inf; sourceTree = ""; }; + 9AA917B325CD452C00BD5E8B /* DxeMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeMemoryProfileLib.c; sourceTree = ""; }; + 9AA917B525CD452C00BD5E8B /* PeiDebugLibDebugPpi.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiDebugLibDebugPpi.inf; sourceTree = ""; }; + 9AA917B625CD452C00BD5E8B /* DebugLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugLib.c; sourceTree = ""; }; + 9AA917B825CD452C00BD5E8B /* SmmSmiHandlerProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmmSmiHandlerProfileLib.c; sourceTree = ""; }; + 9AA917B925CD452C00BD5E8B /* SmmSmiHandlerProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmSmiHandlerProfileLib.inf; sourceTree = ""; }; + 9AA917BA25CD452C00BD5E8B /* SmmSmiHandlerProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmmSmiHandlerProfileLib.uni; sourceTree = ""; }; + 9AA917BC25CD452C00BD5E8B /* DxeReportStatusCodeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeReportStatusCodeLib.inf; sourceTree = ""; }; + 9AA917BD25CD452C00BD5E8B /* DxeReportStatusCodeLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeReportStatusCodeLib.uni; sourceTree = ""; }; + 9AA917BE25CD452C00BD5E8B /* ReportStatusCodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReportStatusCodeLib.c; sourceTree = ""; }; + 9AA917C025CD452C00BD5E8B /* VarCheckUefiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckUefiLib.inf; sourceTree = ""; }; + 9AA917C125CD452C00BD5E8B /* VarCheckUefiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckUefiLib.uni; sourceTree = ""; }; + 9AA917C225CD452C00BD5E8B /* VarCheckUefiLibNullClass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckUefiLibNullClass.c; sourceTree = ""; }; + 9AA917C425CD452C00BD5E8B /* RuntimeResetSystemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeResetSystemLib.inf; sourceTree = ""; }; + 9AA917C525CD452C00BD5E8B /* RuntimeResetSystemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RuntimeResetSystemLib.c; sourceTree = ""; }; + 9AA917C625CD452C00BD5E8B /* RuntimeResetSystemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = RuntimeResetSystemLib.uni; sourceTree = ""; }; + 9AA917C825CD452C00BD5E8B /* VarCheckPcdLibNullClass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VarCheckPcdLibNullClass.c; sourceTree = ""; }; + 9AA917C925CD452C00BD5E8B /* VarCheckPcdStructure.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VarCheckPcdStructure.h; sourceTree = ""; }; + 9AA917CA25CD452C00BD5E8B /* VarCheckPcdLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckPcdLib.uni; sourceTree = ""; }; + 9AA917CB25CD452C00BD5E8B /* VarCheckPcdLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VarCheckPcdLib.inf; sourceTree = ""; }; + 9AA917CD25CD452C00BD5E8B /* DxeSecurityManagementLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeSecurityManagementLib.c; sourceTree = ""; }; + 9AA917CE25CD452C00BD5E8B /* DxeSecurityManagementLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSecurityManagementLib.uni; sourceTree = ""; }; + 9AA917CF25CD452C00BD5E8B /* DxeSecurityManagementLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeSecurityManagementLib.inf; sourceTree = ""; }; + 9AA917D125CD452C00BD5E8B /* PiSmmCoreMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreMemoryProfileLib.c; sourceTree = ""; }; + 9AA917D225CD452C00BD5E8B /* PiSmmCoreMemoryAllocationServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCoreMemoryAllocationServices.h; sourceTree = ""; }; + 9AA917D325CD452C00BD5E8B /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9AA917D425CD452C00BD5E8B /* PiSmmCoreMemoryProfileServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiSmmCoreMemoryProfileServices.h; sourceTree = ""; }; + 9AA917D525CD452C00BD5E8B /* PiSmmCoreMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationLib.uni; sourceTree = ""; }; + 9AA917D625CD452C00BD5E8B /* PiSmmCoreMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationProfileLib.inf; sourceTree = ""; }; + 9AA917D725CD452C00BD5E8B /* PiSmmCoreMemoryProfileLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PiSmmCoreMemoryProfileLibNull.c; sourceTree = ""; }; + 9AA917D825CD452C00BD5E8B /* PiSmmCoreMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationLib.inf; sourceTree = ""; }; + 9AA917D925CD452C00BD5E8B /* PiSmmCoreMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PiSmmCoreMemoryAllocationProfileLib.uni; sourceTree = ""; }; + 9AA917DB25CD452C00BD5E8B /* DxePrintLibPrint2Protocol.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePrintLibPrint2Protocol.uni; sourceTree = ""; }; + 9AA917DC25CD452C00BD5E8B /* PrintLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrintLib.c; sourceTree = ""; }; + 9AA917DD25CD452C00BD5E8B /* DxePrintLibPrint2Protocol.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxePrintLibPrint2Protocol.inf; sourceTree = ""; }; + 9AA917DF25CD452C00BD5E8B /* MemoryAllocationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; + 9AA917E025CD452C00BD5E8B /* DxeCoreMemoryAllocationServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreMemoryAllocationServices.h; sourceTree = ""; }; + 9AA917E125CD452C00BD5E8B /* DxeCoreMemoryProfileServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreMemoryProfileServices.h; sourceTree = ""; }; + 9AA917E225CD452C00BD5E8B /* DxeCoreMemoryAllocationProfileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationProfileLib.inf; sourceTree = ""; }; + 9AA917E325CD452C00BD5E8B /* DxeCoreMemoryAllocationProfileLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationProfileLib.uni; sourceTree = ""; }; + 9AA917E425CD452C00BD5E8B /* DxeCoreMemoryProfileLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCoreMemoryProfileLib.c; sourceTree = ""; }; + 9AA917E525CD452C00BD5E8B /* DxeCoreMemoryAllocationLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationLib.uni; sourceTree = ""; }; + 9AA917E625CD452C00BD5E8B /* DxeCoreMemoryAllocationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCoreMemoryAllocationLib.inf; sourceTree = ""; }; + 9AA917E725CD452C00BD5E8B /* DxeCoreMemoryProfileLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCoreMemoryProfileLibNull.c; sourceTree = ""; }; + 9AA917E925CD452C00BD5E8B /* BootManagerStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerStrings.uni; sourceTree = ""; }; + 9AA917EA25CD452C00BD5E8B /* BootManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootManager.h; sourceTree = ""; }; + 9AA917EB25CD452C00BD5E8B /* BootManagerUiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerUiLib.uni; sourceTree = ""; }; + 9AA917EC25CD452C00BD5E8B /* BootManagerVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerVfr.Vfr; sourceTree = ""; }; + 9AA917ED25CD452C00BD5E8B /* BootManagerUiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerUiLib.inf; sourceTree = ""; }; + 9AA917EE25CD452C00BD5E8B /* BootManager.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootManager.c; sourceTree = ""; }; + 9AA917F025CD452C00BD5E8B /* BmpSupportLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BmpSupportLib.c; sourceTree = ""; }; + 9AA917F125CD452C00BD5E8B /* BaseBmpSupportLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseBmpSupportLib.inf; sourceTree = ""; }; + 9AA917F225CD452C00BD5E8B /* BaseBmpSupportLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseBmpSupportLib.uni; sourceTree = ""; }; + 9AA917F425CD452C00BD5E8B /* CpuExceptionHandlerLibNull.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuExceptionHandlerLibNull.uni; sourceTree = ""; }; + 9AA917F525CD452C00BD5E8B /* CpuExceptionHandlerLibNull.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuExceptionHandlerLibNull.inf; sourceTree = ""; }; + 9AA917F625CD452C00BD5E8B /* CpuExceptionHandlerLibNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuExceptionHandlerLibNull.c; sourceTree = ""; }; + 9AA917F825CD452C00BD5E8B /* HiiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiLib.c; sourceTree = ""; }; + 9AA917F925CD452C00BD5E8B /* UefiHiiLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiLib.uni; sourceTree = ""; }; + 9AA917FA25CD452C00BD5E8B /* UefiHiiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiHiiLib.inf; sourceTree = ""; }; + 9AA917FB25CD452C00BD5E8B /* HiiString.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiString.c; sourceTree = ""; }; + 9AA917FC25CD452C00BD5E8B /* HiiLanguage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiLanguage.c; sourceTree = ""; }; + 9AA917FD25CD452C00BD5E8B /* InternalHiiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InternalHiiLib.h; sourceTree = ""; }; + 9AA917FF25CD452C00BD5E8B /* BaseSortLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSortLib.inf; sourceTree = ""; }; + 9AA9180025CD452C00BD5E8B /* BaseSortLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BaseSortLib.uni; sourceTree = ""; }; + 9AA9180125CD452C00BD5E8B /* BaseSortLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseSortLib.c; sourceTree = ""; }; + 9AA9180325CD452C00BD5E8B /* DxeCorePerformanceLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeCorePerformanceLib.c; sourceTree = ""; }; + 9AA9180425CD452C00BD5E8B /* DxeCorePerformanceLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCorePerformanceLibInternal.h; sourceTree = ""; }; + 9AA9180525CD452C00BD5E8B /* DxeCorePerformanceLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCorePerformanceLib.inf; sourceTree = ""; }; + 9AA9180625CD452C00BD5E8B /* DxeCorePerformanceLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeCorePerformanceLib.uni; sourceTree = ""; }; + 9AA9180825CD452C00BD5E8B /* DxeResetSystemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeResetSystemLib.uni; sourceTree = ""; }; + 9AA9180925CD452C00BD5E8B /* DxeResetSystemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeResetSystemLib.inf; sourceTree = ""; }; + 9AA9180A25CD452C00BD5E8B /* DxeResetSystemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeResetSystemLib.c; sourceTree = ""; }; + 9AA9180C25CD452C00BD5E8B /* PeiResetSystemLib.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResetSystemLib.uni; sourceTree = ""; }; + 9AA9180D25CD452C00BD5E8B /* PeiResetSystemLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PeiResetSystemLib.inf; sourceTree = ""; }; + 9AA9180E25CD452C00BD5E8B /* PeiResetSystemLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeiResetSystemLib.c; sourceTree = ""; }; + 9AA9180F25CD452C00BD5E8B /* MdeModulePkgSample.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkgSample.dec; sourceTree = ""; }; + 9AA9181125CD452D00BD5E8B /* LogoDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoDxe.uni; sourceTree = ""; }; + 9AA9181225CD452D00BD5E8B /* LogoDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoDxe.inf; sourceTree = ""; }; + 9AA9181325CD452D00BD5E8B /* Logo.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = Logo.bmp; sourceTree = ""; }; + 9AA9181425CD452D00BD5E8B /* Logo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = Logo.uni; sourceTree = ""; }; + 9AA9181525CD452D00BD5E8B /* LogoDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoDxeExtra.uni; sourceTree = ""; }; + 9AA9181625CD452D00BD5E8B /* LogoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoExtra.uni; sourceTree = ""; }; + 9AA9181725CD452D00BD5E8B /* Logo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Logo.inf; sourceTree = ""; }; + 9AA9181825CD452D00BD5E8B /* Logo.idf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Logo.idf; sourceTree = ""; }; + 9AA9181925CD452D00BD5E8B /* Logo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Logo.c; sourceTree = ""; }; + 9AA9181A25CD452D00BD5E8B /* MdeModulePkg.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkg.uni; sourceTree = ""; }; + 9AA9181B25CD452D00BD5E8B /* MdeModulePkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkg.dec; sourceTree = ""; }; + 9AA9181E25CD452D00BD5E8B /* FrontPage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrontPage.h; sourceTree = ""; }; + 9AA9181F25CD452D00BD5E8B /* FrontPageCustomizedUi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrontPageCustomizedUi.h; sourceTree = ""; }; + 9AA9182025CD452D00BD5E8B /* Ui.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ui.h; sourceTree = ""; }; + 9AA9182125CD452D00BD5E8B /* FrontPageCustomizedUiSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrontPageCustomizedUiSupport.c; sourceTree = ""; }; + 9AA9182225CD452D00BD5E8B /* FrontPageVfr.Vfr */ = {isa = PBXFileReference; lastKnownFileType = text; path = FrontPageVfr.Vfr; sourceTree = ""; }; + 9AA9182325CD452D00BD5E8B /* String.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; + 9AA9182425CD452D00BD5E8B /* FrontPageCustomizedUi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrontPageCustomizedUi.c; sourceTree = ""; }; + 9AA9182525CD452D00BD5E8B /* UiApp.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UiApp.uni; sourceTree = ""; }; + 9AA9182625CD452D00BD5E8B /* FrontPage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrontPage.c; sourceTree = ""; }; + 9AA9182725CD452D00BD5E8B /* FrontPageStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = FrontPageStrings.uni; sourceTree = ""; }; + 9AA9182825CD452D00BD5E8B /* UiAppExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UiAppExtra.uni; sourceTree = ""; }; + 9AA9182925CD452D00BD5E8B /* UiApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UiApp.inf; sourceTree = ""; }; + 9AA9182A25CD452D00BD5E8B /* FrontPageCustomizedUiSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrontPageCustomizedUiSupport.h; sourceTree = ""; }; + 9AA9182B25CD452D00BD5E8B /* String.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = String.h; sourceTree = ""; }; + 9AA9182D25CD452D00BD5E8B /* HelloWorldStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorldStr.uni; sourceTree = ""; }; + 9AA9182E25CD452D00BD5E8B /* HelloWorld.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorld.uni; sourceTree = ""; }; + 9AA9182F25CD452D00BD5E8B /* HelloWorld.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorld.inf; sourceTree = ""; }; + 9AA9183025CD452D00BD5E8B /* HelloWorld.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HelloWorld.c; sourceTree = ""; }; + 9AA9183125CD452D00BD5E8B /* HelloWorldExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = HelloWorldExtra.uni; sourceTree = ""; }; + 9AA9183325CD452D00BD5E8B /* BootManagerMenu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootManagerMenu.c; sourceTree = ""; }; + 9AA9183425CD452D00BD5E8B /* BootManagerMenuAppExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuAppExtra.uni; sourceTree = ""; }; + 9AA9183525CD452D00BD5E8B /* BootManagerMenuStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuStrings.uni; sourceTree = ""; }; + 9AA9183625CD452D00BD5E8B /* BootManagerMenu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootManagerMenu.h; sourceTree = ""; }; + 9AA9183725CD452D00BD5E8B /* BootManagerMenuApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuApp.inf; sourceTree = ""; }; + 9AA9183825CD452D00BD5E8B /* BootManagerMenuApp.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootManagerMenuApp.uni; sourceTree = ""; }; + 9AA9183A25CD452D00BD5E8B /* CapsuleApp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CapsuleApp.h; sourceTree = ""; }; + 9AA9183B25CD452D00BD5E8B /* CapsuleApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleApp.inf; sourceTree = ""; }; + 9AA9183C25CD452D00BD5E8B /* AppSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppSupport.c; sourceTree = ""; }; + 9AA9183D25CD452D00BD5E8B /* CapsuleApp.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleApp.uni; sourceTree = ""; }; + 9AA9183E25CD452D00BD5E8B /* CapsuleAppExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = CapsuleAppExtra.uni; sourceTree = ""; }; + 9AA9183F25CD452D00BD5E8B /* CapsuleOnDisk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleOnDisk.c; sourceTree = ""; }; + 9AA9184025CD452D00BD5E8B /* CapsuleApp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleApp.c; sourceTree = ""; }; + 9AA9184125CD452D00BD5E8B /* CapsuleDump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CapsuleDump.c; sourceTree = ""; }; + 9AA9184325CD452D00BD5E8B /* MemoryProfileInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MemoryProfileInfo.inf; sourceTree = ""; }; + 9AA9184425CD452D00BD5E8B /* MemoryProfileInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryProfileInfo.c; sourceTree = ""; }; + 9AA9184525CD452D00BD5E8B /* MemoryProfileInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MemoryProfileInfo.uni; sourceTree = ""; }; + 9AA9184625CD452D00BD5E8B /* MemoryProfileInfoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = MemoryProfileInfoExtra.uni; sourceTree = ""; }; + 9AA9184825CD452D00BD5E8B /* DumpDynPcd.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DumpDynPcd.inf; sourceTree = ""; }; + 9AA9184925CD452D00BD5E8B /* DumpDynPcdStr.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = DumpDynPcdStr.uni; sourceTree = ""; }; + 9AA9184A25CD452D00BD5E8B /* DumpDynPcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DumpDynPcd.c; sourceTree = ""; }; + 9AA9184C25CD452D00BD5E8B /* VariableInfoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableInfoExtra.uni; sourceTree = ""; }; + 9AA9184D25CD452D00BD5E8B /* VariableInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableInfo.inf; sourceTree = ""; }; + 9AA9184E25CD452D00BD5E8B /* VariableInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = VariableInfo.uni; sourceTree = ""; }; + 9AA9184F25CD452D00BD5E8B /* VariableInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableInfo.c; sourceTree = ""; }; + 9AA9185125CD452D00BD5E8B /* SmiHandlerProfileInfoExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileInfoExtra.uni; sourceTree = ""; }; + 9AA9185225CD452D00BD5E8B /* SmiHandlerProfileInfo.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileInfo.uni; sourceTree = ""; }; + 9AA9185325CD452D00BD5E8B /* SmiHandlerProfileInfo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmiHandlerProfileInfo.inf; sourceTree = ""; }; + 9AA9185425CD452D00BD5E8B /* SmiHandlerProfileInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmiHandlerProfileInfo.c; sourceTree = ""; }; + 9AA9185525CD452D00BD5E8B /* MdeModulePkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = MdeModulePkg.dsc; sourceTree = ""; }; + 9AA9185925CD468F00BD5E8B /* AppleMacEfiSpec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleMacEfiSpec.h; sourceTree = ""; }; + 9AA9185B25CD468F00BD5E8B /* VesaBiosExtensions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VesaBiosExtensions.h; sourceTree = ""; }; + 9AA9185C25CD468F00BD5E8B /* GenericIch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GenericIch.h; sourceTree = ""; }; + 9AA9185D25CD468F00BD5E8B /* CpuId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuId.h; sourceTree = ""; }; + 9AA9185E25CD468F00BD5E8B /* AppleSmBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSmBios.h; sourceTree = ""; }; + 9AA9185F25CD468F00BD5E8B /* AppleRtc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleRtc.h; sourceTree = ""; }; + 9AA9186025CD468F00BD5E8B /* AppleDiskImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskImage.h; sourceTree = ""; }; + 9AA9186125CD468F00BD5E8B /* PiBootMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PiBootMode.h; sourceTree = ""; }; + 9AA9186225CD468F00BD5E8B /* PeImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeImage.h; sourceTree = ""; }; + 9AA9186325CD468F00BD5E8B /* AppleChunklist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleChunklist.h; sourceTree = ""; }; + 9AA9186425CD468F00BD5E8B /* Riff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Riff.h; sourceTree = ""; }; + 9AA9186525CD468F00BD5E8B /* AppleFatBinaryImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFatBinaryImage.h; sourceTree = ""; }; + 9AA9186625CD468F00BD5E8B /* HdaCodec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaCodec.h; sourceTree = ""; }; + 9AA9186725CD468F00BD5E8B /* AppleHibernate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleHibernate.h; sourceTree = ""; }; + 9AA9186825CD468F00BD5E8B /* AppleFeatures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFeatures.h; sourceTree = ""; }; + 9AA9186925CD468F00BD5E8B /* AppleMachoImage.h.dis */ = {isa = PBXFileReference; lastKnownFileType = text; path = AppleMachoImage.h.dis; sourceTree = ""; }; + 9AA9186A25CD468F00BD5E8B /* AppleCsrConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCsrConfig.h; sourceTree = ""; }; + 9AA9186B25CD468F00BD5E8B /* PciCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCommand.h; sourceTree = ""; }; + 9AA9186C25CD468F00BD5E8B /* AppleDiskLabel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskLabel.h; sourceTree = ""; }; + 9AA9186D25CD468F00BD5E8B /* MachO-loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MachO-loader.h"; sourceTree = ""; }; + 9AA9186E25CD468F00BD5E8B /* VirtualMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; + 9AA9186F25CD468F00BD5E8B /* AppleHid.h.disabled */ = {isa = PBXFileReference; lastKnownFileType = text; path = AppleHid.h.disabled; sourceTree = ""; }; + 9AA9187025CD468F00BD5E8B /* AppleBootArgs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleBootArgs.h; sourceTree = ""; }; + 9AA9187125CD468F00BD5E8B /* AtomBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtomBios.h; sourceTree = ""; }; + 9AA9187225CD468F00BD5E8B /* UsbHid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHid.h; sourceTree = ""; }; + 9AA9187325CD468F00BD5E8B /* AppleIntelCpuInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleIntelCpuInfo.h; sourceTree = ""; }; + 9AA9187425CD468F00BD5E8B /* ProcessorInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProcessorInfo.h; sourceTree = ""; }; + 9AA9187525CD468F00BD5E8B /* PciBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciBus.h; sourceTree = ""; }; + 9AA9187625CD468F00BD5E8B /* AppleMacEfi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleMacEfi.h; sourceTree = ""; }; + 9AA9187725CD468F00BD5E8B /* EfiLdrHandoff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiLdrHandoff.h; sourceTree = ""; }; + 9AA9187925CD468F00BD5E8B /* HdaRegisters.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaRegisters.h; sourceTree = ""; }; + 9AA9187A25CD468F00BD5E8B /* HdaModels.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaModels.h; sourceTree = ""; }; + 9AA9187B25CD468F00BD5E8B /* UefiHiiServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiHiiServicesLib.h; sourceTree = ""; }; + 9AA9187C25CD468F00BD5E8B /* MachoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MachoLib.h; sourceTree = ""; }; + 9AA9187D25CD468F00BD5E8B /* HdaVerbs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaVerbs.h; sourceTree = ""; }; + 9AA9187E25CD468F00BD5E8B /* UsbMass.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMass.h; sourceTree = ""; }; + 9AA9187F25CD468F00BD5E8B /* printf_lite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = printf_lite.h; sourceTree = ""; }; + 9AA9188025CD468F00BD5E8B /* PeCoffLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeCoffLib.h; sourceTree = ""; }; + 9AA9188125CD468F00BD5E8B /* printf_lite-conf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "printf_lite-conf.h"; sourceTree = ""; }; + 9AA9188225CD468F00BD5E8B /* GenericBdsLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GenericBdsLib.h; sourceTree = ""; }; + 9AA9188325CD468F00BD5E8B /* UsbMassBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassBoot.h; sourceTree = ""; }; + 9AA9188425CD468F00BD5E8B /* MemLogLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemLogLib.h; sourceTree = ""; }; + 9AA9188525CD468F00BD5E8B /* VideoBiosPatchLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VideoBiosPatchLib.h; sourceTree = ""; }; + 9AA9188625CD468F00BD5E8B /* WaveLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaveLib.h; sourceTree = ""; }; + 9AA9188725CD468F00BD5E8B /* OcAfterBootCompatLib4Clover.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAfterBootCompatLib4Clover.h; sourceTree = ""; }; + 9AA9188925CD468F00BD5E8B /* NullTextOutput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NullTextOutput.h; sourceTree = ""; }; + 9AA9188A25CD468F00BD5E8B /* UsbMassImpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbMassImpl.h; sourceTree = ""; }; + 9AA9188B25CD468F00BD5E8B /* AppleImageCodecProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleImageCodecProtocol.h; sourceTree = ""; }; + 9AA9188C25CD468F00BD5E8B /* AppleDeviceControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDeviceControl.h; sourceTree = ""; }; + 9AA9188D25CD468F00BD5E8B /* HdaControllerInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaControllerInfo.h; sourceTree = ""; }; + 9AA9188E25CD468F00BD5E8B /* AppleKeyState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleKeyState.h; sourceTree = ""; }; + 9AA9188F25CD468F00BD5E8B /* efiConsoleControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = efiConsoleControl.h; sourceTree = ""; }; + 9AA9189025CD468F00BD5E8B /* ApplePartitionInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplePartitionInfo.h; sourceTree = ""; }; + 9AA9189125CD468F00BD5E8B /* AudioIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AudioIo.h; sourceTree = ""; }; + 9AA9189225CD468F00BD5E8B /* FSInjectProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FSInjectProtocol.h; sourceTree = ""; }; + 9AA9189325CD468F00BD5E8B /* HdaIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaIo.h; sourceTree = ""; }; + 9AA9189425CD468F00BD5E8B /* OcQuirksProtocol4Clover.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcQuirksProtocol4Clover.h; sourceTree = ""; }; + 9AA9189525CD468F00BD5E8B /* EmuVariableControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EmuVariableControl.h; sourceTree = ""; }; + 9AA9189625CD468F00BD5E8B /* KeyboardInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KeyboardInfo.h; sourceTree = ""; }; + 9AA9189725CD468F00BD5E8B /* AppleSMC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSMC.h; sourceTree = ""; }; + 9AA9189825CD468F00BD5E8B /* PciIoImp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciIoImp.h; sourceTree = ""; }; + 9AA9189925CD468F00BD5E8B /* AptioMemoryFix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AptioMemoryFix.h; sourceTree = ""; }; + 9AA9189A25CD468F00BD5E8B /* HdaCodecInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaCodecInfo.h; sourceTree = ""; }; + 9AA9189B25CD468F00BD5E8B /* ApfsEfiBootRecordInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApfsEfiBootRecordInfo.h; sourceTree = ""; }; + 9AA9189C25CD468F00BD5E8B /* ApplePlatformInfoDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplePlatformInfoDatabase.h; sourceTree = ""; }; + 9AA9189D25CD468F00BD5E8B /* MsgLog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MsgLog.h; sourceTree = ""; }; + 9AA9189E25CD468F00BD5E8B /* SimpleAudioOut.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleAudioOut.h; sourceTree = ""; }; + 9AA9189F25CD468F00BD5E8B /* AppleDiskIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskIo.h; sourceTree = ""; }; + 9AA918A025CD468F00BD5E8B /* AppleGraphConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleGraphConfig.h; sourceTree = ""; }; + 9AA918A125CD468F00BD5E8B /* Hash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Hash.h; sourceTree = ""; }; + 9AA918A225CD468F00BD5E8B /* MicrosoftWindows.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MicrosoftWindows.h; sourceTree = ""; }; + 9AA918A325CD468F00BD5E8B /* FlashLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlashLayout.h; sourceTree = ""; }; + 9AA918A425CD468F00BD5E8B /* EfiFlashMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiFlashMap.h; sourceTree = ""; }; + 9AA918A625CD468F00BD5E8B /* PciOptionRomTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciOptionRomTable.h; sourceTree = ""; }; + 9AA918A725CD468F00BD5E8B /* PciExpressBaseAddress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpressBaseAddress.h; sourceTree = ""; }; + 9AA918A825CD468F00BD5E8B /* DxeCoreFileName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreFileName.h; sourceTree = ""; }; + 9AA918A925CD468F00BD5E8B /* LdrMemoryDescriptor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LdrMemoryDescriptor.h; sourceTree = ""; }; + 9AA918AA25CD468F00BD5E8B /* ConsoleOutConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConsoleOutConfig.h; sourceTree = ""; }; + 9AA918AB25CD468F00BD5E8B /* FlashMapHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlashMapHob.h; sourceTree = ""; }; + 9AA918AC25CD468F00BD5E8B /* MicrosoftVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MicrosoftVariable.h; sourceTree = ""; }; + 9AA918AD25CD468F00BD5E8B /* AcpiDescription.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiDescription.h; sourceTree = ""; }; + 9AA918AE25CD468F00BD5E8B /* ApplePlatformInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplePlatformInfo.h; sourceTree = ""; }; + 9AA918AF25CD468F00BD5E8B /* AppleApfsInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleApfsInfo.h; sourceTree = ""; }; + 9AA918B025CD468F00BD5E8B /* EfiImageFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiImageFormat.h; sourceTree = ""; }; + 9AA918B125CD468F00BD5E8B /* UefiLoader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UefiLoader.h; sourceTree = ""; }; + 9AA918BC25CD4B5900BD5E8B /* lib.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = lib.cpp; sourceTree = ""; }; + 9AA918BD25CD4B5900BD5E8B /* lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib.h; sourceTree = ""; }; + 9AA918C525CD4CD300BD5E8B /* BmLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BmLib.h; sourceTree = ""; }; + 9AA918C625CD4CD300BD5E8B /* BmLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BmLib.cpp; sourceTree = ""; }; + 9AA918D125CD516A00BD5E8B /* BootLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootLog.h; sourceTree = ""; }; + 9AA918DD25CD597E00BD5E8B /* MBP71.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP71.yaml; sourceTree = ""; }; + 9AA918DE25CD597E00BD5E8B /* MBP111.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP111.yaml; sourceTree = ""; }; + 9AA918DF25CD597E00BD5E8B /* MBP131.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP131.yaml; sourceTree = ""; }; + 9AA918E025CD597E00BD5E8B /* MBP51.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP51.yaml; sourceTree = ""; }; + 9AA918E125CD597E00BD5E8B /* MBP92.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP92.yaml; sourceTree = ""; }; + 9AA918E225CD597E00BD5E8B /* MBP11.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP11.yaml; sourceTree = ""; }; + 9AA918E325CD597E00BD5E8B /* MBP31.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP31.yaml; sourceTree = ""; }; + 9AA918E425CD597E00BD5E8B /* MBP151.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP151.yaml; sourceTree = ""; }; + 9AA918E525CD597E00BD5E8B /* MBP41.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP41.yaml; sourceTree = ""; }; + 9AA918E625CD597E00BD5E8B /* MBP121.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP121.yaml; sourceTree = ""; }; + 9AA918E725CD597E00BD5E8B /* MBP82.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP82.yaml; sourceTree = ""; }; + 9AA918E825CD597E00BD5E8B /* MBP101.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP101.yaml; sourceTree = ""; }; + 9AA918E925CD597E00BD5E8B /* MBP61.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP61.yaml; sourceTree = ""; }; + 9AA918EA25CD597E00BD5E8B /* MBP141.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP141.yaml; sourceTree = ""; }; + 9AA918EB25CD597E00BD5E8B /* MBP21.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP21.yaml; sourceTree = ""; }; + 9AA918EC25CD597E00BD5E8B /* MBP83.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP83.yaml; sourceTree = ""; }; + 9AA918ED25CD597E00BD5E8B /* MBP161.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP161.yaml; sourceTree = ""; }; + 9AA918EE25CD597E00BD5E8B /* MBP55.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP55.yaml; sourceTree = ""; }; + 9AA918EF25CD597E00BD5E8B /* MBP162.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP162.yaml; sourceTree = ""; }; + 9AA918F025CD597E00BD5E8B /* MBP115.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP115.yaml; sourceTree = ""; }; + 9AA918F125CD597E00BD5E8B /* MBP142.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP142.yaml; sourceTree = ""; }; + 9AA918F225CD597E00BD5E8B /* MBP154.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP154.yaml; sourceTree = ""; }; + 9AA918F325CD597E00BD5E8B /* MBP22.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP22.yaml; sourceTree = ""; }; + 9AA918F425CD597E00BD5E8B /* MBP102.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP102.yaml; sourceTree = ""; }; + 9AA918F525CD597E00BD5E8B /* MBP143.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP143.yaml; sourceTree = ""; }; + 9AA918F625CD597E00BD5E8B /* MBP62.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP62.yaml; sourceTree = ""; }; + 9AA918F725CD597E00BD5E8B /* MBP114.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP114.yaml; sourceTree = ""; }; + 9AA918F825CD597E00BD5E8B /* MBP163.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP163.yaml; sourceTree = ""; }; + 9AA918F925CD597E00BD5E8B /* MBP54.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP54.yaml; sourceTree = ""; }; + 9AA918FA25CD597E00BD5E8B /* MBP81.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP81.yaml; sourceTree = ""; }; + 9AA918FB25CD597E00BD5E8B /* MBP113.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP113.yaml; sourceTree = ""; }; + 9AA918FC25CD597E00BD5E8B /* MBP152.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP152.yaml; sourceTree = ""; }; + 9AA918FD25CD597E00BD5E8B /* MBP53.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP53.yaml; sourceTree = ""; }; + 9AA918FE25CD597E00BD5E8B /* MBP12.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP12.yaml; sourceTree = ""; }; + 9AA918FF25CD597E00BD5E8B /* MBP133.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP133.yaml; sourceTree = ""; }; + 9AA9190025CD597E00BD5E8B /* MBP164.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP164.yaml; sourceTree = ""; }; + 9AA9190125CD597E00BD5E8B /* MBP132.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP132.yaml; sourceTree = ""; }; + 9AA9190225CD597E00BD5E8B /* MBP52.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP52.yaml; sourceTree = ""; }; + 9AA9190325CD597E00BD5E8B /* MBP91.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP91.yaml; sourceTree = ""; }; + 9AA9190425CD597E00BD5E8B /* MBP153.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP153.yaml; sourceTree = ""; }; + 9AA9190525CD597E00BD5E8B /* MBP112.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBP112.yaml; sourceTree = ""; }; + 9AA9190725CD597E00BD5E8B /* MM81.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM81.yaml; sourceTree = ""; }; + 9AA9190825CD597E00BD5E8B /* MM62.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM62.yaml; sourceTree = ""; }; + 9AA9190925CD597E00BD5E8B /* MM52.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM52.yaml; sourceTree = ""; }; + 9AA9190A25CD597E00BD5E8B /* MM53.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM53.yaml; sourceTree = ""; }; + 9AA9190B25CD597E00BD5E8B /* MM31.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM31.yaml; sourceTree = ""; }; + 9AA9190C25CD597E00BD5E8B /* MM11.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM11.yaml; sourceTree = ""; }; + 9AA9190D25CD597E00BD5E8B /* MM51.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM51.yaml; sourceTree = ""; }; + 9AA9190E25CD597E00BD5E8B /* MM71.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM71.yaml; sourceTree = ""; }; + 9AA9190F25CD597E00BD5E8B /* MM21.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM21.yaml; sourceTree = ""; }; + 9AA9191025CD597E00BD5E8B /* MM61.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM61.yaml; sourceTree = ""; }; + 9AA9191125CD597E00BD5E8B /* MM41.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MM41.yaml; sourceTree = ""; }; + 9AA9191325CD597E00BD5E8B /* XS21.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = XS21.yaml; sourceTree = ""; }; + 9AA9191425CD597E00BD5E8B /* XS11.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = XS11.yaml; sourceTree = ""; }; + 9AA9191525CD597E00BD5E8B /* XS31.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = XS31.yaml; sourceTree = ""; }; + 9AA9191725CD597E00BD5E8B /* IM181.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM181.yaml; sourceTree = ""; }; + 9AA9191825CD597E00BD5E8B /* IM142.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM142.yaml; sourceTree = ""; }; + 9AA9191925CD597E00BD5E8B /* IM162.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM162.yaml; sourceTree = ""; }; + 9AA9191A25CD597E00BD5E8B /* IM61.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM61.yaml; sourceTree = ""; }; + 9AA9191B25CD597E00BD5E8B /* IM122.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM122.yaml; sourceTree = ""; }; + 9AA9191C25CD597E00BD5E8B /* IM41.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM41.yaml; sourceTree = ""; }; + 9AA9191D25CD597E00BD5E8B /* IM143.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM143.yaml; sourceTree = ""; }; + 9AA9191E25CD597E00BD5E8B /* IM133.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM133.yaml; sourceTree = ""; }; + 9AA9191F25CD597E00BD5E8B /* IM191.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM191.yaml; sourceTree = ""; }; + 9AA9192025CD597E00BD5E8B /* IM144.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM144.yaml; sourceTree = ""; }; + 9AA9192125CD597E00BD5E8B /* IM113.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM113.yaml; sourceTree = ""; }; + 9AA9192225CD597E00BD5E8B /* IM51.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM51.yaml; sourceTree = ""; }; + 9AA9192325CD597E00BD5E8B /* IM112.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM112.yaml; sourceTree = ""; }; + 9AA9192425CD597E00BD5E8B /* IM201.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM201.yaml; sourceTree = ""; }; + 9AA9192525CD597E00BD5E8B /* IM132.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM132.yaml; sourceTree = ""; }; + 9AA9192625CD597E00BD5E8B /* IM71.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM71.yaml; sourceTree = ""; }; + 9AA9192725CD597E00BD5E8B /* IM131.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM131.yaml; sourceTree = ""; }; + 9AA9192825CD597E00BD5E8B /* IM52.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM52.yaml; sourceTree = ""; }; + 9AA9192925CD597E00BD5E8B /* IM111.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM111.yaml; sourceTree = ""; }; + 9AA9192A25CD597E00BD5E8B /* IM91.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM91.yaml; sourceTree = ""; }; + 9AA9192B25CD597E00BD5E8B /* IM202.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM202.yaml; sourceTree = ""; }; + 9AA9192C25CD597E00BD5E8B /* IM192.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM192.yaml; sourceTree = ""; }; + 9AA9192D25CD597E00BD5E8B /* IM151.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM151.yaml; sourceTree = ""; }; + 9AA9192E25CD597E00BD5E8B /* IM171.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM171.yaml; sourceTree = ""; }; + 9AA9192F25CD597E00BD5E8B /* IM101.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM101.yaml; sourceTree = ""; }; + 9AA9193025CD597E00BD5E8B /* IM42.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM42.yaml; sourceTree = ""; }; + 9AA9193125CD597E00BD5E8B /* IM81.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM81.yaml; sourceTree = ""; }; + 9AA9193225CD597E00BD5E8B /* IM183.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM183.yaml; sourceTree = ""; }; + 9AA9193325CD597E00BD5E8B /* IM121.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM121.yaml; sourceTree = ""; }; + 9AA9193425CD597E00BD5E8B /* IM161.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM161.yaml; sourceTree = ""; }; + 9AA9193525CD597E00BD5E8B /* IM182.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM182.yaml; sourceTree = ""; }; + 9AA9193625CD597E00BD5E8B /* IM141.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IM141.yaml; sourceTree = ""; }; + 9AA9193825CD597E00BD5E8B /* MBA72.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA72.yaml; sourceTree = ""; }; + 9AA9193925CD597E00BD5E8B /* MBA91.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA91.yaml; sourceTree = ""; }; + 9AA9193A25CD597E00BD5E8B /* MBA52.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA52.yaml; sourceTree = ""; }; + 9AA9193B25CD597E00BD5E8B /* MBA32.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA32.yaml; sourceTree = ""; }; + 9AA9193C25CD597E00BD5E8B /* MBA81.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA81.yaml; sourceTree = ""; }; + 9AA9193D25CD597E00BD5E8B /* MBA42.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA42.yaml; sourceTree = ""; }; + 9AA9193E25CD597E00BD5E8B /* MBA62.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA62.yaml; sourceTree = ""; }; + 9AA9193F25CD597E00BD5E8B /* MBA21.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA21.yaml; sourceTree = ""; }; + 9AA9194025CD597E00BD5E8B /* MBA61.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA61.yaml; sourceTree = ""; }; + 9AA9194125CD597E00BD5E8B /* MBA82.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA82.yaml; sourceTree = ""; }; + 9AA9194225CD597E00BD5E8B /* MBA41.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA41.yaml; sourceTree = ""; }; + 9AA9194325CD597E00BD5E8B /* MBA31.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA31.yaml; sourceTree = ""; }; + 9AA9194425CD597E00BD5E8B /* MBA11.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA11.yaml; sourceTree = ""; }; + 9AA9194525CD597E00BD5E8B /* MBA51.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA51.yaml; sourceTree = ""; }; + 9AA9194625CD597E00BD5E8B /* MBA71.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MBA71.yaml; sourceTree = ""; }; + 9AA9194825CD597E00BD5E8B /* MB51.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB51.yaml; sourceTree = ""; }; + 9AA9194925CD597E00BD5E8B /* MB71.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB71.yaml; sourceTree = ""; }; + 9AA9194A25CD597E00BD5E8B /* MB31.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB31.yaml; sourceTree = ""; }; + 9AA9194B25CD597E00BD5E8B /* MB11.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB11.yaml; sourceTree = ""; }; + 9AA9194C25CD597E00BD5E8B /* MB61.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB61.yaml; sourceTree = ""; }; + 9AA9194D25CD597E00BD5E8B /* MB41.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB41.yaml; sourceTree = ""; }; + 9AA9194E25CD597E00BD5E8B /* MB21.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB21.yaml; sourceTree = ""; }; + 9AA9194F25CD597E00BD5E8B /* MB81.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB81.yaml; sourceTree = ""; }; + 9AA9195025CD597E00BD5E8B /* MB101.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB101.yaml; sourceTree = ""; }; + 9AA9195125CD597E00BD5E8B /* MB52.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB52.yaml; sourceTree = ""; }; + 9AA9195225CD597E00BD5E8B /* MB91.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MB91.yaml; sourceTree = ""; }; + 9AA9195425CD597E00BD5E8B /* MP41.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MP41.yaml; sourceTree = ""; }; + 9AA9195525CD597E00BD5E8B /* MP61.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MP61.yaml; sourceTree = ""; }; + 9AA9195625CD597E00BD5E8B /* MP21.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MP21.yaml; sourceTree = ""; }; + 9AA9195725CD597E00BD5E8B /* MP71.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MP71.yaml; sourceTree = ""; }; + 9AA9195825CD597E00BD5E8B /* MP51.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MP51.yaml; sourceTree = ""; }; + 9AA9195925CD597E00BD5E8B /* MP11.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MP11.yaml; sourceTree = ""; }; + 9AA9195A25CD597E00BD5E8B /* MP31.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = MP31.yaml; sourceTree = ""; }; + 9AA9195C25CD597E00BD5E8B /* IMP11.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = IMP11.yaml; sourceTree = ""; }; + 9AA9195D25CD597E00BD5E8B /* update_generated.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = update_generated.py; sourceTree = ""; }; + 9AA9195E25CD597E00BD5E8B /* update_products.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = update_products.py; sourceTree = ""; }; + 9AA9195F25CD597E00BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA9196025CD597E00BD5E8B /* Products.zjson */ = {isa = PBXFileReference; lastKnownFileType = text; path = Products.zjson; sourceTree = ""; }; + 9AA9196125CD597E00BD5E8B /* DataBase.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = DataBase.md; sourceTree = ""; }; + 9AA9196325CD597E00BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA9196525CD597E00BD5E8B /* hfs_format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hfs_format.h; sourceTree = ""; }; + 9AA9196625CD597E00BD5E8B /* mk_fsw_strfunc.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = mk_fsw_strfunc.py; sourceTree = ""; }; + 9AA9196725CD597E00BD5E8B /* fsw_hfs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_hfs.h; sourceTree = ""; }; + 9AA9196825CD597E00BD5E8B /* fsw_core.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fsw_core.c; sourceTree = ""; }; + 9AA9196925CD597E00BD5E8B /* fsw_strfunc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_strfunc.h; sourceTree = ""; }; + 9AA9196A25CD597E00BD5E8B /* fsw_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_base.h; sourceTree = ""; }; + 9AA9196B25CD597E00BD5E8B /* fsw_efi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_efi.h; sourceTree = ""; }; + 9AA9196C25CD597E00BD5E8B /* fsw_efi_lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fsw_efi_lib.c; sourceTree = ""; }; + 9AA9196D25CD597E00BD5E8B /* fsw_lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fsw_lib.c; sourceTree = ""; }; + 9AA9196E25CD597E00BD5E8B /* hfs_unistr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hfs_unistr.h; sourceTree = ""; }; + 9AA9196F25CD597E00BD5E8B /* fsw_hfs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fsw_hfs.c; sourceTree = ""; }; + 9AA9197025CD597E00BD5E8B /* fsw_core.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_core.h; sourceTree = ""; }; + 9AA9197125CD597E00BD5E8B /* fsw_efi_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_efi_base.h; sourceTree = ""; }; + 9AA9197225CD597E00BD5E8B /* LICENSE.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE.txt; sourceTree = ""; }; + 9AA9197325CD597E00BD5E8B /* VBoxHfs.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VBoxHfs.inf; sourceTree = ""; }; + 9AA9197425CD597E00BD5E8B /* fsw_efi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fsw_efi.c; sourceTree = ""; }; + 9AA9197B25CD597E00BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA9197D25CD597E00BD5E8B /* VBoxHfs.vcxproj */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = VBoxHfs.vcxproj; sourceTree = ""; }; + 9AA9197F25CD597E00BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA9198025CD597E00BD5E8B /* dirent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dirent.h; sourceTree = ""; }; + 9AA9198225CD597E00BD5E8B /* fsw_posix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fsw_posix.c; sourceTree = ""; }; + 9AA9198325CD597E00BD5E8B /* fsw_posix_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_posix_base.h; sourceTree = ""; }; + 9AA9198425CD597E00BD5E8B /* fsw_posix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fsw_posix.h; sourceTree = ""; }; + 9AA9198525CD597E00BD5E8B /* tstmain.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = tstmain.c; sourceTree = ""; }; + 9AA9198725CD597E00BD5E8B /* AudioDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AudioDxe.c; sourceTree = ""; }; + 9AA9198925CD597E00BD5E8B /* HdaCodecInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaCodecInfo.c; sourceTree = ""; }; + 9AA9198A25CD597E00BD5E8B /* HdaCodecComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaCodecComponentName.c; sourceTree = ""; }; + 9AA9198B25CD597E00BD5E8B /* HdaCodec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaCodec.h; sourceTree = ""; }; + 9AA9198C25CD597E00BD5E8B /* HdaCodecAudioIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaCodecAudioIo.c; sourceTree = ""; }; + 9AA9198D25CD597E00BD5E8B /* HdaCodecComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaCodecComponentName.h; sourceTree = ""; }; + 9AA9198E25CD597E00BD5E8B /* HdaCodec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaCodec.c; sourceTree = ""; }; + 9AA9199025CD597E00BD5E8B /* HdaControllerComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaControllerComponentName.c; sourceTree = ""; }; + 9AA9199125CD597E00BD5E8B /* HdaControllerMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaControllerMem.c; sourceTree = ""; }; + 9AA9199225CD597E00BD5E8B /* HdaController.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaController.c; sourceTree = ""; }; + 9AA9199325CD597E00BD5E8B /* HdaControllerHdaIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaControllerHdaIo.c; sourceTree = ""; }; + 9AA9199425CD597E00BD5E8B /* HdaControllerInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaControllerInfo.c; sourceTree = ""; }; + 9AA9199525CD597E00BD5E8B /* HdaControllerComponentName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaControllerComponentName.h; sourceTree = ""; }; + 9AA9199625CD597E00BD5E8B /* HdaController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaController.h; sourceTree = ""; }; + 9AA9199725CD597E00BD5E8B /* AudioDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AudioDxe.h; sourceTree = ""; }; + 9AA9199825CD597E00BD5E8B /* AudioDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AudioDxe.inf; sourceTree = ""; }; + 9AA9199925CD597E00BD5E8B /* Changelog.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = Changelog.md; sourceTree = ""; }; + 9AA9199A25CD597E00BD5E8B /* .shellcheckrc */ = {isa = PBXFileReference; lastKnownFileType = text; path = .shellcheckrc; sourceTree = ""; }; + 9AA9199C25CD597E00BD5E8B /* 0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch */ = {isa = PBXFileReference; lastKnownFileType = text; path = "0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch"; sourceTree = ""; }; + 9AA9199D25CD597E00BD5E8B /* 0001-ShellPkg-Add-support-for-input-with-separately-repor.patch */ = {isa = PBXFileReference; lastKnownFileType = text; path = "0001-ShellPkg-Add-support-for-input-with-separately-repor.patch"; sourceTree = ""; }; + 9AA9199E25CD597E00BD5E8B /* 0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch */ = {isa = PBXFileReference; lastKnownFileType = text; path = "0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch"; sourceTree = ""; }; + 9AA9199F25CD597E00BD5E8B /* 0003-MdeModulePkg-AtaAtapiPassThru-Reduce-timeout.patch */ = {isa = PBXFileReference; lastKnownFileType = text; path = "0003-MdeModulePkg-AtaAtapiPassThru-Reduce-timeout.patch"; sourceTree = ""; }; + 9AA919A325CD597E00BD5E8B /* AppleMacEfiSpec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleMacEfiSpec.h; sourceTree = ""; }; + 9AA919A525CD597E00BD5E8B /* AppleCpuType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCpuType.h; sourceTree = ""; }; + 9AA919A725CD597E00BD5E8B /* AppleCpuType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCpuType.h; sourceTree = ""; }; + 9AA919A925CD597E00BD5E8B /* AppleProvisioning.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleProvisioning.h; sourceTree = ""; }; + 9AA919AA25CD597E00BD5E8B /* AppleIcon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleIcon.h; sourceTree = ""; }; + 9AA919AB25CD597E00BD5E8B /* AppleMachoImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleMachoImage.h; sourceTree = ""; }; + 9AA919AC25CD597E00BD5E8B /* AppleSmBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSmBios.h; sourceTree = ""; }; + 9AA919AD25CD597E00BD5E8B /* AppleNec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleNec.h; sourceTree = ""; }; + 9AA919AE25CD597E00BD5E8B /* AppleRtc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleRtc.h; sourceTree = ""; }; + 9AA919AF25CD597E00BD5E8B /* AppleDiskImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskImage.h; sourceTree = ""; }; + 9AA919B025CD597E00BD5E8B /* ApplePerfData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplePerfData.h; sourceTree = ""; }; + 9AA919B125CD597E00BD5E8B /* AppleChunklist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleChunklist.h; sourceTree = ""; }; + 9AA919B225CD597E00BD5E8B /* AppleFatBinaryImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFatBinaryImage.h; sourceTree = ""; }; + 9AA919B325CD597E00BD5E8B /* AppleSmc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSmc.h; sourceTree = ""; }; + 9AA919B425CD597E00BD5E8B /* AppleHibernate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleHibernate.h; sourceTree = ""; }; + 9AA919B525CD597E00BD5E8B /* AppleFeatures.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFeatures.h; sourceTree = ""; }; + 9AA919B625CD597E00BD5E8B /* Apfs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Apfs.h; sourceTree = ""; }; + 9AA919B725CD597E00BD5E8B /* AppleCsrConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCsrConfig.h; sourceTree = ""; }; + 9AA919B825CD597E00BD5E8B /* AppleDiskLabel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskLabel.h; sourceTree = ""; }; + 9AA919B925CD597E00BD5E8B /* AppleBootArgs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleBootArgs.h; sourceTree = ""; }; + 9AA919BA25CD597E00BD5E8B /* AppleHid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleHid.h; sourceTree = ""; }; + 9AA919BB25CD597E00BD5E8B /* AppleIntelCpuInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleIntelCpuInfo.h; sourceTree = ""; }; + 9AA919BC25CD597E00BD5E8B /* AppleKmodInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleKmodInfo.h; sourceTree = ""; }; + 9AA919BD25CD597E00BD5E8B /* AppleKxldState.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleKxldState.h; sourceTree = ""; }; + 9AA919BE25CD597E00BD5E8B /* AppleCompressedBinaryImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCompressedBinaryImage.h; sourceTree = ""; }; + 9AA919BF25CD597E00BD5E8B /* AppleMkext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleMkext.h; sourceTree = ""; }; + 9AA919C025CD597E00BD5E8B /* AppleMacEfi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleMacEfi.h; sourceTree = ""; }; + 9AA919C225CD597E00BD5E8B /* AppleInterruptLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleInterruptLib.h; sourceTree = ""; }; + 9AA919C325CD597E00BD5E8B /* BiosIdLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BiosIdLib.h; sourceTree = ""; }; + 9AA919C425CD597E00BD5E8B /* AppleSmbiosLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSmbiosLib.h; sourceTree = ""; }; + 9AA919C525CD597E00BD5E8B /* AppleCpuExtensionsLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCpuExtensionsLib.h; sourceTree = ""; }; + 9AA919C625CD597E00BD5E8B /* AppleDataHubLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDataHubLib.h; sourceTree = ""; }; + 9AA919C725CD597E00BD5E8B /* AppleEventLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleEventLib.h; sourceTree = ""; }; + 9AA919C925CD597E00BD5E8B /* UserInterfaceTheme.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserInterfaceTheme.h; sourceTree = ""; }; + 9AA919CA25CD597E00BD5E8B /* OSInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OSInfo.h; sourceTree = ""; }; + 9AA919CB25CD597E00BD5E8B /* AppleDeviceControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDeviceControl.h; sourceTree = ""; }; + 9AA919CC25CD597E00BD5E8B /* AppleSmcIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSmcIo.h; sourceTree = ""; }; + 9AA919CD25CD597E00BD5E8B /* AppleGraphicsPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleGraphicsPolicy.h; sourceTree = ""; }; + 9AA919CE25CD597E00BD5E8B /* ApplePartitionInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplePartitionInfo.h; sourceTree = ""; }; + 9AA919CF25CD597E00BD5E8B /* ApfsUnsupportedBds.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApfsUnsupportedBds.h; sourceTree = ""; }; + 9AA919D025CD597E00BD5E8B /* AppleSecureBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSecureBoot.h; sourceTree = ""; }; + 9AA919D125CD597E00BD5E8B /* AppleFirmwarePassword.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFirmwarePassword.h; sourceTree = ""; }; + 9AA919D225CD597E00BD5E8B /* AppleDiskImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiskImage.h; sourceTree = ""; }; + 9AA919D325CD597E00BD5E8B /* AppleImageConversion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleImageConversion.h; sourceTree = ""; }; + 9AA919D425CD597E00BD5E8B /* AppleRamDisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleRamDisk.h; sourceTree = ""; }; + 9AA919D525CD597E00BD5E8B /* KeyboardInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KeyboardInfo.h; sourceTree = ""; }; + 9AA919D625CD597E00BD5E8B /* AppleBeepGen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleBeepGen.h; sourceTree = ""; }; + 9AA919D725CD597E00BD5E8B /* AppleKeyMapDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleKeyMapDatabase.h; sourceTree = ""; }; + 9AA919D825CD597E00BD5E8B /* AppleGraphicsDriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleGraphicsDriver.h; sourceTree = ""; }; + 9AA919D925CD597E00BD5E8B /* AppleRemovableMedia.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleRemovableMedia.h; sourceTree = ""; }; + 9AA919DA25CD597E00BD5E8B /* AppleKeyMapAggregator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleKeyMapAggregator.h; sourceTree = ""; }; + 9AA919DB25CD597E00BD5E8B /* AppleFramebufferInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFramebufferInfo.h; sourceTree = ""; }; + 9AA919DC25CD597E00BD5E8B /* ApfsEncryptedPartition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApfsEncryptedPartition.h; sourceTree = ""; }; + 9AA919DD25CD597E00BD5E8B /* AppleImg4Verification.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleImg4Verification.h; sourceTree = ""; }; + 9AA919DE25CD597E00BD5E8B /* DevicePathPropertyDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DevicePathPropertyDatabase.h; sourceTree = ""; }; + 9AA919DF25CD597E00BD5E8B /* AppleSingleFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSingleFile.h; sourceTree = ""; }; + 9AA919E025CD597E00BD5E8B /* AppleRtcRam.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleRtcRam.h; sourceTree = ""; }; + 9AA919E125CD597E00BD5E8B /* AppleVoiceOver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleVoiceOver.h; sourceTree = ""; }; + 9AA919E225CD597E00BD5E8B /* AppleDebugLog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDebugLog.h; sourceTree = ""; }; + 9AA919E325CD597E00BD5E8B /* AppleHda.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleHda.h; sourceTree = ""; }; + 9AA919E425CD597E00BD5E8B /* Apple80211.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Apple80211.h; sourceTree = ""; }; + 9AA919E525CD597E00BD5E8B /* ApfsEfiBootRecordInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApfsEfiBootRecordInfo.h; sourceTree = ""; }; + 9AA919E625CD597E00BD5E8B /* ApplePlatformInfoDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplePlatformInfoDatabase.h; sourceTree = ""; }; + 9AA919E725CD597E00BD5E8B /* AppleDiag.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDiag.h; sourceTree = ""; }; + 9AA919E825CD597E00BD5E8B /* AppleSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleSystemInfo.h; sourceTree = ""; }; + 9AA919E925CD597E00BD5E8B /* AppleBootPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleBootPolicy.h; sourceTree = ""; }; + 9AA919EA25CD597E00BD5E8B /* AppleEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleEvent.h; sourceTree = ""; }; + 9AA919EB25CD597E00BD5E8B /* AppleDmgBoot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDmgBoot.h; sourceTree = ""; }; + 9AA919EC25CD597E00BD5E8B /* AppleLoadImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleLoadImage.h; sourceTree = ""; }; + 9AA919EE25CD597E00BD5E8B /* AppleCpuType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCpuType.h; sourceTree = ""; }; + 9AA919F025CD597F00BD5E8B /* AppleBless.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleBless.h; sourceTree = ""; }; + 9AA919F125CD597F00BD5E8B /* AppleDataHub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDataHub.h; sourceTree = ""; }; + 9AA919F225CD597F00BD5E8B /* AppleFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFile.h; sourceTree = ""; }; + 9AA919F325CD597F00BD5E8B /* AppleOSLoaded.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleOSLoaded.h; sourceTree = ""; }; + 9AA919F425CD597F00BD5E8B /* AppleCertificate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCertificate.h; sourceTree = ""; }; + 9AA919F525CD597F00BD5E8B /* AppleDevicePath.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleDevicePath.h; sourceTree = ""; }; + 9AA919F625CD597F00BD5E8B /* AppleHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleHob.h; sourceTree = ""; }; + 9AA919F725CD597F00BD5E8B /* AppleTscFrequency.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleTscFrequency.h; sourceTree = ""; }; + 9AA919F825CD597F00BD5E8B /* ApplePlatformInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplePlatformInfo.h; sourceTree = ""; }; + 9AA919F925CD597F00BD5E8B /* AppleHfsInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleHfsInfo.h; sourceTree = ""; }; + 9AA919FA25CD597F00BD5E8B /* AppleVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleVariable.h; sourceTree = ""; }; + 9AA919FB25CD597F00BD5E8B /* BiosId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BiosId.h; sourceTree = ""; }; + 9AA919FC25CD597F00BD5E8B /* AppleApfsInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleApfsInfo.h; sourceTree = ""; }; + 9AA919FD25CD597F00BD5E8B /* AppleTDMApprovedGuid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleTDMApprovedGuid.h; sourceTree = ""; }; + 9AA919FE25CD597F00BD5E8B /* AppleFirmwareVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFirmwareVolume.h; sourceTree = ""; }; + 9AA91A0025CD597F00BD5E8B /* AppleCpuType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCpuType.h; sourceTree = ""; }; + 9AA91A0225CD597F00BD5E8B /* AppleCpuType.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleCpuType.h; sourceTree = ""; }; + 9AA91A0525CD597F00BD5E8B /* HeciMsg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeciMsg.h; sourceTree = ""; }; + 9AA91A0625CD597F00BD5E8B /* HdaRegisters.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaRegisters.h; sourceTree = ""; }; + 9AA91A0725CD597F00BD5E8B /* GenericIch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GenericIch.h; sourceTree = ""; }; + 9AA91A0825CD597F00BD5E8B /* CpuId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuId.h; sourceTree = ""; }; + 9AA91A0925CD597F00BD5E8B /* HeciClientMsg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeciClientMsg.h; sourceTree = ""; }; + 9AA91A0A25CD597F00BD5E8B /* HdaVerbs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaVerbs.h; sourceTree = ""; }; + 9AA91A0B25CD597F00BD5E8B /* VirtualMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; + 9AA91A0C25CD597F00BD5E8B /* ProcessorInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProcessorInfo.h; sourceTree = ""; }; + 9AA91A0E25CD597F00BD5E8B /* Heci2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Heci2.h; sourceTree = ""; }; + 9AA91A0F25CD597F00BD5E8B /* LegacyBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyBios.h; sourceTree = ""; }; + 9AA91A1025CD597F00BD5E8B /* HotPlugDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HotPlugDevice.h; sourceTree = ""; }; + 9AA91A1125CD597F00BD5E8B /* FrameworkMpService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FrameworkMpService.h; sourceTree = ""; }; + 9AA91A1225CD597F00BD5E8B /* ConsoleControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConsoleControl.h; sourceTree = ""; }; + 9AA91A1325CD597F00BD5E8B /* Heci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Heci.h; sourceTree = ""; }; + 9AA91A1425CD597F00BD5E8B /* VgaMiniPort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VgaMiniPort.h; sourceTree = ""; }; + 9AA91A1525CD597F00BD5E8B /* LegacyRegion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyRegion.h; sourceTree = ""; }; + 9AA91A1625CD597F00BD5E8B /* DataHub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DataHub.h; sourceTree = ""; }; + 9AA91A1725CD597F00BD5E8B /* FirmwareVolume.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FirmwareVolume.h; sourceTree = ""; }; + 9AA91A1925CD597F00BD5E8B /* DataHubRecords.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DataHubRecords.h; sourceTree = ""; }; + 9AA91A1A25CD597F00BD5E8B /* BlockIoVendor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlockIoVendor.h; sourceTree = ""; }; + 9AA91A1D25CD597F00BD5E8B /* AmiPointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AmiPointer.h; sourceTree = ""; }; + 9AA91A1E25CD597F00BD5E8B /* AmiKeycode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AmiKeycode.h; sourceTree = ""; }; + 9AA91A2025CD597F00BD5E8B /* EfiLdrHandoff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiLdrHandoff.h; sourceTree = ""; }; + 9AA91A2225CD597F00BD5E8B /* DuetBdsLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DuetBdsLib.h; sourceTree = ""; }; + 9AA91A2325CD597F00BD5E8B /* FlashLayout.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlashLayout.h; sourceTree = ""; }; + 9AA91A2425CD597F00BD5E8B /* EfiFlashMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiFlashMap.h; sourceTree = ""; }; + 9AA91A2625CD597F00BD5E8B /* PciOptionRomTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciOptionRomTable.h; sourceTree = ""; }; + 9AA91A2725CD597F00BD5E8B /* PciExpressBaseAddress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciExpressBaseAddress.h; sourceTree = ""; }; + 9AA91A2825CD597F00BD5E8B /* DxeCoreFileName.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeCoreFileName.h; sourceTree = ""; }; + 9AA91A2925CD597F00BD5E8B /* LdrMemoryDescriptor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LdrMemoryDescriptor.h; sourceTree = ""; }; + 9AA91A2A25CD597F00BD5E8B /* FlashMapHob.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlashMapHob.h; sourceTree = ""; }; + 9AA91A2B25CD597F00BD5E8B /* AcpiDescription.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AcpiDescription.h; sourceTree = ""; }; + 9AA91A2C25CD597F00BD5E8B /* EfiImageFormat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiImageFormat.h; sourceTree = ""; }; + 9AA91A2E25CD597F00BD5E8B /* MicrosoftWindows.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MicrosoftWindows.h; sourceTree = ""; }; + 9AA91A3025CD597F00BD5E8B /* MicrosoftVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MicrosoftVariable.h; sourceTree = ""; }; + 9AA91A3325CD597F00BD5E8B /* Riff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Riff.h; sourceTree = ""; }; + 9AA91A3425CD597F00BD5E8B /* UsbHid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UsbHid.h; sourceTree = ""; }; + 9AA91A3725CD597F00BD5E8B /* OcPeImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcPeImage.h; sourceTree = ""; }; + 9AA91A3925CD597F00BD5E8B /* OcAppleImg4Lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleImg4Lib.h; sourceTree = ""; }; + 9AA91A3A25CD597F00BD5E8B /* OcHeciLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcHeciLib.h; sourceTree = ""; }; + 9AA91A3B25CD597F00BD5E8B /* OcAppleKeyMapLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleKeyMapLib.h; sourceTree = ""; }; + 9AA91A3C25CD597F00BD5E8B /* OcCpuLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcCpuLib.h; sourceTree = ""; }; + 9AA91A3D25CD597F00BD5E8B /* OcHashServicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcHashServicesLib.h; sourceTree = ""; }; + 9AA91A3E25CD597F00BD5E8B /* OcMacInfoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcMacInfoLib.h; sourceTree = ""; }; + 9AA91A3F25CD597F00BD5E8B /* OcApfsLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcApfsLib.h; sourceTree = ""; }; + 9AA91A4025CD597F00BD5E8B /* OcVirtualFsLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcVirtualFsLib.h; sourceTree = ""; }; + 9AA91A4125CD597F00BD5E8B /* OcAppleImageConversionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleImageConversionLib.h; sourceTree = ""; }; + 9AA91A4225CD597F00BD5E8B /* OcRtcLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcRtcLib.h; sourceTree = ""; }; + 9AA91A4325CD597F00BD5E8B /* OcMiscLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcMiscLib.h; sourceTree = ""; }; + 9AA91A4425CD597F00BD5E8B /* OcPeCoffLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcPeCoffLib.h; sourceTree = ""; }; + 9AA91A4525CD597F00BD5E8B /* OcConfigurationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcConfigurationLib.h; sourceTree = ""; }; + 9AA91A4625CD597F00BD5E8B /* OcDevicePathLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcDevicePathLib.h; sourceTree = ""; }; + 9AA91A4725CD597F00BD5E8B /* OcFileLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcFileLib.h; sourceTree = ""; }; + 9AA91A4825CD597F00BD5E8B /* OcTemplateLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcTemplateLib.h; sourceTree = ""; }; + 9AA91A4925CD597F00BD5E8B /* OcAppleKernelLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleKernelLib.h; sourceTree = ""; }; + 9AA91A4A25CD597F00BD5E8B /* OcDriverConnectionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcDriverConnectionLib.h; sourceTree = ""; }; + 9AA91A4B25CD597F00BD5E8B /* OcAudioLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAudioLib.h; sourceTree = ""; }; + 9AA91A4C25CD597F00BD5E8B /* OcStorageLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcStorageLib.h; sourceTree = ""; }; + 9AA91A4D25CD597F00BD5E8B /* OcAppleRamDiskLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleRamDiskLib.h; sourceTree = ""; }; + 9AA91A4E25CD597F00BD5E8B /* OcAfterBootCompatLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAfterBootCompatLib.h; sourceTree = ""; }; + 9AA91A4F25CD597F00BD5E8B /* OcStringLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcStringLib.h; sourceTree = ""; }; + 9AA91A5025CD597F00BD5E8B /* OcAppleUserInterfaceThemeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleUserInterfaceThemeLib.h; sourceTree = ""; }; + 9AA91A5125CD597F00BD5E8B /* OcDebugLogLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcDebugLogLib.h; sourceTree = ""; }; + 9AA91A5225CD597F00BD5E8B /* OcXmlLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcXmlLib.h; sourceTree = ""; }; + 9AA91A5325CD597F00BD5E8B /* OcFirmwarePasswordLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcFirmwarePasswordLib.h; sourceTree = ""; }; + 9AA91A5425CD597F00BD5E8B /* OcMachoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcMachoLib.h; sourceTree = ""; }; + 9AA91A5525CD597F00BD5E8B /* OcAppleChunklistLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleChunklistLib.h; sourceTree = ""; }; + 9AA91A5625CD597F00BD5E8B /* OcAcpiLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAcpiLib.h; sourceTree = ""; }; + 9AA91A5725CD597F00BD5E8B /* OcDataHubLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcDataHubLib.h; sourceTree = ""; }; + 9AA91A5825CD597F00BD5E8B /* OcSerializeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcSerializeLib.h; sourceTree = ""; }; + 9AA91A5925CD597F00BD5E8B /* OcBootServicesTableLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcBootServicesTableLib.h; sourceTree = ""; }; + 9AA91A5A25CD597F00BD5E8B /* OcMemoryLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcMemoryLib.h; sourceTree = ""; }; + 9AA91A5B25CD597F00BD5E8B /* OcSmcLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcSmcLib.h; sourceTree = ""; }; + 9AA91A5C25CD597F00BD5E8B /* OcOSInfoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcOSInfoLib.h; sourceTree = ""; }; + 9AA91A5D25CD597F00BD5E8B /* OcBootManagementLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcBootManagementLib.h; sourceTree = ""; }; + 9AA91A5E25CD597F00BD5E8B /* OcHdaDevicesLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcHdaDevicesLib.h; sourceTree = ""; }; + 9AA91A5F25CD597F00BD5E8B /* OcGuardLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcGuardLib.h; sourceTree = ""; }; + 9AA91A6025CD597F00BD5E8B /* OcAppleSecureBootLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleSecureBootLib.h; sourceTree = ""; }; + 9AA91A6125CD597F00BD5E8B /* OcSmbiosLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcSmbiosLib.h; sourceTree = ""; }; + 9AA91A6225CD597F00BD5E8B /* OcUnicodeCollationEngGenericLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcUnicodeCollationEngGenericLib.h; sourceTree = ""; }; + 9AA91A6325CD597F00BD5E8B /* OcAppleBootPolicyLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleBootPolicyLib.h; sourceTree = ""; }; + 9AA91A6425CD597F00BD5E8B /* OcCryptoLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcCryptoLib.h; sourceTree = ""; }; + 9AA91A6525CD597F00BD5E8B /* OcDevicePropertyLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcDevicePropertyLib.h; sourceTree = ""; }; + 9AA91A6625CD597F00BD5E8B /* OcAppleKeysLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleKeysLib.h; sourceTree = ""; }; + 9AA91A6725CD597F00BD5E8B /* OcInputLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcInputLib.h; sourceTree = ""; }; + 9AA91A6825CD597F00BD5E8B /* OcAppleDiskImageLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleDiskImageLib.h; sourceTree = ""; }; + 9AA91A6925CD597F00BD5E8B /* OcDeviceTreeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcDeviceTreeLib.h; sourceTree = ""; }; + 9AA91A6A25CD597F00BD5E8B /* OcAppleEventLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleEventLib.h; sourceTree = ""; }; + 9AA91A6B25CD597F00BD5E8B /* OcPngLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcPngLib.h; sourceTree = ""; }; + 9AA91A6C25CD597F00BD5E8B /* OcFirmwareVolumeLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcFirmwareVolumeLib.h; sourceTree = ""; }; + 9AA91A6D25CD597F00BD5E8B /* OcAppleImageVerificationLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleImageVerificationLib.h; sourceTree = ""; }; + 9AA91A6E25CD597F00BD5E8B /* OcTimerLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcTimerLib.h; sourceTree = ""; }; + 9AA91A6F25CD597F00BD5E8B /* OcRngLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcRngLib.h; sourceTree = ""; }; + 9AA91A7025CD597F00BD5E8B /* OcConsoleLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcConsoleLib.h; sourceTree = ""; }; + 9AA91A7125CD597F00BD5E8B /* OcCompressionLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcCompressionLib.h; sourceTree = ""; }; + 9AA91A7325CD597F00BD5E8B /* OcInterface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcInterface.h; sourceTree = ""; }; + 9AA91A7425CD597F00BD5E8B /* OcFirmwareRuntime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcFirmwareRuntime.h; sourceTree = ""; }; + 9AA91A7525CD597F00BD5E8B /* HdaControllerInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaControllerInfo.h; sourceTree = ""; }; + 9AA91A7625CD597F00BD5E8B /* AudioIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AudioIo.h; sourceTree = ""; }; + 9AA91A7725CD597F00BD5E8B /* HdaIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaIo.h; sourceTree = ""; }; + 9AA91A7825CD597F00BD5E8B /* OcAfterBootCompat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAfterBootCompat.h; sourceTree = ""; }; + 9AA91A7925CD597F00BD5E8B /* HdaCodecInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaCodecInfo.h; sourceTree = ""; }; + 9AA91A7A25CD597F00BD5E8B /* OcBootstrap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcBootstrap.h; sourceTree = ""; }; + 9AA91A7B25CD597F00BD5E8B /* OcLog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcLog.h; sourceTree = ""; }; + 9AA91A7C25CD597F00BD5E8B /* OcAudio.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAudio.h; sourceTree = ""; }; + 9AA91A7E25CD597F00BD5E8B /* OcSmBios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcSmBios.h; sourceTree = ""; }; + 9AA91A7F25CD597F00BD5E8B /* OcVariable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcVariable.h; sourceTree = ""; }; + 9AA91A8025CD597F00BD5E8B /* OpenCore.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenCore.h; sourceTree = ""; }; + 9AA91A8325CD597F00BD5E8B /* VMwareMac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VMwareMac.h; sourceTree = ""; }; + 9AA91A8425CD597F00BD5E8B /* VMwareDebug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VMwareDebug.h; sourceTree = ""; }; + 9AA91A8525CD597F00BD5E8B /* VMwareHda.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VMwareHda.h; sourceTree = ""; }; + 9AA91A8825CD597F00BD5E8B /* GuiApp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GuiApp.c; sourceTree = ""; }; + 9AA91A8925CD597F00BD5E8B /* BmfLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BmfLib.h; sourceTree = ""; }; + 9AA91A8A25CD597F00BD5E8B /* OpenCanopy.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenCanopy.inf; sourceTree = ""; }; + 9AA91A8C25CD597F00BD5E8B /* InputSimTextIn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InputSimTextIn.c; sourceTree = ""; }; + 9AA91A8D25CD597F00BD5E8B /* InputSimAbsPtr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InputSimAbsPtr.c; sourceTree = ""; }; + 9AA91A8E25CD597F00BD5E8B /* OpenCanopy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenCanopy.h; sourceTree = ""; }; + 9AA91A9025CD597F00BD5E8B /* OutputStGop.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OutputStGop.c; sourceTree = ""; }; + 9AA91A9125CD597F00BD5E8B /* OcBootstrap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcBootstrap.c; sourceTree = ""; }; + 9AA91A9225CD597F00BD5E8B /* GuiApp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuiApp.h; sourceTree = ""; }; + 9AA91A9325CD597F00BD5E8B /* GuiIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GuiIo.h; sourceTree = ""; }; + 9AA91A9425CD597F00BD5E8B /* OpenCanopy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCanopy.c; sourceTree = ""; }; + 9AA91A9525CD597F00BD5E8B /* BitmapFont.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BitmapFont.c; sourceTree = ""; }; + 9AA91A9725CD597F00BD5E8B /* BootPicker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootPicker.c; sourceTree = ""; }; + 9AA91A9825CD597F00BD5E8B /* BootPicker.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootPicker.h; sourceTree = ""; }; + 9AA91A9925CD597F00BD5E8B /* BmfFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BmfFile.h; sourceTree = ""; }; + 9AA91A9B25CD597F00BD5E8B /* OpenRuntimePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenRuntimePrivate.h; sourceTree = ""; }; + 9AA91A9C25CD597F00BD5E8B /* OpenRuntime.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenRuntime.inf; sourceTree = ""; }; + 9AA91A9D25CD597F00BD5E8B /* OpenRuntime.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenRuntime.c; sourceTree = ""; }; + 9AA91A9E25CD597F00BD5E8B /* UefiRuntimeServices.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiRuntimeServices.c; sourceTree = ""; }; + 9AA91AA025CD597F00BD5E8B /* UsbKbDxeExtra.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxeExtra.uni; sourceTree = ""; }; + 9AA91AA125CD597F00BD5E8B /* AppleKey.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleKey.c; sourceTree = ""; }; + 9AA91AA225CD597F00BD5E8B /* KeyBoard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KeyBoard.c; sourceTree = ""; }; + 9AA91AA325CD597F00BD5E8B /* UsbKbDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxe.inf; sourceTree = ""; }; + 9AA91AA425CD597F00BD5E8B /* EfiKey.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiKey.h; sourceTree = ""; }; + 9AA91AA525CD597F00BD5E8B /* UsbKbDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = UsbKbDxe.uni; sourceTree = ""; }; + 9AA91AA625CD597F00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA91AA725CD597F00BD5E8B /* KeyBoard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KeyBoard.h; sourceTree = ""; }; + 9AA91AA825CD597F00BD5E8B /* AppleKey.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleKey.h; sourceTree = ""; }; + 9AA91AA925CD597F00BD5E8B /* EfiKey.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EfiKey.c; sourceTree = ""; }; + 9AA91AAB25CD597F00BD5E8B /* CrScreenshotDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CrScreenshotDxe.inf; sourceTree = ""; }; + 9AA91AAC25CD597F00BD5E8B /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + 9AA91AAD25CD597F00BD5E8B /* CrScreenshotDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CrScreenshotDxe.c; sourceTree = ""; }; + 9AA91AAE25CD597F00BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91AB025CD597F00BD5E8B /* OpenCoreUefi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreUefi.c; sourceTree = ""; }; + 9AA91AB125CD597F00BD5E8B /* OpenCoreVault.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreVault.c; sourceTree = ""; }; + 9AA91AB225CD597F00BD5E8B /* OpenCoreLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenCoreLib.inf; sourceTree = ""; }; + 9AA91AB325CD597F00BD5E8B /* OpenCore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCore.c; sourceTree = ""; }; + 9AA91AB425CD597F00BD5E8B /* OpenCoreAcpi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreAcpi.c; sourceTree = ""; }; + 9AA91AB525CD597F00BD5E8B /* OpenCoreUefiInOut.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreUefiInOut.c; sourceTree = ""; }; + 9AA91AB625CD597F00BD5E8B /* OpenCoreMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreMisc.c; sourceTree = ""; }; + 9AA91AB725CD597F00BD5E8B /* OpenCorePlatform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCorePlatform.c; sourceTree = ""; }; + 9AA91AB825CD597F00BD5E8B /* OpenCoreDevProps.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreDevProps.c; sourceTree = ""; }; + 9AA91AB925CD597F00BD5E8B /* OpenCoreNvram.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreNvram.c; sourceTree = ""; }; + 9AA91ABA25CD597F00BD5E8B /* OpenCoreKernelPatch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreKernelPatch.c; sourceTree = ""; }; + 9AA91ABB25CD597F00BD5E8B /* OpenCoreUefiAudio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreUefiAudio.c; sourceTree = ""; }; + 9AA91ABC25CD597F00BD5E8B /* OpenCore.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenCore.inf; sourceTree = ""; }; + 9AA91ABD25CD597F00BD5E8B /* OpenCoreKernel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenCoreKernel.c; sourceTree = ""; }; + 9AA91AC025CD597F00BD5E8B /* AcpiTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiTest.c; sourceTree = ""; }; + 9AA91AC125CD597F00BD5E8B /* AcpiTestApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTestApp.inf; sourceTree = ""; }; + 9AA91AC225CD597F00BD5E8B /* AcpiTest.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = AcpiTest.inf; sourceTree = ""; }; + 9AA91AC425CD597F00BD5E8B /* CryptoTest.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CryptoTest.inf; sourceTree = ""; }; + 9AA91AC525CD597F00BD5E8B /* CryptoTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CryptoTest.c; sourceTree = ""; }; + 9AA91AC625CD597F00BD5E8B /* CryptoSamples.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CryptoSamples.h; sourceTree = ""; }; + 9AA91AC725CD597F00BD5E8B /* CryptoTestApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CryptoTestApp.inf; sourceTree = ""; }; + 9AA91AC925CD597F00BD5E8B /* SmbiosTestApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosTestApp.inf; sourceTree = ""; }; + 9AA91ACA25CD597F00BD5E8B /* SmbiosTest.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosTest.inf; sourceTree = ""; }; + 9AA91ACB25CD597F00BD5E8B /* SmbiosTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosTest.c; sourceTree = ""; }; + 9AA91ACD25CD597F00BD5E8B /* DataHubTestApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DataHubTestApp.inf; sourceTree = ""; }; + 9AA91ACE25CD597F00BD5E8B /* DataHubTest.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DataHubTest.inf; sourceTree = ""; }; + 9AA91ACF25CD597F00BD5E8B /* DataHubTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DataHubTest.c; sourceTree = ""; }; + 9AA91AD125CD597F00BD5E8B /* PropertyTest.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PropertyTest.inf; sourceTree = ""; }; + 9AA91AD225CD597F00BD5E8B /* PropertyTest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PropertyTest.c; sourceTree = ""; }; + 9AA91AD325CD597F00BD5E8B /* PropertyTestApp.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PropertyTestApp.inf; sourceTree = ""; }; + 9AA91AD625CD597F00BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91AD725CD597F00BD5E8B /* boot0.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = boot0.nasm; sourceTree = ""; }; + 9AA91AD825CD597F00BD5E8B /* boot1f32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = boot1f32.nasm; sourceTree = ""; }; + 9AA91ADB25CD597F00BD5E8B /* SmbiosGenStrings.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosGenStrings.uni; sourceTree = ""; }; + 9AA91ADC25CD597F00BD5E8B /* SmbiosGen.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosGen.c; sourceTree = ""; }; + 9AA91ADD25CD597F00BD5E8B /* SmbiosGen.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = SmbiosGen.inf; sourceTree = ""; }; + 9AA91ADE25CD597F00BD5E8B /* SmbiosGen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbiosGen.h; sourceTree = ""; }; + 9AA91AE125CD597F00BD5E8B /* CpuInterrupt.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuInterrupt.nasm; sourceTree = ""; }; + 9AA91AE225CD597F00BD5E8B /* CpuDxe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CpuDxe.c; sourceTree = ""; }; + 9AA91AE425CD597F00BD5E8B /* CpuInterrupt.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = CpuInterrupt.nasm; sourceTree = ""; }; + 9AA91AE525CD597F00BD5E8B /* CpuDxe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CpuDxe.h; sourceTree = ""; }; + 9AA91AE625CD597F00BD5E8B /* CpuDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CpuDxe.inf; sourceTree = ""; }; + 9AA91AE825CD597F00BD5E8B /* LzmaDecompress.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LzmaDecompress.h; sourceTree = ""; }; + 9AA91AE925CD597F00BD5E8B /* PeLoader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeLoader.c; sourceTree = ""; }; + 9AA91AEA25CD597F00BD5E8B /* EfiLdrHandoff.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiLdrHandoff.h; sourceTree = ""; }; + 9AA91AEB25CD597F00BD5E8B /* Support.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Support.c; sourceTree = ""; }; + 9AA91AEC25CD597F00BD5E8B /* EfiLoader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EfiLoader.c; sourceTree = ""; }; + 9AA91AED25CD597F00BD5E8B /* EfiLdr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EfiLdr.h; sourceTree = ""; }; + 9AA91AEE25CD597F00BD5E8B /* PeLoader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PeLoader.h; sourceTree = ""; }; + 9AA91AEF25CD597F00BD5E8B /* EfiLdr.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = EfiLdr.inf; sourceTree = ""; }; + 9AA91AF025CD597F00BD5E8B /* Support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Support.h; sourceTree = ""; }; + 9AA91AF225CD597F00BD5E8B /* PciRootBridgeNoEnumeration.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciRootBridgeNoEnumeration.inf; sourceTree = ""; }; + 9AA91AF325CD597F00BD5E8B /* PcatPciRootBridge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcatPciRootBridge.c; sourceTree = ""; }; + 9AA91AF425CD597F00BD5E8B /* PcatPciRootBridgeDevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcatPciRootBridgeDevicePath.c; sourceTree = ""; }; + 9AA91AF525CD597F00BD5E8B /* DeviceIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceIo.h; sourceTree = ""; }; + 9AA91AF625CD597F00BD5E8B /* PcatPciRootBridgeIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcatPciRootBridgeIo.c; sourceTree = ""; }; + 9AA91AF725CD597F00BD5E8B /* PcatPciRootBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PcatPciRootBridge.h; sourceTree = ""; }; + 9AA91AF825CD597F00BD5E8B /* PcatIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PcatIo.c; sourceTree = ""; }; + 9AA91AF925CD597F00BD5E8B /* DeviceIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DeviceIo.c; sourceTree = ""; }; + 9AA91AFB25CD597F00BD5E8B /* LegacyRegion2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LegacyRegion2.c; sourceTree = ""; }; + 9AA91AFC25CD597F00BD5E8B /* LegacyRegion2Dxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = LegacyRegion2Dxe.inf; sourceTree = ""; }; + 9AA91AFD25CD597F00BD5E8B /* LegacyRegion2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyRegion2.h; sourceTree = ""; }; + 9AA91AFF25CD597F00BD5E8B /* Reset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Reset.c; sourceTree = ""; }; + 9AA91B0025CD597F00BD5E8B /* Reset.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Reset.inf; sourceTree = ""; }; + 9AA91B0225CD597F00BD5E8B /* LegacyTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LegacyTable.c; sourceTree = ""; }; + 9AA91B0325CD597F00BD5E8B /* DxeIpl.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DxeIpl.inf; sourceTree = ""; }; + 9AA91B0525CD597F00BD5E8B /* Paging.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Paging.c; sourceTree = ""; }; + 9AA91B0625CD597F00BD5E8B /* EnterDxeCore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnterDxeCore.c; sourceTree = ""; }; + 9AA91B0725CD597F00BD5E8B /* VirtualMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; + 9AA91B0825CD597F00BD5E8B /* DxeIpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DxeIpl.h; sourceTree = ""; }; + 9AA91B0925CD597F00BD5E8B /* HobGeneration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HobGeneration.h; sourceTree = ""; }; + 9AA91B0A25CD597F00BD5E8B /* LegacyTable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LegacyTable.h; sourceTree = ""; }; + 9AA91B0B25CD597F00BD5E8B /* DxeInit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DxeInit.c; sourceTree = ""; }; + 9AA91B0D25CD597F00BD5E8B /* Paging.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Paging.c; sourceTree = ""; }; + 9AA91B0E25CD597F00BD5E8B /* EnterDxeCore.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EnterDxeCore.c; sourceTree = ""; }; + 9AA91B0F25CD597F00BD5E8B /* VirtualMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; + 9AA91B1025CD597F00BD5E8B /* HobGeneration.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HobGeneration.c; sourceTree = ""; }; + 9AA91B1225CD597F00BD5E8B /* LegacyBiosThunk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LegacyBiosThunk.c; sourceTree = ""; }; + 9AA91B1325CD597F00BD5E8B /* VesaBiosExtensions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VesaBiosExtensions.h; sourceTree = ""; }; + 9AA91B1425CD597F00BD5E8B /* BiosVideo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BiosVideo.h; sourceTree = ""; }; + 9AA91B1525CD597F00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA91B1625CD597F00BD5E8B /* BiosVideo.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BiosVideo.inf; sourceTree = ""; }; + 9AA91B1725CD597F00BD5E8B /* BiosVideo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BiosVideo.c; sourceTree = ""; }; + 9AA91B1925CD597F00BD5E8B /* BdsEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BdsEntry.c; sourceTree = ""; }; + 9AA91B1A25CD597F00BD5E8B /* BdsDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxe.inf; sourceTree = ""; }; + 9AA91B1B25CD597F00BD5E8B /* BdsDxe.uni */ = {isa = PBXFileReference; lastKnownFileType = text; path = BdsDxe.uni; sourceTree = ""; }; + 9AA91B1C25CD597F00BD5E8B /* Bds.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Bds.h; sourceTree = ""; }; + 9AA91B1E25CD597F00BD5E8B /* PciEnumerator.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciEnumerator.c; sourceTree = ""; }; + 9AA91B1F25CD597F00BD5E8B /* PciDeviceSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciDeviceSupport.c; sourceTree = ""; }; + 9AA91B2025CD597F00BD5E8B /* PciIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciIo.c; sourceTree = ""; }; + 9AA91B2125CD597F00BD5E8B /* PciCommand.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciCommand.c; sourceTree = ""; }; + 9AA91B2225CD597F00BD5E8B /* PciEnumeratorSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciEnumeratorSupport.c; sourceTree = ""; }; + 9AA91B2325CD597F00BD5E8B /* ComponentName.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ComponentName.c; sourceTree = ""; }; + 9AA91B2425CD597F00BD5E8B /* PciBus.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciBus.c; sourceTree = ""; }; + 9AA91B2525CD597F00BD5E8B /* PciPowerManagement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PciPowerManagement.c; sourceTree = ""; }; + 9AA91B2625CD597F00BD5E8B /* PciBusNoEnumeration.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PciBusNoEnumeration.inf; sourceTree = ""; }; + 9AA91B2725CD597F00BD5E8B /* PciEnumerator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumerator.h; sourceTree = ""; }; + 9AA91B2825CD597F00BD5E8B /* PciCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciCommand.h; sourceTree = ""; }; + 9AA91B2925CD597F00BD5E8B /* PciIo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciIo.h; sourceTree = ""; }; + 9AA91B2A25CD597F00BD5E8B /* PciDeviceSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciDeviceSupport.h; sourceTree = ""; }; + 9AA91B2B25CD597F00BD5E8B /* PciPowerManagement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciPowerManagement.h; sourceTree = ""; }; + 9AA91B2C25CD597F00BD5E8B /* PciBus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciBus.h; sourceTree = ""; }; + 9AA91B2D25CD597F00BD5E8B /* PciEnumeratorSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PciEnumeratorSupport.h; sourceTree = ""; }; + 9AA91B2E25CD597F00BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91B3025CD597F00BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91B3125CD597F00BD5E8B /* start.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = start.nasm; sourceTree = ""; }; + 9AA91B3225CD597F00BD5E8B /* efi64.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = efi64.nasm; sourceTree = ""; }; + 9AA91B3325CD597F00BD5E8B /* efi32.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = efi32.nasm; sourceTree = ""; }; + 9AA91B3525CD597F00BD5E8B /* HfsPlus.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HfsPlus.inf; sourceTree = ""; }; + 9AA91B3625CD597F00BD5E8B /* OpenUsbKbDxe.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenUsbKbDxe.inf; sourceTree = ""; }; + 9AA91B3725CD597F00BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91B3A25CD597F00BD5E8B /* Fat.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Fat.c; sourceTree = ""; }; + 9AA91B3B25CD597F00BD5E8B /* OcMachoLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcMachoLibInternal.h; sourceTree = ""; }; + 9AA91B3C25CD597F00BD5E8B /* OcMachoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcMachoLib.inf; sourceTree = ""; }; + 9AA91B3D25CD597F00BD5E8B /* Header.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Header.c; sourceTree = ""; }; + 9AA91B3E25CD597F00BD5E8B /* Symbols.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Symbols.c; sourceTree = ""; }; + 9AA91B3F25CD597F00BD5E8B /* Relocations.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Relocations.c; sourceTree = ""; }; + 9AA91B4025CD597F00BD5E8B /* CxxSymbols.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CxxSymbols.c; sourceTree = ""; }; + 9AA91B4225CD597F00BD5E8B /* MacInfoInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MacInfoInternal.h; sourceTree = ""; }; + 9AA91B4325CD597F00BD5E8B /* AutoGenerated.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AutoGenerated.c; sourceTree = ""; }; + 9AA91B4425CD597F00BD5E8B /* OcMacInfoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcMacInfoLib.c; sourceTree = ""; }; + 9AA91B4525CD597F00BD5E8B /* OcMacInfoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcMacInfoLib.inf; sourceTree = ""; }; + 9AA91B4725CD597F00BD5E8B /* OcStringLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcStringLib.inf; sourceTree = ""; }; + 9AA91B4825CD597F00BD5E8B /* OcUnicodeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcUnicodeLib.c; sourceTree = ""; }; + 9AA91B4925CD597F00BD5E8B /* OcAsciiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAsciiLib.c; sourceTree = ""; }; + 9AA91B4B25CD597F00BD5E8B /* OcPngLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcPngLib.inf; sourceTree = ""; }; + 9AA91B4C25CD597F00BD5E8B /* lodepng.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lodepng.h; sourceTree = ""; }; + 9AA91B4D25CD597F00BD5E8B /* OcPng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcPng.c; sourceTree = ""; }; + 9AA91B4E25CD597F00BD5E8B /* lodepng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lodepng.c; sourceTree = ""; }; + 9AA91B5025CD597F00BD5E8B /* OcSerializeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcSerializeLib.c; sourceTree = ""; }; + 9AA91B5125CD597F00BD5E8B /* OcSerializeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcSerializeLib.inf; sourceTree = ""; }; + 9AA91B5325CD597F00BD5E8B /* OcDataHubLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcDataHubLib.c; sourceTree = ""; }; + 9AA91B5425CD597F00BD5E8B /* OcDataHubLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcDataHubLib.inf; sourceTree = ""; }; + 9AA91B5525CD597F00BD5E8B /* DataHub.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DataHub.c; sourceTree = ""; }; + 9AA91B5625CD597F00BD5E8B /* DataHub.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DataHub.h; sourceTree = ""; }; + 9AA91B5825CD597F00BD5E8B /* PlatformData.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatformData.c; sourceTree = ""; }; + 9AA91B5925CD597F00BD5E8B /* BdsPlatform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BdsPlatform.h; sourceTree = ""; }; + 9AA91B5A25CD597F00BD5E8B /* DuetBdsLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DuetBdsLib.inf; sourceTree = ""; }; + 9AA91B5B25CD597F00BD5E8B /* BdsMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BdsMisc.c; sourceTree = ""; }; + 9AA91B5C25CD597F00BD5E8B /* BdsPlatform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BdsPlatform.c; sourceTree = ""; }; + 9AA91B5D25CD597F00BD5E8B /* BdsConnect.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BdsConnect.c; sourceTree = ""; }; + 9AA91B5E25CD597F00BD5E8B /* BdsConsole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BdsConsole.c; sourceTree = ""; }; + 9AA91B6025CD597F00BD5E8B /* ConsoleControl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConsoleControl.c; sourceTree = ""; }; + 9AA91B6125CD597F00BD5E8B /* OcConsoleLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcConsoleLibInternal.h; sourceTree = ""; }; + 9AA91B6225CD597F00BD5E8B /* ResolutionParsing.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResolutionParsing.c; sourceTree = ""; }; + 9AA91B6325CD597F00BD5E8B /* OcConsoleLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcConsoleLib.inf; sourceTree = ""; }; + 9AA91B6425CD597F00BD5E8B /* UgaPassThrough.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UgaPassThrough.c; sourceTree = ""; }; + 9AA91B6525CD597F00BD5E8B /* OcConsoleLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcConsoleLib.c; sourceTree = ""; }; + 9AA91B6625CD597F00BD5E8B /* FramebufferInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FramebufferInfo.c; sourceTree = ""; }; + 9AA91B6725CD597F00BD5E8B /* ConsoleGop.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConsoleGop.c; sourceTree = ""; }; + 9AA91B6825CD597F00BD5E8B /* TextOutputNull.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TextOutputNull.c; sourceTree = ""; }; + 9AA91B6925CD597F00BD5E8B /* TextOutputSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TextOutputSystem.c; sourceTree = ""; }; + 9AA91B6A25CD597F00BD5E8B /* TextOutputBuiltin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TextOutputBuiltin.c; sourceTree = ""; }; + 9AA91B6C25CD597F00BD5E8B /* AppleRtcRam.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleRtcRam.c; sourceTree = ""; }; + 9AA91B6D25CD597F00BD5E8B /* OcRtcLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcRtcLibInternal.h; sourceTree = ""; }; + 9AA91B6E25CD597F00BD5E8B /* OcRtcLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcRtcLib.inf; sourceTree = ""; }; + 9AA91B6F25CD597F00BD5E8B /* OcRtcLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcRtcLib.c; sourceTree = ""; }; + 9AA91B7125CD597F00BD5E8B /* OcAppleEventLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleEventLib.inf; sourceTree = ""; }; + 9AA91B7225CD597F00BD5E8B /* AppleEventInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleEventInternal.h; sourceTree = ""; }; + 9AA91B7325CD597F00BD5E8B /* OcAppleEventLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleEventLib.c; sourceTree = ""; }; + 9AA91B7425CD597F00BD5E8B /* AppleKeyMap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleKeyMap.c; sourceTree = ""; }; + 9AA91B7525CD597F00BD5E8B /* EventQueue.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EventQueue.c; sourceTree = ""; }; + 9AA91B7625CD597F00BD5E8B /* KeyHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KeyHandler.c; sourceTree = ""; }; + 9AA91B7725CD597F00BD5E8B /* PointerHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PointerHandler.c; sourceTree = ""; }; + 9AA91B7925CD597F00BD5E8B /* OcApfsInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcApfsInternal.h; sourceTree = ""; }; + 9AA91B7A25CD597F00BD5E8B /* OcApfsIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcApfsIo.c; sourceTree = ""; }; + 9AA91B7B25CD597F00BD5E8B /* OcApfsLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcApfsLib.c; sourceTree = ""; }; + 9AA91B7C25CD597F00BD5E8B /* OcApfsFusion.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcApfsFusion.c; sourceTree = ""; }; + 9AA91B7D25CD597F00BD5E8B /* OcApfsLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcApfsLib.inf; sourceTree = ""; }; + 9AA91B7E25CD597F00BD5E8B /* OcApfsConnect.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcApfsConnect.c; sourceTree = ""; }; + 9AA91B8025CD597F00BD5E8B /* OcDeviceTreeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcDeviceTreeLib.c; sourceTree = ""; }; + 9AA91B8125CD597F00BD5E8B /* OcDeviceTreeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcDeviceTreeLib.inf; sourceTree = ""; }; + 9AA91B8325CD597F00BD5E8B /* OcUnicodeCollationEngLocal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcUnicodeCollationEngLocal.c; sourceTree = ""; }; + 9AA91B8425CD597F00BD5E8B /* OcUnicodeCollationEngLocalLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcUnicodeCollationEngLocalLib.inf; sourceTree = ""; }; + 9AA91B8525CD597F00BD5E8B /* OcUnicodeCollationEngGenericLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcUnicodeCollationEngGenericLib.inf; sourceTree = ""; }; + 9AA91B8625CD597F00BD5E8B /* OcUnicodeCollationEngGeneric.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcUnicodeCollationEngGeneric.c; sourceTree = ""; }; + 9AA91B8725CD597F00BD5E8B /* OcUnicodeCollationEngCommon.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcUnicodeCollationEngCommon.c; sourceTree = ""; }; + 9AA91B8825CD597F00BD5E8B /* OcUnicodeCollationEngInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcUnicodeCollationEngInternal.h; sourceTree = ""; }; + 9AA91B8A25CD597F00BD5E8B /* OcHashServicesLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcHashServicesLibInternal.h; sourceTree = ""; }; + 9AA91B8B25CD597F00BD5E8B /* OcHashServicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcHashServicesLib.c; sourceTree = ""; }; + 9AA91B8C25CD597F00BD5E8B /* OcHashServicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcHashServicesLib.inf; sourceTree = ""; }; + 9AA91B8E25CD597F00BD5E8B /* OcAppleChunklistLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleChunklistLib.c; sourceTree = ""; }; + 9AA91B8F25CD597F00BD5E8B /* OcAppleChunklistLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleChunklistLib.inf; sourceTree = ""; }; + 9AA91B9125CD597F00BD5E8B /* OcHeciLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcHeciLib.c; sourceTree = ""; }; + 9AA91B9225CD597F00BD5E8B /* OcHeciLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcHeciLib.inf; sourceTree = ""; }; + 9AA91B9425CD597F00BD5E8B /* OcConsoleControlEntryModeGenericLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcConsoleControlEntryModeGenericLib.inf; sourceTree = ""; }; + 9AA91B9525CD597F00BD5E8B /* OcConsoleControlEntryModeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcConsoleControlEntryModeLib.c; sourceTree = ""; }; + 9AA91B9625CD597F00BD5E8B /* OcConsoleControlEntryModeLocalLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcConsoleControlEntryModeLocalLib.inf; sourceTree = ""; }; + 9AA91B9825CD597F00BD5E8B /* OcAppleImageVerificationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleImageVerificationLib.inf; sourceTree = ""; }; + 9AA91B9925CD597F00BD5E8B /* OcAppleImageVerification.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleImageVerification.c; sourceTree = ""; }; + 9AA91B9B25CD597F00BD5E8B /* OcAppleImageConversionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleImageConversionLib.inf; sourceTree = ""; }; + 9AA91B9C25CD597F00BD5E8B /* OcAppleImageConversionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleImageConversionLib.c; sourceTree = ""; }; + 9AA91B9E25CD597F00BD5E8B /* Aes.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Aes.c; sourceTree = ""; }; + 9AA91B9F25CD597F00BD5E8B /* Sha2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Sha2.c; sourceTree = ""; }; + 9AA91BA025CD597F00BD5E8B /* BigNumMontgomery.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BigNumMontgomery.c; sourceTree = ""; }; + 9AA91BA125CD597F00BD5E8B /* OcCryptoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcCryptoLib.inf; sourceTree = ""; }; + 9AA91BA325CD597F00BD5E8B /* BigNumWordMul64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BigNumWordMul64.c; sourceTree = ""; }; + 9AA91BA425CD597F00BD5E8B /* BigNumLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BigNumLibInternal.h; sourceTree = ""; }; + 9AA91BA525CD597F00BD5E8B /* BigNumLib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BigNumLib.h; sourceTree = ""; }; + 9AA91BA625CD597F00BD5E8B /* Sha1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Sha1.c; sourceTree = ""; }; + 9AA91BA725CD597F00BD5E8B /* BigNumPrimitives.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BigNumPrimitives.c; sourceTree = ""; }; + 9AA91BA825CD597F00BD5E8B /* PasswordHash.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PasswordHash.c; sourceTree = ""; }; + 9AA91BAA25CD597F00BD5E8B /* BigNumWordMul64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BigNumWordMul64.c; sourceTree = ""; }; + 9AA91BAB25CD597F00BD5E8B /* ChaCha.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ChaCha.c; sourceTree = ""; }; + 9AA91BAC25CD597F00BD5E8B /* RsaDigitalSign.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RsaDigitalSign.c; sourceTree = ""; }; + 9AA91BAD25CD597F00BD5E8B /* Md5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Md5.c; sourceTree = ""; }; + 9AA91BAE25CD597F00BD5E8B /* SecureMem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SecureMem.c; sourceTree = ""; }; + 9AA91BB025CD597F00BD5E8B /* DirectReset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DirectReset.c; sourceTree = ""; }; + 9AA91BB125CD597F00BD5E8B /* Math.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Math.c; sourceTree = ""; }; + 9AA91BB225CD597F00BD5E8B /* ReleaseUsbOwnership.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReleaseUsbOwnership.c; sourceTree = ""; }; + 9AA91BB325CD597F00BD5E8B /* ProtocolSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ProtocolSupport.c; sourceTree = ""; }; + 9AA91BB425CD597F00BD5E8B /* OcMiscLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcMiscLib.inf; sourceTree = ""; }; + 9AA91BB525CD597F00BD5E8B /* DataPatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DataPatcher.c; sourceTree = ""; }; + 9AA91BB725CD597F00BD5E8B /* OcTimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcTimerLib.c; sourceTree = ""; }; + 9AA91BB825CD597F00BD5E8B /* OcTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcTimerLib.inf; sourceTree = ""; }; + 9AA91BBB25CD597F00BD5E8B /* DER_CertCrl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DER_CertCrl.c; sourceTree = ""; }; + 9AA91BBC25CD597F00BD5E8B /* DER_Keys.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DER_Keys.c; sourceTree = ""; }; + 9AA91BBD25CD597F00BD5E8B /* DER_Encode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DER_Encode.h; sourceTree = ""; }; + 9AA91BBE25CD597F00BD5E8B /* oids.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = oids.h; sourceTree = ""; }; + 9AA91BBF25CD597F00BD5E8B /* libDER.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = libDER.h; sourceTree = ""; }; + 9AA91BC025CD597F00BD5E8B /* DER_Decode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DER_Decode.h; sourceTree = ""; }; + 9AA91BC125CD597F00BD5E8B /* DER_Digest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DER_Digest.c; sourceTree = ""; }; + 9AA91BC225CD597F00BD5E8B /* DER_CertCrl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DER_CertCrl.h; sourceTree = ""; }; + 9AA91BC325CD597F00BD5E8B /* asn1Types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = asn1Types.h; sourceTree = ""; }; + 9AA91BC425CD597F00BD5E8B /* DER_Keys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DER_Keys.h; sourceTree = ""; }; + 9AA91BC525CD597F00BD5E8B /* DER_Decode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DER_Decode.c; sourceTree = ""; }; + 9AA91BC625CD597F00BD5E8B /* oids.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = oids.c; sourceTree = ""; }; + 9AA91BC725CD597F00BD5E8B /* DER_Encode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DER_Encode.c; sourceTree = ""; }; + 9AA91BC825CD598000BD5E8B /* DER_Digest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DER_Digest.h; sourceTree = ""; }; + 9AA91BC925CD598000BD5E8B /* OcAppleImg4Lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleImg4Lib.c; sourceTree = ""; }; + 9AA91BCA25CD598000BD5E8B /* OcAppleImg4Lib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleImg4Lib.inf; sourceTree = ""; }; + 9AA91BCB25CD598000BD5E8B /* libDER_config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = libDER_config.h; sourceTree = ""; }; + 9AA91BCD25CD598000BD5E8B /* libDERImg4_config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = libDERImg4_config.h; sourceTree = ""; }; + 9AA91BCE25CD598000BD5E8B /* Img4oids.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Img4oids.c; sourceTree = ""; }; + 9AA91BCF25CD598000BD5E8B /* DER_Img4Manifest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DER_Img4Manifest.h; sourceTree = ""; }; + 9AA91BD025CD598000BD5E8B /* DER_Img4Manifest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DER_Img4Manifest.c; sourceTree = ""; }; + 9AA91BD125CD598000BD5E8B /* libDERImg4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = libDERImg4.h; sourceTree = ""; }; + 9AA91BD225CD598000BD5E8B /* Img4oids.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Img4oids.h; sourceTree = ""; }; + 9AA91BD425CD598000BD5E8B /* ImageLoader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ImageLoader.c; sourceTree = ""; }; + 9AA91BD525CD598000BD5E8B /* OcBootManagementLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcBootManagementLib.c; sourceTree = ""; }; + 9AA91BD625CD598000BD5E8B /* BootEntryInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootEntryInfo.c; sourceTree = ""; }; + 9AA91BD725CD598000BD5E8B /* DmgBootSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DmgBootSupport.c; sourceTree = ""; }; + 9AA91BD825CD598000BD5E8B /* ApplePanic.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ApplePanic.c; sourceTree = ""; }; + 9AA91BD925CD598000BD5E8B /* AppleRecovery.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleRecovery.c; sourceTree = ""; }; + 9AA91BDA25CD598000BD5E8B /* BootManagementInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootManagementInternal.h; sourceTree = ""; }; + 9AA91BDB25CD598000BD5E8B /* HotKeySupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HotKeySupport.c; sourceTree = ""; }; + 9AA91BDC25CD598000BD5E8B /* OcBootManagementLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcBootManagementLib.inf; sourceTree = ""; }; + 9AA91BDD25CD598000BD5E8B /* PolicyManagement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PolicyManagement.c; sourceTree = ""; }; + 9AA91BDE25CD598000BD5E8B /* DefaultEntryChoice.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DefaultEntryChoice.c; sourceTree = ""; }; + 9AA91BDF25CD598000BD5E8B /* BootAudio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootAudio.c; sourceTree = ""; }; + 9AA91BE025CD598000BD5E8B /* BootArguments.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootArguments.c; sourceTree = ""; }; + 9AA91BE125CD598000BD5E8B /* BootSignature.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = BootSignature.bin; sourceTree = ""; }; + 9AA91BE225CD598000BD5E8B /* AppleHibernate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleHibernate.c; sourceTree = ""; }; + 9AA91BE325CD598000BD5E8B /* BootEntryManagement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootEntryManagement.c; sourceTree = ""; }; + 9AA91BE425CD598000BD5E8B /* VariableManagement.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VariableManagement.c; sourceTree = ""; }; + 9AA91BE725CD598000BD5E8B /* lzss.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lzss.c; sourceTree = ""; }; + 9AA91BE825CD598000BD5E8B /* lzss.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lzss.h; sourceTree = ""; }; + 9AA91BE925CD598000BD5E8B /* OcCompressionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcCompressionLib.c; sourceTree = ""; }; + 9AA91BEB25CD598000BD5E8B /* zlib_uefi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = zlib_uefi.c; sourceTree = ""; }; + 9AA91BEC25CD598000BD5E8B /* zutil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zutil.h; sourceTree = ""; }; + 9AA91BED25CD598000BD5E8B /* inftrees.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inftrees.h; sourceTree = ""; }; + 9AA91BEE25CD598000BD5E8B /* inflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = inflate.c; sourceTree = ""; }; + 9AA91BEF25CD598000BD5E8B /* compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = ""; }; + 9AA91BF025CD598000BD5E8B /* deflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = deflate.c; sourceTree = ""; }; + 9AA91BF125CD598000BD5E8B /* inffixed.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inffixed.h; sourceTree = ""; }; + 9AA91BF225CD598000BD5E8B /* trees.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = trees.h; sourceTree = ""; }; + 9AA91BF325CD598000BD5E8B /* inffast.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inffast.h; sourceTree = ""; }; + 9AA91BF425CD598000BD5E8B /* crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = crc32.c; sourceTree = ""; }; + 9AA91BF525CD598000BD5E8B /* infback.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = infback.c; sourceTree = ""; }; + 9AA91BF625CD598000BD5E8B /* deflate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = deflate.h; sourceTree = ""; }; + 9AA91BF725CD598000BD5E8B /* zlib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zlib.h; sourceTree = ""; }; + 9AA91BF825CD598000BD5E8B /* inflate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inflate.h; sourceTree = ""; }; + 9AA91BF925CD598000BD5E8B /* inftrees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = inftrees.c; sourceTree = ""; }; + 9AA91BFA25CD598000BD5E8B /* uncompr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = uncompr.c; sourceTree = ""; }; + 9AA91BFB25CD598000BD5E8B /* trees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = trees.c; sourceTree = ""; }; + 9AA91BFC25CD598000BD5E8B /* crc32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = crc32.h; sourceTree = ""; }; + 9AA91BFD25CD598000BD5E8B /* inffast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = inffast.c; sourceTree = ""; }; + 9AA91BFE25CD598000BD5E8B /* adler32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = adler32.c; sourceTree = ""; }; + 9AA91BFF25CD598000BD5E8B /* zconf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = zconf.h; sourceTree = ""; }; + 9AA91C0025CD598000BD5E8B /* OcCompressionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcCompressionLib.inf; sourceTree = ""; }; + 9AA91C0225CD598000BD5E8B /* lzvn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lzvn.h; sourceTree = ""; }; + 9AA91C0325CD598000BD5E8B /* lzvn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lzvn.c; sourceTree = ""; }; + 9AA91C0525CD598000BD5E8B /* OcAppleKeyMapLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleKeyMapLib.inf; sourceTree = ""; }; + 9AA91C0625CD598000BD5E8B /* OcAppleKeyMapLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleKeyMapLib.c; sourceTree = ""; }; + 9AA91C0825CD598000BD5E8B /* DebugSmbios.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugSmbios.c; sourceTree = ""; }; + 9AA91C0925CD598000BD5E8B /* SmbiosInternal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosInternal.c; sourceTree = ""; }; + 9AA91C0A25CD598000BD5E8B /* DebugSmbios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DebugSmbios.h; sourceTree = ""; }; + 9AA91C0B25CD598000BD5E8B /* OcSmbiosLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcSmbiosLib.inf; sourceTree = ""; }; + 9AA91C0C25CD598000BD5E8B /* SmbiosInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SmbiosInternal.h; sourceTree = ""; }; + 9AA91C0D25CD598000BD5E8B /* SmbiosDump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosDump.c; sourceTree = ""; }; + 9AA91C0E25CD598000BD5E8B /* SmbiosPatch.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SmbiosPatch.c; sourceTree = ""; }; + 9AA91C1025CD598000BD5E8B /* OcStorageLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcStorageLib.inf; sourceTree = ""; }; + 9AA91C1125CD598000BD5E8B /* OcStorageLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcStorageLib.c; sourceTree = ""; }; + 9AA91C1325CD598000BD5E8B /* Database.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Database.c; sourceTree = ""; }; + 9AA91C1425CD598000BD5E8B /* ConfigRouting.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConfigRouting.c; sourceTree = ""; }; + 9AA91C1525CD598000BD5E8B /* Font.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Font.c; sourceTree = ""; }; + 9AA91C1625CD598000BD5E8B /* String.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = String.c; sourceTree = ""; }; + 9AA91C1725CD598000BD5E8B /* Image.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Image.c; sourceTree = ""; }; + 9AA91C1825CD598000BD5E8B /* OcHiiDatabaseLocalLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcHiiDatabaseLocalLib.inf; sourceTree = ""; }; + 9AA91C1925CD598000BD5E8B /* HiiDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HiiDatabase.h; sourceTree = ""; }; + 9AA91C1A25CD598000BD5E8B /* ConfigKeywordHandler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ConfigKeywordHandler.c; sourceTree = ""; }; + 9AA91C1B25CD598000BD5E8B /* HiiDatabaseEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HiiDatabaseEntry.c; sourceTree = ""; }; + 9AA91C1C25CD598000BD5E8B /* ImageEx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ImageEx.c; sourceTree = ""; }; + 9AA91C1E25CD598000BD5E8B /* OcAppleSecureBootLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleSecureBootLib.c; sourceTree = ""; }; + 9AA91C1F25CD598000BD5E8B /* OcAppleSecureBootLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleSecureBootLib.inf; sourceTree = ""; }; + 9AA91C2125CD598000BD5E8B /* Canary.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Canary.c; sourceTree = ""; }; + 9AA91C2225CD598000BD5E8B /* Ubsan.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Ubsan.h; sourceTree = ""; }; + 9AA91C2325CD598000BD5E8B /* UbsanPrintf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UbsanPrintf.c; sourceTree = ""; }; + 9AA91C2425CD598000BD5E8B /* OcGuardLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcGuardLib.inf; sourceTree = ""; }; + 9AA91C2525CD598000BD5E8B /* BitOverflow.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BitOverflow.c; sourceTree = ""; }; + 9AA91C2625CD598000BD5E8B /* Alignment.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Alignment.c; sourceTree = ""; }; + 9AA91C2725CD598000BD5E8B /* TripleOverflow.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = TripleOverflow.c; sourceTree = ""; }; + 9AA91C2825CD598000BD5E8B /* Ubsan.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Ubsan.c; sourceTree = ""; }; + 9AA91C2925CD598000BD5E8B /* NativeOverflow.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = NativeOverflow.c; sourceTree = ""; }; + 9AA91C2B25CD598000BD5E8B /* OcAppleKeysLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleKeysLib.inf; sourceTree = ""; }; + 9AA91C2C25CD598000BD5E8B /* OcAppleKeysLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleKeysLib.c; sourceTree = ""; }; + 9AA91C2E25CD598000BD5E8B /* OcAppleBootPolicyLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleBootPolicyLib.c; sourceTree = ""; }; + 9AA91C2F25CD598000BD5E8B /* OcAppleBootPolicyLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleBootPolicyLib.inf; sourceTree = ""; }; + 9AA91C3125CD598000BD5E8B /* OcAppleUserInterfaceThemeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleUserInterfaceThemeLib.c; sourceTree = ""; }; + 9AA91C3225CD598000BD5E8B /* OcAppleUserInterfaceThemeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleUserInterfaceThemeLib.inf; sourceTree = ""; }; + 9AA91C3425CD598000BD5E8B /* OcAcpiLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAcpiLib.c; sourceTree = ""; }; + 9AA91C3525CD598000BD5E8B /* OcAcpiLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAcpiLib.inf; sourceTree = ""; }; + 9AA91C3625CD598000BD5E8B /* AcpiDump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AcpiDump.c; sourceTree = ""; }; + 9AA91C3925CD598000BD5E8B /* AppleHid.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = AppleHid.txt; sourceTree = ""; }; + 9AA91C3A25CD598000BD5E8B /* AIKSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIKSource.h; sourceTree = ""; }; + 9AA91C3B25CD598000BD5E8B /* AIK.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIK.h; sourceTree = ""; }; + 9AA91C3C25CD598000BD5E8B /* AIKTarget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIKTarget.c; sourceTree = ""; }; + 9AA91C3D25CD598000BD5E8B /* AIKShim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIKShim.c; sourceTree = ""; }; + 9AA91C3E25CD598000BD5E8B /* AIKTranslate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIKTranslate.h; sourceTree = ""; }; + 9AA91C3F25CD598000BD5E8B /* AIKData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIKData.h; sourceTree = ""; }; + 9AA91C4025CD598000BD5E8B /* AIKMap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIKMap.c; sourceTree = ""; }; + 9AA91C4125CD598000BD5E8B /* AIK.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIK.c; sourceTree = ""; }; + 9AA91C4225CD598000BD5E8B /* AIKSource.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIKSource.c; sourceTree = ""; }; + 9AA91C4325CD598000BD5E8B /* AIKTranslate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIKTranslate.c; sourceTree = ""; }; + 9AA91C4425CD598000BD5E8B /* AIKTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIKTarget.h; sourceTree = ""; }; + 9AA91C4525CD598000BD5E8B /* AIKShim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIKShim.h; sourceTree = ""; }; + 9AA91C4625CD598000BD5E8B /* AIKData.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIKData.c; sourceTree = ""; }; + 9AA91C4725CD598000BD5E8B /* OcInputLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcInputLib.inf; sourceTree = ""; }; + 9AA91C4925CD598000BD5E8B /* AIT.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIT.c; sourceTree = ""; }; + 9AA91C4B25CD598000BD5E8B /* AIM.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AIM.c; sourceTree = ""; }; + 9AA91C4C25CD598000BD5E8B /* AIM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AIM.h; sourceTree = ""; }; + 9AA91C4E25CD598000BD5E8B /* OcFirmwarePasswordLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcFirmwarePasswordLib.c; sourceTree = ""; }; + 9AA91C4F25CD598000BD5E8B /* AppleFwPasswordInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleFwPasswordInternal.h; sourceTree = ""; }; + 9AA91C5025CD598000BD5E8B /* OcFirmwarePasswordLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcFirmwarePasswordLib.inf; sourceTree = ""; }; + 9AA91C5225CD598000BD5E8B /* OcAppleDiskImageLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleDiskImageLib.c; sourceTree = ""; }; + 9AA91C5325CD598000BD5E8B /* OcAppleDiskImageLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAppleDiskImageLibInternal.h; sourceTree = ""; }; + 9AA91C5425CD598000BD5E8B /* OcAppleDiskImageLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleDiskImageLib.inf; sourceTree = ""; }; + 9AA91C5525CD598000BD5E8B /* OcAppleDiskImageBlockIo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleDiskImageBlockIo.c; sourceTree = ""; }; + 9AA91C5625CD598000BD5E8B /* OcAppleDiskImageLibInternal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleDiskImageLibInternal.c; sourceTree = ""; }; + 9AA91C5925CD598000BD5E8B /* RngDelay.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RngDelay.nasm; sourceTree = ""; }; + 9AA91C5A25CD598000BD5E8B /* OcRngLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcRngLib.c; sourceTree = ""; }; + 9AA91C5C25CD598000BD5E8B /* RngDelay.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = RngDelay.nasm; sourceTree = ""; }; + 9AA91C5D25CD598000BD5E8B /* OcRngLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcRngLib.inf; sourceTree = ""; }; + 9AA91C5E25CD598000BD5E8B /* OcRngInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcRngInternals.h; sourceTree = ""; }; + 9AA91C6025CD598000BD5E8B /* OcHdaDevicesLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcHdaDevicesLib.c; sourceTree = ""; }; + 9AA91C6125CD598000BD5E8B /* OcHdaDevicesLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcHdaDevicesLib.inf; sourceTree = ""; }; + 9AA91C6225CD598000BD5E8B /* OcHdaDevicesInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcHdaDevicesInternal.h; sourceTree = ""; }; + 9AA91C6425CD598000BD5E8B /* OcBootServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcBootServicesTableLib.c; sourceTree = ""; }; + 9AA91C6525CD598000BD5E8B /* UefiBootServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = UefiBootServicesTableLib.inf; sourceTree = ""; }; + 9AA91C6625CD598000BD5E8B /* OcBootServicesTableLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcBootServicesTableLib.inf; sourceTree = ""; }; + 9AA91C6725CD598000BD5E8B /* UefiBootServicesTableLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UefiBootServicesTableLib.c; sourceTree = ""; }; + 9AA91C6925CD598000BD5E8B /* X86TimerLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = X86TimerLib.c; sourceTree = ""; }; + 9AA91C6A25CD598000BD5E8B /* DuetTimerLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = DuetTimerLib.inf; sourceTree = ""; }; + 9AA91C6C25CD598000BD5E8B /* CustomSlide.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CustomSlide.c; sourceTree = ""; }; + 9AA91C6E25CD598000BD5E8B /* ContextSwitchSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ContextSwitchSupport.c; sourceTree = ""; }; + 9AA91C6F25CD598000BD5E8B /* ContextSwitch.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = ContextSwitch.nasm; sourceTree = ""; }; + 9AA91C7025CD598000BD5E8B /* ContextSwitch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ContextSwitch.h; sourceTree = ""; }; + 9AA91C7125CD598000BD5E8B /* BootCompatInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootCompatInternal.h; sourceTree = ""; }; + 9AA91C7225CD598000BD5E8B /* ServiceOverrides.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ServiceOverrides.c; sourceTree = ""; }; + 9AA91C7425CD598000BD5E8B /* ContextSwitchSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ContextSwitchSupport.c; sourceTree = ""; }; + 9AA91C7525CD598000BD5E8B /* ContextSwitch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ContextSwitch.h; sourceTree = ""; }; + 9AA91C7625CD598000BD5E8B /* KernelSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KernelSupport.c; sourceTree = ""; }; + 9AA91C7725CD598000BD5E8B /* OcAfterBootCompatLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAfterBootCompatLib.inf; sourceTree = ""; }; + 9AA91C7825CD598000BD5E8B /* OcAfterBootCompatLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAfterBootCompatLib.c; sourceTree = ""; }; + 9AA91C7A25CD598000BD5E8B /* OcFirmwareVolumeLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcFirmwareVolumeLib.inf; sourceTree = ""; }; + 9AA91C7B25CD598000BD5E8B /* OcFirmwareVolumeLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcFirmwareVolumeLib.c; sourceTree = ""; }; + 9AA91C7C25CD598000BD5E8B /* FvOnFv2Thunk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FvOnFv2Thunk.c; sourceTree = ""; }; + 9AA91C7D25CD598000BD5E8B /* OcFirmwareVolumeLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcFirmwareVolumeLibInternal.h; sourceTree = ""; }; + 9AA91C7F25CD598000BD5E8B /* OcDevicePathLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcDevicePathLib.inf; sourceTree = ""; }; + 9AA91C8025CD598000BD5E8B /* ExpandDevicePath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ExpandDevicePath.c; sourceTree = ""; }; + 9AA91C8125CD598000BD5E8B /* OcDevicePathLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcDevicePathLib.c; sourceTree = ""; }; + 9AA91C8325CD598000BD5E8B /* OcAppleLog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleLog.c; sourceTree = ""; }; + 9AA91C8425CD598000BD5E8B /* DebugHelp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugHelp.c; sourceTree = ""; }; + 9AA91C8525CD598000BD5E8B /* DebugPrint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugPrint.c; sourceTree = ""; }; + 9AA91C8625CD598000BD5E8B /* OcDebugLogLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcDebugLogLib.inf; sourceTree = ""; }; + 9AA91C8725CD598000BD5E8B /* OcLog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcLog.c; sourceTree = ""; }; + 9AA91C8825CD598000BD5E8B /* OcLogInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcLogInternal.h; sourceTree = ""; }; + 9AA91C8925CD598000BD5E8B /* OcDebugLogLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcDebugLogLib.c; sourceTree = ""; }; + 9AA91C8B25CD598000BD5E8B /* OcAudioGenBeep.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAudioGenBeep.c; sourceTree = ""; }; + 9AA91C8C25CD598000BD5E8B /* OcAudioLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAudioLib.inf; sourceTree = ""; }; + 9AA91C8D25CD598000BD5E8B /* OcAudio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAudio.c; sourceTree = ""; }; + 9AA91C8E25CD598000BD5E8B /* OcAudioWave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAudioWave.c; sourceTree = ""; }; + 9AA91C8F25CD598000BD5E8B /* OcAudioInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcAudioInternal.h; sourceTree = ""; }; + 9AA91C9025CD598000BD5E8B /* OcAudioLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAudioLib.c; sourceTree = ""; }; + 9AA91C9125CD598000BD5E8B /* OcAudioVoiceOver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAudioVoiceOver.c; sourceTree = ""; }; + 9AA91C9325CD598000BD5E8B /* VirtualDir.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VirtualDir.c; sourceTree = ""; }; + 9AA91C9425CD598000BD5E8B /* VirtualFile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VirtualFile.c; sourceTree = ""; }; + 9AA91C9525CD598000BD5E8B /* OcVirtualFsLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcVirtualFsLib.inf; sourceTree = ""; }; + 9AA91C9625CD598000BD5E8B /* VirtualVolume.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VirtualVolume.c; sourceTree = ""; }; + 9AA91C9725CD598000BD5E8B /* VirtualFs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VirtualFs.c; sourceTree = ""; }; + 9AA91C9825CD598000BD5E8B /* VirtualFsInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualFsInternal.h; sourceTree = ""; }; + 9AA91C9A25CD598000BD5E8B /* PrelinkedKext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrelinkedKext.c; sourceTree = ""; }; + 9AA91C9B25CD598000BD5E8B /* KxldState.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KxldState.c; sourceTree = ""; }; + 9AA91C9C25CD598000BD5E8B /* PrelinkedContext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PrelinkedContext.c; sourceTree = ""; }; + 9AA91C9D25CD598000BD5E8B /* Link.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Link.c; sourceTree = ""; }; + 9AA91C9E25CD598000BD5E8B /* OcAppleKernelLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleKernelLib.inf; sourceTree = ""; }; + 9AA91C9F25CD598000BD5E8B /* KextPatcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KextPatcher.c; sourceTree = ""; }; + 9AA91CA025CD598000BD5E8B /* CommonPatches.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CommonPatches.c; sourceTree = ""; }; + 9AA91CA125CD598000BD5E8B /* KernelVersion.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KernelVersion.c; sourceTree = ""; }; + 9AA91CA225CD598000BD5E8B /* MkextInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MkextInternal.h; sourceTree = ""; }; + 9AA91CA325CD598000BD5E8B /* CachelessContext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CachelessContext.c; sourceTree = ""; }; + 9AA91CA425CD598000BD5E8B /* Vtables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Vtables.c; sourceTree = ""; }; + 9AA91CA525CD598000BD5E8B /* KernelReader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KernelReader.c; sourceTree = ""; }; + 9AA91CA625CD598000BD5E8B /* KernelCollection.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KernelCollection.c; sourceTree = ""; }; + 9AA91CA725CD598000BD5E8B /* MkextContext.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MkextContext.c; sourceTree = ""; }; + 9AA91CA825CD598000BD5E8B /* PrelinkedInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrelinkedInternal.h; sourceTree = ""; }; + 9AA91CA925CD598000BD5E8B /* CachelessInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CachelessInternal.h; sourceTree = ""; }; + 9AA91CAB25CD598000BD5E8B /* OcPeCoffLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcPeCoffLib.inf; sourceTree = ""; }; + 9AA91CAC25CD598000BD5E8B /* OcPeCoffLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcPeCoffLib.c; sourceTree = ""; }; + 9AA91CAE25CD598000BD5E8B /* OpenFile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenFile.c; sourceTree = ""; }; + 9AA91CAF25CD598000BD5E8B /* FsConnectQuirk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FsConnectQuirk.c; sourceTree = ""; }; + 9AA91CB025CD598000BD5E8B /* GptPartitionEntry.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GptPartitionEntry.c; sourceTree = ""; }; + 9AA91CB125CD598000BD5E8B /* ReadFile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ReadFile.c; sourceTree = ""; }; + 9AA91CB225CD598000BD5E8B /* FirmwareFile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FirmwareFile.c; sourceTree = ""; }; + 9AA91CB325CD598000BD5E8B /* GetVolumeLabel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GetVolumeLabel.c; sourceTree = ""; }; + 9AA91CB425CD598000BD5E8B /* FileProtocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileProtocol.c; sourceTree = ""; }; + 9AA91CB525CD598000BD5E8B /* GetFileInfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GetFileInfo.c; sourceTree = ""; }; + 9AA91CB625CD598000BD5E8B /* LocateFileSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LocateFileSystem.c; sourceTree = ""; }; + 9AA91CB725CD598000BD5E8B /* OcFileLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcFileLib.inf; sourceTree = ""; }; + 9AA91CB925CD598000BD5E8B /* OcCpuInternals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcCpuInternals.h; sourceTree = ""; }; + 9AA91CBB25CD598000BD5E8B /* Microcode.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Microcode.nasm; sourceTree = ""; }; + 9AA91CBC25CD598000BD5E8B /* Atomic.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Atomic.nasm; sourceTree = ""; }; + 9AA91CBD25CD598000BD5E8B /* FrequencyDetect.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FrequencyDetect.c; sourceTree = ""; }; + 9AA91CBE25CD598000BD5E8B /* OcCpuLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcCpuLib.inf; sourceTree = ""; }; + 9AA91CBF25CD598000BD5E8B /* AppleCpuSupport.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleCpuSupport.c; sourceTree = ""; }; + 9AA91CC025CD598000BD5E8B /* OcCpuLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcCpuLib.c; sourceTree = ""; }; + 9AA91CC225CD598000BD5E8B /* Microcode.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Microcode.nasm; sourceTree = ""; }; + 9AA91CC325CD598000BD5E8B /* Atomic.nasm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.nasm; path = Atomic.nasm; sourceTree = ""; }; + 9AA91CC525CD598000BD5E8B /* OcConfigurationLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcConfigurationLib.inf; sourceTree = ""; }; + 9AA91CC625CD598000BD5E8B /* CheckSchema.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = CheckSchema.py; sourceTree = ""; }; + 9AA91CC725CD598000BD5E8B /* OcConfigurationLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcConfigurationLib.c; sourceTree = ""; }; + 9AA91CC925CD598000BD5E8B /* OcDriverConnectionLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcDriverConnectionLib.c; sourceTree = ""; }; + 9AA91CCA25CD598000BD5E8B /* OcDriverConnectionLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcDriverConnectionLib.inf; sourceTree = ""; }; + 9AA91CCC25CD598000BD5E8B /* OcAppleLog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleLog.c; sourceTree = ""; }; + 9AA91CCD25CD598000BD5E8B /* DebugHelp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugHelp.c; sourceTree = ""; }; + 9AA91CCE25CD598000BD5E8B /* DebugPrint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DebugPrint.c; sourceTree = ""; }; + 9AA91CCF25CD598000BD5E8B /* OcLog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcLog.c; sourceTree = ""; }; + 9AA91CD025CD598000BD5E8B /* OcDebugLogLibOc2Clover.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcDebugLogLibOc2Clover.inf; sourceTree = ""; }; + 9AA91CD225CD598000BD5E8B /* OcXmlLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcXmlLib.c; sourceTree = ""; }; + 9AA91CD325CD598000BD5E8B /* OcXmlLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcXmlLib.inf; sourceTree = ""; }; + 9AA91CD525CD598000BD5E8B /* OcDevicePropertyLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcDevicePropertyLib.inf; sourceTree = ""; }; + 9AA91CD625CD598000BD5E8B /* OcDevicePropertyLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcDevicePropertyLib.c; sourceTree = ""; }; + 9AA91CD825CD598000BD5E8B /* OcOSInfoLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcOSInfoLib.c; sourceTree = ""; }; + 9AA91CD925CD598000BD5E8B /* OcOSInfoLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcOSInfoLib.inf; sourceTree = ""; }; + 9AA91CDB25CD598000BD5E8B /* OcTemplateLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcTemplateLib.inf; sourceTree = ""; }; + 9AA91CDC25CD598000BD5E8B /* OcTemplateLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcTemplateLib.c; sourceTree = ""; }; + 9AA91CDE25CD598000BD5E8B /* OcCompilerIntrinsicsLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcCompilerIntrinsicsLib.c; sourceTree = ""; }; + 9AA91CDF25CD598000BD5E8B /* OcCompilerIntrinsicsLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcCompilerIntrinsicsLib.inf; sourceTree = ""; }; + 9AA91CE025CD598000BD5E8B /* MsvcMath32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MsvcMath32.c; sourceTree = ""; }; + 9AA91CE225CD598000BD5E8B /* MemoryMap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryMap.c; sourceTree = ""; }; + 9AA91CE325CD598000BD5E8B /* MemoryAttributes.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAttributes.c; sourceTree = ""; }; + 9AA91CE425CD598000BD5E8B /* VirtualMemory.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VirtualMemory.c; sourceTree = ""; }; + 9AA91CE525CD598000BD5E8B /* LegacyRegionLock.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LegacyRegionLock.c; sourceTree = ""; }; + 9AA91CE625CD598000BD5E8B /* LegacyRegionUnLock.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LegacyRegionUnLock.c; sourceTree = ""; }; + 9AA91CE725CD598000BD5E8B /* MemoryDebug.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryDebug.c; sourceTree = ""; }; + 9AA91CE825CD598000BD5E8B /* MemoryAlloc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MemoryAlloc.c; sourceTree = ""; }; + 9AA91CE925CD598000BD5E8B /* OcMemoryLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcMemoryLib.inf; sourceTree = ""; }; + 9AA91CEA25CD598000BD5E8B /* UmmMalloc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UmmMalloc.c; sourceTree = ""; }; + 9AA91CEC25CD598000BD5E8B /* OcAppleRamDiskLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcAppleRamDiskLib.inf; sourceTree = ""; }; + 9AA91CED25CD598000BD5E8B /* OcAppleRamDiskLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcAppleRamDiskLib.c; sourceTree = ""; }; + 9AA91CEF25CD598000BD5E8B /* OcSmcLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcSmcLib.c; sourceTree = ""; }; + 9AA91CF025CD598000BD5E8B /* OcSmcLib.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OcSmcLib.inf; sourceTree = ""; }; + 9AA91CF125CD598000BD5E8B /* OcSmcLibInternal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OcSmcLibInternal.h; sourceTree = ""; }; + 9AA91CF325CD598000BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91CF525CD598000BD5E8B /* GlobalVar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GlobalVar.h; sourceTree = ""; }; + 9AA91CF625CD598000BD5E8B /* File.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = File.h; sourceTree = ""; }; + 9AA91CF725CD598000BD5E8B /* Pcd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Pcd.h; sourceTree = ""; }; + 9AA91CF825CD598000BD5E8B /* BootServices.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BootServices.h; sourceTree = ""; }; + 9AA91CFA25CD598000BD5E8B /* Pcd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Pcd.c; sourceTree = ""; }; + 9AA91CFB25CD598000BD5E8B /* UserMath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UserMath.c; sourceTree = ""; }; + 9AA91CFC25CD598000BD5E8B /* BootServices.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootServices.c; sourceTree = ""; }; + 9AA91CFD25CD598000BD5E8B /* BaseMemoryLib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BaseMemoryLib.c; sourceTree = ""; }; + 9AA91CFE25CD598000BD5E8B /* GlobalVar.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GlobalVar.c; sourceTree = ""; }; + 9AA91CFF25CD598000BD5E8B /* File.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = File.c; sourceTree = ""; }; + 9AA91D0025CD598000BD5E8B /* UserMisc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = UserMisc.c; sourceTree = ""; }; + 9AA91D0125CD598000BD5E8B /* OcDummy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OcDummy.c; sourceTree = ""; }; + 9AA91D0325CD598000BD5E8B /* Configuration.tex */ = {isa = PBXFileReference; lastKnownFileType = text; path = Configuration.tex; sourceTree = ""; }; + 9AA91D0425CD598000BD5E8B /* BuildDocs.tool */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = BuildDocs.tool; sourceTree = ""; }; + 9AA91D0625CD598000BD5E8B /* Errata.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Errata.pdf; sourceTree = ""; }; + 9AA91D0725CD598000BD5E8B /* Errata.tex */ = {isa = PBXFileReference; lastKnownFileType = text; path = Errata.tex; sourceTree = ""; }; + 9AA91D0925CD598000BD5E8B /* LogoApprox.svg */ = {isa = PBXFileReference; lastKnownFileType = text; path = LogoApprox.svg; sourceTree = ""; }; + 9AA91D0A25CD598000BD5E8B /* OpenCore_with_text_Small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = OpenCore_with_text_Small.png; sourceTree = ""; }; + 9AA91D0B25CD598000BD5E8B /* OpenCore_with_text_Large.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = OpenCore_with_text_Large.png; sourceTree = ""; }; + 9AA91D0C25CD598000BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91D0D25CD598000BD5E8B /* Logo.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Logo.pdf; sourceTree = ""; }; + 9AA91D0E25CD598000BD5E8B /* Logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Logo.png; sourceTree = ""; }; + 9AA91D0F25CD598000BD5E8B /* Logo.sketch */ = {isa = PBXFileReference; lastKnownFileType = file; path = Logo.sketch; sourceTree = ""; }; + 9AA91D1025CD598000BD5E8B /* Configuration.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Configuration.pdf; sourceTree = ""; }; + 9AA91D1225CD598000BD5E8B /* SSDT-RTC0-RANGE.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-RTC0-RANGE.dsl"; sourceTree = ""; }; + 9AA91D1325CD598000BD5E8B /* SSDT-AWAC.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-AWAC.dsl"; sourceTree = ""; }; + 9AA91D1425CD598000BD5E8B /* SSDT-RTC0.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-RTC0.dsl"; sourceTree = ""; }; + 9AA91D1525CD598000BD5E8B /* SSDT-IMEI.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-IMEI.dsl"; sourceTree = ""; }; + 9AA91D1625CD598000BD5E8B /* SSDT-EC.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-EC.dsl"; sourceTree = ""; }; + 9AA91D1725CD598000BD5E8B /* SSDT-ALS0.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-ALS0.dsl"; sourceTree = ""; }; + 9AA91D1825CD598000BD5E8B /* SSDT-BRG0.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-BRG0.dsl"; sourceTree = ""; }; + 9AA91D1925CD598000BD5E8B /* SSDT-PMC.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-PMC.dsl"; sourceTree = ""; }; + 9AA91D1A25CD598000BD5E8B /* SSDT-SBUS-MCHC.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-SBUS-MCHC.dsl"; sourceTree = ""; }; + 9AA91D1B25CD598000BD5E8B /* SSDT-EC-USBX.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-EC-USBX.dsl"; sourceTree = ""; }; + 9AA91D1C25CD598000BD5E8B /* SSDT-EHCx_OFF.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-EHCx_OFF.dsl"; sourceTree = ""; }; + 9AA91D1D25CD598000BD5E8B /* SSDT-PLUG.dsl */ = {isa = PBXFileReference; lastKnownFileType = text; path = "SSDT-PLUG.dsl"; sourceTree = ""; }; + 9AA91D1E25CD598000BD5E8B /* SampleCustom.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = SampleCustom.plist; sourceTree = ""; }; + 9AA91D1F25CD598000BD5E8B /* Kexts.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = Kexts.md; sourceTree = ""; }; + 9AA91D2025CD598000BD5E8B /* Libraries.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = Libraries.md; sourceTree = ""; }; + 9AA91D2225CD598000BD5E8B /* Differences.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Differences.pdf; sourceTree = ""; }; + 9AA91D2325CD598000BD5E8B /* PreviousConfiguration.tex */ = {isa = PBXFileReference; lastKnownFileType = text; path = PreviousConfiguration.tex; sourceTree = ""; }; + 9AA91D2425CD598000BD5E8B /* Differences.tex */ = {isa = PBXFileReference; lastKnownFileType = text; path = Differences.tex; sourceTree = ""; }; + 9AA91D2525CD598000BD5E8B /* Sample.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Sample.plist; sourceTree = ""; }; + 9AA91D2625CD598000BD5E8B /* OpenDuetPkg.fdf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenDuetPkg.fdf; sourceTree = ""; }; + 9AA91D2725CD598000BD5E8B /* OpenCorePkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenCorePkg.dec; sourceTree = ""; }; + 9AA91D2825CD598000BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91D2B25CD598000BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D2C25CD598000BD5E8B /* Smbios.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = Smbios.bin; sourceTree = ""; }; + 9AA91D2D25CD598000BD5E8B /* Smbios.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Smbios.c; sourceTree = ""; }; + 9AA91D2F25CD598000BD5E8B /* EfiLdrImage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EfiLdrImage.c; sourceTree = ""; }; + 9AA91D3025CD598000BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D3225CD598000BD5E8B /* EfiLdrImage */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = EfiLdrImage; sourceTree = ""; }; + 9AA91D3325CD598000BD5E8B /* GenPage */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = GenPage; sourceTree = ""; }; + 9AA91D3425CD598000BD5E8B /* GenPage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GenPage.c; sourceTree = ""; }; + 9AA91D3625CD598000BD5E8B /* EfiLdrImage */ = {isa = PBXFileReference; lastKnownFileType = file; path = EfiLdrImage; sourceTree = ""; }; + 9AA91D3725CD598000BD5E8B /* GenPage */ = {isa = PBXFileReference; lastKnownFileType = file; path = GenPage; sourceTree = ""; }; + 9AA91D3825CD598000BD5E8B /* VirtualMemory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VirtualMemory.h; sourceTree = ""; }; + 9AA91D3A25CD598000BD5E8B /* EfiLdrImage.exe */ = {isa = PBXFileReference; lastKnownFileType = file; path = EfiLdrImage.exe; sourceTree = ""; }; + 9AA91D3B25CD598000BD5E8B /* GenPage.exe */ = {isa = PBXFileReference; lastKnownFileType = file; path = GenPage.exe; sourceTree = ""; }; + 9AA91D3D25CD598000BD5E8B /* nvram.exe */ = {isa = PBXFileReference; lastKnownFileType = file; path = nvram.exe; sourceTree = ""; }; + 9AA91D3E25CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D3F25CD598100BD5E8B /* nvram.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = nvram.c; sourceTree = ""; }; + 9AA91D4125CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D4225CD598100BD5E8B /* Bmf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Bmf.c; sourceTree = ""; }; + 9AA91D4425CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D4525CD598100BD5E8B /* disklabel.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = disklabel.c; sourceTree = ""; }; + 9AA91D4725CD598100BD5E8B /* AppleKeyboardLayouts.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = AppleKeyboardLayouts.txt; sourceTree = ""; }; + 9AA91D4825CD598100BD5E8B /* AppleKeyboardLayouts.bt */ = {isa = PBXFileReference; lastKnownFileType = text; path = AppleKeyboardLayouts.bt; sourceTree = ""; }; + 9AA91D4A25CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D4B25CD598100BD5E8B /* Img4.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Img4.c; sourceTree = ""; }; + 9AA91D4D25CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D4E25CD598100BD5E8B /* HelloWorld.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HelloWorld.c; sourceTree = ""; }; + 9AA91D5025CD598100BD5E8B /* MacEfiUnpack.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = MacEfiUnpack.py; sourceTree = ""; }; + 9AA91D5225CD598100BD5E8B /* boot0 */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot0; sourceTree = ""; }; + 9AA91D5325CD598100BD5E8B /* boot1f32 */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot1f32; sourceTree = ""; }; + 9AA91D5425CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91D5525CD598100BD5E8B /* QemuBuild.command */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = QemuBuild.command; sourceTree = ""; }; + 9AA91D5625CD598100BD5E8B /* BootInstall.command */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = BootInstall.command; sourceTree = ""; }; + 9AA91D5825CD598100BD5E8B /* macserial.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = macserial.h; sourceTree = ""; }; + 9AA91D5925CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D5A25CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91D5B25CD598100BD5E8B /* modelinfo_autogen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = modelinfo_autogen.h; sourceTree = ""; }; + 9AA91D5C25CD598100BD5E8B /* modelinfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = modelinfo.h; sourceTree = ""; }; + 9AA91D5D25CD598100BD5E8B /* macserial.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = macserial.c; sourceTree = ""; }; + 9AA91D5E25CD598100BD5E8B /* FORMAT.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = FORMAT.md; sourceTree = ""; }; + 9AA91D5F25CD598100BD5E8B /* cccdump.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = cccdump.py; sourceTree = ""; }; + 9AA91D6125CD598100BD5E8B /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + 9AA91D6225CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D6325CD598100BD5E8B /* RsaTool.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RsaTool.c; sourceTree = ""; }; + 9AA91D6425CD598100BD5E8B /* openssl_compat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = openssl_compat.h; sourceTree = ""; }; + 9AA91D6625CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D6725CD598100BD5E8B /* PeCoff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PeCoff.c; sourceTree = ""; }; + 9AA91D6925CD598100BD5E8B /* create_vault.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = create_vault.sh; sourceTree = ""; }; + 9AA91D6A25CD598100BD5E8B /* sign.command */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = sign.command; sourceTree = ""; }; + 9AA91D6B25CD598100BD5E8B /* RsaTool */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = RsaTool; sourceTree = ""; }; + 9AA91D6D25CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D6E25CD598100BD5E8B /* FileDummy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FileDummy.c; sourceTree = ""; }; + 9AA91D6F25CD598100BD5E8B /* DiskImage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = DiskImage.c; sourceTree = ""; }; + 9AA91D7125CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D7225CD598100BD5E8B /* RsaPreprocess.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RsaPreprocess.c; sourceTree = ""; }; + 9AA91D7425CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D7525CD598100BD5E8B /* icnspack.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = icnspack.c; sourceTree = ""; }; + 9AA91D7725CD598100BD5E8B /* kpdescribe.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = kpdescribe.sh; sourceTree = ""; }; + 9AA91D7925CD598100BD5E8B /* AppleEfiFatBinary.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleEfiFatBinary.h; sourceTree = ""; }; + 9AA91D7A25CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D7B25CD598100BD5E8B /* AppleEfiBinary.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleEfiBinary.c; sourceTree = ""; }; + 9AA91D7C25CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91D7E25CD598100BD5E8B /* boot_10.12.6.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.12.6.efi; sourceTree = ""; }; + 9AA91D7F25CD598100BD5E8B /* boot_10.7.5.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.7.5.efi; sourceTree = ""; }; + 9AA91D8025CD598100BD5E8B /* boot_10.10.5.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.10.5.efi; sourceTree = ""; }; + 9AA91D8125CD598100BD5E8B /* boot_10.14_0.18A389.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.14_0.18A389.efi; sourceTree = ""; }; + 9AA91D8225CD598100BD5E8B /* boot_10.13.6.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.13.6.efi; sourceTree = ""; }; + 9AA91D8325CD598100BD5E8B /* boot_10.14.0.18A371a.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.14.0.18A371a.efi; sourceTree = ""; }; + 9AA91D8425CD598100BD5E8B /* apfs.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = apfs.efi; sourceTree = ""; }; + 9AA91D8525CD598100BD5E8B /* boot_10.11.6.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.11.6.efi; sourceTree = ""; }; + 9AA91D8625CD598100BD5E8B /* apfs_10.15.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = apfs_10.15.efi; sourceTree = ""; }; + 9AA91D8725CD598100BD5E8B /* apfs_aligned_10.15.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = apfs_aligned_10.15.efi; sourceTree = ""; }; + 9AA91D8825CD598100BD5E8B /* boot_10.8.5.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.8.5.efi; sourceTree = ""; }; + 9AA91D8925CD598100BD5E8B /* boot_10.6.8.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.6.8.efi; sourceTree = ""; }; + 9AA91D8A25CD598100BD5E8B /* boot_10.4.11.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.4.11.efi; sourceTree = ""; }; + 9AA91D8B25CD598100BD5E8B /* boot_10.9.5.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.9.5.efi; sourceTree = ""; }; + 9AA91D8C25CD598100BD5E8B /* boot_10.5.8.efi */ = {isa = PBXFileReference; lastKnownFileType = file; path = boot_10.5.8.efi; sourceTree = ""; }; + 9AA91D8D25CD598100BD5E8B /* Edk2PeImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Edk2PeImage.h; sourceTree = ""; }; + 9AA91D8E25CD598100BD5E8B /* AppleEfiSignTool.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AppleEfiSignTool.c; sourceTree = ""; }; + 9AA91D8F25CD598100BD5E8B /* AppleEfiPeImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppleEfiPeImage.h; sourceTree = ""; }; + 9AA91D9125CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D9225CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91D9325CD598100BD5E8B /* EfiResTool.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = EfiResTool.c; sourceTree = ""; }; + 9AA91D9525CD598100BD5E8B /* Macho.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Macho.c; sourceTree = ""; }; + 9AA91D9625CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D9725CD598100BD5E8B /* kernel */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = kernel; sourceTree = ""; }; + 9AA91D9925CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91D9A25CD598100BD5E8B /* config.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = config.plist; sourceTree = ""; }; + 9AA91D9B25CD598100BD5E8B /* ocvalidate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ocvalidate.c; sourceTree = ""; }; + 9AA91D9D25CD598100BD5E8B /* LogoutHook.command */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = LogoutHook.command; sourceTree = ""; }; + 9AA91D9E25CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91D9F25CD598100BD5E8B /* nvram.mojave */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = nvram.mojave; sourceTree = ""; }; + 9AA91DA125CD598100BD5E8B /* recovery_urls.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = recovery_urls.txt; sourceTree = ""; }; + 9AA91DA225CD598100BD5E8B /* boards.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = boards.json; sourceTree = ""; }; + 9AA91DA325CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91DA425CD598100BD5E8B /* macrecovery.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = macrecovery.py; sourceTree = ""; }; + 9AA91DA625CD598100BD5E8B /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + 9AA91DA725CD598100BD5E8B /* check_injection.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = check_injection.sh; sourceTree = ""; }; + 9AA91DA825CD598100BD5E8B /* KextInject.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KextInject.c; sourceTree = ""; }; + 9AA91DAC25CD598100BD5E8B /* OpenDuetPkg.dec */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenDuetPkg.dec; sourceTree = ""; }; + 9AA91DAD25CD598100BD5E8B /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; path = .gitignore; sourceTree = ""; }; + 9AA91DAE25CD598100BD5E8B /* build_duet.tool */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = build_duet.tool; sourceTree = ""; }; + 9AA91DAF25CD598100BD5E8B /* .gitattributes */ = {isa = PBXFileReference; lastKnownFileType = text; path = .gitattributes; sourceTree = ""; }; + 9AA91DB025CD598100BD5E8B /* build_oc.tool */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = build_oc.tool; sourceTree = ""; }; + 9AA91DB325CD598100BD5E8B /* HdaCodecDump.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = HdaCodecDump.inf; sourceTree = ""; }; + 9AA91DB425CD598100BD5E8B /* HdaCodecDump.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HdaCodecDump.h; sourceTree = ""; }; + 9AA91DB525CD598100BD5E8B /* HdaCodecDump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = HdaCodecDump.c; sourceTree = ""; }; + 9AA91DB725CD598100BD5E8B /* VerifyMemOpt.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VerifyMemOpt.inf; sourceTree = ""; }; + 9AA91DB825CD598100BD5E8B /* VerifyMemOpt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VerifyMemOpt.c; sourceTree = ""; }; + 9AA91DBA25CD598100BD5E8B /* BootKicker.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = BootKicker.inf; sourceTree = ""; }; + 9AA91DBB25CD598100BD5E8B /* BootKicker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = BootKicker.c; sourceTree = ""; }; + 9AA91DBD25CD598100BD5E8B /* Bootstrap.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = Bootstrap.inf; sourceTree = ""; }; + 9AA91DBE25CD598100BD5E8B /* Bootstrap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Bootstrap.c; sourceTree = ""; }; + 9AA91DC025CD598100BD5E8B /* KeyTester.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = KeyTester.inf; sourceTree = ""; }; + 9AA91DC125CD598100BD5E8B /* KeyTester.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = KeyTester.c; sourceTree = ""; }; + 9AA91DC325CD598100BD5E8B /* VerifyMsrE2.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = VerifyMsrE2.inf; sourceTree = ""; }; + 9AA91DC425CD598100BD5E8B /* VerifyMsrE2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VerifyMsrE2.c; sourceTree = ""; }; + 9AA91DC625CD598100BD5E8B /* RtcRw.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = RtcRw.inf; sourceTree = ""; }; + 9AA91DC725CD598100BD5E8B /* RtcRw.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RtcRw.c; sourceTree = ""; }; + 9AA91DC925CD598100BD5E8B /* GopStop.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GopStop.inf; sourceTree = ""; }; + 9AA91DCA25CD598100BD5E8B /* GopStop.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GopStop.c; sourceTree = ""; }; + 9AA91DCB25CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91DCD25CD598100BD5E8B /* Step3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Step3.png; sourceTree = ""; }; + 9AA91DCE25CD598100BD5E8B /* Step10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Step10.png; sourceTree = ""; }; + 9AA91DD025CD598100BD5E8B /* ResetSystem.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ResetSystem.inf; sourceTree = ""; }; + 9AA91DD125CD598100BD5E8B /* ResetSystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ResetSystem.c; sourceTree = ""; }; + 9AA91DD325CD598100BD5E8B /* ChipTune.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = ChipTune.inf; sourceTree = ""; }; + 9AA91DD425CD598100BD5E8B /* ChipTune.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ChipTune.c; sourceTree = ""; }; + 9AA91DD625CD598100BD5E8B /* PavpProvision.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = PavpProvision.inf; sourceTree = ""; }; + 9AA91DD725CD598100BD5E8B /* PavpProvisionData.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PavpProvisionData.c; sourceTree = ""; }; + 9AA91DD825CD598100BD5E8B /* PavpProvision.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PavpProvision.c; sourceTree = ""; }; + 9AA91DDA25CD598100BD5E8B /* CleanNvram.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = CleanNvram.c; sourceTree = ""; }; + 9AA91DDB25CD598100BD5E8B /* CleanNvram.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = CleanNvram.inf; sourceTree = ""; }; + 9AA91DDD25CD598100BD5E8B /* OpenControl.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenControl.inf; sourceTree = ""; }; + 9AA91DDE25CD598100BD5E8B /* OpenControl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = OpenControl.c; sourceTree = ""; }; + 9AA91DE025CD598100BD5E8B /* MmapDump.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = MmapDump.inf; sourceTree = ""; }; + 9AA91DE125CD598100BD5E8B /* MmapDump.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = MmapDump.c; sourceTree = ""; }; + 9AA91DE225CD598100BD5E8B /* OpenCorePkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenCorePkg.dsc; sourceTree = ""; }; + 9AA91DE325CD598100BD5E8B /* Doxyfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Doxyfile; sourceTree = ""; }; + 9AA91DE425CD598100BD5E8B /* LICENSE.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE.txt; sourceTree = ""; }; + 9AA91DE525CD598100BD5E8B /* OpenDuetPkg.dsc */ = {isa = PBXFileReference; lastKnownFileType = text; path = OpenDuetPkg.dsc; sourceTree = ""; }; + 9AA91DE625CD598100BD5E8B /* OpenCoreFromClover.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenCoreFromClover.h; sourceTree = ""; }; + 9AA91DE725CD598100BD5E8B /* .travis.yml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = .travis.yml; sourceTree = ""; }; + 9AA91DE825CD598100BD5E8B /* xcbuild.tool */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = xcbuild.tool; sourceTree = ""; }; + 9AA91DED25CD598100BD5E8B /* GdbSyms.dll */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o"; path = GdbSyms.dll; sourceTree = ""; }; + 9AA91DEF25CD598100BD5E8B /* GdbSyms.dll */ = {isa = PBXFileReference; lastKnownFileType = file; path = GdbSyms.dll; sourceTree = ""; }; + 9AA91DF025CD598100BD5E8B /* GdbSyms.pdb */ = {isa = PBXFileReference; lastKnownFileType = file; path = GdbSyms.pdb; sourceTree = ""; }; + 9AA91DF225CD598100BD5E8B /* GdbSyms.debug */ = {isa = PBXFileReference; lastKnownFileType = file; path = GdbSyms.debug; sourceTree = ""; }; + 9AA91DF425CD598100BD5E8B /* GdbSyms.debug */ = {isa = PBXFileReference; lastKnownFileType = file; path = GdbSyms.debug; sourceTree = ""; }; + 9AA91DF625CD598100BD5E8B /* GdbSyms.dll */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o"; path = GdbSyms.dll; sourceTree = ""; }; + 9AA91DF825CD598100BD5E8B /* GdbSyms.debug */ = {isa = PBXFileReference; lastKnownFileType = file; path = GdbSyms.debug; sourceTree = ""; }; + 9AA91DF925CD598100BD5E8B /* GdbSyms.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = GdbSyms.c; sourceTree = ""; }; + 9AA91DFA25CD598100BD5E8B /* GdbSyms.inf */ = {isa = PBXFileReference; lastKnownFileType = text; path = GdbSyms.inf; sourceTree = ""; }; + 9AA91DFB25CD598100BD5E8B /* ClangDwarf.patch */ = {isa = PBXFileReference; lastKnownFileType = text; path = ClangDwarf.patch; sourceTree = ""; }; + 9AA91DFC25CD598100BD5E8B /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9AA91DFE25CD598100BD5E8B /* common_uefi.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = common_uefi.py; sourceTree = ""; }; + 9AA91DFF25CD598100BD5E8B /* lldb_uefi.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = lldb_uefi.py; sourceTree = ""; }; + 9AA91E0025CD598100BD5E8B /* common_uefi.pyc */ = {isa = PBXFileReference; lastKnownFileType = file; path = common_uefi.pyc; sourceTree = ""; }; + 9AA91E0125CD598100BD5E8B /* x86_64_target_definition.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = x86_64_target_definition.py; sourceTree = ""; }; + 9AA91E0225CD598100BD5E8B /* gdb_uefi.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = gdb_uefi.py; sourceTree = ""; }; + 9AA91E0325CD598100BD5E8B /* efidebug.tool */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = efidebug.tool; sourceTree = ""; }; + 9AA91E2625CD59F100BD5E8B /* printf_lite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = printf_lite.c; sourceTree = ""; }; + 9AA91E2825CD59F100BD5E8B /* printf_lite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = printf_lite.h; sourceTree = ""; }; + 9AA9239125CD5B1900BD5E8B /* memvendors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memvendors.h; sourceTree = ""; }; + 9AA9239225CD5B1A00BD5E8B /* BasicIO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicIO.h; sourceTree = ""; }; + 9AA9239525CD5B1A00BD5E8B /* BdsConnect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BdsConnect.cpp; sourceTree = ""; }; + 9AA9239625CD5B1B00BD5E8B /* Edid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Edid.cpp; sourceTree = ""; }; + 9AA9239725CD5B1B00BD5E8B /* Console.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Console.h; sourceTree = ""; }; + 9AA9239825CD5B1B00BD5E8B /* LegacyBiosThunk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LegacyBiosThunk.cpp; sourceTree = ""; }; + 9AA9239925CD5B1B00BD5E8B /* PlatformDriverOverride.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PlatformDriverOverride.cpp; sourceTree = ""; }; + 9AA9239A25CD5B1C00BD5E8B /* smbios.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = smbios.cpp; sourceTree = ""; }; + 9AA9239B25CD5B1C00BD5E8B /* spd.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spd.cpp; sourceTree = ""; }; + 9AA923B525CD5B1C00BD5E8B /* usbfix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = usbfix.cpp; sourceTree = ""; }; + 9AA923B625CD5B1D00BD5E8B /* smbios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smbios.h; sourceTree = ""; }; + 9AA923B725CD5B1D00BD5E8B /* Edid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Edid.h; sourceTree = ""; }; + 9AA923B825CD5B1D00BD5E8B /* guid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guid.h; sourceTree = ""; }; + 9AA923BA25CD5B1E00BD5E8B /* hda.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hda.h; sourceTree = ""; }; + 9AA923BB25CD5B1E00BD5E8B /* HdaCodecDump.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HdaCodecDump.cpp; sourceTree = ""; }; + 9AA923BC25CD5B1E00BD5E8B /* Nvram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Nvram.h; sourceTree = ""; }; + 9AA923BD25CD5B1E00BD5E8B /* Events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Events.h; sourceTree = ""; }; + 9AA923BE25CD5B1E00BD5E8B /* Hibernate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hibernate.h; sourceTree = ""; }; + 9AA923C025CD5B1F00BD5E8B /* sse3_5_patcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sse3_5_patcher.h; sourceTree = ""; }; + 9AA923C125CD5B1F00BD5E8B /* ati.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati.h; sourceTree = ""; }; + 9AA923C325CD5B1F00BD5E8B /* guid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guid.cpp; sourceTree = ""; }; + 9AA923C425CD5B2000BD5E8B /* KextList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = KextList.cpp; sourceTree = ""; }; + 9AA923C525CD5B2000BD5E8B /* nvidia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nvidia.h; sourceTree = ""; }; + 9AA923C625CD5B2000BD5E8B /* device_inject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_inject.h; sourceTree = ""; }; + 9AA923C825CD5B2100BD5E8B /* kext_patcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = kext_patcher.cpp; sourceTree = ""; }; + 9AA923C925CD5B2100BD5E8B /* StateGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateGenerator.h; sourceTree = ""; }; + 9AA923CA25CD5B2100BD5E8B /* AmlGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AmlGenerator.h; sourceTree = ""; }; + 9AA923CB25CD5B2100BD5E8B /* cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = ""; }; + 9AA923CC25CD5B2200BD5E8B /* APFS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APFS.h; sourceTree = ""; }; + 9AA923CD25CD5B2200BD5E8B /* kernel_patcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kernel_patcher.h; sourceTree = ""; }; + 9AA923CE25CD5B2200BD5E8B /* platformdata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = platformdata.cpp; sourceTree = ""; }; + 9AA923CF25CD5B2200BD5E8B /* HdaCodecDump.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HdaCodecDump.h; sourceTree = ""; }; + 9AA923D025CD5B2300BD5E8B /* sound.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sound.cpp; sourceTree = ""; }; + 9AA923D125CD5B2300BD5E8B /* Volumes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Volumes.cpp; sourceTree = ""; }; + 9AA923D225CD5B2300BD5E8B /* BootOptions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BootOptions.cpp; sourceTree = ""; }; + 9AA923D325CD5B2300BD5E8B /* Volumes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Volumes.h; sourceTree = ""; }; + 9AA923D425CD5B2400BD5E8B /* Nvram.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Nvram.cpp; sourceTree = ""; }; + 9AA923D525CD5B2400BD5E8B /* PlatformDriverOverride.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformDriverOverride.h; sourceTree = ""; }; + 9AA923D625CD5B2400BD5E8B /* LegacyBoot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LegacyBoot.cpp; sourceTree = ""; }; + 9AA923D725CD5B2400BD5E8B /* kext_inject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kext_inject.h; sourceTree = ""; }; + 9AA923D825CD5B2500BD5E8B /* DataHubCpu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DataHubCpu.cpp; sourceTree = ""; }; + 9AA923D925CD5B2500BD5E8B /* Hibernate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Hibernate.cpp; sourceTree = ""; }; + 9AA923DA25CD5B2500BD5E8B /* APFS.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = APFS.cpp; sourceTree = ""; }; + 9AA923DB25CD5B2500BD5E8B /* KextList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KextList.h; sourceTree = ""; }; + 9AA923DC25CD5B2600BD5E8B /* DataHubCpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataHubCpu.h; sourceTree = ""; }; + 9AA923DD25CD5B2600BD5E8B /* gma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gma.h; sourceTree = ""; }; + 9AA923DE25CD5B2600BD5E8B /* BootOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootOptions.h; sourceTree = ""; }; + 9AA923DF25CD5B2600BD5E8B /* LegacyBiosThunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyBiosThunk.h; sourceTree = ""; }; + 9AA923E025CD5B2700BD5E8B /* nvidia.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nvidia.cpp; sourceTree = ""; }; + 9AA923E125CD5B2700BD5E8B /* kext_inject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = kext_inject.cpp; sourceTree = ""; }; + 9AA923E225CD5B2700BD5E8B /* platformdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platformdata.h; sourceTree = ""; }; + 9AA923E525CD5B2800BD5E8B /* StartupSound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StartupSound.h; sourceTree = ""; }; + 9AA923F925CD5B2800BD5E8B /* usbfix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usbfix.h; sourceTree = ""; }; + 9AA923FA25CD5B2900BD5E8B /* Injectors.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Injectors.cpp; sourceTree = ""; }; + 9AA923FB25CD5B2900BD5E8B /* AmlGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AmlGenerator.cpp; sourceTree = ""; }; + 9AA923FC25CD5B2900BD5E8B /* hda.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hda.cpp; sourceTree = ""; }; + 9AA923FD25CD5B2900BD5E8B /* Events.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Events.cpp; sourceTree = ""; }; + 9AA923FE25CD5B2A00BD5E8B /* cpu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cpu.cpp; sourceTree = ""; }; + 9AA923FF25CD5B2A00BD5E8B /* StartupSound.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StartupSound.cpp; sourceTree = ""; }; + 9AA9240025CD5B2A00BD5E8B /* Console.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Console.cpp; sourceTree = ""; }; + 9AA9240125CD5B2A00BD5E8B /* ati.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ati.cpp; sourceTree = ""; }; + 9AA9240225CD5B2B00BD5E8B /* gma.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gma.cpp; sourceTree = ""; }; + 9AA9240325CD5B2B00BD5E8B /* ati_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati_reg.h; sourceTree = ""; }; + 9AA9240425CD5B2B00BD5E8B /* spd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spd.h; sourceTree = ""; }; + 9AA9240525CD5B2B00BD5E8B /* kernel_patcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = kernel_patcher.cpp; sourceTree = ""; }; + 9AA9240625CD5B2B00BD5E8B /* FixBiosDsdt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FixBiosDsdt.cpp; sourceTree = ""; }; + 9AA9240725CD5B2C00BD5E8B /* device_inject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = device_inject.cpp; sourceTree = ""; }; + 9AA9240825CD5B2C00BD5E8B /* AcpiPatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AcpiPatcher.h; sourceTree = ""; }; + 9AA9240A25CD5B2C00BD5E8B /* boot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boot.h; sourceTree = ""; }; + 9AA9240B25CD5B2C00BD5E8B /* KERNEL_AND_KEXT_PATCHES.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KERNEL_AND_KEXT_PATCHES.h; sourceTree = ""; }; + 9AA9240C25CD5B2D00BD5E8B /* LegacyBoot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LegacyBoot.h; sourceTree = ""; }; + 9AA9240D25CD5B2D00BD5E8B /* AcpiPatcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AcpiPatcher.cpp; sourceTree = ""; }; + 9AA9240E25CD5B2D00BD5E8B /* Injectors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Injectors.h; sourceTree = ""; }; + 9AA9240F25CD5B2D00BD5E8B /* KERNEL_AND_KEXT_PATCHES.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = KERNEL_AND_KEXT_PATCHES.cpp; sourceTree = ""; }; + 9AA9241125CD5B2E00BD5E8B /* sse3_patcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sse3_patcher.h; sourceTree = ""; }; + 9AA9241225CD5B2E00BD5E8B /* StateGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StateGenerator.cpp; sourceTree = ""; }; + 9AA9251625CD74C700BD5E8B /* tool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tool.h; sourceTree = ""; }; + 9AA9251725CD74C700BD5E8B /* secureboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = secureboot.h; sourceTree = ""; }; + 9AA9251825CD74C800BD5E8B /* tool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tool.cpp; sourceTree = ""; }; + 9AA9251925CD74C800BD5E8B /* entry_scan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = entry_scan.h; sourceTree = ""; }; + 9AA9251A25CD74C800BD5E8B /* MSKEK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSKEK.h; sourceTree = ""; }; + 9AA9251B25CD74C800BD5E8B /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = ""; }; + 9AA9251C25CD74C800BD5E8B /* lockedgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lockedgraphics.cpp; sourceTree = ""; }; + 9AA9251D25CD74C900BD5E8B /* securehash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = securehash.cpp; sourceTree = ""; }; + 9AA9251E25CD74C900BD5E8B /* legacy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = legacy.cpp; sourceTree = ""; }; + 9AA9251F25CD74C900BD5E8B /* bootscreen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bootscreen.cpp; sourceTree = ""; }; + 9AA9252025CD74C900BD5E8B /* MSPCADB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSPCADB.h; sourceTree = ""; }; + 9AA9252125CD74C900BD5E8B /* CloverDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloverDB.h; sourceTree = ""; }; + 9AA9252225CD74CA00BD5E8B /* bootscreen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootscreen.h; sourceTree = ""; }; + 9AA9252325CD74CA00BD5E8B /* secureboot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = secureboot.cpp; sourceTree = ""; }; + 9AA9252425CD74CA00BD5E8B /* securemenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = securemenu.cpp; sourceTree = ""; }; + 9AA9252525CD74CA00BD5E8B /* MSUEFICADB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSUEFICADB.h; sourceTree = ""; }; + 9AA9252625CD74CA00BD5E8B /* CloverKEK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloverKEK.h; sourceTree = ""; }; + 9AA9252725CD74CB00BD5E8B /* CanonicalDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CanonicalDB.h; sourceTree = ""; }; + 9AA9252825CD74CB00BD5E8B /* securebootkeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = securebootkeys.h; sourceTree = ""; }; + 9AA9252925CD74CB00BD5E8B /* securevars.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = securevars.cpp; sourceTree = ""; }; + 9AA9252A25CD74CB00BD5E8B /* common.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = common.cpp; sourceTree = ""; }; + 9AA9253425CD764800BD5E8B /* REFIT_MENU_SCREEN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REFIT_MENU_SCREEN.h; sourceTree = ""; }; + 9AA9253625CD764800BD5E8B /* menu_items.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = menu_items.h; sourceTree = ""; }; + 9AA9253725CD764800BD5E8B /* menu_globals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = menu_globals.h; sourceTree = ""; }; + 9AA9253825CD764800BD5E8B /* menu_items.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = menu_items.cpp; sourceTree = ""; }; + 9AA9253925CD764800BD5E8B /* REFIT_MENU_SCREEN.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = REFIT_MENU_SCREEN.cpp; sourceTree = ""; }; + 9AA9256125CD770A00BD5E8B /* egemb_icons_dark.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = egemb_icons_dark.cpp; sourceTree = ""; }; + 9AA9256225CD770B00BD5E8B /* text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = text.cpp; sourceTree = ""; }; + 9AA9256325CD770B00BD5E8B /* EfiFileLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EfiFileLib.h; sourceTree = ""; }; + 9AA9256425CD770B00BD5E8B /* VectorGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VectorGraphics.h; sourceTree = ""; }; + 9AA9256525CD770B00BD5E8B /* lodepng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lodepng.h; sourceTree = ""; }; + 9AA9256625CD770C00BD5E8B /* libscreen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = libscreen.cpp; sourceTree = ""; }; + 9AA9256725CD770C00BD5E8B /* nanosvgrast.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nanosvgrast.cpp; sourceTree = ""; }; + 9AA9256825CD770C00BD5E8B /* nanosvg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nanosvg.cpp; sourceTree = ""; }; + 9AA9256925CD770C00BD5E8B /* image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = image.h; sourceTree = ""; }; + 9AA9256A25CD770D00BD5E8B /* libeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libeg.h; sourceTree = ""; }; + 9AA9256B25CD770D00BD5E8B /* load_icns.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = load_icns.cpp; sourceTree = ""; }; + 9AA9256C25CD770D00BD5E8B /* ftol.asm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm.asm; path = ftol.asm; sourceTree = ""; }; + 9AA9256D25CD770D00BD5E8B /* scroll_images.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scroll_images.cpp; sourceTree = ""; }; + 9AA9256E25CD770E00BD5E8B /* libegint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libegint.h; sourceTree = ""; }; + 9AA9256F25CD770E00BD5E8B /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = image.cpp; sourceTree = ""; }; + 9AA9257025CD770E00BD5E8B /* nanosvg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nanosvg.h; sourceTree = ""; }; + 9AA9257125CD770E00BD5E8B /* egemb_font.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = egemb_font.cpp; sourceTree = ""; }; + 9AA9257225CD770E00BD5E8B /* lodepng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lodepng.cpp; sourceTree = ""; }; + 9AA9257325CD770F00BD5E8B /* VectorGraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VectorGraphics.cpp; sourceTree = ""; }; + 9AA9257425CD770F00BD5E8B /* egemb_icons.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = egemb_icons.cpp; sourceTree = ""; }; + 9AA925A925CD79A900BD5E8B /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + 9AA925AA25CD79AA00BD5E8B /* screen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = screen.h; sourceTree = ""; }; + 9AA925AB25CD79AA00BD5E8B /* icns.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icns.cpp; sourceTree = ""; }; + 9AA925AC25CD79AA00BD5E8B /* menu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = menu.cpp; sourceTree = ""; }; + 9AA925AD25CD79AA00BD5E8B /* menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = menu.h; sourceTree = ""; }; + 9AA925AE25CD79AB00BD5E8B /* screen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = screen.cpp; sourceTree = ""; }; + 9AA9E4D425CD1C9400BD5E8B /* card_vlist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = card_vlist.cpp; sourceTree = ""; }; + 9AA9E4D525CD1C9400BD5E8B /* card_vlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = card_vlist.h; sourceTree = ""; }; + 9AA9E4DA25CD279100BD5E8B /* VersionString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VersionString.cpp; sourceTree = ""; }; + 9AA9E4DB25CD279200BD5E8B /* VersionString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VersionString.h; sourceTree = ""; }; + 9AA9E4E025CD283300BD5E8B /* XImage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XImage.cpp; sourceTree = ""; }; + 9AA9E4E125CD283300BD5E8B /* XImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XImage.h; sourceTree = ""; }; + 9AA9E4E225CD283300BD5E8B /* XIcon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XIcon.cpp; sourceTree = ""; }; + 9AA9E4E325CD283300BD5E8B /* XIcon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XIcon.h; sourceTree = ""; }; + 9AA9E4E425CD283300BD5E8B /* XCinema.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XCinema.h; sourceTree = ""; }; + 9AA9E4E525CD283300BD5E8B /* XTheme.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XTheme.cpp; sourceTree = ""; }; + 9AA9E4E625CD283400BD5E8B /* XCinema.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XCinema.cpp; sourceTree = ""; }; + 9AA9E4E725CD283400BD5E8B /* XPointer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XPointer.cpp; sourceTree = ""; }; + 9AA9E4E825CD283400BD5E8B /* XPointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XPointer.h; sourceTree = ""; }; + 9AA9E4E925CD283400BD5E8B /* XTheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XTheme.h; sourceTree = ""; }; + 9AA9E50025CD2FF400BD5E8B /* Utils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Utils.cpp; sourceTree = ""; }; + 9AA9E50125CD2FF400BD5E8B /* Utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Utils.h; sourceTree = ""; }; + 9AA9E51325CD306700BD5E8B /* loader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loader.h; sourceTree = ""; }; + 9AA9E51B25CD306700BD5E8B /* loader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loader.cpp; sourceTree = ""; }; + 9AB67BE2261834F300CC853A /* xml_lite-reapeatingdict-test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "xml_lite-reapeatingdict-test.cpp"; sourceTree = ""; }; + 9AB67BE3261834F300CC853A /* xml_lite-reapeatingdict-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "xml_lite-reapeatingdict-test.h"; sourceTree = ""; }; + 9AB6EB9D25CF1FAC0001BDBB /* VolumeTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VolumeTypes.h; sourceTree = ""; }; + 9AB6EB9E25CF1FAD0001BDBB /* BootTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BootTypes.h; sourceTree = ""; }; + 9AB6EB9F25CF1FAD0001BDBB /* OSFlags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSFlags.h; sourceTree = ""; }; + 9AB6EBA025CF1FAD0001BDBB /* OSTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSTypes.h; sourceTree = ""; }; + 9AC50DBA26432F2F0046F81B /* main_fixbiosdsdt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main_fixbiosdsdt.cpp; sourceTree = ""; }; + 9AD0EB22260A497500093F23 /* XmlLiteSimpleTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmlLiteSimpleTypes.cpp; sourceTree = ""; }; + 9AD0EB23260A497500093F23 /* XmlLiteSimpleTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlLiteSimpleTypes.h; sourceTree = ""; }; + 9AD469472452B33700D6D0DB /* shared_with_menu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shared_with_menu.cpp; sourceTree = ""; }; + 9AD469482452B33700D6D0DB /* shared_with_menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shared_with_menu.h; sourceTree = ""; }; + 9AD7B14E26079F5C00E850D1 /* REFIT_MAINMENU_SCREEN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = REFIT_MAINMENU_SCREEN.h; sourceTree = ""; }; + 9AD7B14F26079F5D00E850D1 /* REFIT_MAINMENU_SCREEN.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = REFIT_MAINMENU_SCREEN.cpp; sourceTree = ""; }; + 9AE276422B04E51C006343AB /* MemoryTracker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryTracker.cpp; sourceTree = ""; }; + 9AE276432B04E51C006343AB /* MemoryTracker.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MemoryTracker.h; sourceTree = ""; }; + 9AE2764A2B04EB26006343AB /* FirmwareVolume.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = FirmwareVolume.c; sourceTree = ""; }; + 9AE2764E2B04EB26006343AB /* load_bmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = load_bmp.c; sourceTree = ""; }; + 9AE2764F2B04EB26006343AB /* AppleImageCodec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AppleImageCodec.c; sourceTree = ""; }; + 9AE276502B04EB26006343AB /* picopng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = picopng.h; sourceTree = ""; }; + 9AE276512B04EB26006343AB /* load_icns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = load_icns.c; sourceTree = ""; }; + 9AE276532B04EB26006343AB /* picopng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picopng.c; sourceTree = ""; }; + 9AE276552B04EB26006343AB /* AppleKeyAggregator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleKeyAggregator.h; sourceTree = ""; }; + 9AE276572B04EB26006343AB /* AppleKeyAggregator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AppleKeyAggregator.c; sourceTree = ""; }; + 9AE2765A2B04EB26006343AB /* SMCHelper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SMCHelper.c; sourceTree = ""; }; + 9AE276652B04EBA0006343AB /* MemoryTracker_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryTracker_test.h; sourceTree = ""; }; + 9AE276662B04EBA0006343AB /* MemoryTracker_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryTracker_test.cpp; sourceTree = ""; }; + 9AE276672B04EBA0006343AB /* guid_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guid_tests.cpp; sourceTree = ""; }; + 9AE276682B04EBA1006343AB /* guid_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guid_tests.h; sourceTree = ""; }; + 9AE2766D2B04EC48006343AB /* PlatformdataModels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformdataModels.h; sourceTree = ""; }; + 9AE277942B051DAB006343AB /* CloverMacOsApp-UTF32_signed-DebugLibs */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "CloverMacOsApp-UTF32_signed-DebugLibs"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9AE277952B054D82006343AB /* operatorNewDelete.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = operatorNewDelete.cpp; sourceTree = ""; }; + 9AE2779C2B069D51006343AB /* apd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = apd.h; sourceTree = ""; }; + 9AE279562642869E005C8F2F /* CloverMacOsApp-UTF16_signed-ReleaseLibs */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "CloverMacOsApp-UTF16_signed-ReleaseLibs"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9AF1EFF22634354500F7C2C0 /* SettingsUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SettingsUtils.cpp; sourceTree = ""; }; + 9AF1EFF32634354800F7C2C0 /* Volume.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Volume.cpp; sourceTree = ""; }; + 9AF1EFF42634354800F7C2C0 /* Volume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Volume.h; sourceTree = ""; }; + 9AF1EFF62634354900F7C2C0 /* SettingsUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingsUtils.h; sourceTree = ""; }; + 9AFDD05925CE730F00EEAF06 /* XToolsCommon_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XToolsCommon_test.h; sourceTree = ""; }; + 9AFDD05A25CE730F00EEAF06 /* XString_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XString_test.h; sourceTree = ""; }; + 9AFDD05B25CE730F00EEAF06 /* plist_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plist_tests.h; sourceTree = ""; }; + 9AFDD05C25CE730F00EEAF06 /* global_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = global_test.cpp; sourceTree = ""; }; + 9AFDD05D25CE730F00EEAF06 /* strncmp_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strncmp_test.h; sourceTree = ""; }; + 9AFDD05E25CE730F00EEAF06 /* XBuffer_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XBuffer_tests.h; sourceTree = ""; }; + 9AFDD05F25CE730F00EEAF06 /* strcmp_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strcmp_test.h; sourceTree = ""; }; + 9AFDD06025CE730F00EEAF06 /* XBuffer_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XBuffer_tests.cpp; sourceTree = ""; }; + 9AFDD06125CE730F00EEAF06 /* LoadOptions_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LoadOptions_test.cpp; sourceTree = ""; }; + 9AFDD06225CE730F00EEAF06 /* find_replace_mask_OC_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = find_replace_mask_OC_tests.h; sourceTree = ""; }; + 9AFDD06325CE730F00EEAF06 /* printf_lite-test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "printf_lite-test.cpp"; sourceTree = ""; }; + 9AFDD06425CE730F00EEAF06 /* XArray_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XArray_tests.h; sourceTree = ""; }; + 9AFDD06525CE730F00EEAF06 /* global_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = global_test.h; sourceTree = ""; }; + 9AFDD06625CE730F00EEAF06 /* find_replace_mask_Clover_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = find_replace_mask_Clover_tests.h; sourceTree = ""; }; + 9AFDD06725CE730F00EEAF06 /* XStringArray_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XStringArray_test.h; sourceTree = ""; }; + 9AFDD06825CE730F00EEAF06 /* plist_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plist_tests.cpp; sourceTree = ""; }; + 9AFDD06925CE730F00EEAF06 /* MacOsVersion_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MacOsVersion_test.cpp; sourceTree = ""; }; + 9AFDD06A25CE730F00EEAF06 /* strcmp_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strcmp_test.cpp; sourceTree = ""; }; + 9AFDD06B25CE730F00EEAF06 /* printlib-test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "printlib-test.cpp"; sourceTree = ""; }; + 9AFDD06C25CE730F00EEAF06 /* XStringArray_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XStringArray_test.cpp; sourceTree = ""; }; + 9AFDD06D25CE730F00EEAF06 /* XObjArray_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XObjArray_tests.h; sourceTree = ""; }; + 9AFDD06E25CE730F00EEAF06 /* find_replace_mask_Clover_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = find_replace_mask_Clover_tests.cpp; sourceTree = ""; }; + 9AFDD06F25CE730F00EEAF06 /* MacOsVersion_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacOsVersion_test.h; sourceTree = ""; }; + 9AFDD07025CE730F00EEAF06 /* strlen_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strlen_test.h; sourceTree = ""; }; + 9AFDD07125CE730F00EEAF06 /* all_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = all_tests.cpp; sourceTree = ""; }; + 9AFDD07225CE730F00EEAF06 /* printlib-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printlib-test.h"; sourceTree = ""; }; + 9AFDD07325CE730F00EEAF06 /* XObjArray_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XObjArray_tests.cpp; sourceTree = ""; }; + 9AFDD07425CE730F00EEAF06 /* XArray_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XArray_tests.cpp; sourceTree = ""; }; + 9AFDD07525CE730F00EEAF06 /* strncmp_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strncmp_test.cpp; sourceTree = ""; }; + 9AFDD07625CE730F00EEAF06 /* printf_lite-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printf_lite-test.h"; sourceTree = ""; }; + 9AFDD07725CE730F00EEAF06 /* XString_test.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 4; path = XString_test.cpp; sourceTree = ""; }; + 9AFDD07825CE730F00EEAF06 /* LoadOptions_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoadOptions_test.h; sourceTree = ""; }; + 9AFDD07925CE730F00EEAF06 /* XToolsCommon_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XToolsCommon_test.cpp; sourceTree = ""; }; + 9AFDD07A25CE730F00EEAF06 /* all_tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = all_tests.h; sourceTree = ""; }; + 9AFDD07B25CE730F00EEAF06 /* strlen_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strlen_test.cpp; sourceTree = ""; }; + 9AFDD07C25CE730F00EEAF06 /* find_replace_mask_OC_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = find_replace_mask_OC_tests.cpp; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 9A92232A2402FD1000483CBA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9A0F1CD52B0BD0CE00F9BC7C /* WaveLib.lib in Frameworks */, + 9A0F1CFF2B0BD0CE00F9BC7C /* UefiBootServicesTableLib.lib in Frameworks */, + 9A0F0A4B2B0BD0B600F9BC7C /* OcStringLib.lib in Frameworks */, + 9A0F1D052B0BD0CE00F9BC7C /* DxeServicesTableLib.lib in Frameworks */, + 9A0F1C902B0BD0CD00F9BC7C /* OcCompressionLib.lib in Frameworks */, + 9A0F1CC62B0BD0CD00F9BC7C /* OcAppleSecureBootLib.lib in Frameworks */, + 9A0F0A422B0BD0B600F9BC7C /* OcDevicePropertyLib.lib in Frameworks */, + 9A0F1C962B0BD0CD00F9BC7C /* OcMacInfoLib.lib in Frameworks */, + 9A0F0A302B0BD0B600F9BC7C /* OcConfigurationLib.lib in Frameworks */, + 9A0F0A392B0BD0B600F9BC7C /* OcAppleEventLib.lib in Frameworks */, + 9A0F1C842B0BD0CD00F9BC7C /* OcSmbiosLib.lib in Frameworks */, + 9A0F1C6C2B0BD0CC00F9BC7C /* OcDevicePathLib.lib in Frameworks */, + 9A0F1CFC2B0BD0CE00F9BC7C /* DxeHobLib.lib in Frameworks */, + 9A0F1CB72B0BD0CD00F9BC7C /* OcOSInfoLib.lib in Frameworks */, + 9A0F1C512B0BD0CC00F9BC7C /* OcAppleKeyMapLib.lib in Frameworks */, + 9A0F1CB42B0BD0CD00F9BC7C /* OcDeviceTreeLib.lib in Frameworks */, + 9A0F1CCC2B0BD0CD00F9BC7C /* VBoxPeCoffLib.lib in Frameworks */, + 9A0F1CB12B0BD0CD00F9BC7C /* OcPeCoffExtLib.lib in Frameworks */, + 9A0F1C932B0BD0CD00F9BC7C /* OcMemoryLib.lib in Frameworks */, + 9A0F0A2A2B0BD0B600F9BC7C /* OcDataHubLib.lib in Frameworks */, + 9A0F1CC92B0BD0CD00F9BC7C /* VideoBiosPatchLib.lib in Frameworks */, + 9A0F1D4A2B0BD9B000F9BC7C /* OpenCore.lib in Frameworks */, + 9A0F1CDE2B0BD0CE00F9BC7C /* BaseLib.lib in Frameworks */, + 9A0F1C8D2B0BD0CD00F9BC7C /* OcAfterBootCompatLib.lib in Frameworks */, + 9A0F1C752B0BD0CD00F9BC7C /* OcInputLib.lib in Frameworks */, + 9A0F1D1D2B0BD0CE00F9BC7C /* UefiSortLib.lib in Frameworks */, + 9A0F1CE12B0BD0CE00F9BC7C /* UefiRuntimeServicesTableLib.lib in Frameworks */, + 9A0F1CA52B0BD0CD00F9BC7C /* OcMachoLib.lib in Frameworks */, + 9A0F1CC02B0BD0CD00F9BC7C /* OcMiscLib.lib in Frameworks */, + 9A0F1C692B0BD0CC00F9BC7C /* OcDeviceMiscLib.lib in Frameworks */, + 9A0F1CF32B0BD0CE00F9BC7C /* PeCoffExtraActionLibNull.lib in Frameworks */, + 9A0F1C7B2B0BD0CD00F9BC7C /* OcAppleRamDiskLib.lib in Frameworks */, + 9A0F1CBA2B0BD0CD00F9BC7C /* OcDriverConnectionLib.lib in Frameworks */, + 9A0F1C632B0BD0CC00F9BC7C /* OcGuardLib.lib in Frameworks */, + 9A0F1C872B0BD0CD00F9BC7C /* OcSerializeLib.lib in Frameworks */, + 9A0F1C4B2B0BD0CC00F9BC7C /* OcUnicodeCollationEngGenericLib.lib in Frameworks */, + 9A0F1CAE2B0BD0CD00F9BC7C /* OcAppleUserInterfaceThemeLib.lib in Frameworks */, + 9A0F1D0B2B0BD0CE00F9BC7C /* BasePrintLib.lib in Frameworks */, + 9A0F1C602B0BD0CC00F9BC7C /* OcCpuLib.lib in Frameworks */, + 9A0F1C722B0BD0CD00F9BC7C /* OcAppleKeysLib.lib in Frameworks */, + 9A0F1CED2B0BD0CE00F9BC7C /* BaseCpuLib.lib in Frameworks */, + 9A0F1D082B0BD0CE00F9BC7C /* BasePciLibCf8.lib in Frameworks */, + 9A0F1D022B0BD0CE00F9BC7C /* BaseDebugLibSerialPort.lib in Frameworks */, + 9A0F1C662B0BD0CC00F9BC7C /* OcMainLib.lib in Frameworks */, + 9A0F1D1A2B0BD0CE00F9BC7C /* BaseSerialPortLib16550.lib in Frameworks */, + 9A0F1C5D2B0BD0CC00F9BC7C /* OcDebugLogLib.lib in Frameworks */, + 9A0F1CAB2B0BD0CD00F9BC7C /* OcFileLib.lib in Frameworks */, + 9A0F1CE72B0BD0CE00F9BC7C /* BaseIoLibIntrinsic.lib in Frameworks */, + 9A0F0A4E2B0BD0B600F9BC7C /* OcTemplateLib.lib in Frameworks */, + 9A0F1C6F2B0BD0CD00F9BC7C /* OcAppleKernelLib.lib in Frameworks */, + 9A0F1CC32B0BD0CD00F9BC7C /* OcAppleBootPolicyLib.lib in Frameworks */, + 9A0F1CA82B0BD0CD00F9BC7C /* OcBlitLib.lib in Frameworks */, + 9A0F0A362B0BD0B600F9BC7C /* OcVirtualFsLib.lib in Frameworks */, + 9A0F0A2D2B0BD0B600F9BC7C /* OcXmlLib.lib in Frameworks */, + 9A0F1C9F2B0BD0CD00F9BC7C /* OcAcpiLib.lib in Frameworks */, + 9A0F1C542B0BD0CC00F9BC7C /* OcFlexArrayLib.lib in Frameworks */, + 9A0F1C8A2B0BD0CD00F9BC7C /* OcRngLib.lib in Frameworks */, + 9A0F1CEA2B0BD0CE00F9BC7C /* DxeServicesLib.lib in Frameworks */, + 9A0F1CBD2B0BD0CD00F9BC7C /* OcHashServicesLib.lib in Frameworks */, + 9A0F1C992B0BD0CD00F9BC7C /* OcBootManagementLib.lib in Frameworks */, + 9A0F1D172B0BD0CE00F9BC7C /* BasePlatformHookLibNull.lib in Frameworks */, + 9A0F1CD82B0BD0CE00F9BC7C /* BasePciCf8Lib.lib in Frameworks */, + 9A0F1C7E2B0BD0CD00F9BC7C /* OcPeCoffLib.lib in Frameworks */, + 9A0F1C9C2B0BD0CD00F9BC7C /* OcAppleImg4Lib.lib in Frameworks */, + 9A0F1C572B0BD0CC00F9BC7C /* OcConsoleLib.lib in Frameworks */, + 9A0F1CD22B0BD0CE00F9BC7C /* HdaDevicesLib.lib in Frameworks */, + 9A0F1CF62B0BD0CE00F9BC7C /* UefiMemoryAllocationLib.lib in Frameworks */, + 9A0F1D142B0BD0CE00F9BC7C /* MtrrLib.lib in Frameworks */, + 9A0F1D112B0BD0CE00F9BC7C /* BaseDebugPrintErrorLevelLib.lib in Frameworks */, + 9A0F1CE42B0BD0CE00F9BC7C /* BaseMemoryLib.lib in Frameworks */, + 9A0F1CF02B0BD0CE00F9BC7C /* UefiLib.lib in Frameworks */, + 9A0F0A332B0BD0B600F9BC7C /* OcStorageLib.lib in Frameworks */, + 9A0F1C782B0BD0CD00F9BC7C /* OpenRuntime.lib in Frameworks */, + 9A0F0A3F2B0BD0B600F9BC7C /* OcAudioLib.lib in Frameworks */, + 9A0F1C812B0BD0CD00F9BC7C /* OcApfsLib.lib in Frameworks */, + 9A0F0A482B0BD0B600F9BC7C /* OcAppleChunklistLib.lib in Frameworks */, + 9A0F0A3C2B0BD0B600F9BC7C /* OcCryptoLib.lib in Frameworks */, + 9A0F1D0E2B0BD0CE00F9BC7C /* UefiDevicePathLib.lib in Frameworks */, + 9A0F1CDB2B0BD0CE00F9BC7C /* UefiApplicationEntryPoint.lib in Frameworks */, + 9A0F1CCF2B0BD0CE00F9BC7C /* DuetTimerLib.lib in Frameworks */, + 9A0F0A452B0BD0B600F9BC7C /* OcVariableLib.lib in Frameworks */, + 9A0F1C5A2B0BD0CC00F9BC7C /* OcRtcLib.lib in Frameworks */, + 9A0F1CA22B0BD0CD00F9BC7C /* OcAppleDiskImageLib.lib in Frameworks */, + 9A0F1C4E2B0BD0CC00F9BC7C /* OcTypingLib.lib in Frameworks */, + 9A0F1CF92B0BD0CE00F9BC7C /* UefiFileHandleLib.lib in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9AE277372B051DAB006343AB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9A0F1CD72B0BD0CE00F9BC7C /* WaveLib.lib in Frameworks */, + 9A0F1D012B0BD0CE00F9BC7C /* UefiBootServicesTableLib.lib in Frameworks */, + 9A0F0A4D2B0BD0B600F9BC7C /* OcStringLib.lib in Frameworks */, + 9A0F1D072B0BD0CE00F9BC7C /* DxeServicesTableLib.lib in Frameworks */, + 9A0F1C922B0BD0CD00F9BC7C /* OcCompressionLib.lib in Frameworks */, + 9A0F1CC82B0BD0CD00F9BC7C /* OcAppleSecureBootLib.lib in Frameworks */, + 9A0F0A442B0BD0B600F9BC7C /* OcDevicePropertyLib.lib in Frameworks */, + 9A0F1C982B0BD0CD00F9BC7C /* OcMacInfoLib.lib in Frameworks */, + 9A0F0A322B0BD0B600F9BC7C /* OcConfigurationLib.lib in Frameworks */, + 9A0F0A3B2B0BD0B600F9BC7C /* OcAppleEventLib.lib in Frameworks */, + 9A0F1C862B0BD0CD00F9BC7C /* OcSmbiosLib.lib in Frameworks */, + 9A0F1C6E2B0BD0CD00F9BC7C /* OcDevicePathLib.lib in Frameworks */, + 9A0F1CFE2B0BD0CE00F9BC7C /* DxeHobLib.lib in Frameworks */, + 9A0F1CB92B0BD0CD00F9BC7C /* OcOSInfoLib.lib in Frameworks */, + 9A0F1C532B0BD0CC00F9BC7C /* OcAppleKeyMapLib.lib in Frameworks */, + 9A0F1CB62B0BD0CD00F9BC7C /* OcDeviceTreeLib.lib in Frameworks */, + 9A0F1CCE2B0BD0CE00F9BC7C /* VBoxPeCoffLib.lib in Frameworks */, + 9A0F1CB32B0BD0CD00F9BC7C /* OcPeCoffExtLib.lib in Frameworks */, + 9A0F1C952B0BD0CD00F9BC7C /* OcMemoryLib.lib in Frameworks */, + 9A0F0A2C2B0BD0B600F9BC7C /* OcDataHubLib.lib in Frameworks */, + 9A0F1CCB2B0BD0CD00F9BC7C /* VideoBiosPatchLib.lib in Frameworks */, + 9A0F1D4B2B0BD9B100F9BC7C /* OpenCore.lib in Frameworks */, + 9A0F1CE02B0BD0CE00F9BC7C /* BaseLib.lib in Frameworks */, + 9A0F1C8F2B0BD0CD00F9BC7C /* OcAfterBootCompatLib.lib in Frameworks */, + 9A0F1C772B0BD0CD00F9BC7C /* OcInputLib.lib in Frameworks */, + 9A0F1D1F2B0BD0CE00F9BC7C /* UefiSortLib.lib in Frameworks */, + 9A0F1CE32B0BD0CE00F9BC7C /* UefiRuntimeServicesTableLib.lib in Frameworks */, + 9A0F1CA72B0BD0CD00F9BC7C /* OcMachoLib.lib in Frameworks */, + 9A0F1CC22B0BD0CD00F9BC7C /* OcMiscLib.lib in Frameworks */, + 9A0F1C6B2B0BD0CC00F9BC7C /* OcDeviceMiscLib.lib in Frameworks */, + 9A0F1CF52B0BD0CE00F9BC7C /* PeCoffExtraActionLibNull.lib in Frameworks */, + 9A0F1C7D2B0BD0CD00F9BC7C /* OcAppleRamDiskLib.lib in Frameworks */, + 9A0F1CBC2B0BD0CD00F9BC7C /* OcDriverConnectionLib.lib in Frameworks */, + 9A0F1C652B0BD0CC00F9BC7C /* OcGuardLib.lib in Frameworks */, + 9A0F1C892B0BD0CD00F9BC7C /* OcSerializeLib.lib in Frameworks */, + 9A0F1C4D2B0BD0CC00F9BC7C /* OcUnicodeCollationEngGenericLib.lib in Frameworks */, + 9A0F1CB02B0BD0CD00F9BC7C /* OcAppleUserInterfaceThemeLib.lib in Frameworks */, + 9A0F1D0D2B0BD0CE00F9BC7C /* BasePrintLib.lib in Frameworks */, + 9A0F1C622B0BD0CC00F9BC7C /* OcCpuLib.lib in Frameworks */, + 9A0F1C742B0BD0CD00F9BC7C /* OcAppleKeysLib.lib in Frameworks */, + 9A0F1CEF2B0BD0CE00F9BC7C /* BaseCpuLib.lib in Frameworks */, + 9A0F1D0A2B0BD0CE00F9BC7C /* BasePciLibCf8.lib in Frameworks */, + 9A0F1D042B0BD0CE00F9BC7C /* BaseDebugLibSerialPort.lib in Frameworks */, + 9A0F1C682B0BD0CC00F9BC7C /* OcMainLib.lib in Frameworks */, + 9A0F1D1C2B0BD0CE00F9BC7C /* BaseSerialPortLib16550.lib in Frameworks */, + 9A0F1C5F2B0BD0CC00F9BC7C /* OcDebugLogLib.lib in Frameworks */, + 9A0F1CAD2B0BD0CD00F9BC7C /* OcFileLib.lib in Frameworks */, + 9A0F1CE92B0BD0CE00F9BC7C /* BaseIoLibIntrinsic.lib in Frameworks */, + 9A0F0A502B0BD0B600F9BC7C /* OcTemplateLib.lib in Frameworks */, + 9A0F1C712B0BD0CD00F9BC7C /* OcAppleKernelLib.lib in Frameworks */, + 9A0F1CC52B0BD0CD00F9BC7C /* OcAppleBootPolicyLib.lib in Frameworks */, + 9A0F1CAA2B0BD0CD00F9BC7C /* OcBlitLib.lib in Frameworks */, + 9A0F0A382B0BD0B600F9BC7C /* OcVirtualFsLib.lib in Frameworks */, + 9A0F0A2F2B0BD0B600F9BC7C /* OcXmlLib.lib in Frameworks */, + 9A0F1CA12B0BD0CD00F9BC7C /* OcAcpiLib.lib in Frameworks */, + 9A0F1C562B0BD0CC00F9BC7C /* OcFlexArrayLib.lib in Frameworks */, + 9A0F1C8C2B0BD0CD00F9BC7C /* OcRngLib.lib in Frameworks */, + 9A0F1CEC2B0BD0CE00F9BC7C /* DxeServicesLib.lib in Frameworks */, + 9A0F1CBF2B0BD0CD00F9BC7C /* OcHashServicesLib.lib in Frameworks */, + 9A0F1C9B2B0BD0CD00F9BC7C /* OcBootManagementLib.lib in Frameworks */, + 9A0F1D192B0BD0CE00F9BC7C /* BasePlatformHookLibNull.lib in Frameworks */, + 9A0F1CDA2B0BD0CE00F9BC7C /* BasePciCf8Lib.lib in Frameworks */, + 9A0F1C802B0BD0CD00F9BC7C /* OcPeCoffLib.lib in Frameworks */, + 9A0F1C9E2B0BD0CD00F9BC7C /* OcAppleImg4Lib.lib in Frameworks */, + 9A0F1C592B0BD0CC00F9BC7C /* OcConsoleLib.lib in Frameworks */, + 9A0F1CD42B0BD0CE00F9BC7C /* HdaDevicesLib.lib in Frameworks */, + 9A0F1CF82B0BD0CE00F9BC7C /* UefiMemoryAllocationLib.lib in Frameworks */, + 9A0F1D162B0BD0CE00F9BC7C /* MtrrLib.lib in Frameworks */, + 9A0F1D132B0BD0CE00F9BC7C /* BaseDebugPrintErrorLevelLib.lib in Frameworks */, + 9A0F1CE62B0BD0CE00F9BC7C /* BaseMemoryLib.lib in Frameworks */, + 9A0F1CF22B0BD0CE00F9BC7C /* UefiLib.lib in Frameworks */, + 9A0F0A352B0BD0B600F9BC7C /* OcStorageLib.lib in Frameworks */, + 9A0F1C7A2B0BD0CD00F9BC7C /* OpenRuntime.lib in Frameworks */, + 9A0F0A412B0BD0B600F9BC7C /* OcAudioLib.lib in Frameworks */, + 9A0F1C832B0BD0CD00F9BC7C /* OcApfsLib.lib in Frameworks */, + 9A0F0A4A2B0BD0B600F9BC7C /* OcAppleChunklistLib.lib in Frameworks */, + 9A0F0A3E2B0BD0B600F9BC7C /* OcCryptoLib.lib in Frameworks */, + 9A0F1D102B0BD0CE00F9BC7C /* UefiDevicePathLib.lib in Frameworks */, + 9A0F1CDD2B0BD0CE00F9BC7C /* UefiApplicationEntryPoint.lib in Frameworks */, + 9A0F1CD12B0BD0CE00F9BC7C /* DuetTimerLib.lib in Frameworks */, + 9A0F0A472B0BD0B600F9BC7C /* OcVariableLib.lib in Frameworks */, + 9A0F1C5C2B0BD0CC00F9BC7C /* OcRtcLib.lib in Frameworks */, + 9A0F1CA42B0BD0CD00F9BC7C /* OcAppleDiskImageLib.lib in Frameworks */, + 9A0F1C502B0BD0CC00F9BC7C /* OcTypingLib.lib in Frameworks */, + 9A0F1CFB2B0BD0CE00F9BC7C /* UefiFileHandleLib.lib in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9AE278FD2642869E005C8F2F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9A0F1CD62B0BD0CE00F9BC7C /* WaveLib.lib in Frameworks */, + 9A0F1D002B0BD0CE00F9BC7C /* UefiBootServicesTableLib.lib in Frameworks */, + 9A0F0A4C2B0BD0B600F9BC7C /* OcStringLib.lib in Frameworks */, + 9A0F1D062B0BD0CE00F9BC7C /* DxeServicesTableLib.lib in Frameworks */, + 9A0F1C912B0BD0CD00F9BC7C /* OcCompressionLib.lib in Frameworks */, + 9A0F1CC72B0BD0CD00F9BC7C /* OcAppleSecureBootLib.lib in Frameworks */, + 9A0F0A432B0BD0B600F9BC7C /* OcDevicePropertyLib.lib in Frameworks */, + 9A0F1C972B0BD0CD00F9BC7C /* OcMacInfoLib.lib in Frameworks */, + 9A0F0A312B0BD0B600F9BC7C /* OcConfigurationLib.lib in Frameworks */, + 9A0F0A3A2B0BD0B600F9BC7C /* OcAppleEventLib.lib in Frameworks */, + 9A0F1C852B0BD0CD00F9BC7C /* OcSmbiosLib.lib in Frameworks */, + 9A0F1C6D2B0BD0CC00F9BC7C /* OcDevicePathLib.lib in Frameworks */, + 9A0F1CFD2B0BD0CE00F9BC7C /* DxeHobLib.lib in Frameworks */, + 9A0F1CB82B0BD0CD00F9BC7C /* OcOSInfoLib.lib in Frameworks */, + 9A0F1C522B0BD0CC00F9BC7C /* OcAppleKeyMapLib.lib in Frameworks */, + 9A0F1CB52B0BD0CD00F9BC7C /* OcDeviceTreeLib.lib in Frameworks */, + 9A0F1CCD2B0BD0CE00F9BC7C /* VBoxPeCoffLib.lib in Frameworks */, + 9A0F1CB22B0BD0CD00F9BC7C /* OcPeCoffExtLib.lib in Frameworks */, + 9A0F1C942B0BD0CD00F9BC7C /* OcMemoryLib.lib in Frameworks */, + 9A0F0A2B2B0BD0B600F9BC7C /* OcDataHubLib.lib in Frameworks */, + 9A0F1CCA2B0BD0CD00F9BC7C /* VideoBiosPatchLib.lib in Frameworks */, + 9A0F1CDF2B0BD0CE00F9BC7C /* BaseLib.lib in Frameworks */, + 9A0F1C8E2B0BD0CD00F9BC7C /* OcAfterBootCompatLib.lib in Frameworks */, + 9A0F1C762B0BD0CD00F9BC7C /* OcInputLib.lib in Frameworks */, + 9A0F1D1E2B0BD0CE00F9BC7C /* UefiSortLib.lib in Frameworks */, + 9A0F1CE22B0BD0CE00F9BC7C /* UefiRuntimeServicesTableLib.lib in Frameworks */, + 9A0F1CA62B0BD0CD00F9BC7C /* OcMachoLib.lib in Frameworks */, + 9A0F1CC12B0BD0CD00F9BC7C /* OcMiscLib.lib in Frameworks */, + 9A0F1C6A2B0BD0CC00F9BC7C /* OcDeviceMiscLib.lib in Frameworks */, + 9A0F1CF42B0BD0CE00F9BC7C /* PeCoffExtraActionLibNull.lib in Frameworks */, + 9A0F1C7C2B0BD0CD00F9BC7C /* OcAppleRamDiskLib.lib in Frameworks */, + 9A0F1CBB2B0BD0CD00F9BC7C /* OcDriverConnectionLib.lib in Frameworks */, + 9A0F1C642B0BD0CC00F9BC7C /* OcGuardLib.lib in Frameworks */, + 9A0F1C882B0BD0CD00F9BC7C /* OcSerializeLib.lib in Frameworks */, + 9A0F1C4C2B0BD0CC00F9BC7C /* OcUnicodeCollationEngGenericLib.lib in Frameworks */, + 9A0F1CAF2B0BD0CD00F9BC7C /* OcAppleUserInterfaceThemeLib.lib in Frameworks */, + 9A0F1D0C2B0BD0CE00F9BC7C /* BasePrintLib.lib in Frameworks */, + 9A0F1C612B0BD0CC00F9BC7C /* OcCpuLib.lib in Frameworks */, + 9A0F1C732B0BD0CD00F9BC7C /* OcAppleKeysLib.lib in Frameworks */, + 9A0F1CEE2B0BD0CE00F9BC7C /* BaseCpuLib.lib in Frameworks */, + 9A0F1D092B0BD0CE00F9BC7C /* BasePciLibCf8.lib in Frameworks */, + 9A0F1D032B0BD0CE00F9BC7C /* BaseDebugLibSerialPort.lib in Frameworks */, + 9A0F1C672B0BD0CC00F9BC7C /* OcMainLib.lib in Frameworks */, + 9A0F1D1B2B0BD0CE00F9BC7C /* BaseSerialPortLib16550.lib in Frameworks */, + 9A0F1C5E2B0BD0CC00F9BC7C /* OcDebugLogLib.lib in Frameworks */, + 9A0F1CAC2B0BD0CD00F9BC7C /* OcFileLib.lib in Frameworks */, + 9A0F1CE82B0BD0CE00F9BC7C /* BaseIoLibIntrinsic.lib in Frameworks */, + 9A0F0A4F2B0BD0B600F9BC7C /* OcTemplateLib.lib in Frameworks */, + 9A0F1C702B0BD0CD00F9BC7C /* OcAppleKernelLib.lib in Frameworks */, + 9A0F1CC42B0BD0CD00F9BC7C /* OcAppleBootPolicyLib.lib in Frameworks */, + 9A0F1CA92B0BD0CD00F9BC7C /* OcBlitLib.lib in Frameworks */, + 9A0F0A372B0BD0B600F9BC7C /* OcVirtualFsLib.lib in Frameworks */, + 9A0F0A2E2B0BD0B600F9BC7C /* OcXmlLib.lib in Frameworks */, + 9A0F1CA02B0BD0CD00F9BC7C /* OcAcpiLib.lib in Frameworks */, + 9A0F1C552B0BD0CC00F9BC7C /* OcFlexArrayLib.lib in Frameworks */, + 9A0F1C8B2B0BD0CD00F9BC7C /* OcRngLib.lib in Frameworks */, + 9A0F1CEB2B0BD0CE00F9BC7C /* DxeServicesLib.lib in Frameworks */, + 9A0F1CBE2B0BD0CD00F9BC7C /* OcHashServicesLib.lib in Frameworks */, + 9A0F1C9A2B0BD0CD00F9BC7C /* OcBootManagementLib.lib in Frameworks */, + 9A0F1D182B0BD0CE00F9BC7C /* BasePlatformHookLibNull.lib in Frameworks */, + 9A0F1CD92B0BD0CE00F9BC7C /* BasePciCf8Lib.lib in Frameworks */, + 9A0F1C7F2B0BD0CD00F9BC7C /* OcPeCoffLib.lib in Frameworks */, + 9A0F1C9D2B0BD0CD00F9BC7C /* OcAppleImg4Lib.lib in Frameworks */, + 9A0F1C582B0BD0CC00F9BC7C /* OcConsoleLib.lib in Frameworks */, + 9A0F1CD32B0BD0CE00F9BC7C /* HdaDevicesLib.lib in Frameworks */, + 9A0F1CF72B0BD0CE00F9BC7C /* UefiMemoryAllocationLib.lib in Frameworks */, + 9A0F1D152B0BD0CE00F9BC7C /* MtrrLib.lib in Frameworks */, + 9A0F1D122B0BD0CE00F9BC7C /* BaseDebugPrintErrorLevelLib.lib in Frameworks */, + 9A0F1CE52B0BD0CE00F9BC7C /* BaseMemoryLib.lib in Frameworks */, + 9A0F1CF12B0BD0CE00F9BC7C /* UefiLib.lib in Frameworks */, + 9A0F0A342B0BD0B600F9BC7C /* OcStorageLib.lib in Frameworks */, + 9A0F1C792B0BD0CD00F9BC7C /* OpenRuntime.lib in Frameworks */, + 9A0F0A402B0BD0B600F9BC7C /* OcAudioLib.lib in Frameworks */, + 9A0F1C822B0BD0CD00F9BC7C /* OcApfsLib.lib in Frameworks */, + 9A0F0A492B0BD0B600F9BC7C /* OcAppleChunklistLib.lib in Frameworks */, + 9A0F0A3D2B0BD0B600F9BC7C /* OcCryptoLib.lib in Frameworks */, + 9A0F1D0F2B0BD0CE00F9BC7C /* UefiDevicePathLib.lib in Frameworks */, + 9A0F1CDC2B0BD0CE00F9BC7C /* UefiApplicationEntryPoint.lib in Frameworks */, + 9A0F1CD02B0BD0CE00F9BC7C /* DuetTimerLib.lib in Frameworks */, + 9A0F0A462B0BD0B600F9BC7C /* OcVariableLib.lib in Frameworks */, + 9A0F1C5B2B0BD0CC00F9BC7C /* OcRtcLib.lib in Frameworks */, + 9A0F1CA32B0BD0CD00F9BC7C /* OcAppleDiskImageLib.lib in Frameworks */, + 9A0F1C4F2B0BD0CC00F9BC7C /* OcTypingLib.lib in Frameworks */, + 9A0F1CFA2B0BD0CE00F9BC7C /* UefiFileHandleLib.lib in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9A0B08432402FE9300E2B470 /* cpp_foundation */ = { + isa = PBXGroup; + children = ( + 9AE2779C2B069D51006343AB /* apd.h */, + 9A7D518124FC32F700FA1CC3 /* XBuffer.cpp */, + 9A7D518024FC32F700FA1CC3 /* XBuffer.h */, + 9A7D518324FC32F700FA1CC3 /* XRBuffer.cpp */, + 9A7D518224FC32F700FA1CC3 /* XRBuffer.h */, + 9A7AEDE82459696C003AAD04 /* XToolsCommon.h */, + 9A4FFA7C2451C8330050B38B /* XString.cpp */, + 9A57C266241A799B0029A39F /* XString.h */, + 9A6BA73C2449977300BDA52C /* XStringAbstract.h */, + 9A9AEB8C243F73CE00FBD7D8 /* unicode_conversions.cpp */, + 9A9AEB8B243F73CE00FBD7D8 /* unicode_conversions.h */, + 9A0B084A2402FE9300E2B470 /* XArray.h */, + 9A0B084B2402FE9300E2B470 /* XObjArray.h */, + 9A4185BE2439F73A00BEAFB8 /* XStringArray.cpp */, + 9A4185BF2439F73A00BEAFB8 /* XStringArray.h */, + ); + path = cpp_foundation; + sourceTree = ""; + }; + 9A0F09F12B0BD0B500F9BC7C /* Library */ = { + isa = PBXGroup; + children = ( + 9A0F1D332B0BD16000F9BC7C /* MemLogLib */, + 9A0F09F22B0BD0B500F9BC7C /* VideoBiosPatchLib.lib */, + 9A0F09F32B0BD0B500F9BC7C /* VBoxPeCoffLib.lib */, + 9A0F09F42B0BD0B500F9BC7C /* DuetTimerLib.lib */, + 9A0F09F52B0BD0B500F9BC7C /* OpensslLib.lib */, + 9A0F09F62B0BD0B500F9BC7C /* HdaDevicesLib.lib */, + 9A0F09F72B0BD0B500F9BC7C /* WaveLib.lib */, + ); + path = Library; + sourceTree = ""; + }; + 9A0F09F82B0BD0B500F9BC7C /* MdePkg */ = { + isa = PBXGroup; + children = ( + 9A0F0A002B0BD0B500F9BC7C /* BaseCpuLib.lib */, + 9A0F0A072B0BD0B500F9BC7C /* BaseDebugLibSerialPort.lib */, + 9A0F0A0C2B0BD0B500F9BC7C /* BaseDebugPrintErrorLevelLib.lib */, + 9A0F09FE2B0BD0B500F9BC7C /* BaseIoLibIntrinsic.lib */, + 9A0F09FB2B0BD0B500F9BC7C /* BaseLib.lib */, + 9A0F09FD2B0BD0B500F9BC7C /* BaseMemoryLib.lib */, + 9A0F09F92B0BD0B500F9BC7C /* BasePciCf8Lib.lib */, + 9A0F0A092B0BD0B500F9BC7C /* BasePciLibCf8.lib */, + 9A0F0A0A2B0BD0B500F9BC7C /* BasePrintLib.lib */, + 9A0F0A052B0BD0B500F9BC7C /* DxeHobLib.lib */, + 9A0F09FF2B0BD0B500F9BC7C /* DxeServicesLib.lib */, + 9A0F0A082B0BD0B500F9BC7C /* DxeServicesTableLib.lib */, + 9A0F0A022B0BD0B500F9BC7C /* PeCoffExtraActionLibNull.lib */, + 9A0F09FA2B0BD0B500F9BC7C /* UefiApplicationEntryPoint.lib */, + 9A0F0A062B0BD0B500F9BC7C /* UefiBootServicesTableLib.lib */, + 9A0F0A0B2B0BD0B500F9BC7C /* UefiDevicePathLib.lib */, + 9A0F0A042B0BD0B500F9BC7C /* UefiFileHandleLib.lib */, + 9A0F0A012B0BD0B500F9BC7C /* UefiLib.lib */, + 9A0F0A032B0BD0B500F9BC7C /* UefiMemoryAllocationLib.lib */, + 9A0F09FC2B0BD0B500F9BC7C /* UefiRuntimeServicesTableLib.lib */, + ); + path = MdePkg; + sourceTree = ""; + }; + 9A0F0A0D2B0BD0B500F9BC7C /* CloverEFI */ = { + isa = PBXGroup; + children = ( + 9A0F0A0E2B0BD0B500F9BC7C /* MtrrLib.lib */, + ); + path = CloverEFI; + sourceTree = ""; + }; + 9A0F0A0F2B0BD0B500F9BC7C /* MdeModulePkg */ = { + isa = PBXGroup; + children = ( + 9A0F0A102B0BD0B500F9BC7C /* BasePlatformHookLibNull.lib */, + 9A0F0A112B0BD0B500F9BC7C /* BaseSerialPortLib16550.lib */, + 9A0F0A122B0BD0B500F9BC7C /* FrameBufferBltLib.lib */, + 9A0F0A132B0BD0B500F9BC7C /* UefiSortLib.lib */, + ); + path = MdeModulePkg; + sourceTree = ""; + }; + 9A0F0A142B0BD0B500F9BC7C /* Autogen */ = { + isa = PBXGroup; + children = ( + 9A0F0A152B0BD0B500F9BC7C /* AutoGen.h */, + 9A0F0A162B0BD0B500F9BC7C /* AutoGen.c */, + ); + path = Autogen; + sourceTree = ""; + }; + 9A0F0A172B0BD0B500F9BC7C /* UefiMock */ = { + isa = PBXGroup; + children = ( + 9A0F0A182B0BD0B500F9BC7C /* Library */, + 9A0F0A1D2B0BD0B500F9BC7C /* Globals.cpp */, + 9A0F0A1E2B0BD0B500F9BC7C /* Base.h */, + ); + path = UefiMock; + sourceTree = ""; + }; + 9A0F0A182B0BD0B500F9BC7C /* Library */ = { + isa = PBXGroup; + children = ( + 9A0F0A192B0BD0B500F9BC7C /* BaseMemoryLib.c */, + 9A0F0A1A2B0BD0B500F9BC7C /* MemoryAllocationLib.c */, + 9A0F0A1B2B0BD0B500F9BC7C /* PrintLib.c */, + 9A0F0A1C2B0BD0B500F9BC7C /* DebugLib.c */, + ); + path = Library; + sourceTree = ""; + }; + 9A0FF4192B0BD09C00F9BC7C /* PosixEFICompilation */ = { + isa = PBXGroup; + children = ( + 9A0FF41A2B0BD09C00F9BC7C /* ReleaseLibs */, + 9A0FF4762B0BD09C00F9BC7C /* CloverMock */, + 9A0FF47C2B0BD09C00F9BC7C /* ReadmeJief.txt */, + 9A0FF47D2B0BD09C00F9BC7C /* xcode_utf_fixed.cpp */, + 9A0FF47E2B0BD09C00F9BC7C /* DebugLibs */, + 9A0F0A172B0BD0B500F9BC7C /* UefiMock */, + 9A0F0A1F2B0BD0B500F9BC7C /* relink_release_libs */, + 9A0F0A202B0BD0B500F9BC7C /* xcode_utf_fixed.h */, + ); + name = PosixEFICompilation; + path = ../../PosixEFICompilation; + sourceTree = ""; + }; + 9A0FF41A2B0BD09C00F9BC7C /* ReleaseLibs */ = { + isa = PBXGroup; + children = ( + 9A0FF41B2B0BD09C00F9BC7C /* OC */, + 9A0FF4512B0BD09C00F9BC7C /* Library */, + 9A0FF4582B0BD09C00F9BC7C /* MdePkg */, + 9A0FF46E2B0BD09C00F9BC7C /* CloverEFI */, + 9A0FF4702B0BD09C00F9BC7C /* MdeModulePkg */, + 9A0FF4732B0BD09C00F9BC7C /* Autogen */, + ); + path = ReleaseLibs; + sourceTree = ""; + }; + 9A0FF41B2B0BD09C00F9BC7C /* OC */ = { + isa = PBXGroup; + children = ( + 9A0FF41C2B0BD09C00F9BC7C /* OcDataHubLib.lib */, + 9A0FF41D2B0BD09C00F9BC7C /* OcXmlLib.lib */, + 9A0FF41E2B0BD09C00F9BC7C /* OcConfigurationLib.lib */, + 9A0FF41F2B0BD09C00F9BC7C /* OcFirmwareVolumeLib.lib */, + 9A0FF4202B0BD09C00F9BC7C /* OcStorageLib.lib */, + 9A0FF4212B0BD09C00F9BC7C /* OcVirtualFsLib.lib */, + 9A0FF4222B0BD09C00F9BC7C /* OcAppleEventLib.lib */, + 9A0FF4232B0BD09C00F9BC7C /* OcCryptoLib.lib */, + 9A0FF4242B0BD09C00F9BC7C /* OcAudioLib.lib */, + 9A0FF4252B0BD09C00F9BC7C /* OcDevicePropertyLib.lib */, + 9A0FF4262B0BD09C00F9BC7C /* OcAppleChunklistLib.lib */, + 9A0FF4272B0BD09C00F9BC7C /* OcStringLib.lib */, + 9A0FF4282B0BD09C00F9BC7C /* OcTemplateLib.lib */, + 9A0FF4292B0BD09C00F9BC7C /* OcUnicodeCollationEngGenericLib.lib */, + 9A0FF42A2B0BD09C00F9BC7C /* ControlMsrE2.lib */, + 9A0FF42B2B0BD09C00F9BC7C /* OcAppleKeyMapLib.lib */, + 9A0FF42C2B0BD09C00F9BC7C /* OcConsoleLib.lib */, + 9A0FF42D2B0BD09C00F9BC7C /* OcRtcLib.lib */, + 9A0FF42E2B0BD09C00F9BC7C /* OcDebugLogLib.lib */, + 9A0FF42F2B0BD09C00F9BC7C /* OcCpuLib.lib */, + 9A0FF4302B0BD09C00F9BC7C /* OcGuardLib.lib */, + 9A0FF4312B0BD09C00F9BC7C /* OcDevicePathLib.lib */, + 9A0FF4322B0BD09C00F9BC7C /* OcAppleKernelLib.lib */, + 9A0FF4332B0BD09C00F9BC7C /* OcAppleKeysLib.lib */, + 9A0FF4342B0BD09C00F9BC7C /* OcInputLib.lib */, + 9A0FF4352B0BD09C00F9BC7C /* OpenRuntime.lib */, + 9A0FF4362B0BD09C00F9BC7C /* OcAppleRamDiskLib.lib */, + 9A0FF4372B0BD09C00F9BC7C /* OcPeCoffLib.lib */, + 9A0FF4382B0BD09C00F9BC7C /* OcApfsLib.lib */, + 9A0FF4392B0BD09C00F9BC7C /* OcSmbiosLib.lib */, + 9A0FF43A2B0BD09C00F9BC7C /* OcSerializeLib.lib */, + 9A0FF43B2B0BD09C00F9BC7C /* OcRngLib.lib */, + 9A0FF43C2B0BD09C00F9BC7C /* OcAfterBootCompatLib.lib */, + 9A0FF43D2B0BD09C00F9BC7C /* OcCompressionLib.lib */, + 9A0FF43E2B0BD09C00F9BC7C /* OcAppleImageVerificationLib.lib */, + 9A0FF43F2B0BD09C00F9BC7C /* OcMemoryLib.lib */, + 9A0FF4402B0BD09C00F9BC7C /* OcMacInfoLib.lib */, + 9A0FF4412B0BD09C00F9BC7C /* OcBootManagementLib.lib */, + 9A0FF4422B0BD09C00F9BC7C /* OcAppleImg4Lib.lib */, + 9A0FF4432B0BD09C00F9BC7C /* OcAcpiLib.lib */, + 9A0FF4442B0BD09C00F9BC7C /* OcAppleDiskImageLib.lib */, + 9A0FF4452B0BD09C00F9BC7C /* OcMachoLib.lib */, + 9A0FF4462B0BD09C00F9BC7C /* OcSmcLib.lib */, + 9A0FF4472B0BD09C00F9BC7C /* OcFileLib.lib */, + 9A0FF4482B0BD09C00F9BC7C /* OcAppleUserInterfaceThemeLib.lib */, + 9A0FF4492B0BD09C00F9BC7C /* OcDeviceTreeLib.lib */, + 9A0FF44A2B0BD09C00F9BC7C /* OcOSInfoLib.lib */, + 9A0FF44B2B0BD09C00F9BC7C /* OcDriverConnectionLib.lib */, + 9A0FF44C2B0BD09C00F9BC7C /* OpenCore.lib */, + 9A0FF44D2B0BD09C00F9BC7C /* OcHashServicesLib.lib */, + 9A0FF44E2B0BD09C00F9BC7C /* OcMiscLib.lib */, + 9A0FF44F2B0BD09C00F9BC7C /* OcAppleBootPolicyLib.lib */, + 9A0FF4502B0BD09C00F9BC7C /* OcAppleSecureBootLib.lib */, + ); + path = OC; + sourceTree = ""; + }; + 9A0FF4512B0BD09C00F9BC7C /* Library */ = { + isa = PBXGroup; + children = ( + 9A0FF4522B0BD09C00F9BC7C /* VideoBiosPatchLib.lib */, + 9A0FF4532B0BD09C00F9BC7C /* VBoxPeCoffLib.lib */, + 9A0FF4542B0BD09C00F9BC7C /* DuetTimerLib.lib */, + 9A0FF4552B0BD09C00F9BC7C /* OpensslLib.lib */, + 9A0FF4562B0BD09C00F9BC7C /* HdaDevicesLib.lib */, + 9A0FF4572B0BD09C00F9BC7C /* WaveLib.lib */, + ); + path = Library; + sourceTree = ""; + }; + 9A0FF4582B0BD09C00F9BC7C /* MdePkg */ = { + isa = PBXGroup; + children = ( + 9A0FF4592B0BD09C00F9BC7C /* BasePciCf8Lib.lib */, + 9A0FF45A2B0BD09C00F9BC7C /* UefiApplicationEntryPoint.lib */, + 9A0FF45B2B0BD09C00F9BC7C /* BaseLib.lib */, + 9A0FF45C2B0BD09C00F9BC7C /* UefiRuntimeServicesTableLib.lib */, + 9A0FF45D2B0BD09C00F9BC7C /* BaseMemoryLib.lib */, + 9A0FF45E2B0BD09C00F9BC7C /* BaseIoLibIntrinsic.lib */, + 9A0FF45F2B0BD09C00F9BC7C /* DxeServicesLib.lib */, + 9A0FF4602B0BD09C00F9BC7C /* BaseCpuLib.lib */, + 9A0FF4612B0BD09C00F9BC7C /* UefiLib.lib */, + 9A0FF4622B0BD09C00F9BC7C /* BaseSerialPortLibNull.lib */, + 9A0FF4632B0BD09C00F9BC7C /* PeCoffExtraActionLibNull.lib */, + 9A0FF4642B0BD09C00F9BC7C /* UefiMemoryAllocationLib.lib */, + 9A0FF4652B0BD09C00F9BC7C /* BaseDebugLibNull.lib */, + 9A0FF4662B0BD09C00F9BC7C /* UefiFileHandleLib.lib */, + 9A0FF4672B0BD09C00F9BC7C /* DxeHobLib.lib */, + 9A0FF4682B0BD09C00F9BC7C /* UefiBootServicesTableLib.lib */, + 9A0FF4692B0BD09C00F9BC7C /* DxeServicesTableLib.lib */, + 9A0FF46A2B0BD09C00F9BC7C /* BasePciLibCf8.lib */, + 9A0FF46B2B0BD09C00F9BC7C /* BasePrintLib.lib */, + 9A0FF46C2B0BD09C00F9BC7C /* UefiDevicePathLib.lib */, + 9A0FF46D2B0BD09C00F9BC7C /* BaseDebugPrintErrorLevelLib.lib */, + ); + path = MdePkg; + sourceTree = ""; + }; + 9A0FF46E2B0BD09C00F9BC7C /* CloverEFI */ = { + isa = PBXGroup; + children = ( + 9A0FF46F2B0BD09C00F9BC7C /* MtrrLib.lib */, + ); + path = CloverEFI; + sourceTree = ""; + }; + 9A0FF4702B0BD09C00F9BC7C /* MdeModulePkg */ = { + isa = PBXGroup; + children = ( + 9A0FF4712B0BD09C00F9BC7C /* BasePlatformHookLibNull.lib */, + 9A0FF4722B0BD09C00F9BC7C /* FrameBufferBltLib.lib */, + ); + path = MdeModulePkg; + sourceTree = ""; + }; + 9A0FF4732B0BD09C00F9BC7C /* Autogen */ = { + isa = PBXGroup; + children = ( + 9A0FF4742B0BD09C00F9BC7C /* AutoGen.h */, + 9A0FF4752B0BD09C00F9BC7C /* AutoGen.c */, + ); + path = Autogen; + sourceTree = ""; + }; + 9A0FF4762B0BD09C00F9BC7C /* CloverMock */ = { + isa = PBXGroup; + children = ( + 9A0FF4772B0BD09C00F9BC7C /* Include */, + 9A0FF4792B0BD09C00F9BC7C /* Library */, + ); + path = CloverMock; + sourceTree = ""; + }; + 9A0FF4772B0BD09C00F9BC7C /* Include */ = { + isa = PBXGroup; + children = ( + 9A0FF4782B0BD09C00F9BC7C /* printf_lite-conf.h */, + ); + path = Include; + sourceTree = ""; + }; + 9A0FF4792B0BD09C00F9BC7C /* Library */ = { + isa = PBXGroup; + children = ( + 9A0FF47A2B0BD09C00F9BC7C /* MemLogLibDefault */, + ); + path = Library; + sourceTree = ""; + }; + 9A0FF47A2B0BD09C00F9BC7C /* MemLogLibDefault */ = { + isa = PBXGroup; + children = ( + 9A0FF47B2B0BD09C00F9BC7C /* MemLogLib.c */, + ); + path = MemLogLibDefault; + sourceTree = ""; + }; + 9A0FF47E2B0BD09C00F9BC7C /* DebugLibs */ = { + isa = PBXGroup; + children = ( + 9A0FF47F2B0BD09C00F9BC7C /* OC */, + 9A0F09F12B0BD0B500F9BC7C /* Library */, + 9A0F09F82B0BD0B500F9BC7C /* MdePkg */, + 9A0F0A0D2B0BD0B500F9BC7C /* CloverEFI */, + 9A0F0A0F2B0BD0B500F9BC7C /* MdeModulePkg */, + 9A0F0A142B0BD0B500F9BC7C /* Autogen */, + ); + path = DebugLibs; + sourceTree = ""; + }; + 9A0FF47F2B0BD09C00F9BC7C /* OC */ = { + isa = PBXGroup; + children = ( + 9A0F09C52B0BD0B300F9BC7C /* ControlMsrE2.lib */, + 9A0F09E12B0BD0B400F9BC7C /* OcAcpiLib.lib */, + 9A0F09DA2B0BD0B400F9BC7C /* OcAfterBootCompatLib.lib */, + 9A0F09D62B0BD0B400F9BC7C /* OcApfsLib.lib */, + 9A0F09EF2B0BD0B500F9BC7C /* OcAppleBootPolicyLib.lib */, + 9A0FF48B2B0BD09C00F9BC7C /* OcAppleChunklistLib.lib */, + 9A0F09E22B0BD0B400F9BC7C /* OcAppleDiskImageLib.lib */, + 9A0FF4862B0BD09C00F9BC7C /* OcAppleEventLib.lib */, + 9A0F09DC2B0BD0B400F9BC7C /* OcAppleImageVerificationLib.lib */, + 9A0F09E02B0BD0B400F9BC7C /* OcAppleImg4Lib.lib */, + 9A0F09D02B0BD0B300F9BC7C /* OcAppleKernelLib.lib */, + 9A0F09C62B0BD0B300F9BC7C /* OcAppleKeyMapLib.lib */, + 9A0F09D12B0BD0B300F9BC7C /* OcAppleKeysLib.lib */, + 9A0F09D42B0BD0B400F9BC7C /* OcAppleRamDiskLib.lib */, + 9A0F09F02B0BD0B500F9BC7C /* OcAppleSecureBootLib.lib */, + 9A0F09E72B0BD0B400F9BC7C /* OcAppleUserInterfaceThemeLib.lib */, + 9A0FF4882B0BD09C00F9BC7C /* OcAudioLib.lib */, + 9A0F09E52B0BD0B400F9BC7C /* OcBlitLib.lib */, + 9A0F09DF2B0BD0B400F9BC7C /* OcBootManagementLib.lib */, + 9A0F09DB2B0BD0B400F9BC7C /* OcCompressionLib.lib */, + 9A0FF4822B0BD09C00F9BC7C /* OcConfigurationLib.lib */, + 9A0F09C82B0BD0B300F9BC7C /* OcConsoleLib.lib */, + 9A0F09CB2B0BD0B300F9BC7C /* OcCpuLib.lib */, + 9A0FF4872B0BD09C00F9BC7C /* OcCryptoLib.lib */, + 9A0FF4802B0BD09C00F9BC7C /* OcDataHubLib.lib */, + 9A0F09CA2B0BD0B300F9BC7C /* OcDebugLogLib.lib */, + 9A0F09CE2B0BD0B300F9BC7C /* OcDeviceMiscLib.lib */, + 9A0F09CF2B0BD0B300F9BC7C /* OcDevicePathLib.lib */, + 9A0FF4892B0BD09C00F9BC7C /* OcDevicePropertyLib.lib */, + 9A0F09E92B0BD0B400F9BC7C /* OcDeviceTreeLib.lib */, + 9A0F09EB2B0BD0B400F9BC7C /* OcDriverConnectionLib.lib */, + 9A0F09E62B0BD0B400F9BC7C /* OcFileLib.lib */, + 9A0FF4832B0BD09C00F9BC7C /* OcFirmwareVolumeLib.lib */, + 9A0F09C72B0BD0B300F9BC7C /* OcFlexArrayLib.lib */, + 9A0F09CC2B0BD0B300F9BC7C /* OcGuardLib.lib */, + 9A0F09ED2B0BD0B400F9BC7C /* OcHashServicesLib.lib */, + 9A0F09D22B0BD0B300F9BC7C /* OcInputLib.lib */, + 9A0F09E32B0BD0B400F9BC7C /* OcMachoLib.lib */, + 9A0F09DE2B0BD0B400F9BC7C /* OcMacInfoLib.lib */, + 9A0F09CD2B0BD0B300F9BC7C /* OcMainLib.lib */, + 9A0F09DD2B0BD0B400F9BC7C /* OcMemoryLib.lib */, + 9A0F09EE2B0BD0B400F9BC7C /* OcMiscLib.lib */, + 9A0F09EA2B0BD0B400F9BC7C /* OcOSInfoLib.lib */, + 9A0F09E82B0BD0B400F9BC7C /* OcPeCoffExtLib.lib */, + 9A0F09D52B0BD0B400F9BC7C /* OcPeCoffLib.lib */, + 9A0F09D92B0BD0B400F9BC7C /* OcRngLib.lib */, + 9A0F09C92B0BD0B300F9BC7C /* OcRtcLib.lib */, + 9A0F09D82B0BD0B400F9BC7C /* OcSerializeLib.lib */, + 9A0F09D72B0BD0B400F9BC7C /* OcSmbiosLib.lib */, + 9A0F09E42B0BD0B400F9BC7C /* OcSmcLib.lib */, + 9A0FF4842B0BD09C00F9BC7C /* OcStorageLib.lib */, + 9A0FF48C2B0BD09C00F9BC7C /* OcStringLib.lib */, + 9A0FF48D2B0BD09C00F9BC7C /* OcTemplateLib.lib */, + 9A0F09C42B0BD0B300F9BC7C /* OcTypingLib.lib */, + 9A0F09C32B0BD0B300F9BC7C /* OcUnicodeCollationEngGenericLib.lib */, + 9A0FF48A2B0BD09C00F9BC7C /* OcVariableLib.lib */, + 9A0FF4852B0BD09C00F9BC7C /* OcVirtualFsLib.lib */, + 9A0FF4812B0BD09C00F9BC7C /* OcXmlLib.lib */, + 9A0F09EC2B0BD0B400F9BC7C /* OpenCore.lib */, + 9A0F09D32B0BD0B300F9BC7C /* OpenRuntime.lib */, + ); + path = OC; + sourceTree = ""; + }; + 9A1F876E2642714700884E81 /* PlatformPOSIX+EFI */ = { + isa = PBXGroup; + children = ( + 9A1F876F2642714700884E81 /* posix */, + 9A1F87762642714700884E81 /* include */, + 9A1F877B2642714700884E81 /* BootLog.cpp */, + 9A1F877C2642714700884E81 /* BasicIO.cpp */, + 9A1F877D2642714700884E81 /* cpp_util */, + ); + path = "PlatformPOSIX+EFI"; + sourceTree = ""; + }; + 9A1F876F2642714700884E81 /* posix */ = { + isa = PBXGroup; + children = ( + 9A1F87712642714700884E81 /* abort.cpp */, + 9A1F87752642714700884E81 /* abort.h */, + 9A1F87732642714700884E81 /* clover_strlen.cpp */, + 9A1F87702642714700884E81 /* posix_additions.cpp */, + 9A1F87742642714700884E81 /* posix_additions.h */, + 9A1F87722642714700884E81 /* posix.h */, + ); + path = posix; + sourceTree = ""; + }; + 9A1F87762642714700884E81 /* include */ = { + isa = PBXGroup; + children = ( + 9A1F87792642714700884E81 /* Platform.h */, + 9A1F87782642714700884E81 /* printf_lite-test-cpp_conf.h */, + 9A1F87772642714700884E81 /* printlib-test-cpp_conf.h */, + 9A1F877A2642714700884E81 /* XToolsConf.h */, + ); + path = include; + sourceTree = ""; + }; + 9A1F877D2642714700884E81 /* cpp_util */ = { + isa = PBXGroup; + children = ( + 9AE277952B054D82006343AB /* operatorNewDelete.cpp */, + 9A1F877E2642714700884E81 /* globals_dtor.h */, + 9A1F877F2642714700884E81 /* operatorNewDelete.h */, + 9A1F87802642714700884E81 /* globals_ctor.h */, + ); + path = cpp_util; + sourceTree = ""; + }; + 9A1F87862642772B00884E81 /* Settings */ = { + isa = PBXGroup; + children = ( + 9A1F87872642772B00884E81 /* SelfOem.cpp */, + 9A1F87882642772B00884E81 /* ConfigManager.h */, + 9A1F87892642772B00884E81 /* Readme.md */, + 9A1F878A2642772B00884E81 /* SelfOem.h */, + 9A1F878B2642772B00884E81 /* ConfigManager.cpp */, + 9A1F878C2642772B00884E81 /* ConfigPlist */, + 9A1F87AB2642772B00884E81 /* Self.h */, + 9A1F87AC2642772B00884E81 /* Self.cpp */, + ); + path = Settings; + sourceTree = ""; + }; + 9A1F878C2642772B00884E81 /* ConfigPlist */ = { + isa = PBXGroup; + children = ( + 9A1F87A32642772B00884E81 /* Config_ACPI_DSDT.cpp */, + 9A1F87912642772B00884E81 /* Config_ACPI_DSDT.h */, + 9A1F87A42642772B00884E81 /* Config_ACPI_SSDT.h */, + 9A1F87962642772B00884E81 /* Config_ACPI.h */, + 9A1F87982642772B00884E81 /* Config_Boot.h */, + 9A1F87A12642772B00884E81 /* Config_BootGraphics.h */, + 9A1F87A02642772B00884E81 /* Config_CPU.h */, + 9A1F87AA2642772B00884E81 /* Config_Devices_AddProperties.h */, + 9A1F879A2642772B00884E81 /* Config_Devices_Arbitrary.h */, + 9A1F87932642772B00884E81 /* Config_Devices_Audio.h */, + 9A1F87A82642772B00884E81 /* Config_Devices_FakeID.h */, + 9A1F87972642772B00884E81 /* Config_Devices_Properties.h */, + 9A1F87A92642772B00884E81 /* Config_Devices_USB.h */, + 9A1F879F2642772B00884E81 /* Config_Devices.h */, + 9A1F87902642772B00884E81 /* Config_Graphics.h */, + 9A1F878E2642772B00884E81 /* Config_GUI.cpp */, + 9A1F87A52642772B00884E81 /* Config_GUI.h */, + 9A1F878F2642772B00884E81 /* Config_KernelAndKextPatches.h */, + 9A1F87922642772B00884E81 /* Config_Quirks.cpp */, + 9A1F87942642772B00884E81 /* Config_Quirks.h */, + 9A1F87A62642772B00884E81 /* Config_RtVariables.h */, + 9A1F879D2642772B00884E81 /* Config_SystemParameters.h */, + 9A1F87A22642772B00884E81 /* ConfigPlistAbstract.cpp */, + 9A1F879B2642772B00884E81 /* ConfigPlistAbstract.h */, + 9A1F87952642772B00884E81 /* ConfigPlistClass.h */, + 9A1F87992642772B00884E81 /* README.md */, + 9A1F87A72642772B00884E81 /* SMBIOSPlist.cpp */, + 9A1F878D2642772B00884E81 /* SMBIOSPlist.h */, + ); + path = ConfigPlist; + sourceTree = ""; + }; + 9A28CCAC241B816400F3D247 /* Platform */ = { + isa = PBXGroup; + children = ( + 9A0FF4082B0BB30800F9BC7C /* UtilsEFI.cpp */, + 9A0FF4092B0BB30800F9BC7C /* UtilsEFI.h */, + 9AE2766D2B04EC48006343AB /* PlatformdataModels.h */, + 9AA9240D25CD5B2D00BD5E8B /* AcpiPatcher.cpp */, + 9AA9240825CD5B2C00BD5E8B /* AcpiPatcher.h */, + 9AA923FB25CD5B2900BD5E8B /* AmlGenerator.cpp */, + 9AA923CA25CD5B2100BD5E8B /* AmlGenerator.h */, + 9AA923DA25CD5B2500BD5E8B /* APFS.cpp */, + 9AA923CC25CD5B2200BD5E8B /* APFS.h */, + 9AA9240325CD5B2B00BD5E8B /* ati_reg.h */, + 9AA9240125CD5B2A00BD5E8B /* ati.cpp */, + 9AA923C125CD5B1F00BD5E8B /* ati.h */, + 9A36E51E24F3B82A007A1107 /* b64cdecode.cpp */, + 9A36E51D24F3B82A007A1107 /* b64cdecode.h */, + 9AA9239225CD5B1A00BD5E8B /* BasicIO.h */, + 9AA9239525CD5B1A00BD5E8B /* BdsConnect.cpp */, + 9AA9240A25CD5B2C00BD5E8B /* boot.h */, + 9AA918D125CD516A00BD5E8B /* BootLog.h */, + 9AA923D225CD5B2300BD5E8B /* BootOptions.cpp */, + 9AA923DE25CD5B2600BD5E8B /* BootOptions.h */, + 9AA9E4D425CD1C9400BD5E8B /* card_vlist.cpp */, + 9AA9E4D525CD1C9400BD5E8B /* card_vlist.h */, + 9A1F87C226427A0500884E81 /* CloverVersion.cpp */, + 9A1F87C126427A0400884E81 /* CloverVersion.h */, + 9AA9240025CD5B2A00BD5E8B /* Console.cpp */, + 9AA9239725CD5B1B00BD5E8B /* Console.h */, + 9AA923FE25CD5B2A00BD5E8B /* cpu.cpp */, + 9AA923CB25CD5B2100BD5E8B /* cpu.h */, + 9A272A7D25D5062D00F03E19 /* DataHub.cpp */, + 9A272A7E25D5062E00F03E19 /* DataHub.h */, + 9AA923D825CD5B2500BD5E8B /* DataHubCpu.cpp */, + 9AA923DC25CD5B2600BD5E8B /* DataHubCpu.h */, + 9A272A7C25D5062D00F03E19 /* DataHubExt.h */, + 9AA9240725CD5B2C00BD5E8B /* device_inject.cpp */, + 9AA923C625CD5B2000BD5E8B /* device_inject.h */, + 9AA9239625CD5B1B00BD5E8B /* Edid.cpp */, + 9AA923B725CD5B1D00BD5E8B /* Edid.h */, + 9AA923FD25CD5B2900BD5E8B /* Events.cpp */, + 9AA923BD25CD5B1E00BD5E8B /* Events.h */, + 9AA9240625CD5B2B00BD5E8B /* FixBiosDsdt.cpp */, + 9AA3911825CC56840099DC1F /* FixBiosDsdt.h */, + 9AA9240225CD5B2B00BD5E8B /* gma.cpp */, + 9AA923DD25CD5B2600BD5E8B /* gma.h */, + 9AA923C325CD5B1F00BD5E8B /* guid.cpp */, + 9AA923B825CD5B1D00BD5E8B /* guid.h */, + 9AA923FC25CD5B2900BD5E8B /* hda.cpp */, + 9AA923BA25CD5B1E00BD5E8B /* hda.h */, + 9AA923BB25CD5B1E00BD5E8B /* HdaCodecDump.cpp */, + 9AA923CF25CD5B2200BD5E8B /* HdaCodecDump.h */, + 9AA923D925CD5B2500BD5E8B /* Hibernate.cpp */, + 9AA923BE25CD5B1E00BD5E8B /* Hibernate.h */, + 9AA923FA25CD5B2900BD5E8B /* Injectors.cpp */, + 9AA9240E25CD5B2D00BD5E8B /* Injectors.h */, + 9AA9240F25CD5B2D00BD5E8B /* KERNEL_AND_KEXT_PATCHES.cpp */, + 9AA9240B25CD5B2C00BD5E8B /* KERNEL_AND_KEXT_PATCHES.h */, + 9AA9240525CD5B2B00BD5E8B /* kernel_patcher.cpp */, + 9AA923CD25CD5B2200BD5E8B /* kernel_patcher.h */, + 9AA923E125CD5B2700BD5E8B /* kext_inject.cpp */, + 9AA923D725CD5B2400BD5E8B /* kext_inject.h */, + 9AA923C825CD5B2100BD5E8B /* kext_patcher.cpp */, + 9AA923C425CD5B2000BD5E8B /* KextList.cpp */, + 9AA923DB25CD5B2500BD5E8B /* KextList.h */, + 9AA9239825CD5B1B00BD5E8B /* LegacyBiosThunk.cpp */, + 9AA923DF25CD5B2600BD5E8B /* LegacyBiosThunk.h */, + 9AA923D625CD5B2400BD5E8B /* LegacyBoot.cpp */, + 9AA9240C25CD5B2D00BD5E8B /* LegacyBoot.h */, + 9A4C5769255AAD07004F0B21 /* MacOsVersion.cpp */, + 9A4C576A255AAD07004F0B21 /* MacOsVersion.h */, + 9A838CB325347C36008303F5 /* MemoryOperation.c */, + 9A838CAA25342626008303F5 /* MemoryOperation.h */, + 9AA9239125CD5B1900BD5E8B /* memvendors.h */, + 9AA923E025CD5B2700BD5E8B /* nvidia.cpp */, + 9AA923C525CD5B2000BD5E8B /* nvidia.h */, + 9AA923D425CD5B2400BD5E8B /* Nvram.cpp */, + 9AA923BC25CD5B1E00BD5E8B /* Nvram.h */, + 9AA923CE25CD5B2200BD5E8B /* platformdata.cpp */, + 9AA923E225CD5B2700BD5E8B /* platformdata.h */, + 9AA9239925CD5B1B00BD5E8B /* PlatformDriverOverride.cpp */, + 9AA923D525CD5B2400BD5E8B /* PlatformDriverOverride.h */, + 9A36E4D924F3B51C007A1107 /* plist */, + 9A852C0E25CC39E900C5662E /* Settings.cpp */, + 9A852C0D25CC39E900C5662E /* Settings.h */, + 9AF1EFF22634354500F7C2C0 /* SettingsUtils.cpp */, + 9AF1EFF62634354900F7C2C0 /* SettingsUtils.h */, + 9AA9239A25CD5B1C00BD5E8B /* smbios.cpp */, + 9AA923B625CD5B1D00BD5E8B /* smbios.h */, + 9A1F87C426427A0600884E81 /* SmbiosFillPatchingValues.cpp */, + 9A1F87C326427A0500884E81 /* SmbiosFillPatchingValues.h */, + 9AA923D025CD5B2300BD5E8B /* sound.cpp */, + 9AA9239B25CD5B1C00BD5E8B /* spd.cpp */, + 9AA9240425CD5B2B00BD5E8B /* spd.h */, + 9AA923C025CD5B1F00BD5E8B /* sse3_5_patcher.h */, + 9AA9241125CD5B2E00BD5E8B /* sse3_patcher.h */, + 9AA923FF25CD5B2A00BD5E8B /* StartupSound.cpp */, + 9AA923E525CD5B2800BD5E8B /* StartupSound.h */, + 9AA9241225CD5B2E00BD5E8B /* StateGenerator.cpp */, + 9AA923C925CD5B2100BD5E8B /* StateGenerator.h */, + 9AA923B525CD5B1C00BD5E8B /* usbfix.cpp */, + 9AA923F925CD5B2800BD5E8B /* usbfix.h */, + 9AA9E50025CD2FF400BD5E8B /* Utils.cpp */, + 9AA9E50125CD2FF400BD5E8B /* Utils.h */, + 9AA9E4DA25CD279100BD5E8B /* VersionString.cpp */, + 9AA9E4DB25CD279200BD5E8B /* VersionString.h */, + 9AF1EFF32634354800F7C2C0 /* Volume.cpp */, + 9AF1EFF42634354800F7C2C0 /* Volume.h */, + 9AA923D125CD5B2300BD5E8B /* Volumes.cpp */, + 9AA923D325CD5B2300BD5E8B /* Volumes.h */, + ); + path = Platform; + sourceTree = ""; + }; + 9A358B3625CF117A00A3850D /* cpp_lib */ = { + isa = PBXGroup; + children = ( + 9AE276422B04E51C006343AB /* MemoryTracker.cpp */, + 9AE276432B04E51C006343AB /* MemoryTracker.h */, + 9A4147662604F82900440186 /* undefinable.h */, + 9A071C41261A44070007CC44 /* XmlLiteArrayTypes.cpp */, + 9A071C46261A44080007CC44 /* XmlLiteArrayTypes.h */, + 9A358B3925CF117A00A3850D /* XmlLiteCompositeTypes.cpp */, + 9A358B3C25CF117A00A3850D /* XmlLiteCompositeTypes.h */, + 9A071C44261A44080007CC44 /* XmlLiteDictTypes.cpp */, + 9A071C43261A44080007CC44 /* XmlLiteDictTypes.h */, + 9A358B3A25CF117A00A3850D /* XmlLiteParser.cpp */, + 9A358B3725CF117A00A3850D /* XmlLiteParser.h */, + 9AD0EB22260A497500093F23 /* XmlLiteSimpleTypes.cpp */, + 9AD0EB23260A497500093F23 /* XmlLiteSimpleTypes.h */, + 9A071C42261A44070007CC44 /* XmlLiteUnionTypes.cpp */, + 9A071C45261A44080007CC44 /* XmlLiteUnionTypes.h */, + ); + path = cpp_lib; + sourceTree = ""; + }; + 9A36E4D924F3B51C007A1107 /* plist */ = { + isa = PBXGroup; + children = ( + 9A36E53A24F3EDED007A1107 /* base64.h */, + 9A36E53B24F3EDED007A1107 /* base64.cpp */, + 9A36E4DD24F3B536007A1107 /* plist.cpp */, + 9A36E4DC24F3B536007A1107 /* plist.h */, + 9A36E4E624F3B537007A1107 /* TagArray.cpp */, + 9A36E4E924F3B537007A1107 /* TagArray.h */, + 9A36E4E024F3B537007A1107 /* TagBool.cpp */, + 9A36E4DA24F3B536007A1107 /* TagBool.h */, + 9A36E4E524F3B537007A1107 /* TagData.cpp */, + 9A36E4E824F3B537007A1107 /* TagData.h */, + 9A36E4E424F3B537007A1107 /* TagDate.cpp */, + 9A36E4E724F3B537007A1107 /* TagDate.h */, + 9A36E4E124F3B537007A1107 /* TagDict.cpp */, + 9A36E4ED24F3B537007A1107 /* TagDict.h */, + 9A36E4EA24F3B537007A1107 /* TagFloat.cpp */, + 9A36E4EB24F3B537007A1107 /* TagFloat.h */, + 9A36E4E224F3B537007A1107 /* TagInt64.cpp */, + 9A36E4DE24F3B536007A1107 /* TagInt64.h */, + 9A36E4EC24F3B537007A1107 /* TagKey.cpp */, + 9A36E4EE24F3B537007A1107 /* TagKey.h */, + 9A36E4DB24F3B536007A1107 /* TagString8.cpp */, + 9A36E4EF24F3B537007A1107 /* TagString8.h */, + 9A36E4DF24F3B536007A1107 /* xml.cpp */, + 9A36E4E324F3B537007A1107 /* xml.h */, + ); + path = plist; + sourceTree = ""; + }; + 9A36E51C24F3B5B4007A1107 /* rEFIt_UEFI */ = { + isa = PBXGroup; + children = ( + 9A0B08432402FE9300E2B470 /* cpp_foundation */, + 9A358B3625CF117A00A3850D /* cpp_lib */, + 9AFDD05825CE730F00EEAF06 /* cpp_unit_test */, + 9AA9E50525CD306700BD5E8B /* entry_scan */, + 9AD469462452B30500D6D0DB /* gui */, + 9AA3911925CC56E60099DC1F /* include */, + 9A36E52324F3BB52007A1107 /* libeg */, + 9A28CCAC241B816400F3D247 /* Platform */, + 9A1F876E2642714700884E81 /* PlatformPOSIX+EFI */, + 9AA918B825CD4B5900BD5E8B /* refit */, + 9A1F87862642772B00884E81 /* Settings */, + ); + path = rEFIt_UEFI; + sourceTree = ""; + }; + 9A36E52324F3BB52007A1107 /* libeg */ = { + isa = PBXGroup; + children = ( + 9AA9256325CD770B00BD5E8B /* EfiFileLib.h */, + 9AA9257125CD770E00BD5E8B /* egemb_font.cpp */, + 9AA9256125CD770A00BD5E8B /* egemb_icons_dark.cpp */, + 9AA9257425CD770F00BD5E8B /* egemb_icons.cpp */, + 9AA9256C25CD770D00BD5E8B /* ftol.asm */, + 9AA9256F25CD770E00BD5E8B /* image.cpp */, + 9AA9256925CD770C00BD5E8B /* image.h */, + 9AA9256A25CD770D00BD5E8B /* libeg.h */, + 9AA9256E25CD770E00BD5E8B /* libegint.h */, + 9AA9256625CD770C00BD5E8B /* libscreen.cpp */, + 9AA9256B25CD770D00BD5E8B /* load_icns.cpp */, + 9AA9257225CD770E00BD5E8B /* lodepng.cpp */, + 9AA9256525CD770B00BD5E8B /* lodepng.h */, + 9AA9256825CD770C00BD5E8B /* nanosvg.cpp */, + 9AA9257025CD770E00BD5E8B /* nanosvg.h */, + 9AA9256725CD770C00BD5E8B /* nanosvgrast.cpp */, + 9AA9256D25CD770D00BD5E8B /* scroll_images.cpp */, + 9AA9256225CD770B00BD5E8B /* text.cpp */, + 9AA9257325CD770F00BD5E8B /* VectorGraphics.cpp */, + 9AA9256425CD770B00BD5E8B /* VectorGraphics.h */, + 9AA918C625CD4CD300BD5E8B /* BmLib.cpp */, + 9AA918C525CD4CD300BD5E8B /* BmLib.h */, + 9AA9E4E625CD283400BD5E8B /* XCinema.cpp */, + 9AA9E4E425CD283300BD5E8B /* XCinema.h */, + 9AA9E4E225CD283300BD5E8B /* XIcon.cpp */, + 9AA9E4E325CD283300BD5E8B /* XIcon.h */, + 9AA9E4E025CD283300BD5E8B /* XImage.cpp */, + 9AA9E4E125CD283300BD5E8B /* XImage.h */, + 9AA9E4E725CD283400BD5E8B /* XPointer.cpp */, + 9AA9E4E825CD283400BD5E8B /* XPointer.h */, + 9AA9E4E525CD283300BD5E8B /* XTheme.cpp */, + 9AA9E4E925CD283400BD5E8B /* XTheme.h */, + 9A36E52424F3BB6B007A1107 /* FloatLib.cpp */, + 9A36E52524F3BB6B007A1107 /* FloatLib.h */, + ); + path = libeg; + sourceTree = ""; + }; + 9A9223242402FD1000483CBA = { + isa = PBXGroup; + children = ( + 9A0FF4192B0BD09C00F9BC7C /* PosixEFICompilation */, + 9AE276442B04EAA4006343AB /* Protocols */, + 9AA9185625CD465800BD5E8B /* Clover */, + 9A92232F2402FD1000483CBA /* Main */, + 9A92232E2402FD1000483CBA /* Products */, + 9AFDCEB225CD9BB000EEAF06 /* Frameworks */, + ); + sourceTree = ""; + }; + 9A92232E2402FD1000483CBA /* Products */ = { + isa = PBXGroup; + children = ( + 9A92232D2402FD1000483CBA /* CloverMacOsApp-UTF16_signed-DebugLibs */, + 9AE279562642869E005C8F2F /* CloverMacOsApp-UTF16_signed-ReleaseLibs */, + 9AE277942B051DAB006343AB /* CloverMacOsApp-UTF32_signed-DebugLibs */, + ); + name = Products; + sourceTree = ""; + }; + 9A92232F2402FD1000483CBA /* Main */ = { + isa = PBXGroup; + children = ( + 9AC50DBA26432F2F0046F81B /* main_fixbiosdsdt.cpp */, + 9A7A0DB22643DE8600FD8B2A /* main_read_config.plist.cpp */, + 9A7A0DB72643DFDE00FD8B2A /* main.cpp */, + 9A0B085D240300E000E2B470 /* Platform.cpp */, + ); + name = Main; + path = src; + sourceTree = ""; + }; + 9AA3911925CC56E60099DC1F /* include */ = { + isa = PBXGroup; + children = ( + 9AB6EB9E25CF1FAD0001BDBB /* BootTypes.h */, + 9AA3911A25CC56E60099DC1F /* Devices.h */, + 9AA3912325CC56E60099DC1F /* Efi.h */, + 9AA3911F25CC56E60099DC1F /* Handle.h */, + 9A78DF7E260A531100FE811A /* Languages.h */, + 9AA3912425CC56E60099DC1F /* OC.h */, + 9AA3912025CC56E60099DC1F /* OneLinerMacros.h */, + 9AB6EB9F25CF1FAD0001BDBB /* OSFlags.h */, + 9AB6EBA025CF1FAD0001BDBB /* OSTypes.h */, + 9AA3912225CC56E60099DC1F /* Pci.h */, + 9AA3911D25CC56E60099DC1F /* printf_lite-test-cpp_conf.h */, + 9AA3911B25CC56E60099DC1F /* printlib-test-cpp_conf.h */, + 9AA3911E25CC56E60099DC1F /* rename_helper.h */, + 9AA3911C25CC56E60099DC1F /* syslinux_mbr.h */, + 9AB6EB9D25CF1FAC0001BDBB /* VolumeTypes.h */, + 9AA3912525CC56E60099DC1F /* XToolsConf.h */, + ); + path = include; + sourceTree = ""; + }; + 9AA909E825CD451500BD5E8B /* MdePkg */ = { + isa = PBXGroup; + children = ( + 9AA909E925CD451500BD5E8B /* Include */, + 9AA90C1125CD451700BD5E8B /* Library */, + 9AA910B525CD451900BD5E8B /* MdePkg.dec */, + 9AA910B625CD451900BD5E8B /* MdePkg.uni */, + 9AA910B725CD451900BD5E8B /* MdePkgExtra.uni */, + 9AA910B825CD451900BD5E8B /* MdePkg.dsc */, + ); + path = MdePkg; + sourceTree = ""; + }; + 9AA909E925CD451500BD5E8B /* Include */ = { + isa = PBXGroup; + children = ( + 9AA909EA25CD451500BD5E8B /* PiPei.h */, + 9AA909EB25CD451500BD5E8B /* PiMm.h */, + 9AA909EC25CD451500BD5E8B /* Uefi.h */, + 9AA909ED25CD451500BD5E8B /* X64 */, + 9AA909F025CD451500BD5E8B /* Uefi */, + 9AA909F825CD451500BD5E8B /* IndustryStandard */, + 9AA90A4925CD451500BD5E8B /* Library */, + 9AA90A8A25CD451600BD5E8B /* Protocol */, + 9AA90B8425CD451600BD5E8B /* Pi */, + 9AA90B9225CD451600BD5E8B /* PiSmm.h */, + 9AA90B9325CD451600BD5E8B /* Register */, + 9AA90BB825CD451600BD5E8B /* PiDxe.h */, + 9AA90BB925CD451600BD5E8B /* Guid */, + 9AA90BE125CD451600BD5E8B /* Ppi */, + 9AA90C1025CD451700BD5E8B /* Base.h */, + ); + path = Include; + sourceTree = ""; + }; + 9AA909ED25CD451500BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA909EE25CD451500BD5E8B /* Nasm.inc */, + 9AA909EF25CD451500BD5E8B /* ProcessorBind.h */, + ); + path = X64; + sourceTree = ""; + }; + 9AA909F025CD451500BD5E8B /* Uefi */ = { + isa = PBXGroup; + children = ( + 9AA909F125CD451500BD5E8B /* UefiAcpiDataTable.h */, + 9AA909F225CD451500BD5E8B /* UefiPxe.h */, + 9AA909F325CD451500BD5E8B /* UefiSpec.h */, + 9AA909F425CD451500BD5E8B /* UefiGpt.h */, + 9AA909F525CD451500BD5E8B /* UefiBaseType.h */, + 9AA909F625CD451500BD5E8B /* UefiInternalFormRepresentation.h */, + 9AA909F725CD451500BD5E8B /* UefiMultiPhase.h */, + ); + path = Uefi; + sourceTree = ""; + }; + 9AA909F825CD451500BD5E8B /* IndustryStandard */ = { + isa = PBXGroup; + children = ( + 9AA909F925CD451500BD5E8B /* IpmiNetFnFirmware.h */, + 9AA909FA25CD451500BD5E8B /* SdramSpdLpDdr.h */, + 9AA909FB25CD451500BD5E8B /* ElTorito.h */, + 9AA909FC25CD451500BD5E8B /* SdramSpdDdr3.h */, + 9AA909FD25CD451500BD5E8B /* Acpi62.h */, + 9AA909FE25CD451500BD5E8B /* WindowsSmmSecurityMitigationTable.h */, + 9AA909FF25CD451500BD5E8B /* Nvme.h */, + 9AA90A0025CD451500BD5E8B /* IoRemappingTable.h */, + 9AA90A0125CD451500BD5E8B /* LowPowerIdleTable.h */, + 9AA90A0225CD451500BD5E8B /* Emmc.h */, + 9AA90A0325CD451500BD5E8B /* WatchdogActionTable.h */, + 9AA90A0425CD451500BD5E8B /* DmaRemappingReportingTable.h */, + 9AA90A0525CD451500BD5E8B /* AlertStandardFormatTable.h */, + 9AA90A0625CD451500BD5E8B /* Acpi40.h */, + 9AA90A0725CD451500BD5E8B /* Bmp.h */, + 9AA90A0825CD451500BD5E8B /* UefiTcgPlatform.h */, + 9AA90A0925CD451500BD5E8B /* SerialPortConsoleRedirectionTable.h */, + 9AA90A0A25CD451500BD5E8B /* Pci22.h */, + 9AA90A0B25CD451500BD5E8B /* Mbr.h */, + 9AA90A0C25CD451500BD5E8B /* Acpi61.h */, + 9AA90A0D25CD451500BD5E8B /* SdramSpdDdr4.h */, + 9AA90A0E25CD451500BD5E8B /* TcgStorageOpal.h */, + 9AA90A0F25CD451500BD5E8B /* IpmiNetFnChassis.h */, + 9AA90A1025CD451500BD5E8B /* Acpi.h */, + 9AA90A1125CD451500BD5E8B /* Tpm2Acpi.h */, + 9AA90A1225CD451500BD5E8B /* PeImage.h */, + 9AA90A1325CD451500BD5E8B /* PciExpress30.h */, + 9AA90A1425CD451500BD5E8B /* SdramSpd.h */, + 9AA90A1525CD451500BD5E8B /* Acpi10.h */, + 9AA90A1625CD451500BD5E8B /* MemoryMappedConfigurationSpaceAccessTable.h */, + 9AA90A1725CD451500BD5E8B /* IpmiFruInformationStorage.h */, + 9AA90A1825CD451500BD5E8B /* IpmiNetFnStorage.h */, + 9AA90A1925CD451500BD5E8B /* IScsiBootFirmwareTable.h */, + 9AA90A1A25CD451500BD5E8B /* Bluetooth.h */, + 9AA90A1B25CD451500BD5E8B /* AcpiAml.h */, + 9AA90A1C25CD451500BD5E8B /* Acpi50.h */, + 9AA90A1D25CD451500BD5E8B /* Tpm20.h */, + 9AA90A1E25CD451500BD5E8B /* PciCodeId.h */, + 9AA90A1F25CD451500BD5E8B /* IpmiNetFnTransport.h */, + 9AA90A2025CD451500BD5E8B /* Dhcp.h */, + 9AA90A2125CD451500BD5E8B /* TpmPtp.h */, + 9AA90A2225CD451500BD5E8B /* Acpi20.h */, + 9AA90A2325CD451500BD5E8B /* Pci23.h */, + 9AA90A2425CD451500BD5E8B /* IpmiNetFnApp.h */, + 9AA90A2525CD451500BD5E8B /* PciExpress40.h */, + 9AA90A2625CD451500BD5E8B /* IpmiNetFnSensorEvent.h */, + 9AA90A2725CD451500BD5E8B /* Acpi60.h */, + 9AA90A2825CD451500BD5E8B /* PciExpress21.h */, + 9AA90A2925CD451500BD5E8B /* PciExpress31.h */, + 9AA90A2A25CD451500BD5E8B /* TcgStorageCore.h */, + 9AA90A2B25CD451500BD5E8B /* HighPrecisionEventTimerTable.h */, + 9AA90A2C25CD451500BD5E8B /* Usb.h */, + 9AA90A2D25CD451500BD5E8B /* Acpi51.h */, + 9AA90A2E25CD451500BD5E8B /* Sd.h */, + 9AA90A2F25CD451500BD5E8B /* WatchdogResourceTable.h */, + 9AA90A3025CD451500BD5E8B /* Acpi30.h */, + 9AA90A3125CD451500BD5E8B /* Udf.h */, + 9AA90A3225CD451500BD5E8B /* DebugPortTable.h */, + 9AA90A3325CD451500BD5E8B /* SmBios.h */, + 9AA90A3425CD451500BD5E8B /* MemoryOverwriteRequestControlLock.h */, + 9AA90A3525CD451500BD5E8B /* Atapi.h */, + 9AA90A3625CD451500BD5E8B /* TcpaAcpi.h */, + 9AA90A3725CD451500BD5E8B /* LegacyBiosMpTable.h */, + 9AA90A3825CD451500BD5E8B /* TpmTis.h */, + 9AA90A3925CD451500BD5E8B /* Acpi63.h */, + 9AA90A3A25CD451500BD5E8B /* SmBus.h */, + 9AA90A3B25CD451500BD5E8B /* Http11.h */, + 9AA90A3C25CD451500BD5E8B /* TcgPhysicalPresence.h */, + 9AA90A3D25CD451500BD5E8B /* IpmiNetFnGroupExtension.h */, + 9AA90A3E25CD451500BD5E8B /* Tls1.h */, + 9AA90A3F25CD451500BD5E8B /* Pci.h */, + 9AA90A4025CD451500BD5E8B /* DebugPort2Table.h */, + 9AA90A4125CD451500BD5E8B /* Scsi.h */, + 9AA90A4225CD451500BD5E8B /* Pci30.h */, + 9AA90A4325CD451500BD5E8B /* Hsti.h */, + 9AA90A4425CD451500BD5E8B /* WindowsUxCapsule.h */, + 9AA90A4525CD451500BD5E8B /* Tpm12.h */, + 9AA90A4625CD451500BD5E8B /* Ipmi.h */, + 9AA90A4725CD451500BD5E8B /* IpmiNetFnBridge.h */, + 9AA90A4825CD451500BD5E8B /* ServiceProcessorManagementInterfaceTable.h */, + ); + path = IndustryStandard; + sourceTree = ""; + }; + 9AA90A4925CD451500BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA90A4A25CD451500BD5E8B /* OrderedCollectionLib.h */, + 9AA90A4B25CD451500BD5E8B /* TimerLib.h */, + 9AA90A4C25CD451500BD5E8B /* PeiServicesTablePointerLib.h */, + 9AA90A4D25CD451500BD5E8B /* SmiHandlerProfileLib.h */, + 9AA90A4E25CD451500BD5E8B /* UefiUsbLib.h */, + 9AA90A4F25CD451500BD5E8B /* UefiDecompressLib.h */, + 9AA90A5025CD451500BD5E8B /* UefiRuntimeServicesTableLib.h */, + 9AA90A5125CD451500BD5E8B /* PeimEntryPoint.h */, + 9AA90A5225CD451500BD5E8B /* RngLib.h */, + 9AA90A5325CD451500BD5E8B /* PciCf8Lib.h */, + 9AA90A5425CD451500BD5E8B /* SmmPeriodicSmiLib.h */, + 9AA90A5525CD451500BD5E8B /* PeiCoreEntryPoint.h */, + 9AA90A5625CD451500BD5E8B /* S3PciLib.h */, + 9AA90A5725CD451500BD5E8B /* PciSegmentLib.h */, + 9AA90A5825CD451500BD5E8B /* DebugLib.h */, + 9AA90A5925CD451500BD5E8B /* SynchronizationLib.h */, + 9AA90A5A25CD451500BD5E8B /* SafeIntLib.h */, + 9AA90A5B25CD451500BD5E8B /* S3SmbusLib.h */, + 9AA90A5C25CD451500BD5E8B /* DevicePathLib.h */, + 9AA90A5D25CD451500BD5E8B /* PcdLib.h */, + 9AA90A5E25CD451500BD5E8B /* FileHandleLib.h */, + 9AA90A5F25CD451500BD5E8B /* UefiLib.h */, + 9AA90A6025CD451500BD5E8B /* SmmMemLib.h */, + 9AA90A6125CD451500BD5E8B /* PostCodeLib.h */, + 9AA90A6225CD451500BD5E8B /* S3StallLib.h */, + 9AA90A6325CD451500BD5E8B /* PciLib.h */, + 9AA90A6425CD451500BD5E8B /* UefiBootServicesTableLib.h */, + 9AA90A6525CD451500BD5E8B /* MmServicesTableLib.h */, + 9AA90A6625CD451500BD5E8B /* PeCoffExtraActionLib.h */, + 9AA90A6725CD451600BD5E8B /* PciExpressLib.h */, + 9AA90A6825CD451600BD5E8B /* S3IoLib.h */, + 9AA90A6925CD451600BD5E8B /* ReportStatusCodeLib.h */, + 9AA90A6A25CD451600BD5E8B /* UefiScsiLib.h */, + 9AA90A6B25CD451600BD5E8B /* UefiRuntimeLib.h */, + 9AA90A6C25CD451600BD5E8B /* SmmServicesTableLib.h */, + 9AA90A6D25CD451600BD5E8B /* SerialPortLib.h */, + 9AA90A6E25CD451600BD5E8B /* DxeCoreEntryPoint.h */, + 9AA90A6F25CD451600BD5E8B /* PeCoffGetEntryPointLib.h */, + 9AA90A7025CD451600BD5E8B /* UefiDriverEntryPoint.h */, + 9AA90A7125CD451600BD5E8B /* BaseMemoryLib.h */, + 9AA90A7225CD451600BD5E8B /* DxeServicesLib.h */, + 9AA90A7325CD451600BD5E8B /* PeCoffLib.h */, + 9AA90A7425CD451600BD5E8B /* S3PciSegmentLib.h */, + 9AA90A7525CD451600BD5E8B /* BaseLib.h */, + 9AA90A7625CD451600BD5E8B /* SmmLib.h */, + 9AA90A7725CD451600BD5E8B /* PeiServicesLib.h */, + 9AA90A7825CD451600BD5E8B /* DxeServicesTableLib.h */, + 9AA90A7925CD451600BD5E8B /* SmbusLib.h */, + 9AA90A7A25CD451600BD5E8B /* MemoryAllocationLib.h */, + 9AA90A7B25CD451600BD5E8B /* HstiLib.h */, + 9AA90A7C25CD451600BD5E8B /* ExtractGuidedSectionLib.h */, + 9AA90A7D25CD451600BD5E8B /* ResourcePublicationLib.h */, + 9AA90A7E25CD451600BD5E8B /* S3BootScriptLib.h */, + 9AA90A7F25CD451600BD5E8B /* CacheMaintenanceLib.h */, + 9AA90A8025CD451600BD5E8B /* CpuLib.h */, + 9AA90A8125CD451600BD5E8B /* StandaloneMmDriverEntryPoint.h */, + 9AA90A8225CD451600BD5E8B /* SmmIoLib.h */, + 9AA90A8325CD451600BD5E8B /* IoLib.h */, + 9AA90A8425CD451600BD5E8B /* PrintLib.h */, + 9AA90A8525CD451600BD5E8B /* UefiApplicationEntryPoint.h */, + 9AA90A8625CD451600BD5E8B /* PerformanceLib.h */, + 9AA90A8725CD451600BD5E8B /* HobLib.h */, + 9AA90A8825CD451600BD5E8B /* DebugPrintErrorLevelLib.h */, + 9AA90A8925CD451600BD5E8B /* PciSegmentInfoLib.h */, + ); + path = Library; + sourceTree = ""; + }; + 9AA90A8A25CD451600BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA90A8B25CD451600BD5E8B /* LegacySpiController.h */, + 9AA90A8C25CD451600BD5E8B /* SpiHc.h */, + 9AA90A8D25CD451600BD5E8B /* Tcp4.h */, + 9AA90A8E25CD451600BD5E8B /* DriverFamilyOverride.h */, + 9AA90A8F25CD451600BD5E8B /* MmSxDispatch.h */, + 9AA90A9025CD451600BD5E8B /* MmCpu.h */, + 9AA90A9125CD451600BD5E8B /* TcgService.h */, + 9AA90A9225CD451600BD5E8B /* WiFi2.h */, + 9AA90A9325CD451600BD5E8B /* PartitionInfo.h */, + 9AA90A9425CD451600BD5E8B /* SmmReportStatusCodeHandler.h */, + 9AA90A9525CD451600BD5E8B /* UgaDraw.h */, + 9AA90A9625CD451600BD5E8B /* Bis.h */, + 9AA90A9725CD451600BD5E8B /* SmartCardEdge.h */, + 9AA90A9825CD451600BD5E8B /* EapConfiguration.h */, + 9AA90A9925CD451600BD5E8B /* ShellDynamicCommand.h */, + 9AA90A9A25CD451600BD5E8B /* Rest.h */, + 9AA90A9B25CD451600BD5E8B /* NvdimmLabel.h */, + 9AA90A9C25CD451600BD5E8B /* Udp4.h */, + 9AA90A9D25CD451600BD5E8B /* LoadedImage.h */, + 9AA90A9E25CD451600BD5E8B /* WiFi.h */, + 9AA90A9F25CD451600BD5E8B /* SmmSwDispatch2.h */, + 9AA90AA025CD451600BD5E8B /* FormBrowser2.h */, + 9AA90AA125CD451600BD5E8B /* I2cHost.h */, + 9AA90AA225CD451600BD5E8B /* DevicePathFromText.h */, + 9AA90AA325CD451600BD5E8B /* Shell.h */, + 9AA90AA425CD451600BD5E8B /* IpSec.h */, + 9AA90AA525CD451600BD5E8B /* SimpleTextInEx.h */, + 9AA90AA625CD451600BD5E8B /* CpuIo2.h */, + 9AA90AA725CD451600BD5E8B /* Ip4.h */, + 9AA90AA825CD451600BD5E8B /* DriverConfiguration.h */, + 9AA90AA925CD451600BD5E8B /* SpiSmmConfiguration.h */, + 9AA90AAA25CD451600BD5E8B /* DiskIo.h */, + 9AA90AAB25CD451600BD5E8B /* Tls.h */, + 9AA90AAC25CD451600BD5E8B /* MmReadyToLock.h */, + 9AA90AAD25CD451600BD5E8B /* SimpleFileSystem.h */, + 9AA90AAE25CD451600BD5E8B /* MmStatusCode.h */, + 9AA90AAF25CD451600BD5E8B /* Http.h */, + 9AA90AB025CD451600BD5E8B /* ScsiPassThruExt.h */, + 9AA90AB125CD451600BD5E8B /* HiiConfigAccess.h */, + 9AA90AB225CD451600BD5E8B /* SmbusHc.h */, + 9AA90AB325CD451600BD5E8B /* DevicePathToText.h */, + 9AA90AB425CD451600BD5E8B /* MmCpuIo.h */, + 9AA90AB525CD451600BD5E8B /* ServiceBinding.h */, + 9AA90AB625CD451600BD5E8B /* DriverConfiguration2.h */, + 9AA90AB725CD451600BD5E8B /* Usb2HostController.h */, + 9AA90AB825CD451600BD5E8B /* FirmwareManagement.h */, + 9AA90AB925CD451600BD5E8B /* EdidDiscovered.h */, + 9AA90ABA25CD451600BD5E8B /* MmEndOfDxe.h */, + 9AA90ABB25CD451600BD5E8B /* BootManagerPolicy.h */, + 9AA90ABC25CD451600BD5E8B /* RealTimeClock.h */, + 9AA90ABD25CD451600BD5E8B /* SimplePointer.h */, + 9AA90ABE25CD451600BD5E8B /* Ip6Config.h */, + 9AA90ABF25CD451600BD5E8B /* I2cIo.h */, + 9AA90AC025CD451600BD5E8B /* Dns6.h */, + 9AA90AC125CD451600BD5E8B /* UfsDeviceConfig.h */, + 9AA90AC225CD451600BD5E8B /* DeviceIo.h */, + 9AA90AC325CD451600BD5E8B /* ReportStatusCodeHandler.h */, + 9AA90AC425CD451600BD5E8B /* TlsConfig.h */, + 9AA90AC525CD451600BD5E8B /* ScsiIo.h */, + 9AA90AC625CD451600BD5E8B /* Security.h */, + 9AA90AC725CD451600BD5E8B /* SmmSxDispatch2.h */, + 9AA90AC825CD451600BD5E8B /* MmControl.h */, + 9AA90AC925CD451600BD5E8B /* NetworkInterfaceIdentifier.h */, + 9AA90ACA25CD451600BD5E8B /* MmPowerButtonDispatch.h */, + 9AA90ACB25CD451600BD5E8B /* Security2.h */, + 9AA90ACC25CD451600BD5E8B /* EdidActive.h */, + 9AA90ACD25CD451600BD5E8B /* UserCredential.h */, + 9AA90ACE25CD451600BD5E8B /* MmAccess.h */, + 9AA90ACF25CD451600BD5E8B /* UnicodeCollation.h */, + 9AA90AD025CD451600BD5E8B /* MonotonicCounter.h */, + 9AA90AD125CD451600BD5E8B /* BluetoothHc.h */, + 9AA90AD225CD451600BD5E8B /* PlatformDriverOverride.h */, + 9AA90AD325CD451600BD5E8B /* ManagedNetwork.h */, + 9AA90AD425CD451600BD5E8B /* DriverDiagnostics.h */, + 9AA90AD525CD451600BD5E8B /* HiiImageDecoder.h */, + 9AA90AD625CD451600BD5E8B /* SimpleNetwork.h */, + 9AA90AD725CD451600BD5E8B /* HiiString.h */, + 9AA90AD825CD451600BD5E8B /* TrEEProtocol.h */, + 9AA90AD925CD451600BD5E8B /* VariableWrite.h */, + 9AA90ADA25CD451600BD5E8B /* BluetoothLeConfig.h */, + 9AA90ADB25CD451600BD5E8B /* Ip4Config.h */, + 9AA90ADC25CD451600BD5E8B /* MmMp.h */, + 9AA90ADD25CD451600BD5E8B /* HiiPopup.h */, + 9AA90ADE25CD451600BD5E8B /* GraphicsOutput.h */, + 9AA90ADF25CD451600BD5E8B /* IScsiInitiatorName.h */, + 9AA90AE025CD451600BD5E8B /* Ftp4.h */, + 9AA90AE125CD451600BD5E8B /* AtaPassThru.h */, + 9AA90AE225CD451600BD5E8B /* SimpleTextOut.h */, + 9AA90AE325CD451600BD5E8B /* HiiConfigKeyword.h */, + 9AA90AE425CD451600BD5E8B /* PciOverride.h */, + 9AA90AE525CD451600BD5E8B /* DiskIo2.h */, + 9AA90AE625CD451600BD5E8B /* IsaHc.h */, + 9AA90AE725CD451600BD5E8B /* ComponentName2.h */, + 9AA90AE825CD451600BD5E8B /* SmmStatusCode.h */, + 9AA90AE925CD451600BD5E8B /* PciPlatform.h */, + 9AA90AEA25CD451600BD5E8B /* DriverDiagnostics2.h */, + 9AA90AEB25CD451600BD5E8B /* Rng.h */, + 9AA90AEC25CD451600BD5E8B /* Dhcp4.h */, + 9AA90AED25CD451600BD5E8B /* PxeBaseCode.h */, + 9AA90AEE25CD451600BD5E8B /* GuidedSectionExtraction.h */, + 9AA90AEF25CD451600BD5E8B /* Variable.h */, + 9AA90AF025CD451600BD5E8B /* MmReportStatusCodeHandler.h */, + 9AA90AF125CD451600BD5E8B /* DxeMmReadyToLock.h */, + 9AA90AF225CD451600BD5E8B /* DriverBinding.h */, + 9AA90AF325CD451600BD5E8B /* FirmwareVolume2.h */, + 9AA90AF425CD451600BD5E8B /* BlockIo.h */, + 9AA90AF525CD451600BD5E8B /* MmBase.h */, + 9AA90AF625CD451600BD5E8B /* SmmCpuIo2.h */, + 9AA90AF725CD451600BD5E8B /* SmmUsbDispatch2.h */, + 9AA90AF825CD451600BD5E8B /* Mtftp6.h */, + 9AA90AF925CD451600BD5E8B /* S3SmmSaveState.h */, + 9AA90AFA25CD451600BD5E8B /* SpiNorFlash.h */, + 9AA90AFB25CD451600BD5E8B /* Metronome.h */, + 9AA90AFC25CD451600BD5E8B /* SmmPowerButtonDispatch2.h */, + 9AA90AFD25CD451600BD5E8B /* Runtime.h */, + 9AA90AFE25CD451600BD5E8B /* LegacySpiSmmFlash.h */, + 9AA90AFF25CD451600BD5E8B /* PlatformToDriverConfiguration.h */, + 9AA90B0025CD451600BD5E8B /* Timer.h */, + 9AA90B0125CD451600BD5E8B /* DevicePathUtilities.h */, + 9AA90B0225CD451600BD5E8B /* PxeBaseCodeCallBack.h */, + 9AA90B0325CD451600BD5E8B /* LegacySpiSmmController.h */, + 9AA90B0425CD451600BD5E8B /* LegacyRegion2.h */, + 9AA90B0525CD451600BD5E8B /* DebugPort.h */, + 9AA90B0625CD451600BD5E8B /* Tcp6.h */, + 9AA90B0725CD451600BD5E8B /* PciRootBridgeIo.h */, + 9AA90B0825CD451600BD5E8B /* Pcd.h */, + 9AA90B0925CD451600BD5E8B /* UgaIo.h */, + 9AA90B0A25CD451600BD5E8B /* SpiSmmNorFlash.h */, + 9AA90B0B25CD451600BD5E8B /* Hash2.h */, + 9AA90B0C25CD451600BD5E8B /* SpiConfiguration.h */, + 9AA90B0D25CD451600BD5E8B /* SuperIoControl.h */, + 9AA90B0E25CD451600BD5E8B /* DevicePath.h */, + 9AA90B0F25CD451600BD5E8B /* TapeIo.h */, + 9AA90B1025CD451600BD5E8B /* SmmCpu.h */, + 9AA90B1125CD451600BD5E8B /* DriverSupportedEfiVersion.h */, + 9AA90B1225CD451600BD5E8B /* StorageSecurityCommand.h */, + 9AA90B1325CD451600BD5E8B /* UserManager.h */, + 9AA90B1425CD451600BD5E8B /* PiPcd.h */, + 9AA90B1525CD451600BD5E8B /* SecurityPolicy.h */, + 9AA90B1625CD451600BD5E8B /* UsbFunctionIo.h */, + 9AA90B1725CD451600BD5E8B /* BusSpecificDriverOverride.h */, + 9AA90B1825CD451600BD5E8B /* MmSwDispatch.h */, + 9AA90B1925CD451600BD5E8B /* Supplicant.h */, + 9AA90B1A25CD451600BD5E8B /* Udp6.h */, + 9AA90B1B25CD451600BD5E8B /* SmmReadyToLock.h */, + 9AA90B1C25CD451600BD5E8B /* PciHotPlugRequest.h */, + 9AA90B1D25CD451600BD5E8B /* AuthenticationInfo.h */, + 9AA90B1E25CD451600BD5E8B /* Ip4Config2.h */, + 9AA90B1F25CD451600BD5E8B /* MmCommunication.h */, + 9AA90B2025CD451600BD5E8B /* EapManagement2.h */, + 9AA90B2125CD451600BD5E8B /* Decompress.h */, + 9AA90B2225CD451600BD5E8B /* PiPcdInfo.h */, + 9AA90B2325CD451600BD5E8B /* PciHostBridgeResourceAllocation.h */, + 9AA90B2425CD451600BD5E8B /* HiiPackageList.h */, + 9AA90B2525CD451600BD5E8B /* SpiIo.h */, + 9AA90B2625CD451600BD5E8B /* HiiImage.h */, + 9AA90B2725CD451600BD5E8B /* Pkcs7Verify.h */, + 9AA90B2825CD451600BD5E8B /* SmmGpiDispatch2.h */, + 9AA90B2925CD451600BD5E8B /* SmmCommunication.h */, + 9AA90B2A25CD451600BD5E8B /* NvmExpressPassthru.h */, + 9AA90B2B25CD451600BD5E8B /* IpSecConfig.h */, + 9AA90B2C25CD451600BD5E8B /* DeferredImageLoad.h */, + 9AA90B2D25CD451600BD5E8B /* MmUsbDispatch.h */, + 9AA90B2E25CD451600BD5E8B /* SmmStandbyButtonDispatch2.h */, + 9AA90B2F25CD451600BD5E8B /* Capsule.h */, + 9AA90B3025CD451600BD5E8B /* SuperIo.h */, + 9AA90B3125CD451600BD5E8B /* RegularExpressionProtocol.h */, + 9AA90B3225CD451600BD5E8B /* IdeControllerInit.h */, + 9AA90B3325CD451600BD5E8B /* Cpu.h */, + 9AA90B3425CD451600BD5E8B /* AbsolutePointer.h */, + 9AA90B3525CD451600BD5E8B /* UsbHostController.h */, + 9AA90B3625CD451600BD5E8B /* UsbIo.h */, + 9AA90B3725CD451600BD5E8B /* HiiConfigRouting.h */, + 9AA90B3825CD451600BD5E8B /* BluetoothAttribute.h */, + 9AA90B3925CD451600BD5E8B /* Ip6.h */, + 9AA90B3A25CD451600BD5E8B /* BlockIo2.h */, + 9AA90B3B25CD451600BD5E8B /* Dns4.h */, + 9AA90B3C25CD451600BD5E8B /* HiiDatabase.h */, + 9AA90B3D25CD451600BD5E8B /* HiiImageEx.h */, + 9AA90B3E25CD451600BD5E8B /* PciIo.h */, + 9AA90B3F25CD451600BD5E8B /* MmPeriodicTimerDispatch.h */, + 9AA90B4025CD451600BD5E8B /* RamDisk.h */, + 9AA90B4125CD451600BD5E8B /* ScsiPassThru.h */, + 9AA90B4225CD451600BD5E8B /* DiskInfo.h */, + 9AA90B4325CD451600BD5E8B /* Bds.h */, + 9AA90B4425CD451600BD5E8B /* SerialIo.h */, + 9AA90B4525CD451600BD5E8B /* DriverHealth.h */, + 9AA90B4625CD451600BD5E8B /* Arp.h */, + 9AA90B4725CD451600BD5E8B /* ShellParameters.h */, + 9AA90B4825CD451600BD5E8B /* IncompatiblePciDeviceSupport.h */, + 9AA90B4925CD451600BD5E8B /* LegacySpiFlash.h */, + 9AA90B4A25CD451600BD5E8B /* I2cMaster.h */, + 9AA90B4B25CD451600BD5E8B /* Smbios.h */, + 9AA90B4C25CD451600BD5E8B /* EapManagement.h */, + 9AA90B4D25CD451600BD5E8B /* EraseBlock.h */, + 9AA90B4E25CD451600BD5E8B /* Tcg2Protocol.h */, + 9AA90B4F25CD451600BD5E8B /* AcpiSystemDescriptionTable.h */, + 9AA90B5025CD451600BD5E8B /* PciEnumerationComplete.h */, + 9AA90B5125CD451600BD5E8B /* ResetNotification.h */, + 9AA90B5225CD451600BD5E8B /* PciHotPlugInit.h */, + 9AA90B5325CD451600BD5E8B /* Kms.h */, + 9AA90B5425CD451600BD5E8B /* MmPciRootBridgeIo.h */, + 9AA90B5525CD451600BD5E8B /* I2cBusConfigurationManagement.h */, + 9AA90B5625CD451600BD5E8B /* LoadFile.h */, + 9AA90B5725CD451600BD5E8B /* PcdInfo.h */, + 9AA90B5825CD451600BD5E8B /* WatchdogTimer.h */, + 9AA90B5925CD451600BD5E8B /* SmmEndOfDxe.h */, + 9AA90B5A25CD451600BD5E8B /* MmConfiguration.h */, + 9AA90B5B25CD451600BD5E8B /* SmmPeriodicTimerDispatch2.h */, + 9AA90B5C25CD451600BD5E8B /* S3SaveState.h */, + 9AA90B5D25CD451600BD5E8B /* SdMmcPassThru.h */, + 9AA90B5E25CD451600BD5E8B /* Reset.h */, + 9AA90B5F25CD451600BD5E8B /* Dhcp6.h */, + 9AA90B6025CD451600BD5E8B /* DxeSmmReadyToLock.h */, + 9AA90B6125CD451600BD5E8B /* MpService.h */, + 9AA90B6225CD451600BD5E8B /* SmmConfiguration.h */, + 9AA90B6325CD451600BD5E8B /* MmGpiDispatch.h */, + 9AA90B6425CD451600BD5E8B /* SmmControl2.h */, + 9AA90B6525CD451600BD5E8B /* StatusCode.h */, + 9AA90B6625CD451600BD5E8B /* Timestamp.h */, + 9AA90B6725CD451600BD5E8B /* BlockIoCrypto.h */, + 9AA90B6825CD451600BD5E8B /* SmartCardReader.h */, + 9AA90B6925CD451600BD5E8B /* FirmwareVolumeBlock.h */, + 9AA90B6A25CD451600BD5E8B /* HttpBootCallback.h */, + 9AA90B6B25CD451600BD5E8B /* SimpleTextIn.h */, + 9AA90B6C25CD451600BD5E8B /* MmIoTrapDispatch.h */, + 9AA90B6D25CD451600BD5E8B /* Hash.h */, + 9AA90B6E25CD451600BD5E8B /* VlanConfig.h */, + 9AA90B6F25CD451600BD5E8B /* HiiFont.h */, + 9AA90B7025CD451600BD5E8B /* SmmAccess2.h */, + 9AA90B7125CD451600BD5E8B /* UserCredential2.h */, + 9AA90B7225CD451600BD5E8B /* AcpiTable.h */, + 9AA90B7325CD451600BD5E8B /* EdidOverride.h */, + 9AA90B7425CD451600BD5E8B /* I2cEnumerate.h */, + 9AA90B7525CD451600BD5E8B /* BluetoothConfig.h */, + 9AA90B7625CD451600BD5E8B /* BluetoothIo.h */, + 9AA90B7725CD451600BD5E8B /* MmStandbyButtonDispatch.h */, + 9AA90B7825CD451600BD5E8B /* Mtftp4.h */, + 9AA90B7925CD451600BD5E8B /* SmmIoTrapDispatch2.h */, + 9AA90B7A25CD451600BD5E8B /* SpiSmmHc.h */, + 9AA90B7B25CD451600BD5E8B /* Ebc.h */, + 9AA90B7C25CD451600BD5E8B /* DebugSupport.h */, + 9AA90B7D25CD451600BD5E8B /* ComponentName.h */, + 9AA90B7E25CD451600BD5E8B /* Eap.h */, + 9AA90B7F25CD451600BD5E8B /* AdapterInformation.h */, + 9AA90B8025CD451600BD5E8B /* SmmBase2.h */, + 9AA90B8125CD451600BD5E8B /* SmmPciRootBridgeIo.h */, + 9AA90B8225CD451600BD5E8B /* HttpUtilities.h */, + 9AA90B8325CD451600BD5E8B /* LoadFile2.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA90B8425CD451600BD5E8B /* Pi */ = { + isa = PBXGroup; + children = ( + 9AA90B8525CD451600BD5E8B /* PiFirmwareVolume.h */, + 9AA90B8625CD451600BD5E8B /* PiMmCis.h */, + 9AA90B8725CD451600BD5E8B /* PiDxeCis.h */, + 9AA90B8825CD451600BD5E8B /* PiStatusCode.h */, + 9AA90B8925CD451600BD5E8B /* PiBootMode.h */, + 9AA90B8A25CD451600BD5E8B /* PiHob.h */, + 9AA90B8B25CD451600BD5E8B /* PiPeiCis.h */, + 9AA90B8C25CD451600BD5E8B /* PiSmmCis.h */, + 9AA90B8D25CD451600BD5E8B /* PiDependency.h */, + 9AA90B8E25CD451600BD5E8B /* PiS3BootScript.h */, + 9AA90B8F25CD451600BD5E8B /* PiMultiPhase.h */, + 9AA90B9025CD451600BD5E8B /* PiFirmwareFile.h */, + 9AA90B9125CD451600BD5E8B /* PiI2c.h */, + ); + path = Pi; + sourceTree = ""; + }; + 9AA90B9325CD451600BD5E8B /* Register */ = { + isa = PBXGroup; + children = ( + 9AA90B9425CD451600BD5E8B /* Intel */, + 9AA90BB425CD451600BD5E8B /* Amd */, + ); + path = Register; + sourceTree = ""; + }; + 9AA90B9425CD451600BD5E8B /* Intel */ = { + isa = PBXGroup; + children = ( + 9AA90B9525CD451600BD5E8B /* Microcode.h */, + 9AA90B9625CD451600BD5E8B /* SmramSaveStateMap.h */, + 9AA90B9725CD451600BD5E8B /* Msr */, + 9AA90BAD25CD451600BD5E8B /* Cpuid.h */, + 9AA90BAE25CD451600BD5E8B /* StmStatusCode.h */, + 9AA90BAF25CD451600BD5E8B /* StmResourceDescriptor.h */, + 9AA90BB025CD451600BD5E8B /* LocalApic.h */, + 9AA90BB125CD451600BD5E8B /* StmApi.h */, + 9AA90BB225CD451600BD5E8B /* ArchitecturalMsr.h */, + 9AA90BB325CD451600BD5E8B /* Msr.h */, + ); + path = Intel; + sourceTree = ""; + }; + 9AA90B9725CD451600BD5E8B /* Msr */ = { + isa = PBXGroup; + children = ( + 9AA90B9825CD451600BD5E8B /* Pentium4Msr.h */, + 9AA90B9925CD451600BD5E8B /* GoldmontPlusMsr.h */, + 9AA90B9A25CD451600BD5E8B /* IvyBridgeMsr.h */, + 9AA90B9B25CD451600BD5E8B /* BroadwellMsr.h */, + 9AA90B9C25CD451600BD5E8B /* HaswellEMsr.h */, + 9AA90B9D25CD451600BD5E8B /* XeonE7Msr.h */, + 9AA90B9E25CD451600BD5E8B /* Core2Msr.h */, + 9AA90B9F25CD451600BD5E8B /* NehalemMsr.h */, + 9AA90BA025CD451600BD5E8B /* SandyBridgeMsr.h */, + 9AA90BA125CD451600BD5E8B /* P6Msr.h */, + 9AA90BA225CD451600BD5E8B /* PentiumMsr.h */, + 9AA90BA325CD451600BD5E8B /* SilvermontMsr.h */, + 9AA90BA425CD451600BD5E8B /* Xeon5600Msr.h */, + 9AA90BA525CD451600BD5E8B /* SkylakeMsr.h */, + 9AA90BA625CD451600BD5E8B /* CoreMsr.h */, + 9AA90BA725CD451600BD5E8B /* XeonDMsr.h */, + 9AA90BA825CD451600BD5E8B /* XeonPhiMsr.h */, + 9AA90BA925CD451600BD5E8B /* PentiumMMsr.h */, + 9AA90BAA25CD451600BD5E8B /* GoldmontMsr.h */, + 9AA90BAB25CD451600BD5E8B /* HaswellMsr.h */, + 9AA90BAC25CD451600BD5E8B /* AtomMsr.h */, + ); + path = Msr; + sourceTree = ""; + }; + 9AA90BB425CD451600BD5E8B /* Amd */ = { + isa = PBXGroup; + children = ( + 9AA90BB525CD451600BD5E8B /* Cpuid.h */, + 9AA90BB625CD451600BD5E8B /* Fam17Msr.h */, + 9AA90BB725CD451600BD5E8B /* Msr.h */, + ); + path = Amd; + sourceTree = ""; + }; + 9AA90BB925CD451600BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA90BBA25CD451600BD5E8B /* MdePkgTokenSpace.h */, + 9AA90BBB25CD451600BD5E8B /* SmramMemoryReserve.h */, + 9AA90BBC25CD451600BD5E8B /* FileInfo.h */, + 9AA90BBD25CD451600BD5E8B /* SystemResourceTable.h */, + 9AA90BBE25CD451600BD5E8B /* AprioriFileName.h */, + 9AA90BBF25CD451600BD5E8B /* PropertiesTable.h */, + 9AA90BC025CD451600BD5E8B /* MemoryAllocationHob.h */, + 9AA90BC125CD451600BD5E8B /* EventGroup.h */, + 9AA90BC225CD451600BD5E8B /* FirmwareFileSystem3.h */, + 9AA90BC325CD451600BD5E8B /* Cper.h */, + 9AA90BC425CD451600BD5E8B /* MemoryOverwriteControl.h */, + 9AA90BC525CD451600BD5E8B /* Gpt.h */, + 9AA90BC625CD451600BD5E8B /* MemoryAttributesTable.h */, + 9AA90BC725CD451600BD5E8B /* EventLegacyBios.h */, + 9AA90BC825CD451600BD5E8B /* FmpCapsule.h */, + 9AA90BC925CD451600BD5E8B /* FirmwareContentsSigned.h */, + 9AA90BCA25CD451600BD5E8B /* Acpi.h */, + 9AA90BCB25CD451600BD5E8B /* Apriori.h */, + 9AA90BCC25CD451600BD5E8B /* DxeServices.h */, + 9AA90BCD25CD451600BD5E8B /* Btt.h */, + 9AA90BCE25CD451600BD5E8B /* HobList.h */, + 9AA90BCF25CD451600BD5E8B /* GraphicsInfoHob.h */, + 9AA90BD025CD451600BD5E8B /* HiiFormMapMethodGuid.h */, + 9AA90BD125CD451600BD5E8B /* FileSystemVolumeLabelInfo.h */, + 9AA90BD225CD451600BD5E8B /* FirmwareFileSystem2.h */, + 9AA90BD325CD451600BD5E8B /* StatusCodeDataTypeId.h */, + 9AA90BD425CD451600BD5E8B /* DebugImageInfoTable.h */, + 9AA90BD525CD451600BD5E8B /* HiiKeyBoardLayout.h */, + 9AA90BD625CD451600BD5E8B /* WinCertificate.h */, + 9AA90BD725CD451600BD5E8B /* SmBios.h */, + 9AA90BD825CD451600BD5E8B /* ImageAuthentication.h */, + 9AA90BD925CD451600BD5E8B /* VectorHandoffTable.h */, + 9AA90BDA25CD451600BD5E8B /* FileSystemInfo.h */, + 9AA90BDB25CD451600BD5E8B /* HardwareErrorVariable.h */, + 9AA90BDC25CD451600BD5E8B /* Mps.h */, + 9AA90BDD25CD451600BD5E8B /* PcAnsi.h */, + 9AA90BDE25CD451600BD5E8B /* GlobalVariable.h */, + 9AA90BDF25CD451600BD5E8B /* HiiPlatformSetupFormset.h */, + 9AA90BE025CD451600BD5E8B /* CapsuleReport.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA90BE125CD451600BD5E8B /* Ppi */ = { + isa = PBXGroup; + children = ( + 9AA90BE225CD451600BD5E8B /* PeiCoreFvLocation.h */, + 9AA90BE325CD451600BD5E8B /* SecHobData.h */, + 9AA90BE425CD451600BD5E8B /* VectorHandoffInfo.h */, + 9AA90BE525CD451600BD5E8B /* ReadOnlyVariable2.h */, + 9AA90BE625CD451600BD5E8B /* ReportStatusCodeHandler.h */, + 9AA90BE725CD451600BD5E8B /* S3Resume2.h */, + 9AA90BE825CD451600BD5E8B /* MmControl.h */, + 9AA90BE925CD451600BD5E8B /* Reset2.h */, + 9AA90BEA25CD451600BD5E8B /* Security2.h */, + 9AA90BEB25CD451600BD5E8B /* MmAccess.h */, + 9AA90BEC25CD451600BD5E8B /* EndOfPeiPhase.h */, + 9AA90BED25CD451600BD5E8B /* Smbus2.h */, + 9AA90BEE25CD451600BD5E8B /* BootInRecoveryMode.h */, + 9AA90BEF25CD451600BD5E8B /* IsaHc.h */, + 9AA90BF025CD451600BD5E8B /* DxeIpl.h */, + 9AA90BF125CD451600BD5E8B /* GuidedSectionExtraction.h */, + 9AA90BF225CD451600BD5E8B /* MemoryDiscovered.h */, + 9AA90BF325CD451600BD5E8B /* BlockIo.h */, + 9AA90BF425CD451600BD5E8B /* Pcd.h */, + 9AA90BF525CD451600BD5E8B /* LoadImage.h */, + 9AA90BF625CD451600BD5E8B /* FirmwareVolumeInfo2.h */, + 9AA90BF725CD451600BD5E8B /* PiPcd.h */, + 9AA90BF825CD451600BD5E8B /* Stall.h */, + 9AA90BF925CD451600BD5E8B /* PciCfg2.h */, + 9AA90BFA25CD451600BD5E8B /* Decompress.h */, + 9AA90BFB25CD451600BD5E8B /* PiPcdInfo.h */, + 9AA90BFC25CD451600BD5E8B /* MasterBootMode.h */, + 9AA90BFD25CD451600BD5E8B /* Capsule.h */, + 9AA90BFE25CD451600BD5E8B /* SuperIo.h */, + 9AA90BFF25CD451600BD5E8B /* BlockIo2.h */, + 9AA90C0025CD451600BD5E8B /* FirmwareVolumeInfo.h */, + 9AA90C0125CD451600BD5E8B /* I2cMaster.h */, + 9AA90C0225CD451600BD5E8B /* RecoveryModule.h */, + 9AA90C0325CD451600BD5E8B /* SecPlatformInformation2.h */, + 9AA90C0425CD451600BD5E8B /* Graphics.h */, + 9AA90C0525CD451700BD5E8B /* MpServices.h */, + 9AA90C0625CD451700BD5E8B /* TemporaryRamSupport.h */, + 9AA90C0725CD451700BD5E8B /* TemporaryRamDone.h */, + 9AA90C0825CD451700BD5E8B /* DeviceRecoveryModule.h */, + 9AA90C0925CD451700BD5E8B /* LoadFile.h */, + 9AA90C0A25CD451700BD5E8B /* PcdInfo.h */, + 9AA90C0B25CD451700BD5E8B /* Reset.h */, + 9AA90C0C25CD451700BD5E8B /* StatusCode.h */, + 9AA90C0D25CD451700BD5E8B /* SecPlatformInformation.h */, + 9AA90C0E25CD451700BD5E8B /* CpuIo.h */, + 9AA90C0F25CD451700BD5E8B /* FirmwareVolume.h */, + ); + path = Ppi; + sourceTree = ""; + }; + 9AA90C1125CD451700BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA90C2825CD451700BD5E8B /* BaseCacheMaintenanceLib */, + 9AA90E4D25CD451800BD5E8B /* BaseCpuLib */, + 9AA90C3D25CD451700BD5E8B /* BaseDebugLibNull */, + 9AA90F3025CD451800BD5E8B /* BaseDebugLibSerialPort */, + 9AA90C2425CD451700BD5E8B /* BaseDebugPrintErrorLevelLib */, + 9AA90F8E25CD451900BD5E8B /* BaseExtractGuidedSectionLib */, + 9AA90FC125CD451900BD5E8B /* BaseIoLibIntrinsic */, + 9AA90C6525CD451700BD5E8B /* BaseLib */, + 9AA90F0325CD451800BD5E8B /* BaseMemoryLib */, + 9AA9100425CD451900BD5E8B /* BaseMemoryLibMmx */, + 9AA90E7A25CD451800BD5E8B /* BaseMemoryLibOptDxe */, + 9AA9105C25CD451900BD5E8B /* BaseMemoryLibOptPei */, + 9AA90DE025CD451800BD5E8B /* BaseMemoryLibRepStr */, + 9AA90F3425CD451800BD5E8B /* BaseMemoryLibSse2 */, + 9AA9102F25CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib */, + 9AA90EC425CD451800BD5E8B /* BasePcdLibNull */, + 9AA90EE925CD451800BD5E8B /* BasePciCf8Lib */, + 9AA90C4A25CD451700BD5E8B /* BasePciExpressLib */, + 9AA90C3525CD451700BD5E8B /* BasePciLibCf8 */, + 9AA9104025CD451900BD5E8B /* BasePciLibPciExpress */, + 9AA90F8625CD451800BD5E8B /* BasePciSegmentInfoLibNull */, + 9AA90EBC25CD451800BD5E8B /* BasePciSegmentLibPci */, + 9AA910AB25CD451900BD5E8B /* BasePeCoffExtraActionLibNull */, + 9AA90FE025CD451900BD5E8B /* BasePeCoffGetEntryPointLib */, + 9AA90EDD25CD451800BD5E8B /* BasePeCoffLib */, + 9AA90EB825CD451800BD5E8B /* BasePerformanceLibNull */, + 9AA9105425CD451900BD5E8B /* BasePostCodeLibDebug */, + 9AA90ED525CD451800BD5E8B /* BasePostCodeLibPort80 */, + 9AA9109725CD451900BD5E8B /* BasePrintLib */, + 9AA910A325CD451900BD5E8B /* BaseReportStatusCodeLibNull */, + 9AA90ECD25CD451800BD5E8B /* BaseRngLib */, + 9AA90F6A25CD451800BD5E8B /* BaseS3BootScriptLibNull */, + 9AA90F2C25CD451800BD5E8B /* BaseS3IoLib */, + 9AA9109325CD451900BD5E8B /* BaseS3PciLib */, + 9AA90F8225CD451800BD5E8B /* BaseS3PciSegmentLib */, + 9AA90C4E25CD451700BD5E8B /* BaseS3SmbusLib */, + 9AA9105825CD451900BD5E8B /* BaseS3StallLib */, + 9AA90EF125CD451800BD5E8B /* BaseSafeIntLib */, + 9AA90F6625CD451800BD5E8B /* BaseSerialPortLibNull */, + 9AA90F2425CD451800BD5E8B /* BaseSmbusLibNull */, + 9AA90EC825CD451800BD5E8B /* BaseStackCheckLib */, + 9AA90E0B25CD451800BD5E8B /* BaseSynchronizationLib */, + 9AA90F2825CD451800BD5E8B /* BaseTimerLibNullTemplate */, + 9AA90F5F25CD451800BD5E8B /* BaseUefiDecompressLib */, + 9AA90ED125CD451800BD5E8B /* DxeCoreEntryPoint */, + 9AA90FEC25CD451900BD5E8B /* DxeCoreHobLib */, + 9AA90EFB25CD451800BD5E8B /* DxeExtractGuidedSectionLib */, + 9AA90F7E25CD451800BD5E8B /* DxeHobLib */, + 9AA9104E25CD451900BD5E8B /* DxeHstiLib */, + 9AA90C2E25CD451700BD5E8B /* DxeIoLibCpuIo2 */, + 9AA90F6E25CD451800BD5E8B /* DxePcdLib */, + 9AA9100025CD451900BD5E8B /* DxeRuntimeDebugLibSerialPort */, + 9AA90E7625CD451800BD5E8B /* DxeRuntimePciExpressLib */, + 9AA90C5225CD451700BD5E8B /* DxeServicesLib */, + 9AA910A725CD451900BD5E8B /* DxeServicesTableLib */, + 9AA90F1E25CD451800BD5E8B /* DxeSmbusLib */, + 9AA90EED25CD451800BD5E8B /* MmServicesTableLib */, + 9AA90E4425CD451800BD5E8B /* PciSegmentLibSegmentInfo */, + 9AA90ED925CD451800BD5E8B /* PeiCoreEntryPoint */, + 9AA90EC025CD451800BD5E8B /* PeiDxePostCodeLibReportStatusCode */, + 9AA90E6625CD451800BD5E8B /* PeiExtractGuidedSectionLib */, + 9AA90FAA25CD451900BD5E8B /* PeiHobLib */, + 9AA9109D25CD451900BD5E8B /* PeiIoLibCpuIo */, + 9AA90F9B25CD451900BD5E8B /* PeiMemoryAllocationLib */, + 9AA90FAE25CD451900BD5E8B /* PeiMemoryLib */, + 9AA9108B25CD451900BD5E8B /* PeimEntryPoint */, + 9AA90FF425CD451900BD5E8B /* PeiPcdLib */, + 9AA90C1A25CD451700BD5E8B /* PeiPciLibPciCfg2 */, + 9AA90FDC25CD451900BD5E8B /* PeiPciSegmentLibPciCfg2 */, + 9AA90F7A25CD451800BD5E8B /* PeiResourcePublicationLib */, + 9AA90C4625CD451700BD5E8B /* PeiServicesLib */, + 9AA90C3925CD451700BD5E8B /* PeiServicesTablePointerLib */, + 9AA90C1225CD451700BD5E8B /* PeiServicesTablePointerLibIdt */, + 9AA90C1E25CD451700BD5E8B /* PeiSmbusLibSmbus2Ppi */, + 9AA90C5925CD451700BD5E8B /* SecPeiDxeTimerLibCpu */, + 9AA9108F25CD451900BD5E8B /* SmiHandlerProfileLibNull */, + 9AA90FE825CD451900BD5E8B /* SmmIoLib */, + 9AA90F1725CD451800BD5E8B /* SmmIoLibSmmCpuIo2 */, + 9AA90EE525CD451800BD5E8B /* SmmLibNull */, + 9AA90FF825CD451900BD5E8B /* SmmMemLib */, + 9AA90F8A25CD451800BD5E8B /* SmmMemoryAllocationLib */, + 9AA90E7325CD451800BD5E8B /* SmmPciExpressLib */, + 9AA90C6125CD451700BD5E8B /* SmmPciLibPciRootBridgeIo */, + 9AA90F7225CD451800BD5E8B /* SmmPeriodicSmiLib */, + 9AA90EF725CD451800BD5E8B /* SmmServicesTableLib */, + 9AA90C5D25CD451700BD5E8B /* StandaloneMmDriverEntryPoint */, + 9AA90C1625CD451700BD5E8B /* StandaloneMmServicesTableLib */, + 9AA90EFF25CD451800BD5E8B /* UefiApplicationEntryPoint */, + 9AA90F9225CD451900BD5E8B /* UefiBootServicesTableLib */, + 9AA9103B25CD451900BD5E8B /* UefiDebugLibConOut */, + 9AA90E6E25CD451800BD5E8B /* UefiDebugLibDebugPortProtocol */, + 9AA90F9625CD451900BD5E8B /* UefiDebugLibStdErr */, + 9AA90F9F25CD451900BD5E8B /* UefiDevicePathLib */, + 9AA90FE425CD451900BD5E8B /* UefiDevicePathLibDevicePathProtocol */, + 9AA90E6A25CD451800BD5E8B /* UefiDriverEntryPoint */, + 9AA90FFC25CD451900BD5E8B /* UefiFileHandleLib */, + 9AA9104425CD451900BD5E8B /* UefiLib */, + 9AA9103325CD451900BD5E8B /* UefiMemoryAllocationLib */, + 9AA90E3125CD451800BD5E8B /* UefiMemoryLib */, + 9AA9108725CD451900BD5E8B /* UefiPciLibPciRootBridgeIo */, + 9AA90C4125CD451700BD5E8B /* UefiPciSegmentLibPciRootBridgeIo */, + 9AA9103725CD451900BD5E8B /* UefiRuntimeLib */, + 9AA90FF025CD451900BD5E8B /* UefiRuntimeServicesTableLib */, + 9AA90F7625CD451800BD5E8B /* UefiScsiLib */, + 9AA910AF25CD451900BD5E8B /* UefiUsbLib */, + ); + path = Library; + sourceTree = ""; + }; + 9AA90C1225CD451700BD5E8B /* PeiServicesTablePointerLibIdt */ = { + isa = PBXGroup; + children = ( + 9AA90C1325CD451700BD5E8B /* PeiServicesTablePointerLibIdt.uni */, + 9AA90C1425CD451700BD5E8B /* PeiServicesTablePointerLibIdt.inf */, + 9AA90C1525CD451700BD5E8B /* PeiServicesTablePointer.c */, + ); + path = PeiServicesTablePointerLibIdt; + sourceTree = ""; + }; + 9AA90C1625CD451700BD5E8B /* StandaloneMmServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA90C1725CD451700BD5E8B /* StandaloneMmServicesTableLib.c */, + 9AA90C1825CD451700BD5E8B /* StandaloneMmServicesTableLib.inf */, + 9AA90C1925CD451700BD5E8B /* StandaloneMmServicesTableLib.uni */, + ); + path = StandaloneMmServicesTableLib; + sourceTree = ""; + }; + 9AA90C1A25CD451700BD5E8B /* PeiPciLibPciCfg2 */ = { + isa = PBXGroup; + children = ( + 9AA90C1B25CD451700BD5E8B /* PeiPciLibPciCfg2.uni */, + 9AA90C1C25CD451700BD5E8B /* PeiPciLibPciCfg2.inf */, + 9AA90C1D25CD451700BD5E8B /* PciLib.c */, + ); + path = PeiPciLibPciCfg2; + sourceTree = ""; + }; + 9AA90C1E25CD451700BD5E8B /* PeiSmbusLibSmbus2Ppi */ = { + isa = PBXGroup; + children = ( + 9AA90C1F25CD451700BD5E8B /* SmbusLib.c */, + 9AA90C2025CD451700BD5E8B /* InternalSmbusLib.h */, + 9AA90C2125CD451700BD5E8B /* PeiSmbusLib.c */, + 9AA90C2225CD451700BD5E8B /* PeiSmbusLibSmbus2Ppi.inf */, + 9AA90C2325CD451700BD5E8B /* PeiSmbusLibSmbus2Ppi.uni */, + ); + path = PeiSmbusLibSmbus2Ppi; + sourceTree = ""; + }; + 9AA90C2425CD451700BD5E8B /* BaseDebugPrintErrorLevelLib */ = { + isa = PBXGroup; + children = ( + 9AA90C2525CD451700BD5E8B /* BaseDebugPrintErrorLevelLib.c */, + 9AA90C2625CD451700BD5E8B /* BaseDebugPrintErrorLevelLib.inf */, + 9AA90C2725CD451700BD5E8B /* BaseDebugPrintErrorLevelLib.uni */, + ); + path = BaseDebugPrintErrorLevelLib; + sourceTree = ""; + }; + 9AA90C2825CD451700BD5E8B /* BaseCacheMaintenanceLib */ = { + isa = PBXGroup; + children = ( + 9AA90C2925CD451700BD5E8B /* BaseCacheMaintenanceLib.inf */, + 9AA90C2A25CD451700BD5E8B /* BaseCacheMaintenanceLib.uni */, + 9AA90C2B25CD451700BD5E8B /* X86Cache.c */, + 9AA90C2C25CD451700BD5E8B /* ArmCache.c */, + 9AA90C2D25CD451700BD5E8B /* EbcCache.c */, + ); + path = BaseCacheMaintenanceLib; + sourceTree = ""; + }; + 9AA90C2E25CD451700BD5E8B /* DxeIoLibCpuIo2 */ = { + isa = PBXGroup; + children = ( + 9AA90C2F25CD451700BD5E8B /* IoLibMmioBuffer.c */, + 9AA90C3025CD451700BD5E8B /* IoLib.c */, + 9AA90C3125CD451700BD5E8B /* IoHighLevel.c */, + 9AA90C3225CD451700BD5E8B /* DxeIoLibCpuIo2.uni */, + 9AA90C3325CD451700BD5E8B /* DxeCpuIo2LibInternal.h */, + 9AA90C3425CD451700BD5E8B /* DxeIoLibCpuIo2.inf */, + ); + path = DxeIoLibCpuIo2; + sourceTree = ""; + }; + 9AA90C3525CD451700BD5E8B /* BasePciLibCf8 */ = { + isa = PBXGroup; + children = ( + 9AA90C3625CD451700BD5E8B /* BasePciLibCf8.inf */, + 9AA90C3725CD451700BD5E8B /* BasePciLibCf8.uni */, + 9AA90C3825CD451700BD5E8B /* PciLib.c */, + ); + path = BasePciLibCf8; + sourceTree = ""; + }; + 9AA90C3925CD451700BD5E8B /* PeiServicesTablePointerLib */ = { + isa = PBXGroup; + children = ( + 9AA90C3A25CD451700BD5E8B /* PeiServicesTablePointerLib.uni */, + 9AA90C3B25CD451700BD5E8B /* PeiServicesTablePointerLib.inf */, + 9AA90C3C25CD451700BD5E8B /* PeiServicesTablePointer.c */, + ); + path = PeiServicesTablePointerLib; + sourceTree = ""; + }; + 9AA90C3D25CD451700BD5E8B /* BaseDebugLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90C3E25CD451700BD5E8B /* BaseDebugLibNull.inf */, + 9AA90C3F25CD451700BD5E8B /* BaseDebugLibNull.uni */, + 9AA90C4025CD451700BD5E8B /* DebugLib.c */, + ); + path = BaseDebugLibNull; + sourceTree = ""; + }; + 9AA90C4125CD451700BD5E8B /* UefiPciSegmentLibPciRootBridgeIo */ = { + isa = PBXGroup; + children = ( + 9AA90C4225CD451700BD5E8B /* PciSegmentLib.h */, + 9AA90C4325CD451700BD5E8B /* UefiPciSegmentLibPciRootBridgeIo.inf */, + 9AA90C4425CD451700BD5E8B /* UefiPciSegmentLibPciRootBridgeIo.uni */, + 9AA90C4525CD451700BD5E8B /* PciSegmentLib.c */, + ); + path = UefiPciSegmentLibPciRootBridgeIo; + sourceTree = ""; + }; + 9AA90C4625CD451700BD5E8B /* PeiServicesLib */ = { + isa = PBXGroup; + children = ( + 9AA90C4725CD451700BD5E8B /* PeiServicesLib.inf */, + 9AA90C4825CD451700BD5E8B /* PeiServicesLib.c */, + 9AA90C4925CD451700BD5E8B /* PeiServicesLib.uni */, + ); + path = PeiServicesLib; + sourceTree = ""; + }; + 9AA90C4A25CD451700BD5E8B /* BasePciExpressLib */ = { + isa = PBXGroup; + children = ( + 9AA90C4B25CD451700BD5E8B /* BasePciExpressLib.uni */, + 9AA90C4C25CD451700BD5E8B /* BasePciExpressLib.inf */, + 9AA90C4D25CD451700BD5E8B /* PciExpressLib.c */, + ); + path = BasePciExpressLib; + sourceTree = ""; + }; + 9AA90C4E25CD451700BD5E8B /* BaseS3SmbusLib */ = { + isa = PBXGroup; + children = ( + 9AA90C4F25CD451700BD5E8B /* BaseS3SmbusLib.inf */, + 9AA90C5025CD451700BD5E8B /* BaseS3SmbusLib.uni */, + 9AA90C5125CD451700BD5E8B /* S3SmbusLib.c */, + ); + path = BaseS3SmbusLib; + sourceTree = ""; + }; + 9AA90C5225CD451700BD5E8B /* DxeServicesLib */ = { + isa = PBXGroup; + children = ( + 9AA90C5325CD451700BD5E8B /* Allocate.c */, + 9AA90C5425CD451700BD5E8B /* DxeServicesLib.c */, + 9AA90C5525CD451700BD5E8B /* X64 */, + 9AA90C5725CD451700BD5E8B /* DxeServicesLib.uni */, + 9AA90C5825CD451700BD5E8B /* DxeServicesLib.inf */, + ); + path = DxeServicesLib; + sourceTree = ""; + }; + 9AA90C5525CD451700BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90C5625CD451700BD5E8B /* Allocate.c */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90C5925CD451700BD5E8B /* SecPeiDxeTimerLibCpu */ = { + isa = PBXGroup; + children = ( + 9AA90C5A25CD451700BD5E8B /* X86TimerLib.c */, + 9AA90C5B25CD451700BD5E8B /* SecPeiDxeTimerLibCpu.inf */, + 9AA90C5C25CD451700BD5E8B /* SecPeiDxeTimerLibCpu.uni */, + ); + path = SecPeiDxeTimerLibCpu; + sourceTree = ""; + }; + 9AA90C5D25CD451700BD5E8B /* StandaloneMmDriverEntryPoint */ = { + isa = PBXGroup; + children = ( + 9AA90C5E25CD451700BD5E8B /* StandaloneMmDriverEntryPoint.inf */, + 9AA90C5F25CD451700BD5E8B /* StandaloneMmDriverEntryPoint.uni */, + 9AA90C6025CD451700BD5E8B /* StandaloneMmDriverEntryPoint.c */, + ); + path = StandaloneMmDriverEntryPoint; + sourceTree = ""; + }; + 9AA90C6125CD451700BD5E8B /* SmmPciLibPciRootBridgeIo */ = { + isa = PBXGroup; + children = ( + 9AA90C6225CD451700BD5E8B /* SmmPciLibPciRootBridgeIo.uni */, + 9AA90C6325CD451700BD5E8B /* SmmPciLibPciRootBridgeIo.inf */, + 9AA90C6425CD451700BD5E8B /* PciLib.c */, + ); + path = SmmPciLibPciRootBridgeIo; + sourceTree = ""; + }; + 9AA90C6525CD451700BD5E8B /* BaseLib */ = { + isa = PBXGroup; + children = ( + 9AA90DCA25CD451700BD5E8B /* AArch64 */, + 9AA90DB125CD451700BD5E8B /* Arm */, + 9AA90DC925CD451700BD5E8B /* ARShiftU64.c */, + 9AA90C7625CD451700BD5E8B /* BaseLib.inf */, + 9AA90C7125CD451700BD5E8B /* BaseLib.uni */, + 9AA90C6D25CD451700BD5E8B /* BaseLibInternals.h */, + 9AA90CDE25CD451700BD5E8B /* BitField.c */, + 9AA90CDA25CD451700BD5E8B /* CheckSum.c */, + 9AA90DAA25CD451700BD5E8B /* ChkStkGcc.c */, + 9AA90C7525CD451700BD5E8B /* Cpu.c */, + 9AA90CD425CD451700BD5E8B /* CpuDeadLoop.c */, + 9AA90C6E25CD451700BD5E8B /* DivS64x64Remainder.c */, + 9AA90DA425CD451700BD5E8B /* DivU64x32.c */, + 9AA90DA525CD451700BD5E8B /* DivU64x32Remainder.c */, + 9AA90CD225CD451700BD5E8B /* DivU64x64Remainder.c */, + 9AA90C6825CD451700BD5E8B /* Ebc */, + 9AA90C7025CD451700BD5E8B /* FilePaths.c */, + 9AA90DA125CD451700BD5E8B /* GetPowerOfTwo32.c */, + 9AA90C7725CD451700BD5E8B /* GetPowerOfTwo64.c */, + 9AA90DAF25CD451700BD5E8B /* HighBitSet32.c */, + 9AA90CE025CD451700BD5E8B /* HighBitSet64.c */, + 9AA90CE525CD451700BD5E8B /* Ia32 */, + 9AA90DDE25CD451700BD5E8B /* LinkedList.c */, + 9AA90C7425CD451700BD5E8B /* LongJump.c */, + 9AA90DDB25CD451700BD5E8B /* LowBitSet32.c */, + 9AA90CD525CD451700BD5E8B /* LowBitSet64.c */, + 9AA90DDC25CD451700BD5E8B /* LRotU32.c */, + 9AA90CD625CD451700BD5E8B /* LRotU64.c */, + 9AA90CE125CD451700BD5E8B /* LShiftU64.c */, + 9AA90DA225CD451700BD5E8B /* Math64.c */, + 9AA90DDD25CD451700BD5E8B /* ModU64x32.c */, + 9AA90CE325CD451700BD5E8B /* MultS64x64.c */, + 9AA90CDB25CD451700BD5E8B /* MultU64x32.c */, + 9AA90DC625CD451700BD5E8B /* MultU64x64.c */, + 9AA90DA325CD451700BD5E8B /* RRotU32.c */, + 9AA90C7325CD451700BD5E8B /* RRotU64.c */, + 9AA90DA825CD451700BD5E8B /* RShiftU64.c */, + 9AA90CE225CD451700BD5E8B /* SafeString.c */, + 9AA90DAB25CD451700BD5E8B /* SetJump.c */, + 9AA90CDC25CD451700BD5E8B /* String.c */, + 9AA90DAE25CD451700BD5E8B /* SwapBytes16.c */, + 9AA90C6625CD451700BD5E8B /* SwapBytes32.c */, + 9AA90DA725CD451700BD5E8B /* SwapBytes64.c */, + 9AA90DA925CD451700BD5E8B /* SwitchStack.c */, + 9AA90CE425CD451700BD5E8B /* Unaligned.c */, + 9AA90C7825CD451700BD5E8B /* X64 */, + 9AA90CDD25CD451700BD5E8B /* X86DisablePaging32.c */, + 9AA90DC725CD451700BD5E8B /* X86DisablePaging64.c */, + 9AA90DAC25CD451700BD5E8B /* X86EnablePaging32.c */, + 9AA90CDF25CD451700BD5E8B /* X86EnablePaging64.c */, + 9AA90C7225CD451700BD5E8B /* X86FxRestore.c */, + 9AA90CD825CD451700BD5E8B /* X86FxSave.c */, + 9AA90CD925CD451700BD5E8B /* X86GetInterruptState.c */, + 9AA90DA625CD451700BD5E8B /* X86MemoryFence.c */, + 9AA90CD125CD451700BD5E8B /* X86Msr.c */, + 9AA90CD725CD451700BD5E8B /* X86PatchInstruction.c */, + 9AA90DB025CD451700BD5E8B /* X86RdRand.c */, + 9AA90DC825CD451700BD5E8B /* X86ReadGdtr.c */, + 9AA90C6725CD451700BD5E8B /* X86ReadIdtr.c */, + 9AA90DDF25CD451700BD5E8B /* X86SpeculationBarrier.c */, + 9AA90CD325CD451700BD5E8B /* X86Thunk.c */, + 9AA90DAD25CD451700BD5E8B /* X86WriteGdtr.c */, + 9AA90C6F25CD451700BD5E8B /* X86WriteIdtr.c */, + ); + path = BaseLib; + sourceTree = ""; + }; + 9AA90C6825CD451700BD5E8B /* Ebc */ = { + isa = PBXGroup; + children = ( + 9AA90C6925CD451700BD5E8B /* CpuBreakpoint.c */, + 9AA90C6A25CD451700BD5E8B /* SwitchStack.c */, + 9AA90C6B25CD451700BD5E8B /* SetJumpLongJump.c */, + 9AA90C6C25CD451700BD5E8B /* SpeculationBarrier.c */, + ); + path = Ebc; + sourceTree = ""; + }; + 9AA90C7825CD451700BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90C7925CD451700BD5E8B /* WriteMm4.nasm */, + 9AA90C7A25CD451700BD5E8B /* WriteDr6.nasm */, + 9AA90C7B25CD451700BD5E8B /* Nasm.inc */, + 9AA90C7C25CD451700BD5E8B /* WriteTr.nasm */, + 9AA90C7D25CD451700BD5E8B /* WriteCr4.nasm */, + 9AA90C7E25CD451700BD5E8B /* Mwait.nasm */, + 9AA90C7F25CD451700BD5E8B /* ReadFs.nasm */, + 9AA90C8025CD451700BD5E8B /* ReadDs.nasm */, + 9AA90C8125CD451700BD5E8B /* FxRestore.nasm */, + 9AA90C8225CD451700BD5E8B /* ReadMm4.nasm */, + 9AA90C8325CD451700BD5E8B /* ReadDr6.nasm */, + 9AA90C8425CD451700BD5E8B /* CpuPause.nasm */, + 9AA90C8525CD451700BD5E8B /* ReadCr4.nasm */, + 9AA90C8625CD451700BD5E8B /* WriteLdtr.nasm */, + 9AA90C8725CD451700BD5E8B /* ReadDr7.nasm */, + 9AA90C8825CD451700BD5E8B /* SwitchStack.nasm */, + 9AA90C8925CD451700BD5E8B /* ReadMm5.nasm */, + 9AA90C8A25CD451700BD5E8B /* WriteMsr64.nasm */, + 9AA90C8B25CD451700BD5E8B /* ReadIdtr.nasm */, + 9AA90C8C25CD451700BD5E8B /* WriteDr7.nasm */, + 9AA90C8D25CD451700BD5E8B /* WriteMm5.nasm */, + 9AA90C8E25CD451700BD5E8B /* ReadMm2.nasm */, + 9AA90C8F25CD451700BD5E8B /* ReadDr0.nasm */, + 9AA90C9025CD451700BD5E8B /* ReadEs.nasm */, + 9AA90C9125CD451700BD5E8B /* ReadCr2.nasm */, + 9AA90C9225CD451700BD5E8B /* EnableCache.nasm */, + 9AA90C9325CD451700BD5E8B /* CpuIdEx.nasm */, + 9AA90C9425CD451700BD5E8B /* SetJump.nasm */, + 9AA90C9525CD451700BD5E8B /* WriteMm2.nasm */, + 9AA90C9625CD451700BD5E8B /* EnableInterrupts.nasm */, + 9AA90C9725CD451700BD5E8B /* RdRand.nasm */, + 9AA90C9825CD451700BD5E8B /* WriteDr0.nasm */, + 9AA90C9925CD451700BD5E8B /* DisableCache.nasm */, + 9AA90C9A25CD451700BD5E8B /* WriteCr2.nasm */, + 9AA90C9B25CD451700BD5E8B /* ReadGs.nasm */, + 9AA90C9C25CD451700BD5E8B /* WriteGdtr.nasm */, + 9AA90C9D25CD451700BD5E8B /* ReadCs.nasm */, + 9AA90C9E25CD451700BD5E8B /* EnableDisableInterrupts.nasm */, + 9AA90C9F25CD451700BD5E8B /* WriteCr3.nasm */, + 9AA90CA025CD451700BD5E8B /* WriteDr1.nasm */, + 9AA90CA125CD451700BD5E8B /* ReadMsr64.c */, + 9AA90CA225CD451700BD5E8B /* WriteMm3.nasm */, + 9AA90CA325CD451700BD5E8B /* Thunk16.nasm */, + 9AA90CA425CD451700BD5E8B /* ReadCr3.nasm */, + 9AA90CA525CD451700BD5E8B /* ReadDr1.nasm */, + 9AA90CA625CD451700BD5E8B /* ReadMm3.nasm */, + 9AA90CA725CD451700BD5E8B /* ReadCr0.nasm */, + 9AA90CA825CD451700BD5E8B /* DisableInterrupts.nasm */, + 9AA90CA925CD451700BD5E8B /* ReadDr2.nasm */, + 9AA90CAA25CD451700BD5E8B /* Lfence.nasm */, + 9AA90CAB25CD451700BD5E8B /* ReadMm0.nasm */, + 9AA90CAC25CD451700BD5E8B /* DisablePaging64.nasm */, + 9AA90CAD25CD451700BD5E8B /* WriteCr0.nasm */, + 9AA90CAE25CD451700BD5E8B /* WriteDr2.nasm */, + 9AA90CAF25CD451700BD5E8B /* WriteMm0.nasm */, + 9AA90CB025CD451700BD5E8B /* GccInline.c */, + 9AA90CB125CD451700BD5E8B /* CpuBreakpoint.c */, + 9AA90CB225CD451700BD5E8B /* WriteMm1.nasm */, + 9AA90CB325CD451700BD5E8B /* ReadTr.nasm */, + 9AA90CB425CD451700BD5E8B /* WriteDr3.nasm */, + 9AA90CB525CD451700BD5E8B /* ReadMm1.nasm */, + 9AA90CB625CD451700BD5E8B /* ReadDr3.nasm */, + 9AA90CB725CD451700BD5E8B /* CpuBreakpoint.nasm */, + 9AA90CB825CD451700BD5E8B /* Invd.nasm */, + 9AA90CB925CD451700BD5E8B /* LongJump.nasm */, + 9AA90CBA25CD451700BD5E8B /* ReadGdtr.nasm */, + 9AA90CBB25CD451700BD5E8B /* Wbinvd.nasm */, + 9AA90CBC25CD451700BD5E8B /* ReadEflags.nasm */, + 9AA90CBD25CD451700BD5E8B /* WriteMsr64.c */, + 9AA90CBE25CD451700BD5E8B /* Non-existing.c */, + 9AA90CBF25CD451700BD5E8B /* WriteDr4.nasm */, + 9AA90CC025CD451700BD5E8B /* FlushCacheLine.nasm */, + 9AA90CC125CD451700BD5E8B /* WriteMm6.nasm */, + 9AA90CC225CD451700BD5E8B /* ReadLdtr.nasm */, + 9AA90CC325CD451700BD5E8B /* WriteIdtr.nasm */, + 9AA90CC425CD451700BD5E8B /* FxSave.nasm */, + 9AA90CC525CD451700BD5E8B /* Monitor.nasm */, + 9AA90CC625CD451700BD5E8B /* ReadDr4.nasm */, + 9AA90CC725CD451700BD5E8B /* ReadMm6.nasm */, + 9AA90CC825CD451700BD5E8B /* ReadMsr64.nasm */, + 9AA90CC925CD451700BD5E8B /* ReadMm7.nasm */, + 9AA90CCA25CD451700BD5E8B /* ReadDr5.nasm */, + 9AA90CCB25CD451700BD5E8B /* ReadSs.nasm */, + 9AA90CCC25CD451700BD5E8B /* WriteMm7.nasm */, + 9AA90CCD25CD451700BD5E8B /* CpuId.nasm */, + 9AA90CCE25CD451700BD5E8B /* WriteDr5.nasm */, + 9AA90CCF25CD451700BD5E8B /* ReadPmc.nasm */, + 9AA90CD025CD451700BD5E8B /* ReadTsc.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90CE525CD451700BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA90CE625CD451700BD5E8B /* EnablePaging32.c */, + 9AA90CE725CD451700BD5E8B /* WriteMm4.nasm */, + 9AA90CE825CD451700BD5E8B /* WriteDr3.c */, + 9AA90CE925CD451700BD5E8B /* ReadGdtr.c */, + 9AA90CEA25CD451700BD5E8B /* WriteDr6.nasm */, + 9AA90CEB25CD451700BD5E8B /* WriteTr.nasm */, + 9AA90CEC25CD451700BD5E8B /* WriteCr4.nasm */, + 9AA90CED25CD451700BD5E8B /* ReadDr2.c */, + 9AA90CEE25CD451700BD5E8B /* Mwait.nasm */, + 9AA90CEF25CD451700BD5E8B /* ReadFs.nasm */, + 9AA90CF025CD451700BD5E8B /* ReadDs.nasm */, + 9AA90CF125CD451700BD5E8B /* FxRestore.nasm */, + 9AA90CF225CD451700BD5E8B /* ReadSs.c */, + 9AA90CF325CD451700BD5E8B /* ReadMm4.nasm */, + 9AA90CF425CD451700BD5E8B /* DivS64x64Remainder.c */, + 9AA90CF525CD451700BD5E8B /* Monitor.c */, + 9AA90CF625CD451700BD5E8B /* ReadDr6.nasm */, + 9AA90CF725CD451700BD5E8B /* WriteGdtr.c */, + 9AA90CF825CD451700BD5E8B /* CpuPause.nasm */, + 9AA90CF925CD451700BD5E8B /* ReadDr6.c */, + 9AA90CFA25CD451700BD5E8B /* ReadPmc.c */, + 9AA90CFB25CD451700BD5E8B /* Wbinvd.c */, + 9AA90CFC25CD451700BD5E8B /* DisablePaging32.c */, + 9AA90CFD25CD451700BD5E8B /* RShiftU64.nasm */, + 9AA90CFE25CD451700BD5E8B /* ReadCr4.nasm */, + 9AA90CFF25CD451700BD5E8B /* Invd.c */, + 9AA90D0025CD451700BD5E8B /* WriteDr7.c */, + 9AA90D0125CD451700BD5E8B /* WriteMm7.c */, + 9AA90D0225CD451700BD5E8B /* RRotU64.c */, + 9AA90D0325CD451700BD5E8B /* ReadCr2.c */, + 9AA90D0425CD451700BD5E8B /* LShiftU64.nasm */, + 9AA90D0525CD451700BD5E8B /* ReadTr.c */, + 9AA90D0625CD451700BD5E8B /* ReadMm6.c */, + 9AA90D0725CD451700BD5E8B /* WriteLdtr.nasm */, + 9AA90D0825CD451700BD5E8B /* ReadDr7.nasm */, + 9AA90D0925CD451700BD5E8B /* ReadMm5.nasm */, + 9AA90D0A25CD451700BD5E8B /* WriteCr3.c */, + 9AA90D0B25CD451700BD5E8B /* WriteMsr64.nasm */, + 9AA90D0C25CD451700BD5E8B /* CpuPause.c */, + 9AA90D0D25CD451700BD5E8B /* ReadMm2.c */, + 9AA90D0E25CD451700BD5E8B /* ReadIdtr.nasm */, + 9AA90D0F25CD451700BD5E8B /* WriteDr7.nasm */, + 9AA90D1025CD451700BD5E8B /* CpuIdEx.c */, + 9AA90D1125CD451700BD5E8B /* WriteMm3.c */, + 9AA90D1225CD451700BD5E8B /* WriteMm5.nasm */, + 9AA90D1325CD451700BD5E8B /* ReadDr1.c */, + 9AA90D1425CD451700BD5E8B /* ReadMm2.nasm */, + 9AA90D1525CD451700BD5E8B /* ReadDr0.nasm */, + 9AA90D1625CD451700BD5E8B /* ReadEs.nasm */, + 9AA90D1725CD451700BD5E8B /* ReadEs.c */, + 9AA90D1825CD451700BD5E8B /* FlushCacheLine.c */, + 9AA90D1925CD451700BD5E8B /* ReadCr2.nasm */, + 9AA90D1A25CD451700BD5E8B /* WriteDr0.c */, + 9AA90D1B25CD451700BD5E8B /* DisableInterrupts.c */, + 9AA90D1C25CD451700BD5E8B /* EnableCache.nasm */, + 9AA90D1D25CD451700BD5E8B /* CpuIdEx.nasm */, + 9AA90D1E25CD451700BD5E8B /* SetJump.nasm */, + 9AA90D1F25CD451700BD5E8B /* WriteMm2.nasm */, + 9AA90D2025CD451700BD5E8B /* EnableInterrupts.nasm */, + 9AA90D2125CD451700BD5E8B /* RdRand.nasm */, + 9AA90D2225CD451700BD5E8B /* WriteDr0.nasm */, + 9AA90D2325CD451700BD5E8B /* DisableCache.nasm */, + 9AA90D2425CD451700BD5E8B /* LRotU64.c */, + 9AA90D2525CD451700BD5E8B /* WriteDr4.c */, + 9AA90D2625CD451700BD5E8B /* WriteCr2.nasm */, + 9AA90D2725CD451700BD5E8B /* ReadGs.nasm */, + 9AA90D2825CD451700BD5E8B /* WriteGdtr.nasm */, + 9AA90D2925CD451700BD5E8B /* ReadDr5.c */, + 9AA90D2A25CD451700BD5E8B /* EnableCache.c */, + 9AA90D2B25CD451700BD5E8B /* ReadMm5.c */, + 9AA90D2C25CD451700BD5E8B /* ReadCs.nasm */, + 9AA90D2D25CD451700BD5E8B /* EnableInterrupts.c */, + 9AA90D2E25CD451700BD5E8B /* WriteCr0.c */, + 9AA90D2F25CD451700BD5E8B /* EnableDisableInterrupts.nasm */, + 9AA90D3025CD451700BD5E8B /* MultU64x32.c */, + 9AA90D3125CD451700BD5E8B /* WriteCr3.nasm */, + 9AA90D3225CD451700BD5E8B /* DivU64x64Remainder.nasm */, + 9AA90D3325CD451700BD5E8B /* WriteMm4.c */, + 9AA90D3425CD451700BD5E8B /* WriteDr1.nasm */, + 9AA90D3525CD451700BD5E8B /* WriteLdtr.c */, + 9AA90D3625CD451700BD5E8B /* ReadMsr64.c */, + 9AA90D3725CD451700BD5E8B /* WriteMm3.nasm */, + 9AA90D3825CD451700BD5E8B /* Thunk16.nasm */, + 9AA90D3925CD451700BD5E8B /* ReadCr3.nasm */, + 9AA90D3A25CD451700BD5E8B /* WriteMm0.c */, + 9AA90D3B25CD451700BD5E8B /* ReadDs.c */, + 9AA90D3C25CD451700BD5E8B /* FxSave.c */, + 9AA90D3D25CD451700BD5E8B /* WriteCr4.c */, + 9AA90D3E25CD451700BD5E8B /* ReadDr1.nasm */, + 9AA90D3F25CD451700BD5E8B /* ReadMm1.c */, + 9AA90D4025CD451700BD5E8B /* ReadMm3.nasm */, + 9AA90D4125CD451700BD5E8B /* ReadLdtr.c */, + 9AA90D4225CD451700BD5E8B /* ARShiftU64.nasm */, + 9AA90D4325CD451700BD5E8B /* LShiftU64.c */, + 9AA90D4425CD451700BD5E8B /* ReadCr0.nasm */, + 9AA90D4525CD451700BD5E8B /* ReadDr0.c */, + 9AA90D4625CD451700BD5E8B /* DisableInterrupts.nasm */, + 9AA90D4725CD451700BD5E8B /* SwapBytes64.nasm */, + 9AA90D4825CD451700BD5E8B /* ReadCs.c */, + 9AA90D4925CD451700BD5E8B /* ReadDr2.nasm */, + 9AA90D4A25CD451700BD5E8B /* Lfence.nasm */, + 9AA90D4B25CD451700BD5E8B /* ReadMm0.nasm */, + 9AA90D4C25CD451700BD5E8B /* WriteDr1.c */, + 9AA90D4D25CD451700BD5E8B /* MultU64x64.nasm */, + 9AA90D4E25CD451700BD5E8B /* WriteDr5.c */, + 9AA90D4F25CD451700BD5E8B /* LRotU64.nasm */, + 9AA90D5025CD451700BD5E8B /* Mwait.c */, + 9AA90D5125CD451700BD5E8B /* WriteCr0.nasm */, + 9AA90D5225CD451700BD5E8B /* RRotU64.nasm */, + 9AA90D5325CD451700BD5E8B /* ReadDr4.c */, + 9AA90D5425CD451700BD5E8B /* ReadGs.c */, + 9AA90D5525CD451700BD5E8B /* WriteDr2.nasm */, + 9AA90D5625CD451700BD5E8B /* WriteMm0.nasm */, + 9AA90D5725CD451700BD5E8B /* GccInline.c */, + 9AA90D5825CD451700BD5E8B /* CpuBreakpoint.c */, + 9AA90D5925CD451700BD5E8B /* WriteMm1.nasm */, + 9AA90D5A25CD451700BD5E8B /* ReadTr.nasm */, + 9AA90D5B25CD451700BD5E8B /* InternalSwitchStack.c */, + 9AA90D5C25CD451700BD5E8B /* DivU64x32.c */, + 9AA90D5D25CD451700BD5E8B /* ReadMm4.c */, + 9AA90D5E25CD451700BD5E8B /* DivU64x32Remainder.c */, + 9AA90D5F25CD451700BD5E8B /* WriteDr3.nasm */, + 9AA90D6025CD451700BD5E8B /* ReadFs.c */, + 9AA90D6125CD451700BD5E8B /* ReadCr0.c */, + 9AA90D6225CD451700BD5E8B /* CpuId.c */, + 9AA90D6325CD451700BD5E8B /* MultU64x32.nasm */, + 9AA90D6425CD451700BD5E8B /* WriteMm5.c */, + 9AA90D6525CD451700BD5E8B /* DisablePaging32.nasm */, + 9AA90D6625CD451700BD5E8B /* SwapBytes64.c */, + 9AA90D6725CD451700BD5E8B /* RShiftU64.c */, + 9AA90D6825CD451700BD5E8B /* ReadMm1.nasm */, + 9AA90D6925CD451700BD5E8B /* WriteMm1.c */, + 9AA90D6A25CD451700BD5E8B /* ReadDr3.nasm */, + 9AA90D6B25CD451700BD5E8B /* ReadCr4.c */, + 9AA90D6C25CD451700BD5E8B /* DivU64x32.nasm */, + 9AA90D6D25CD451700BD5E8B /* CpuBreakpoint.nasm */, + 9AA90D6E25CD451700BD5E8B /* Invd.nasm */, + 9AA90D6F25CD451700BD5E8B /* ReadMm0.c */, + 9AA90D7025CD451700BD5E8B /* LongJump.nasm */, + 9AA90D7125CD451700BD5E8B /* DisableCache.c */, + 9AA90D7225CD451700BD5E8B /* ReadGdtr.nasm */, + 9AA90D7325CD451700BD5E8B /* Wbinvd.nasm */, + 9AA90D7425CD451700BD5E8B /* ReadEflags.nasm */, + 9AA90D7525CD451700BD5E8B /* FxRestore.c */, + 9AA90D7625CD451700BD5E8B /* WriteMsr64.c */, + 9AA90D7725CD451700BD5E8B /* Non-existing.c */, + 9AA90D7825CD451700BD5E8B /* WriteDr2.c */, + 9AA90D7925CD451700BD5E8B /* EnablePaging64.nasm */, + 9AA90D7A25CD451700BD5E8B /* WriteDr4.nasm */, + 9AA90D7B25CD451700BD5E8B /* FlushCacheLine.nasm */, + 9AA90D7C25CD451700BD5E8B /* WriteIdtr.c */, + 9AA90D7D25CD451700BD5E8B /* ReadDr3.c */, + 9AA90D7E25CD451700BD5E8B /* WriteMm6.nasm */, + 9AA90D7F25CD451700BD5E8B /* ReadLdtr.nasm */, + 9AA90D8025CD451700BD5E8B /* ReadDr7.c */, + 9AA90D8125CD451700BD5E8B /* ReadEflags.c */, + 9AA90D8225CD451700BD5E8B /* WriteIdtr.nasm */, + 9AA90D8325CD451700BD5E8B /* MultU64x64.c */, + 9AA90D8425CD451700BD5E8B /* DivU64x32Remainder.nasm */, + 9AA90D8525CD451700BD5E8B /* FxSave.nasm */, + 9AA90D8625CD451700BD5E8B /* Monitor.nasm */, + 9AA90D8725CD451700BD5E8B /* WriteDr6.c */, + 9AA90D8825CD451700BD5E8B /* ReadDr4.nasm */, + 9AA90D8925CD451700BD5E8B /* ReadMm6.nasm */, + 9AA90D8A25CD451700BD5E8B /* ReadMsr64.nasm */, + 9AA90D8B25CD451700BD5E8B /* ReadIdtr.c */, + 9AA90D8C25CD451700BD5E8B /* ARShiftU64.c */, + 9AA90D8D25CD451700BD5E8B /* ReadCr3.c */, + 9AA90D8E25CD451700BD5E8B /* ReadMm7.nasm */, + 9AA90D8F25CD451700BD5E8B /* ReadDr5.nasm */, + 9AA90D9025CD451700BD5E8B /* WriteMm6.c */, + 9AA90D9125CD451700BD5E8B /* ReadTsc.c */, + 9AA90D9225CD451700BD5E8B /* WriteCr2.c */, + 9AA90D9325CD451700BD5E8B /* ModU64x32.c */, + 9AA90D9425CD451700BD5E8B /* ReadSs.nasm */, + 9AA90D9525CD451700BD5E8B /* ReadMm7.c */, + 9AA90D9625CD451700BD5E8B /* EnableDisableInterrupts.c */, + 9AA90D9725CD451700BD5E8B /* WriteMm7.nasm */, + 9AA90D9825CD451700BD5E8B /* ReadMm3.c */, + 9AA90D9925CD451700BD5E8B /* CpuId.nasm */, + 9AA90D9A25CD451700BD5E8B /* InternalSwitchStack.nasm */, + 9AA90D9B25CD451700BD5E8B /* WriteDr5.nasm */, + 9AA90D9C25CD451700BD5E8B /* ReadPmc.nasm */, + 9AA90D9D25CD451700BD5E8B /* WriteMm2.c */, + 9AA90D9E25CD451700BD5E8B /* ModU64x32.nasm */, + 9AA90D9F25CD451700BD5E8B /* ReadTsc.nasm */, + 9AA90DA025CD451700BD5E8B /* EnablePaging32.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA90DB125CD451700BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA90DB225CD451700BD5E8B /* Math64.S */, + 9AA90DB325CD451700BD5E8B /* CpuPause.asm */, + 9AA90DB425CD451700BD5E8B /* EnableInterrupts.asm */, + 9AA90DB525CD451700BD5E8B /* SwitchStack.S */, + 9AA90DB625CD451700BD5E8B /* CpuBreakpoint.S */, + 9AA90DB725CD451700BD5E8B /* SetJumpLongJump.asm */, + 9AA90DB825CD451700BD5E8B /* CpuBreakpoint.asm */, + 9AA90DB925CD451700BD5E8B /* GetInterruptsState.S */, + 9AA90DBA25CD451700BD5E8B /* MemoryFence.asm */, + 9AA90DBB25CD451700BD5E8B /* SpeculationBarrier.S */, + 9AA90DBC25CD451700BD5E8B /* DisableInterrupts.asm */, + 9AA90DBD25CD451700BD5E8B /* SetJumpLongJump.S */, + 9AA90DBE25CD451700BD5E8B /* GetInterruptsState.asm */, + 9AA90DBF25CD451700BD5E8B /* Unaligned.c */, + 9AA90DC025CD451700BD5E8B /* InternalSwitchStack.c */, + 9AA90DC125CD451700BD5E8B /* SpeculationBarrier.asm */, + 9AA90DC225CD451700BD5E8B /* MemoryFence.S */, + 9AA90DC325CD451700BD5E8B /* DisableInterrupts.S */, + 9AA90DC425CD451700BD5E8B /* SwitchStack.asm */, + 9AA90DC525CD451700BD5E8B /* EnableInterrupts.S */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA90DCA25CD451700BD5E8B /* AArch64 */ = { + isa = PBXGroup; + children = ( + 9AA90DCB25CD451700BD5E8B /* EnableInterrupts.asm */, + 9AA90DCC25CD451700BD5E8B /* SwitchStack.S */, + 9AA90DCD25CD451700BD5E8B /* CpuBreakpoint.S */, + 9AA90DCE25CD451700BD5E8B /* SetJumpLongJump.asm */, + 9AA90DCF25CD451700BD5E8B /* CpuBreakpoint.asm */, + 9AA90DD025CD451700BD5E8B /* GetInterruptsState.S */, + 9AA90DD125CD451700BD5E8B /* MemoryFence.asm */, + 9AA90DD225CD451700BD5E8B /* SpeculationBarrier.S */, + 9AA90DD325CD451700BD5E8B /* DisableInterrupts.asm */, + 9AA90DD425CD451700BD5E8B /* SetJumpLongJump.S */, + 9AA90DD525CD451700BD5E8B /* GetInterruptsState.asm */, + 9AA90DD625CD451700BD5E8B /* SpeculationBarrier.asm */, + 9AA90DD725CD451700BD5E8B /* MemoryFence.S */, + 9AA90DD825CD451700BD5E8B /* DisableInterrupts.S */, + 9AA90DD925CD451700BD5E8B /* SwitchStack.asm */, + 9AA90DDA25CD451700BD5E8B /* EnableInterrupts.S */, + ); + path = AArch64; + sourceTree = ""; + }; + 9AA90DE025CD451800BD5E8B /* BaseMemoryLibRepStr */ = { + isa = PBXGroup; + children = ( + 9AA90DE125CD451800BD5E8B /* SetMem64Wrapper.c */, + 9AA90DE225CD451800BD5E8B /* ZeroMemWrapper.c */, + 9AA90DE325CD451800BD5E8B /* CopyMemWrapper.c */, + 9AA90DE425CD451800BD5E8B /* ScanMem64Wrapper.c */, + 9AA90DE525CD451800BD5E8B /* X64 */, + 9AA90DF225CD451800BD5E8B /* ScanMem8Wrapper.c */, + 9AA90DF325CD451800BD5E8B /* SetMem32Wrapper.c */, + 9AA90DF425CD451800BD5E8B /* Ia32 */, + 9AA90E0125CD451800BD5E8B /* ScanMem32Wrapper.c */, + 9AA90E0225CD451800BD5E8B /* IsZeroBufferWrapper.c */, + 9AA90E0325CD451800BD5E8B /* SetMemWrapper.c */, + 9AA90E0425CD451800BD5E8B /* CompareMemWrapper.c */, + 9AA90E0525CD451800BD5E8B /* SetMem16Wrapper.c */, + 9AA90E0625CD451800BD5E8B /* BaseMemoryLibRepStr.uni */, + 9AA90E0725CD451800BD5E8B /* MemLibGuid.c */, + 9AA90E0825CD451800BD5E8B /* MemLibInternals.h */, + 9AA90E0925CD451800BD5E8B /* ScanMem16Wrapper.c */, + 9AA90E0A25CD451800BD5E8B /* BaseMemoryLibRepStr.inf */, + ); + path = BaseMemoryLibRepStr; + sourceTree = ""; + }; + 9AA90DE525CD451800BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90DE625CD451800BD5E8B /* ZeroMem.nasm */, + 9AA90DE725CD451800BD5E8B /* CompareMem.nasm */, + 9AA90DE825CD451800BD5E8B /* SetMem16.nasm */, + 9AA90DE925CD451800BD5E8B /* ScanMem64.nasm */, + 9AA90DEA25CD451800BD5E8B /* ScanMem32.nasm */, + 9AA90DEB25CD451800BD5E8B /* SetMem.nasm */, + 9AA90DEC25CD451800BD5E8B /* IsZeroBuffer.nasm */, + 9AA90DED25CD451800BD5E8B /* SetMem64.nasm */, + 9AA90DEE25CD451800BD5E8B /* ScanMem8.nasm */, + 9AA90DEF25CD451800BD5E8B /* SetMem32.nasm */, + 9AA90DF025CD451800BD5E8B /* ScanMem16.nasm */, + 9AA90DF125CD451800BD5E8B /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90DF425CD451800BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA90DF525CD451800BD5E8B /* ZeroMem.nasm */, + 9AA90DF625CD451800BD5E8B /* CompareMem.nasm */, + 9AA90DF725CD451800BD5E8B /* SetMem16.nasm */, + 9AA90DF825CD451800BD5E8B /* ScanMem64.nasm */, + 9AA90DF925CD451800BD5E8B /* ScanMem32.nasm */, + 9AA90DFA25CD451800BD5E8B /* SetMem.nasm */, + 9AA90DFB25CD451800BD5E8B /* IsZeroBuffer.nasm */, + 9AA90DFC25CD451800BD5E8B /* SetMem64.nasm */, + 9AA90DFD25CD451800BD5E8B /* ScanMem8.nasm */, + 9AA90DFE25CD451800BD5E8B /* SetMem32.nasm */, + 9AA90DFF25CD451800BD5E8B /* ScanMem16.nasm */, + 9AA90E0025CD451800BD5E8B /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA90E0B25CD451800BD5E8B /* BaseSynchronizationLib */ = { + isa = PBXGroup; + children = ( + 9AA90E0C25CD451800BD5E8B /* BaseSynchronizationLib.uni */, + 9AA90E0D25CD451800BD5E8B /* Ebc */, + 9AA90E0F25CD451800BD5E8B /* BaseSynchronizationLib.inf */, + 9AA90E1025CD451800BD5E8B /* X64 */, + 9AA90E1A25CD451800BD5E8B /* InterlockedIncrementMsc.c */, + 9AA90E1B25CD451800BD5E8B /* Ia32 */, + 9AA90E2625CD451800BD5E8B /* BaseSynchronizationLibInternals.h */, + 9AA90E2725CD451800BD5E8B /* SynchronizationMsc.c */, + 9AA90E2825CD451800BD5E8B /* Synchronization.c */, + 9AA90E2925CD451800BD5E8B /* Arm */, + 9AA90E2C25CD451800BD5E8B /* AArch64 */, + 9AA90E2F25CD451800BD5E8B /* SynchronizationGcc.c */, + 9AA90E3025CD451800BD5E8B /* InterlockedDecrementMsc.c */, + ); + path = BaseSynchronizationLib; + sourceTree = ""; + }; + 9AA90E0D25CD451800BD5E8B /* Ebc */ = { + isa = PBXGroup; + children = ( + 9AA90E0E25CD451800BD5E8B /* Synchronization.c */, + ); + path = Ebc; + sourceTree = ""; + }; + 9AA90E1025CD451800BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90E1125CD451800BD5E8B /* InterlockedCompareExchange64.c */, + 9AA90E1225CD451800BD5E8B /* InterlockedIncrement.nasm */, + 9AA90E1325CD451800BD5E8B /* InterlockedCompareExchange16.nasm */, + 9AA90E1425CD451800BD5E8B /* InterlockedCompareExchange16.c */, + 9AA90E1525CD451800BD5E8B /* GccInline.c */, + 9AA90E1625CD451800BD5E8B /* InterlockedCompareExchange32.c */, + 9AA90E1725CD451800BD5E8B /* InterlockedCompareExchange64.nasm */, + 9AA90E1825CD451800BD5E8B /* InterlockedCompareExchange32.nasm */, + 9AA90E1925CD451800BD5E8B /* InterlockedDecrement.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90E1B25CD451800BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA90E1C25CD451800BD5E8B /* InterlockedCompareExchange64.c */, + 9AA90E1D25CD451800BD5E8B /* InternalGetSpinLockProperties.c */, + 9AA90E1E25CD451800BD5E8B /* InterlockedIncrement.nasm */, + 9AA90E1F25CD451800BD5E8B /* InterlockedCompareExchange16.nasm */, + 9AA90E2025CD451800BD5E8B /* InterlockedCompareExchange16.c */, + 9AA90E2125CD451800BD5E8B /* GccInline.c */, + 9AA90E2225CD451800BD5E8B /* InterlockedCompareExchange32.c */, + 9AA90E2325CD451800BD5E8B /* InterlockedCompareExchange64.nasm */, + 9AA90E2425CD451800BD5E8B /* InterlockedCompareExchange32.nasm */, + 9AA90E2525CD451800BD5E8B /* InterlockedDecrement.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA90E2925CD451800BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA90E2A25CD451800BD5E8B /* Synchronization.S */, + 9AA90E2B25CD451800BD5E8B /* Synchronization.asm */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA90E2C25CD451800BD5E8B /* AArch64 */ = { + isa = PBXGroup; + children = ( + 9AA90E2D25CD451800BD5E8B /* Synchronization.S */, + 9AA90E2E25CD451800BD5E8B /* Synchronization.asm */, + ); + path = AArch64; + sourceTree = ""; + }; + 9AA90E3125CD451800BD5E8B /* UefiMemoryLib */ = { + isa = PBXGroup; + children = ( + 9AA90E3225CD451800BD5E8B /* SetMem64Wrapper.c */, + 9AA90E3325CD451800BD5E8B /* ZeroMemWrapper.c */, + 9AA90E3425CD451800BD5E8B /* CopyMemWrapper.c */, + 9AA90E3525CD451800BD5E8B /* ScanMem64Wrapper.c */, + 9AA90E3625CD451800BD5E8B /* MemLibGeneric.c */, + 9AA90E3725CD451800BD5E8B /* ScanMem8Wrapper.c */, + 9AA90E3825CD451800BD5E8B /* SetMem32Wrapper.c */, + 9AA90E3925CD451800BD5E8B /* ScanMem32Wrapper.c */, + 9AA90E3A25CD451800BD5E8B /* IsZeroBufferWrapper.c */, + 9AA90E3B25CD451800BD5E8B /* SetMemWrapper.c */, + 9AA90E3C25CD451800BD5E8B /* MemLib.c */, + 9AA90E3D25CD451800BD5E8B /* CompareMemWrapper.c */, + 9AA90E3E25CD451800BD5E8B /* UefiMemoryLib.inf */, + 9AA90E3F25CD451800BD5E8B /* SetMem16Wrapper.c */, + 9AA90E4025CD451800BD5E8B /* MemLibGuid.c */, + 9AA90E4125CD451800BD5E8B /* UefiMemoryLib.uni */, + 9AA90E4225CD451800BD5E8B /* MemLibInternals.h */, + 9AA90E4325CD451800BD5E8B /* ScanMem16Wrapper.c */, + ); + path = UefiMemoryLib; + sourceTree = ""; + }; + 9AA90E4425CD451800BD5E8B /* PciSegmentLibSegmentInfo */ = { + isa = PBXGroup; + children = ( + 9AA90E4525CD451800BD5E8B /* PciSegmentLibCommon.h */, + 9AA90E4625CD451800BD5E8B /* DxeRuntimePciSegmentLibSegmentInfo.inf */, + 9AA90E4725CD451800BD5E8B /* BasePciSegmentLibSegmentInfo.inf */, + 9AA90E4825CD451800BD5E8B /* DxeRuntimePciSegmentLibSegmentInfo.uni */, + 9AA90E4925CD451800BD5E8B /* BasePciSegmentLibSegmentInfo.uni */, + 9AA90E4A25CD451800BD5E8B /* BasePciSegmentLib.c */, + 9AA90E4B25CD451800BD5E8B /* PciSegmentLibCommon.c */, + 9AA90E4C25CD451800BD5E8B /* DxeRuntimePciSegmentLib.c */, + ); + path = PciSegmentLibSegmentInfo; + sourceTree = ""; + }; + 9AA90E4D25CD451800BD5E8B /* BaseCpuLib */ = { + isa = PBXGroup; + children = ( + 9AA90E4E25CD451800BD5E8B /* Ebc */, + 9AA90E5025CD451800BD5E8B /* X64 */, + 9AA90E5325CD451800BD5E8B /* BaseCpuLib.uni */, + 9AA90E5425CD451800BD5E8B /* BaseCpuLib.inf */, + 9AA90E5525CD451800BD5E8B /* Ia32 */, + 9AA90E5C25CD451800BD5E8B /* Arm */, + 9AA90E6125CD451800BD5E8B /* AArch64 */, + ); + path = BaseCpuLib; + sourceTree = ""; + }; + 9AA90E4E25CD451800BD5E8B /* Ebc */ = { + isa = PBXGroup; + children = ( + 9AA90E4F25CD451800BD5E8B /* CpuSleepFlushTlb.c */, + ); + path = Ebc; + sourceTree = ""; + }; + 9AA90E5025CD451800BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90E5125CD451800BD5E8B /* CpuSleep.nasm */, + 9AA90E5225CD451800BD5E8B /* CpuFlushTlb.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90E5525CD451800BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA90E5625CD451800BD5E8B /* CpuSleep.c */, + 9AA90E5725CD451800BD5E8B /* CpuFlushTlbGcc.c */, + 9AA90E5825CD451800BD5E8B /* CpuFlushTlb.c */, + 9AA90E5925CD451800BD5E8B /* CpuSleep.nasm */, + 9AA90E5A25CD451800BD5E8B /* CpuFlushTlb.nasm */, + 9AA90E5B25CD451800BD5E8B /* CpuSleepGcc.c */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA90E5C25CD451800BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA90E5D25CD451800BD5E8B /* CpuFlushTlb.S */, + 9AA90E5E25CD451800BD5E8B /* CpuFlushTlb.asm */, + 9AA90E5F25CD451800BD5E8B /* CpuSleep.asm */, + 9AA90E6025CD451800BD5E8B /* CpuSleep.S */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA90E6125CD451800BD5E8B /* AArch64 */ = { + isa = PBXGroup; + children = ( + 9AA90E6225CD451800BD5E8B /* CpuFlushTlb.S */, + 9AA90E6325CD451800BD5E8B /* CpuFlushTlb.asm */, + 9AA90E6425CD451800BD5E8B /* CpuSleep.asm */, + 9AA90E6525CD451800BD5E8B /* CpuSleep.S */, + ); + path = AArch64; + sourceTree = ""; + }; + 9AA90E6625CD451800BD5E8B /* PeiExtractGuidedSectionLib */ = { + isa = PBXGroup; + children = ( + 9AA90E6725CD451800BD5E8B /* PeiExtractGuidedSectionLib.c */, + 9AA90E6825CD451800BD5E8B /* PeiExtractGuidedSectionLib.uni */, + 9AA90E6925CD451800BD5E8B /* PeiExtractGuidedSectionLib.inf */, + ); + path = PeiExtractGuidedSectionLib; + sourceTree = ""; + }; + 9AA90E6A25CD451800BD5E8B /* UefiDriverEntryPoint */ = { + isa = PBXGroup; + children = ( + 9AA90E6B25CD451800BD5E8B /* DriverEntryPoint.c */, + 9AA90E6C25CD451800BD5E8B /* UefiDriverEntryPoint.inf */, + 9AA90E6D25CD451800BD5E8B /* UefiDriverEntryPoint.uni */, + ); + path = UefiDriverEntryPoint; + sourceTree = ""; + }; + 9AA90E6E25CD451800BD5E8B /* UefiDebugLibDebugPortProtocol */ = { + isa = PBXGroup; + children = ( + 9AA90E6F25CD451800BD5E8B /* DebugLibConstructor.c */, + 9AA90E7025CD451800BD5E8B /* DebugLib.c */, + 9AA90E7125CD451800BD5E8B /* UefiDebugLibDebugPortProtocol.uni */, + 9AA90E7225CD451800BD5E8B /* UefiDebugLibDebugPortProtocol.inf */, + ); + path = UefiDebugLibDebugPortProtocol; + sourceTree = ""; + }; + 9AA90E7325CD451800BD5E8B /* SmmPciExpressLib */ = { + isa = PBXGroup; + children = ( + 9AA90E7425CD451800BD5E8B /* SmmPciExpressLib.inf */, + 9AA90E7525CD451800BD5E8B /* PciExpressLib.c */, + ); + path = SmmPciExpressLib; + sourceTree = ""; + }; + 9AA90E7625CD451800BD5E8B /* DxeRuntimePciExpressLib */ = { + isa = PBXGroup; + children = ( + 9AA90E7725CD451800BD5E8B /* DxeRuntimePciExpressLib.uni */, + 9AA90E7825CD451800BD5E8B /* DxeRuntimePciExpressLib.inf */, + 9AA90E7925CD451800BD5E8B /* PciExpressLib.c */, + ); + path = DxeRuntimePciExpressLib; + sourceTree = ""; + }; + 9AA90E7A25CD451800BD5E8B /* BaseMemoryLibOptDxe */ = { + isa = PBXGroup; + children = ( + 9AA90E7B25CD451800BD5E8B /* SetMem64Wrapper.c */, + 9AA90E7C25CD451800BD5E8B /* ZeroMemWrapper.c */, + 9AA90E7D25CD451800BD5E8B /* CopyMemWrapper.c */, + 9AA90E7E25CD451800BD5E8B /* ScanMem64Wrapper.c */, + 9AA90E7F25CD451800BD5E8B /* X64 */, + 9AA90E8C25CD451800BD5E8B /* ScanMem8Wrapper.c */, + 9AA90E8D25CD451800BD5E8B /* SetMem32Wrapper.c */, + 9AA90E8E25CD451800BD5E8B /* Ia32 */, + 9AA90E9B25CD451800BD5E8B /* ScanMem32Wrapper.c */, + 9AA90E9C25CD451800BD5E8B /* IsZeroBufferWrapper.c */, + 9AA90E9D25CD451800BD5E8B /* SetMemWrapper.c */, + 9AA90E9E25CD451800BD5E8B /* CompareMemWrapper.c */, + 9AA90E9F25CD451800BD5E8B /* Arm */, + 9AA90EAC25CD451800BD5E8B /* BaseMemoryLibOptDxe.uni */, + 9AA90EAD25CD451800BD5E8B /* SetMem16Wrapper.c */, + 9AA90EAE25CD451800BD5E8B /* MemLibGuid.c */, + 9AA90EAF25CD451800BD5E8B /* AArch64 */, + 9AA90EB525CD451800BD5E8B /* MemLibInternals.h */, + 9AA90EB625CD451800BD5E8B /* BaseMemoryLibOptDxe.inf */, + 9AA90EB725CD451800BD5E8B /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLibOptDxe; + sourceTree = ""; + }; + 9AA90E7F25CD451800BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90E8025CD451800BD5E8B /* ZeroMem.nasm */, + 9AA90E8125CD451800BD5E8B /* CompareMem.nasm */, + 9AA90E8225CD451800BD5E8B /* SetMem16.nasm */, + 9AA90E8325CD451800BD5E8B /* ScanMem64.nasm */, + 9AA90E8425CD451800BD5E8B /* ScanMem32.nasm */, + 9AA90E8525CD451800BD5E8B /* SetMem.nasm */, + 9AA90E8625CD451800BD5E8B /* IsZeroBuffer.nasm */, + 9AA90E8725CD451800BD5E8B /* SetMem64.nasm */, + 9AA90E8825CD451800BD5E8B /* ScanMem8.nasm */, + 9AA90E8925CD451800BD5E8B /* SetMem32.nasm */, + 9AA90E8A25CD451800BD5E8B /* ScanMem16.nasm */, + 9AA90E8B25CD451800BD5E8B /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90E8E25CD451800BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA90E8F25CD451800BD5E8B /* ZeroMem.nasm */, + 9AA90E9025CD451800BD5E8B /* CompareMem.nasm */, + 9AA90E9125CD451800BD5E8B /* SetMem16.nasm */, + 9AA90E9225CD451800BD5E8B /* ScanMem64.nasm */, + 9AA90E9325CD451800BD5E8B /* ScanMem32.nasm */, + 9AA90E9425CD451800BD5E8B /* SetMem.nasm */, + 9AA90E9525CD451800BD5E8B /* IsZeroBuffer.nasm */, + 9AA90E9625CD451800BD5E8B /* SetMem64.nasm */, + 9AA90E9725CD451800BD5E8B /* ScanMem8.nasm */, + 9AA90E9825CD451800BD5E8B /* SetMem32.nasm */, + 9AA90E9925CD451800BD5E8B /* ScanMem16.nasm */, + 9AA90E9A25CD451800BD5E8B /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA90E9F25CD451800BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA90EA025CD451800BD5E8B /* ScanMemGeneric.c */, + 9AA90EA125CD451800BD5E8B /* CompareMem.asm */, + 9AA90EA225CD451800BD5E8B /* CopyMem.S */, + 9AA90EA325CD451800BD5E8B /* SetMem.S */, + 9AA90EA425CD451800BD5E8B /* ScanMem.asm */, + 9AA90EA525CD451800BD5E8B /* CopyMem.asm */, + 9AA90EA625CD451800BD5E8B /* CompareMem.S */, + 9AA90EA725CD451800BD5E8B /* MemLibGuid.c */, + 9AA90EA825CD451800BD5E8B /* SetMem.asm */, + 9AA90EA925CD451800BD5E8B /* CompareGuid.asm */, + 9AA90EAA25CD451800BD5E8B /* CompareGuid.S */, + 9AA90EAB25CD451800BD5E8B /* ScanMem.S */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA90EAF25CD451800BD5E8B /* AArch64 */ = { + isa = PBXGroup; + children = ( + 9AA90EB025CD451800BD5E8B /* CopyMem.S */, + 9AA90EB125CD451800BD5E8B /* SetMem.S */, + 9AA90EB225CD451800BD5E8B /* CompareMem.S */, + 9AA90EB325CD451800BD5E8B /* CompareGuid.S */, + 9AA90EB425CD451800BD5E8B /* ScanMem.S */, + ); + path = AArch64; + sourceTree = ""; + }; + 9AA90EB825CD451800BD5E8B /* BasePerformanceLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90EB925CD451800BD5E8B /* PerformanceLib.c */, + 9AA90EBA25CD451800BD5E8B /* BasePerformanceLibNull.inf */, + 9AA90EBB25CD451800BD5E8B /* BasePerformanceLibNull.uni */, + ); + path = BasePerformanceLibNull; + sourceTree = ""; + }; + 9AA90EBC25CD451800BD5E8B /* BasePciSegmentLibPci */ = { + isa = PBXGroup; + children = ( + 9AA90EBD25CD451800BD5E8B /* BasePciSegmentLibPci.inf */, + 9AA90EBE25CD451800BD5E8B /* BasePciSegmentLibPci.uni */, + 9AA90EBF25CD451800BD5E8B /* PciSegmentLib.c */, + ); + path = BasePciSegmentLibPci; + sourceTree = ""; + }; + 9AA90EC025CD451800BD5E8B /* PeiDxePostCodeLibReportStatusCode */ = { + isa = PBXGroup; + children = ( + 9AA90EC125CD451800BD5E8B /* PostCode.c */, + 9AA90EC225CD451800BD5E8B /* PeiDxePostCodeLibReportStatusCode.inf */, + 9AA90EC325CD451800BD5E8B /* PeiDxePostCodeLibReportStatusCode.uni */, + ); + path = PeiDxePostCodeLibReportStatusCode; + sourceTree = ""; + }; + 9AA90EC425CD451800BD5E8B /* BasePcdLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90EC525CD451800BD5E8B /* BasePcdLibNull.uni */, + 9AA90EC625CD451800BD5E8B /* BasePcdLibNull.inf */, + 9AA90EC725CD451800BD5E8B /* PcdLib.c */, + ); + path = BasePcdLibNull; + sourceTree = ""; + }; + 9AA90EC825CD451800BD5E8B /* BaseStackCheckLib */ = { + isa = PBXGroup; + children = ( + 9AA90EC925CD451800BD5E8B /* BaseStackCheckGcc.c */, + 9AA90ECA25CD451800BD5E8B /* BaseStackCheckLib.uni */, + 9AA90ECB25CD451800BD5E8B /* BaseStackCheckNull.c */, + 9AA90ECC25CD451800BD5E8B /* BaseStackCheckLib.inf */, + ); + path = BaseStackCheckLib; + sourceTree = ""; + }; + 9AA90ECD25CD451800BD5E8B /* BaseRngLib */ = { + isa = PBXGroup; + children = ( + 9AA90ECE25CD451800BD5E8B /* BaseRngLib.uni */, + 9AA90ECF25CD451800BD5E8B /* BaseRngLib.inf */, + 9AA90ED025CD451800BD5E8B /* BaseRng.c */, + ); + path = BaseRngLib; + sourceTree = ""; + }; + 9AA90ED125CD451800BD5E8B /* DxeCoreEntryPoint */ = { + isa = PBXGroup; + children = ( + 9AA90ED225CD451800BD5E8B /* DxeCoreEntryPoint.c */, + 9AA90ED325CD451800BD5E8B /* DxeCoreEntryPoint.uni */, + 9AA90ED425CD451800BD5E8B /* DxeCoreEntryPoint.inf */, + ); + path = DxeCoreEntryPoint; + sourceTree = ""; + }; + 9AA90ED525CD451800BD5E8B /* BasePostCodeLibPort80 */ = { + isa = PBXGroup; + children = ( + 9AA90ED625CD451800BD5E8B /* PostCode.c */, + 9AA90ED725CD451800BD5E8B /* BasePostCodeLibPort80.inf */, + 9AA90ED825CD451800BD5E8B /* BasePostCodeLibPort80.uni */, + ); + path = BasePostCodeLibPort80; + sourceTree = ""; + }; + 9AA90ED925CD451800BD5E8B /* PeiCoreEntryPoint */ = { + isa = PBXGroup; + children = ( + 9AA90EDA25CD451800BD5E8B /* PeiCoreEntryPoint.uni */, + 9AA90EDB25CD451800BD5E8B /* PeiCoreEntryPoint.inf */, + 9AA90EDC25CD451800BD5E8B /* PeiCoreEntryPoint.c */, + ); + path = PeiCoreEntryPoint; + sourceTree = ""; + }; + 9AA90EDD25CD451800BD5E8B /* BasePeCoffLib */ = { + isa = PBXGroup; + children = ( + 9AA90EDE25CD451800BD5E8B /* BasePeCoffLibInternals.h */, + 9AA90EDF25CD451800BD5E8B /* BasePeCoff.c */, + 9AA90EE025CD451800BD5E8B /* PeCoffLoaderEx.c */, + 9AA90EE125CD451800BD5E8B /* Arm */, + 9AA90EE325CD451800BD5E8B /* BasePeCoffLib.uni */, + 9AA90EE425CD451800BD5E8B /* BasePeCoffLib.inf */, + ); + path = BasePeCoffLib; + sourceTree = ""; + }; + 9AA90EE125CD451800BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA90EE225CD451800BD5E8B /* PeCoffLoaderEx.c */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA90EE525CD451800BD5E8B /* SmmLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90EE625CD451800BD5E8B /* SmmLibNull.uni */, + 9AA90EE725CD451800BD5E8B /* SmmLibNull.inf */, + 9AA90EE825CD451800BD5E8B /* SmmLibNull.c */, + ); + path = SmmLibNull; + sourceTree = ""; + }; + 9AA90EE925CD451800BD5E8B /* BasePciCf8Lib */ = { + isa = PBXGroup; + children = ( + 9AA90EEA25CD451800BD5E8B /* BasePciCf8Lib.uni */, + 9AA90EEB25CD451800BD5E8B /* BasePciCf8Lib.inf */, + 9AA90EEC25CD451800BD5E8B /* PciCf8Lib.c */, + ); + path = BasePciCf8Lib; + sourceTree = ""; + }; + 9AA90EED25CD451800BD5E8B /* MmServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA90EEE25CD451800BD5E8B /* MmServicesTableLib.uni */, + 9AA90EEF25CD451800BD5E8B /* MmServicesTableLib.inf */, + 9AA90EF025CD451800BD5E8B /* MmServicesTableLib.c */, + ); + path = MmServicesTableLib; + sourceTree = ""; + }; + 9AA90EF125CD451800BD5E8B /* BaseSafeIntLib */ = { + isa = PBXGroup; + children = ( + 9AA90EF225CD451800BD5E8B /* SafeIntLib64.c */, + 9AA90EF325CD451800BD5E8B /* SafeIntLibEbc.c */, + 9AA90EF425CD451800BD5E8B /* BaseSafeIntLib.inf */, + 9AA90EF525CD451800BD5E8B /* SafeIntLib32.c */, + 9AA90EF625CD451800BD5E8B /* SafeIntLib.c */, + ); + path = BaseSafeIntLib; + sourceTree = ""; + }; + 9AA90EF725CD451800BD5E8B /* SmmServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA90EF825CD451800BD5E8B /* SmmServicesTableLib.c */, + 9AA90EF925CD451800BD5E8B /* SmmServicesTableLib.inf */, + 9AA90EFA25CD451800BD5E8B /* SmmServicesTableLib.uni */, + ); + path = SmmServicesTableLib; + sourceTree = ""; + }; + 9AA90EFB25CD451800BD5E8B /* DxeExtractGuidedSectionLib */ = { + isa = PBXGroup; + children = ( + 9AA90EFC25CD451800BD5E8B /* DxeExtractGuidedSectionLib.uni */, + 9AA90EFD25CD451800BD5E8B /* DxeExtractGuidedSectionLib.inf */, + 9AA90EFE25CD451800BD5E8B /* DxeExtractGuidedSectionLib.c */, + ); + path = DxeExtractGuidedSectionLib; + sourceTree = ""; + }; + 9AA90EFF25CD451800BD5E8B /* UefiApplicationEntryPoint */ = { + isa = PBXGroup; + children = ( + 9AA90F0025CD451800BD5E8B /* UefiApplicationEntryPoint.uni */, + 9AA90F0125CD451800BD5E8B /* UefiApplicationEntryPoint.inf */, + 9AA90F0225CD451800BD5E8B /* ApplicationEntryPoint.c */, + ); + path = UefiApplicationEntryPoint; + sourceTree = ""; + }; + 9AA90F0325CD451800BD5E8B /* BaseMemoryLib */ = { + isa = PBXGroup; + children = ( + 9AA90F0425CD451800BD5E8B /* SetMem64Wrapper.c */, + 9AA90F0525CD451800BD5E8B /* ZeroMemWrapper.c */, + 9AA90F0625CD451800BD5E8B /* BaseMemoryLib.inf */, + 9AA90F0725CD451800BD5E8B /* CopyMemWrapper.c */, + 9AA90F0825CD451800BD5E8B /* ScanMem64Wrapper.c */, + 9AA90F0925CD451800BD5E8B /* BaseMemoryLib.uni */, + 9AA90F0A25CD451800BD5E8B /* MemLibGeneric.c */, + 9AA90F0B25CD451800BD5E8B /* ScanMem8Wrapper.c */, + 9AA90F0C25CD451800BD5E8B /* SetMem32Wrapper.c */, + 9AA90F0D25CD451800BD5E8B /* CopyMem.c */, + 9AA90F0E25CD451800BD5E8B /* SetMem.c */, + 9AA90F0F25CD451800BD5E8B /* ScanMem32Wrapper.c */, + 9AA90F1025CD451800BD5E8B /* IsZeroBufferWrapper.c */, + 9AA90F1125CD451800BD5E8B /* SetMemWrapper.c */, + 9AA90F1225CD451800BD5E8B /* CompareMemWrapper.c */, + 9AA90F1325CD451800BD5E8B /* SetMem16Wrapper.c */, + 9AA90F1425CD451800BD5E8B /* MemLibGuid.c */, + 9AA90F1525CD451800BD5E8B /* MemLibInternals.h */, + 9AA90F1625CD451800BD5E8B /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLib; + sourceTree = ""; + }; + 9AA90F1725CD451800BD5E8B /* SmmIoLibSmmCpuIo2 */ = { + isa = PBXGroup; + children = ( + 9AA90F1825CD451800BD5E8B /* IoLibMmioBuffer.c */, + 9AA90F1925CD451800BD5E8B /* IoLib.c */, + 9AA90F1A25CD451800BD5E8B /* IoHighLevel.c */, + 9AA90F1B25CD451800BD5E8B /* SmmCpuIoLibInternal.h */, + 9AA90F1C25CD451800BD5E8B /* SmmIoLibSmmCpuIo2.uni */, + 9AA90F1D25CD451800BD5E8B /* SmmIoLibSmmCpuIo2.inf */, + ); + path = SmmIoLibSmmCpuIo2; + sourceTree = ""; + }; + 9AA90F1E25CD451800BD5E8B /* DxeSmbusLib */ = { + isa = PBXGroup; + children = ( + 9AA90F1F25CD451800BD5E8B /* DxeSmbusLib.c */, + 9AA90F2025CD451800BD5E8B /* SmbusLib.c */, + 9AA90F2125CD451800BD5E8B /* InternalSmbusLib.h */, + 9AA90F2225CD451800BD5E8B /* DxeSmbusLib.inf */, + 9AA90F2325CD451800BD5E8B /* DxeSmbusLib.uni */, + ); + path = DxeSmbusLib; + sourceTree = ""; + }; + 9AA90F2425CD451800BD5E8B /* BaseSmbusLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90F2525CD451800BD5E8B /* BaseSmbusLibNull.c */, + 9AA90F2625CD451800BD5E8B /* BaseSmbusLibNull.uni */, + 9AA90F2725CD451800BD5E8B /* BaseSmbusLibNull.inf */, + ); + path = BaseSmbusLibNull; + sourceTree = ""; + }; + 9AA90F2825CD451800BD5E8B /* BaseTimerLibNullTemplate */ = { + isa = PBXGroup; + children = ( + 9AA90F2925CD451800BD5E8B /* BaseTimerLibNullTemplate.uni */, + 9AA90F2A25CD451800BD5E8B /* BaseTimerLibNullTemplate.inf */, + 9AA90F2B25CD451800BD5E8B /* TimerLibNull.c */, + ); + path = BaseTimerLibNullTemplate; + sourceTree = ""; + }; + 9AA90F2C25CD451800BD5E8B /* BaseS3IoLib */ = { + isa = PBXGroup; + children = ( + 9AA90F2D25CD451800BD5E8B /* BaseS3IoLib.inf */, + 9AA90F2E25CD451800BD5E8B /* BaseS3IoLib.uni */, + 9AA90F2F25CD451800BD5E8B /* S3IoLib.c */, + ); + path = BaseS3IoLib; + sourceTree = ""; + }; + 9AA90F3025CD451800BD5E8B /* BaseDebugLibSerialPort */ = { + isa = PBXGroup; + children = ( + 9AA90F3125CD451800BD5E8B /* BaseDebugLibSerialPort.uni */, + 9AA90F3225CD451800BD5E8B /* BaseDebugLibSerialPort.inf */, + 9AA90F3325CD451800BD5E8B /* DebugLib.c */, + ); + path = BaseDebugLibSerialPort; + sourceTree = ""; + }; + 9AA90F3425CD451800BD5E8B /* BaseMemoryLibSse2 */ = { + isa = PBXGroup; + children = ( + 9AA90F3525CD451800BD5E8B /* SetMem64Wrapper.c */, + 9AA90F3625CD451800BD5E8B /* ZeroMemWrapper.c */, + 9AA90F3725CD451800BD5E8B /* CopyMemWrapper.c */, + 9AA90F3825CD451800BD5E8B /* ScanMem64Wrapper.c */, + 9AA90F3925CD451800BD5E8B /* X64 */, + 9AA90F4625CD451800BD5E8B /* BaseMemoryLibSse2.uni */, + 9AA90F4725CD451800BD5E8B /* ScanMem8Wrapper.c */, + 9AA90F4825CD451800BD5E8B /* BaseMemoryLibSse2.inf */, + 9AA90F4925CD451800BD5E8B /* SetMem32Wrapper.c */, + 9AA90F4A25CD451800BD5E8B /* Ia32 */, + 9AA90F5725CD451800BD5E8B /* ScanMem32Wrapper.c */, + 9AA90F5825CD451800BD5E8B /* IsZeroBufferWrapper.c */, + 9AA90F5925CD451800BD5E8B /* SetMemWrapper.c */, + 9AA90F5A25CD451800BD5E8B /* CompareMemWrapper.c */, + 9AA90F5B25CD451800BD5E8B /* SetMem16Wrapper.c */, + 9AA90F5C25CD451800BD5E8B /* MemLibGuid.c */, + 9AA90F5D25CD451800BD5E8B /* MemLibInternals.h */, + 9AA90F5E25CD451800BD5E8B /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLibSse2; + sourceTree = ""; + }; + 9AA90F3925CD451800BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90F3A25CD451800BD5E8B /* ZeroMem.nasm */, + 9AA90F3B25CD451800BD5E8B /* CompareMem.nasm */, + 9AA90F3C25CD451800BD5E8B /* SetMem16.nasm */, + 9AA90F3D25CD451800BD5E8B /* ScanMem64.nasm */, + 9AA90F3E25CD451800BD5E8B /* ScanMem32.nasm */, + 9AA90F3F25CD451800BD5E8B /* SetMem.nasm */, + 9AA90F4025CD451800BD5E8B /* IsZeroBuffer.nasm */, + 9AA90F4125CD451800BD5E8B /* SetMem64.nasm */, + 9AA90F4225CD451800BD5E8B /* ScanMem8.nasm */, + 9AA90F4325CD451800BD5E8B /* SetMem32.nasm */, + 9AA90F4425CD451800BD5E8B /* ScanMem16.nasm */, + 9AA90F4525CD451800BD5E8B /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90F4A25CD451800BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA90F4B25CD451800BD5E8B /* ZeroMem.nasm */, + 9AA90F4C25CD451800BD5E8B /* CompareMem.nasm */, + 9AA90F4D25CD451800BD5E8B /* SetMem16.nasm */, + 9AA90F4E25CD451800BD5E8B /* ScanMem64.nasm */, + 9AA90F4F25CD451800BD5E8B /* ScanMem32.nasm */, + 9AA90F5025CD451800BD5E8B /* SetMem.nasm */, + 9AA90F5125CD451800BD5E8B /* IsZeroBuffer.nasm */, + 9AA90F5225CD451800BD5E8B /* SetMem64.nasm */, + 9AA90F5325CD451800BD5E8B /* ScanMem8.nasm */, + 9AA90F5425CD451800BD5E8B /* SetMem32.nasm */, + 9AA90F5525CD451800BD5E8B /* ScanMem16.nasm */, + 9AA90F5625CD451800BD5E8B /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA90F5F25CD451800BD5E8B /* BaseUefiDecompressLib */ = { + isa = PBXGroup; + children = ( + 9AA90F6025CD451800BD5E8B /* BaseUefiDecompressLib.uni */, + 9AA90F6125CD451800BD5E8B /* BaseUefiDecompressLib.inf */, + 9AA90F6225CD451800BD5E8B /* BaseUefiDecompressLibInternals.h */, + 9AA90F6325CD451800BD5E8B /* BaseUefiTianoCustomDecompressLib.inf */, + 9AA90F6425CD451800BD5E8B /* BaseUefiDecompressLib.c */, + 9AA90F6525CD451800BD5E8B /* BaseUefiTianoCustomDecompressLib.c */, + ); + path = BaseUefiDecompressLib; + sourceTree = ""; + }; + 9AA90F6625CD451800BD5E8B /* BaseSerialPortLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90F6725CD451800BD5E8B /* BaseSerialPortLibNull.uni */, + 9AA90F6825CD451800BD5E8B /* BaseSerialPortLibNull.inf */, + 9AA90F6925CD451800BD5E8B /* BaseSerialPortLibNull.c */, + ); + path = BaseSerialPortLibNull; + sourceTree = ""; + }; + 9AA90F6A25CD451800BD5E8B /* BaseS3BootScriptLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90F6B25CD451800BD5E8B /* BaseS3BootScriptLibNull.inf */, + 9AA90F6C25CD451800BD5E8B /* BootScriptLib.c */, + 9AA90F6D25CD451800BD5E8B /* BaseS3BootScriptLibNull.uni */, + ); + path = BaseS3BootScriptLibNull; + sourceTree = ""; + }; + 9AA90F6E25CD451800BD5E8B /* DxePcdLib */ = { + isa = PBXGroup; + children = ( + 9AA90F6F25CD451800BD5E8B /* DxePcdLib.c */, + 9AA90F7025CD451800BD5E8B /* DxePcdLib.uni */, + 9AA90F7125CD451800BD5E8B /* DxePcdLib.inf */, + ); + path = DxePcdLib; + sourceTree = ""; + }; + 9AA90F7225CD451800BD5E8B /* SmmPeriodicSmiLib */ = { + isa = PBXGroup; + children = ( + 9AA90F7325CD451800BD5E8B /* SmmPeriodicSmiLib.inf */, + 9AA90F7425CD451800BD5E8B /* SmmPeriodicSmiLib.uni */, + 9AA90F7525CD451800BD5E8B /* SmmPeriodicSmiLib.c */, + ); + path = SmmPeriodicSmiLib; + sourceTree = ""; + }; + 9AA90F7625CD451800BD5E8B /* UefiScsiLib */ = { + isa = PBXGroup; + children = ( + 9AA90F7725CD451800BD5E8B /* UefiScsiLib.c */, + 9AA90F7825CD451800BD5E8B /* UefiScsiLib.uni */, + 9AA90F7925CD451800BD5E8B /* UefiScsiLib.inf */, + ); + path = UefiScsiLib; + sourceTree = ""; + }; + 9AA90F7A25CD451800BD5E8B /* PeiResourcePublicationLib */ = { + isa = PBXGroup; + children = ( + 9AA90F7B25CD451800BD5E8B /* PeiResourcePublicationLib.c */, + 9AA90F7C25CD451800BD5E8B /* PeiResourcePublicationLib.inf */, + 9AA90F7D25CD451800BD5E8B /* PeiResourcePublicationLib.uni */, + ); + path = PeiResourcePublicationLib; + sourceTree = ""; + }; + 9AA90F7E25CD451800BD5E8B /* DxeHobLib */ = { + isa = PBXGroup; + children = ( + 9AA90F7F25CD451800BD5E8B /* DxeHobLib.inf */, + 9AA90F8025CD451800BD5E8B /* DxeHobLib.uni */, + 9AA90F8125CD451800BD5E8B /* HobLib.c */, + ); + path = DxeHobLib; + sourceTree = ""; + }; + 9AA90F8225CD451800BD5E8B /* BaseS3PciSegmentLib */ = { + isa = PBXGroup; + children = ( + 9AA90F8325CD451800BD5E8B /* S3PciSegmentLib.c */, + 9AA90F8425CD451800BD5E8B /* BaseS3PciSegmentLib.uni */, + 9AA90F8525CD451800BD5E8B /* BaseS3PciSegmentLib.inf */, + ); + path = BaseS3PciSegmentLib; + sourceTree = ""; + }; + 9AA90F8625CD451800BD5E8B /* BasePciSegmentInfoLibNull */ = { + isa = PBXGroup; + children = ( + 9AA90F8725CD451800BD5E8B /* BasePciSegmentInfoLibNull.inf */, + 9AA90F8825CD451800BD5E8B /* BasePciSegmentInfoLibNull.uni */, + 9AA90F8925CD451800BD5E8B /* PciSegmentInfoLib.c */, + ); + path = BasePciSegmentInfoLibNull; + sourceTree = ""; + }; + 9AA90F8A25CD451800BD5E8B /* SmmMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + 9AA90F8B25CD451800BD5E8B /* MemoryAllocationLib.c */, + 9AA90F8C25CD451800BD5E8B /* SmmMemoryAllocationLib.uni */, + 9AA90F8D25CD451800BD5E8B /* SmmMemoryAllocationLib.inf */, + ); + path = SmmMemoryAllocationLib; + sourceTree = ""; + }; + 9AA90F8E25CD451900BD5E8B /* BaseExtractGuidedSectionLib */ = { + isa = PBXGroup; + children = ( + 9AA90F8F25CD451900BD5E8B /* BaseExtractGuidedSectionLib.uni */, + 9AA90F9025CD451900BD5E8B /* BaseExtractGuidedSectionLib.inf */, + 9AA90F9125CD451900BD5E8B /* BaseExtractGuidedSectionLib.c */, + ); + path = BaseExtractGuidedSectionLib; + sourceTree = ""; + }; + 9AA90F9225CD451900BD5E8B /* UefiBootServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA90F9325CD451900BD5E8B /* UefiBootServicesTableLib.uni */, + 9AA90F9425CD451900BD5E8B /* UefiBootServicesTableLib.inf */, + 9AA90F9525CD451900BD5E8B /* UefiBootServicesTableLib.c */, + ); + path = UefiBootServicesTableLib; + sourceTree = ""; + }; + 9AA90F9625CD451900BD5E8B /* UefiDebugLibStdErr */ = { + isa = PBXGroup; + children = ( + 9AA90F9725CD451900BD5E8B /* DebugLibConstructor.c */, + 9AA90F9825CD451900BD5E8B /* UefiDebugLibStdErr.uni */, + 9AA90F9925CD451900BD5E8B /* UefiDebugLibStdErr.inf */, + 9AA90F9A25CD451900BD5E8B /* DebugLib.c */, + ); + path = UefiDebugLibStdErr; + sourceTree = ""; + }; + 9AA90F9B25CD451900BD5E8B /* PeiMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + 9AA90F9C25CD451900BD5E8B /* MemoryAllocationLib.c */, + 9AA90F9D25CD451900BD5E8B /* PeiMemoryAllocationLib.uni */, + 9AA90F9E25CD451900BD5E8B /* PeiMemoryAllocationLib.inf */, + ); + path = PeiMemoryAllocationLib; + sourceTree = ""; + }; + 9AA90F9F25CD451900BD5E8B /* UefiDevicePathLib */ = { + isa = PBXGroup; + children = ( + 9AA90FA025CD451900BD5E8B /* DevicePathUtilities.c */, + 9AA90FA125CD451900BD5E8B /* UefiDevicePathLib.c */, + 9AA90FA225CD451900BD5E8B /* DevicePathFromText.c */, + 9AA90FA325CD451900BD5E8B /* UefiDevicePathLibOptionalDevicePathProtocol.uni */, + 9AA90FA425CD451900BD5E8B /* DevicePathToText.c */, + 9AA90FA525CD451900BD5E8B /* UefiDevicePathLibOptionalDevicePathProtocol.c */, + 9AA90FA625CD451900BD5E8B /* UefiDevicePathLibOptionalDevicePathProtocol.inf */, + 9AA90FA725CD451900BD5E8B /* UefiDevicePathLib.uni */, + 9AA90FA825CD451900BD5E8B /* UefiDevicePathLib.inf */, + 9AA90FA925CD451900BD5E8B /* UefiDevicePathLib.h */, + ); + path = UefiDevicePathLib; + sourceTree = ""; + }; + 9AA90FAA25CD451900BD5E8B /* PeiHobLib */ = { + isa = PBXGroup; + children = ( + 9AA90FAB25CD451900BD5E8B /* PeiHobLib.uni */, + 9AA90FAC25CD451900BD5E8B /* PeiHobLib.inf */, + 9AA90FAD25CD451900BD5E8B /* HobLib.c */, + ); + path = PeiHobLib; + sourceTree = ""; + }; + 9AA90FAE25CD451900BD5E8B /* PeiMemoryLib */ = { + isa = PBXGroup; + children = ( + 9AA90FAF25CD451900BD5E8B /* SetMem64Wrapper.c */, + 9AA90FB025CD451900BD5E8B /* ZeroMemWrapper.c */, + 9AA90FB125CD451900BD5E8B /* CopyMemWrapper.c */, + 9AA90FB225CD451900BD5E8B /* ScanMem64Wrapper.c */, + 9AA90FB325CD451900BD5E8B /* MemLibGeneric.c */, + 9AA90FB425CD451900BD5E8B /* PeiMemoryLib.inf */, + 9AA90FB525CD451900BD5E8B /* ScanMem8Wrapper.c */, + 9AA90FB625CD451900BD5E8B /* PeiMemoryLib.uni */, + 9AA90FB725CD451900BD5E8B /* SetMem32Wrapper.c */, + 9AA90FB825CD451900BD5E8B /* ScanMem32Wrapper.c */, + 9AA90FB925CD451900BD5E8B /* IsZeroBufferWrapper.c */, + 9AA90FBA25CD451900BD5E8B /* SetMemWrapper.c */, + 9AA90FBB25CD451900BD5E8B /* MemLib.c */, + 9AA90FBC25CD451900BD5E8B /* CompareMemWrapper.c */, + 9AA90FBD25CD451900BD5E8B /* SetMem16Wrapper.c */, + 9AA90FBE25CD451900BD5E8B /* MemLibGuid.c */, + 9AA90FBF25CD451900BD5E8B /* MemLibInternals.h */, + 9AA90FC025CD451900BD5E8B /* ScanMem16Wrapper.c */, + ); + path = PeiMemoryLib; + sourceTree = ""; + }; + 9AA90FC125CD451900BD5E8B /* BaseIoLibIntrinsic */ = { + isa = PBXGroup; + children = ( + 9AA90FC225CD451900BD5E8B /* BaseIoLibIntrinsic.inf */, + 9AA90FC325CD451900BD5E8B /* IoLibEbc.c */, + 9AA90FC425CD451900BD5E8B /* BaseIoLibIntrinsic.uni */, + 9AA90FC525CD451900BD5E8B /* IoLibGcc.c */, + 9AA90FC625CD451900BD5E8B /* BaseIoLibIntrinsicSev.inf */, + 9AA90FC725CD451900BD5E8B /* BaseIoLibIntrinsicInternal.h */, + 9AA90FC825CD451900BD5E8B /* IoLibMmioBuffer.c */, + 9AA90FC925CD451900BD5E8B /* X64 */, + 9AA90FCC25CD451900BD5E8B /* IoLib.c */, + 9AA90FCD25CD451900BD5E8B /* IoHighLevel.c */, + 9AA90FCE25CD451900BD5E8B /* IoLibMsc.c */, + 9AA90FCF25CD451900BD5E8B /* Ia32 */, + 9AA90FD225CD451900BD5E8B /* IoLibArm.c */, + 9AA90FD325CD451900BD5E8B /* Arm */, + 9AA90FD625CD451900BD5E8B /* BaseIoLibIntrinsicArmVirt.inf */, + 9AA90FD725CD451900BD5E8B /* AArch64 */, + 9AA90FDA25CD451900BD5E8B /* IoLibArmVirt.c */, + 9AA90FDB25CD451900BD5E8B /* BaseIoLibIntrinsicArmVirt.uni */, + ); + path = BaseIoLibIntrinsic; + sourceTree = ""; + }; + 9AA90FC925CD451900BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA90FCA25CD451900BD5E8B /* IoFifo.nasm */, + 9AA90FCB25CD451900BD5E8B /* IoFifoSev.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA90FCF25CD451900BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA90FD025CD451900BD5E8B /* IoFifo.nasm */, + 9AA90FD125CD451900BD5E8B /* IoFifoSev.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA90FD325CD451900BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA90FD425CD451900BD5E8B /* ArmVirtMmio.S */, + 9AA90FD525CD451900BD5E8B /* ArmVirtMmio.asm */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA90FD725CD451900BD5E8B /* AArch64 */ = { + isa = PBXGroup; + children = ( + 9AA90FD825CD451900BD5E8B /* ArmVirtMmio.S */, + 9AA90FD925CD451900BD5E8B /* ArmVirtMmio.asm */, + ); + path = AArch64; + sourceTree = ""; + }; + 9AA90FDC25CD451900BD5E8B /* PeiPciSegmentLibPciCfg2 */ = { + isa = PBXGroup; + children = ( + 9AA90FDD25CD451900BD5E8B /* PeiPciSegmentLibPciCfg2.inf */, + 9AA90FDE25CD451900BD5E8B /* PeiPciSegmentLibPciCfg2.uni */, + 9AA90FDF25CD451900BD5E8B /* PciSegmentLib.c */, + ); + path = PeiPciSegmentLibPciCfg2; + sourceTree = ""; + }; + 9AA90FE025CD451900BD5E8B /* BasePeCoffGetEntryPointLib */ = { + isa = PBXGroup; + children = ( + 9AA90FE125CD451900BD5E8B /* BasePeCoffGetEntryPointLib.uni */, + 9AA90FE225CD451900BD5E8B /* BasePeCoffGetEntryPointLib.inf */, + 9AA90FE325CD451900BD5E8B /* PeCoffGetEntryPoint.c */, + ); + path = BasePeCoffGetEntryPointLib; + sourceTree = ""; + }; + 9AA90FE425CD451900BD5E8B /* UefiDevicePathLibDevicePathProtocol */ = { + isa = PBXGroup; + children = ( + 9AA90FE525CD451900BD5E8B /* UefiDevicePathLibDevicePathProtocol.inf */, + 9AA90FE625CD451900BD5E8B /* UefiDevicePathLibDevicePathProtocol.uni */, + 9AA90FE725CD451900BD5E8B /* UefiDevicePathLib.c */, + ); + path = UefiDevicePathLibDevicePathProtocol; + sourceTree = ""; + }; + 9AA90FE825CD451900BD5E8B /* SmmIoLib */ = { + isa = PBXGroup; + children = ( + 9AA90FE925CD451900BD5E8B /* SmmIoLib.c */, + 9AA90FEA25CD451900BD5E8B /* SmmIoLib.uni */, + 9AA90FEB25CD451900BD5E8B /* SmmIoLib.inf */, + ); + path = SmmIoLib; + sourceTree = ""; + }; + 9AA90FEC25CD451900BD5E8B /* DxeCoreHobLib */ = { + isa = PBXGroup; + children = ( + 9AA90FED25CD451900BD5E8B /* HobLib.c */, + 9AA90FEE25CD451900BD5E8B /* DxeCoreHobLib.inf */, + 9AA90FEF25CD451900BD5E8B /* DxeCoreHobLib.uni */, + ); + path = DxeCoreHobLib; + sourceTree = ""; + }; + 9AA90FF025CD451900BD5E8B /* UefiRuntimeServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA90FF125CD451900BD5E8B /* UefiRuntimeServicesTableLib.uni */, + 9AA90FF225CD451900BD5E8B /* UefiRuntimeServicesTableLib.inf */, + 9AA90FF325CD451900BD5E8B /* UefiRuntimeServicesTableLib.c */, + ); + path = UefiRuntimeServicesTableLib; + sourceTree = ""; + }; + 9AA90FF425CD451900BD5E8B /* PeiPcdLib */ = { + isa = PBXGroup; + children = ( + 9AA90FF525CD451900BD5E8B /* PeiPcdLib.c */, + 9AA90FF625CD451900BD5E8B /* PeiPcdLib.inf */, + 9AA90FF725CD451900BD5E8B /* PeiPcdLib.uni */, + ); + path = PeiPcdLib; + sourceTree = ""; + }; + 9AA90FF825CD451900BD5E8B /* SmmMemLib */ = { + isa = PBXGroup; + children = ( + 9AA90FF925CD451900BD5E8B /* SmmMemLib.uni */, + 9AA90FFA25CD451900BD5E8B /* SmmMemLib.c */, + 9AA90FFB25CD451900BD5E8B /* SmmMemLib.inf */, + ); + path = SmmMemLib; + sourceTree = ""; + }; + 9AA90FFC25CD451900BD5E8B /* UefiFileHandleLib */ = { + isa = PBXGroup; + children = ( + 9AA90FFD25CD451900BD5E8B /* UefiFileHandleLib.inf */, + 9AA90FFE25CD451900BD5E8B /* UefiFileHandleLib.uni */, + 9AA90FFF25CD451900BD5E8B /* UefiFileHandleLib.c */, + ); + path = UefiFileHandleLib; + sourceTree = ""; + }; + 9AA9100025CD451900BD5E8B /* DxeRuntimeDebugLibSerialPort */ = { + isa = PBXGroup; + children = ( + 9AA9100125CD451900BD5E8B /* DebugLib.c */, + 9AA9100225CD451900BD5E8B /* DxeRuntimeDebugLibSerialPort.inf */, + 9AA9100325CD451900BD5E8B /* DxeRuntimeDebugLibSerialPort.uni */, + ); + path = DxeRuntimeDebugLibSerialPort; + sourceTree = ""; + }; + 9AA9100425CD451900BD5E8B /* BaseMemoryLibMmx */ = { + isa = PBXGroup; + children = ( + 9AA9100525CD451900BD5E8B /* SetMem64Wrapper.c */, + 9AA9100625CD451900BD5E8B /* ZeroMemWrapper.c */, + 9AA9100725CD451900BD5E8B /* CopyMemWrapper.c */, + 9AA9100825CD451900BD5E8B /* ScanMem64Wrapper.c */, + 9AA9100925CD451900BD5E8B /* X64 */, + 9AA9101625CD451900BD5E8B /* ScanMem8Wrapper.c */, + 9AA9101725CD451900BD5E8B /* SetMem32Wrapper.c */, + 9AA9101825CD451900BD5E8B /* Ia32 */, + 9AA9102525CD451900BD5E8B /* ScanMem32Wrapper.c */, + 9AA9102625CD451900BD5E8B /* IsZeroBufferWrapper.c */, + 9AA9102725CD451900BD5E8B /* SetMemWrapper.c */, + 9AA9102825CD451900BD5E8B /* CompareMemWrapper.c */, + 9AA9102925CD451900BD5E8B /* SetMem16Wrapper.c */, + 9AA9102A25CD451900BD5E8B /* MemLibGuid.c */, + 9AA9102B25CD451900BD5E8B /* BaseMemoryLibMmx.inf */, + 9AA9102C25CD451900BD5E8B /* MemLibInternals.h */, + 9AA9102D25CD451900BD5E8B /* ScanMem16Wrapper.c */, + 9AA9102E25CD451900BD5E8B /* BaseMemoryLibMmx.uni */, + ); + path = BaseMemoryLibMmx; + sourceTree = ""; + }; + 9AA9100925CD451900BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA9100A25CD451900BD5E8B /* ZeroMem.nasm */, + 9AA9100B25CD451900BD5E8B /* CompareMem.nasm */, + 9AA9100C25CD451900BD5E8B /* SetMem16.nasm */, + 9AA9100D25CD451900BD5E8B /* ScanMem64.nasm */, + 9AA9100E25CD451900BD5E8B /* ScanMem32.nasm */, + 9AA9100F25CD451900BD5E8B /* SetMem.nasm */, + 9AA9101025CD451900BD5E8B /* IsZeroBuffer.nasm */, + 9AA9101125CD451900BD5E8B /* SetMem64.nasm */, + 9AA9101225CD451900BD5E8B /* ScanMem8.nasm */, + 9AA9101325CD451900BD5E8B /* SetMem32.nasm */, + 9AA9101425CD451900BD5E8B /* ScanMem16.nasm */, + 9AA9101525CD451900BD5E8B /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA9101825CD451900BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA9101925CD451900BD5E8B /* ZeroMem.nasm */, + 9AA9101A25CD451900BD5E8B /* CompareMem.nasm */, + 9AA9101B25CD451900BD5E8B /* SetMem16.nasm */, + 9AA9101C25CD451900BD5E8B /* ScanMem64.nasm */, + 9AA9101D25CD451900BD5E8B /* ScanMem32.nasm */, + 9AA9101E25CD451900BD5E8B /* SetMem.nasm */, + 9AA9101F25CD451900BD5E8B /* IsZeroBuffer.nasm */, + 9AA9102025CD451900BD5E8B /* SetMem64.nasm */, + 9AA9102125CD451900BD5E8B /* ScanMem8.nasm */, + 9AA9102225CD451900BD5E8B /* SetMem32.nasm */, + 9AA9102325CD451900BD5E8B /* ScanMem16.nasm */, + 9AA9102425CD451900BD5E8B /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA9102F25CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib */ = { + isa = PBXGroup; + children = ( + 9AA9103025CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib.inf */, + 9AA9103125CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib.uni */, + 9AA9103225CD451900BD5E8B /* BaseOrderedCollectionRedBlackTreeLib.c */, + ); + path = BaseOrderedCollectionRedBlackTreeLib; + sourceTree = ""; + }; + 9AA9103325CD451900BD5E8B /* UefiMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + 9AA9103425CD451900BD5E8B /* UefiMemoryAllocationLib.inf */, + 9AA9103525CD451900BD5E8B /* MemoryAllocationLib.c */, + 9AA9103625CD451900BD5E8B /* UefiMemoryAllocationLib.uni */, + ); + path = UefiMemoryAllocationLib; + sourceTree = ""; + }; + 9AA9103725CD451900BD5E8B /* UefiRuntimeLib */ = { + isa = PBXGroup; + children = ( + 9AA9103825CD451900BD5E8B /* UefiRuntimeLib.uni */, + 9AA9103925CD451900BD5E8B /* UefiRuntimeLib.inf */, + 9AA9103A25CD451900BD5E8B /* RuntimeLib.c */, + ); + path = UefiRuntimeLib; + sourceTree = ""; + }; + 9AA9103B25CD451900BD5E8B /* UefiDebugLibConOut */ = { + isa = PBXGroup; + children = ( + 9AA9103C25CD451900BD5E8B /* UefiDebugLibConOut.inf */, + 9AA9103D25CD451900BD5E8B /* UefiDebugLibConOut.uni */, + 9AA9103E25CD451900BD5E8B /* DebugLibConstructor.c */, + 9AA9103F25CD451900BD5E8B /* DebugLib.c */, + ); + path = UefiDebugLibConOut; + sourceTree = ""; + }; + 9AA9104025CD451900BD5E8B /* BasePciLibPciExpress */ = { + isa = PBXGroup; + children = ( + 9AA9104125CD451900BD5E8B /* BasePciLibPciExpress.uni */, + 9AA9104225CD451900BD5E8B /* BasePciLibPciExpress.inf */, + 9AA9104325CD451900BD5E8B /* PciLib.c */, + ); + path = BasePciLibPciExpress; + sourceTree = ""; + }; + 9AA9104425CD451900BD5E8B /* UefiLib */ = { + isa = PBXGroup; + children = ( + 9AA9104525CD451900BD5E8B /* UefiLibPrint.c */, + 9AA9104625CD451900BD5E8B /* UefiLib.uni */, + 9AA9104725CD451900BD5E8B /* UefiLib.inf */, + 9AA9104825CD451900BD5E8B /* UefiDriverModel.c */, + 9AA9104925CD451900BD5E8B /* UefiNotTiano.c */, + 9AA9104A25CD451900BD5E8B /* Console.c */, + 9AA9104B25CD451900BD5E8B /* UefiLib.c */, + 9AA9104C25CD451900BD5E8B /* UefiLibInternal.h */, + 9AA9104D25CD451900BD5E8B /* Acpi.c */, + ); + path = UefiLib; + sourceTree = ""; + }; + 9AA9104E25CD451900BD5E8B /* DxeHstiLib */ = { + isa = PBXGroup; + children = ( + 9AA9104F25CD451900BD5E8B /* DxeHstiLib.uni */, + 9AA9105025CD451900BD5E8B /* HstiDxe.c */, + 9AA9105125CD451900BD5E8B /* DxeHstiLib.inf */, + 9AA9105225CD451900BD5E8B /* HstiAip.c */, + 9AA9105325CD451900BD5E8B /* HstiDxe.h */, + ); + path = DxeHstiLib; + sourceTree = ""; + }; + 9AA9105425CD451900BD5E8B /* BasePostCodeLibDebug */ = { + isa = PBXGroup; + children = ( + 9AA9105525CD451900BD5E8B /* PostCode.c */, + 9AA9105625CD451900BD5E8B /* BasePostCodeLibDebug.uni */, + 9AA9105725CD451900BD5E8B /* BasePostCodeLibDebug.inf */, + ); + path = BasePostCodeLibDebug; + sourceTree = ""; + }; + 9AA9105825CD451900BD5E8B /* BaseS3StallLib */ = { + isa = PBXGroup; + children = ( + 9AA9105925CD451900BD5E8B /* BaseS3StallLib.inf */, + 9AA9105A25CD451900BD5E8B /* BaseS3StallLib.uni */, + 9AA9105B25CD451900BD5E8B /* S3StallLib.c */, + ); + path = BaseS3StallLib; + sourceTree = ""; + }; + 9AA9105C25CD451900BD5E8B /* BaseMemoryLibOptPei */ = { + isa = PBXGroup; + children = ( + 9AA9105D25CD451900BD5E8B /* SetMem64Wrapper.c */, + 9AA9105E25CD451900BD5E8B /* ZeroMemWrapper.c */, + 9AA9105F25CD451900BD5E8B /* BaseMemoryLibOptPei.uni */, + 9AA9106025CD451900BD5E8B /* CopyMemWrapper.c */, + 9AA9106125CD451900BD5E8B /* ScanMem64Wrapper.c */, + 9AA9106225CD451900BD5E8B /* BaseMemoryLibOptPei.inf */, + 9AA9106325CD451900BD5E8B /* X64 */, + 9AA9107025CD451900BD5E8B /* ScanMem8Wrapper.c */, + 9AA9107125CD451900BD5E8B /* SetMem32Wrapper.c */, + 9AA9107225CD451900BD5E8B /* Ia32 */, + 9AA9107F25CD451900BD5E8B /* ScanMem32Wrapper.c */, + 9AA9108025CD451900BD5E8B /* IsZeroBufferWrapper.c */, + 9AA9108125CD451900BD5E8B /* SetMemWrapper.c */, + 9AA9108225CD451900BD5E8B /* CompareMemWrapper.c */, + 9AA9108325CD451900BD5E8B /* SetMem16Wrapper.c */, + 9AA9108425CD451900BD5E8B /* MemLibGuid.c */, + 9AA9108525CD451900BD5E8B /* MemLibInternals.h */, + 9AA9108625CD451900BD5E8B /* ScanMem16Wrapper.c */, + ); + path = BaseMemoryLibOptPei; + sourceTree = ""; + }; + 9AA9106325CD451900BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA9106425CD451900BD5E8B /* ZeroMem.nasm */, + 9AA9106525CD451900BD5E8B /* CompareMem.nasm */, + 9AA9106625CD451900BD5E8B /* SetMem16.nasm */, + 9AA9106725CD451900BD5E8B /* ScanMem64.nasm */, + 9AA9106825CD451900BD5E8B /* ScanMem32.nasm */, + 9AA9106925CD451900BD5E8B /* SetMem.nasm */, + 9AA9106A25CD451900BD5E8B /* IsZeroBuffer.nasm */, + 9AA9106B25CD451900BD5E8B /* SetMem64.nasm */, + 9AA9106C25CD451900BD5E8B /* ScanMem8.nasm */, + 9AA9106D25CD451900BD5E8B /* SetMem32.nasm */, + 9AA9106E25CD451900BD5E8B /* ScanMem16.nasm */, + 9AA9106F25CD451900BD5E8B /* CopyMem.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA9107225CD451900BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA9107325CD451900BD5E8B /* ZeroMem.nasm */, + 9AA9107425CD451900BD5E8B /* CompareMem.nasm */, + 9AA9107525CD451900BD5E8B /* SetMem16.nasm */, + 9AA9107625CD451900BD5E8B /* ScanMem64.nasm */, + 9AA9107725CD451900BD5E8B /* ScanMem32.nasm */, + 9AA9107825CD451900BD5E8B /* SetMem.nasm */, + 9AA9107925CD451900BD5E8B /* IsZeroBuffer.nasm */, + 9AA9107A25CD451900BD5E8B /* SetMem64.nasm */, + 9AA9107B25CD451900BD5E8B /* ScanMem8.nasm */, + 9AA9107C25CD451900BD5E8B /* SetMem32.nasm */, + 9AA9107D25CD451900BD5E8B /* ScanMem16.nasm */, + 9AA9107E25CD451900BD5E8B /* CopyMem.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA9108725CD451900BD5E8B /* UefiPciLibPciRootBridgeIo */ = { + isa = PBXGroup; + children = ( + 9AA9108825CD451900BD5E8B /* UefiPciLibPciRootBridgeIo.uni */, + 9AA9108925CD451900BD5E8B /* UefiPciLibPciRootBridgeIo.inf */, + 9AA9108A25CD451900BD5E8B /* PciLib.c */, + ); + path = UefiPciLibPciRootBridgeIo; + sourceTree = ""; + }; + 9AA9108B25CD451900BD5E8B /* PeimEntryPoint */ = { + isa = PBXGroup; + children = ( + 9AA9108C25CD451900BD5E8B /* PeimEntryPoint.c */, + 9AA9108D25CD451900BD5E8B /* PeimEntryPoint.uni */, + 9AA9108E25CD451900BD5E8B /* PeimEntryPoint.inf */, + ); + path = PeimEntryPoint; + sourceTree = ""; + }; + 9AA9108F25CD451900BD5E8B /* SmiHandlerProfileLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9109025CD451900BD5E8B /* SmiHandlerProfileLibNull.c */, + 9AA9109125CD451900BD5E8B /* SmiHandlerProfileLibNull.inf */, + 9AA9109225CD451900BD5E8B /* SmiHandlerProfileLibNull.uni */, + ); + path = SmiHandlerProfileLibNull; + sourceTree = ""; + }; + 9AA9109325CD451900BD5E8B /* BaseS3PciLib */ = { + isa = PBXGroup; + children = ( + 9AA9109425CD451900BD5E8B /* S3PciLib.c */, + 9AA9109525CD451900BD5E8B /* BaseS3PciLib.uni */, + 9AA9109625CD451900BD5E8B /* BaseS3PciLib.inf */, + ); + path = BaseS3PciLib; + sourceTree = ""; + }; + 9AA9109725CD451900BD5E8B /* BasePrintLib */ = { + isa = PBXGroup; + children = ( + 9AA9109825CD451900BD5E8B /* PrintLibInternal.h */, + 9AA9109925CD451900BD5E8B /* PrintLib.c */, + 9AA9109A25CD451900BD5E8B /* BasePrintLib.inf */, + 9AA9109B25CD451900BD5E8B /* BasePrintLib.uni */, + 9AA9109C25CD451900BD5E8B /* PrintLibInternal.c */, + ); + path = BasePrintLib; + sourceTree = ""; + }; + 9AA9109D25CD451900BD5E8B /* PeiIoLibCpuIo */ = { + isa = PBXGroup; + children = ( + 9AA9109E25CD451900BD5E8B /* IoLibMmioBuffer.c */, + 9AA9109F25CD451900BD5E8B /* IoLib.c */, + 9AA910A025CD451900BD5E8B /* IoHighLevel.c */, + 9AA910A125CD451900BD5E8B /* PeiIoLibCpuIo.uni */, + 9AA910A225CD451900BD5E8B /* PeiIoLibCpuIo.inf */, + ); + path = PeiIoLibCpuIo; + sourceTree = ""; + }; + 9AA910A325CD451900BD5E8B /* BaseReportStatusCodeLibNull */ = { + isa = PBXGroup; + children = ( + 9AA910A425CD451900BD5E8B /* BaseReportStatusCodeLib.c */, + 9AA910A525CD451900BD5E8B /* BaseReportStatusCodeLibNull.uni */, + 9AA910A625CD451900BD5E8B /* BaseReportStatusCodeLibNull.inf */, + ); + path = BaseReportStatusCodeLibNull; + sourceTree = ""; + }; + 9AA910A725CD451900BD5E8B /* DxeServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA910A825CD451900BD5E8B /* DxeServicesTableLib.c */, + 9AA910A925CD451900BD5E8B /* DxeServicesTableLib.inf */, + 9AA910AA25CD451900BD5E8B /* DxeServicesTableLib.uni */, + ); + path = DxeServicesTableLib; + sourceTree = ""; + }; + 9AA910AB25CD451900BD5E8B /* BasePeCoffExtraActionLibNull */ = { + isa = PBXGroup; + children = ( + 9AA910AC25CD451900BD5E8B /* BasePeCoffExtraActionLibNull.inf */, + 9AA910AD25CD451900BD5E8B /* PeCoffExtraActionLibNull.uni */, + 9AA910AE25CD451900BD5E8B /* PeCoffExtraActionLib.c */, + ); + path = BasePeCoffExtraActionLibNull; + sourceTree = ""; + }; + 9AA910AF25CD451900BD5E8B /* UefiUsbLib */ = { + isa = PBXGroup; + children = ( + 9AA910B025CD451900BD5E8B /* UsbDxeLib.c */, + 9AA910B125CD451900BD5E8B /* UefiUsbLib.inf */, + 9AA910B225CD451900BD5E8B /* UefiUsbLib.uni */, + 9AA910B325CD451900BD5E8B /* Hid.c */, + 9AA910B425CD451900BD5E8B /* UefiUsbLibInternal.h */, + ); + path = UefiUsbLib; + sourceTree = ""; + }; + 9AA910B925CD452900BD5E8B /* MdeModulePkg */ = { + isa = PBXGroup; + children = ( + 9AA910BA25CD452900BD5E8B /* Core */, + 9AA9114925CD452900BD5E8B /* Universal */, + 9AA913E625CD452A00BD5E8B /* Include */, + 9AA9148825CD452B00BD5E8B /* MdeModulePkgExtra.uni */, + 9AA9148925CD452B00BD5E8B /* Bus */, + 9AA9165225CD452C00BD5E8B /* Library */, + 9AA9180F25CD452C00BD5E8B /* MdeModulePkgSample.dec */, + 9AA9181025CD452C00BD5E8B /* Logo */, + 9AA9181A25CD452D00BD5E8B /* MdeModulePkg.uni */, + 9AA9181B25CD452D00BD5E8B /* MdeModulePkg.dec */, + 9AA9181C25CD452D00BD5E8B /* Application */, + 9AA9185525CD452D00BD5E8B /* MdeModulePkg.dsc */, + ); + path = MdeModulePkg; + sourceTree = ""; + }; + 9AA910BA25CD452900BD5E8B /* Core */ = { + isa = PBXGroup; + children = ( + 9AA910BB25CD452900BD5E8B /* RuntimeDxe */, + 9AA910C225CD452900BD5E8B /* Dxe */, + 9AA910FC25CD452900BD5E8B /* PiSmmCore */, + 9AA9111525CD452900BD5E8B /* Pei */, + 9AA9113825CD452900BD5E8B /* DxeIplPeim */, + ); + path = Core; + sourceTree = ""; + }; + 9AA910BB25CD452900BD5E8B /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + 9AA910BC25CD452900BD5E8B /* Runtime.c */, + 9AA910BD25CD452900BD5E8B /* RuntimeDxe.inf */, + 9AA910BE25CD452900BD5E8B /* RuntimeDxe.uni */, + 9AA910BF25CD452900BD5E8B /* Crc32.c */, + 9AA910C025CD452900BD5E8B /* Runtime.h */, + 9AA910C125CD452900BD5E8B /* RuntimeDxeExtra.uni */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + 9AA910C225CD452900BD5E8B /* Dxe */ = { + isa = PBXGroup; + children = ( + 9AA910C325CD452900BD5E8B /* Misc */, + 9AA910CB25CD452900BD5E8B /* Hand */, + 9AA910D125CD452900BD5E8B /* DxeMain.inf */, + 9AA910D225CD452900BD5E8B /* FwVolBlock */, + 9AA910D525CD452900BD5E8B /* Dispatcher */, + 9AA910D825CD452900BD5E8B /* FwVol */, + 9AA910DF25CD452900BD5E8B /* DxeMain */, + 9AA910E225CD452900BD5E8B /* Library */, + 9AA910E425CD452900BD5E8B /* Gcd */, + 9AA910E725CD452900BD5E8B /* Image */, + 9AA910EA25CD452900BD5E8B /* DxeMain.h */, + 9AA910EB25CD452900BD5E8B /* DxeCore.uni */, + 9AA910EC25CD452900BD5E8B /* SectionExtraction */, + 9AA910EE25CD452900BD5E8B /* Event */, + 9AA910F325CD452900BD5E8B /* DxeCoreExtra.uni */, + 9AA910F425CD452900BD5E8B /* Mem */, + ); + path = Dxe; + sourceTree = ""; + }; + 9AA910C325CD452900BD5E8B /* Misc */ = { + isa = PBXGroup; + children = ( + 9AA910C425CD452900BD5E8B /* Stall.c */, + 9AA910C525CD452900BD5E8B /* MemoryProtection.c */, + 9AA910C625CD452900BD5E8B /* DebugImageInfo.c */, + 9AA910C725CD452900BD5E8B /* InstallConfigurationTable.c */, + 9AA910C825CD452900BD5E8B /* SetWatchdogTimer.c */, + 9AA910C925CD452900BD5E8B /* PropertiesTable.c */, + 9AA910CA25CD452900BD5E8B /* MemoryAttributesTable.c */, + ); + path = Misc; + sourceTree = ""; + }; + 9AA910CB25CD452900BD5E8B /* Hand */ = { + isa = PBXGroup; + children = ( + 9AA910CC25CD452900BD5E8B /* Handle.c */, + 9AA910CD25CD452900BD5E8B /* Handle.h */, + 9AA910CE25CD452900BD5E8B /* Locate.c */, + 9AA910CF25CD452900BD5E8B /* DriverSupport.c */, + 9AA910D025CD452900BD5E8B /* Notify.c */, + ); + path = Hand; + sourceTree = ""; + }; + 9AA910D225CD452900BD5E8B /* FwVolBlock */ = { + isa = PBXGroup; + children = ( + 9AA910D325CD452900BD5E8B /* FwVolBlock.c */, + 9AA910D425CD452900BD5E8B /* FwVolBlock.h */, + ); + path = FwVolBlock; + sourceTree = ""; + }; + 9AA910D525CD452900BD5E8B /* Dispatcher */ = { + isa = PBXGroup; + children = ( + 9AA910D625CD452900BD5E8B /* Dispatcher.c */, + 9AA910D725CD452900BD5E8B /* Dependency.c */, + ); + path = Dispatcher; + sourceTree = ""; + }; + 9AA910D825CD452900BD5E8B /* FwVol */ = { + isa = PBXGroup; + children = ( + 9AA910D925CD452900BD5E8B /* FwVolAttrib.c */, + 9AA910DA25CD452900BD5E8B /* FwVolRead.c */, + 9AA910DB25CD452900BD5E8B /* FwVolDriver.h */, + 9AA910DC25CD452900BD5E8B /* Ffs.c */, + 9AA910DD25CD452900BD5E8B /* FwVolWrite.c */, + 9AA910DE25CD452900BD5E8B /* FwVol.c */, + ); + path = FwVol; + sourceTree = ""; + }; + 9AA910DF25CD452900BD5E8B /* DxeMain */ = { + isa = PBXGroup; + children = ( + 9AA910E025CD452900BD5E8B /* DxeProtocolNotify.c */, + 9AA910E125CD452900BD5E8B /* DxeMain.c */, + ); + path = DxeMain; + sourceTree = ""; + }; + 9AA910E225CD452900BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA910E325CD452900BD5E8B /* Library.c */, + ); + path = Library; + sourceTree = ""; + }; + 9AA910E425CD452900BD5E8B /* Gcd */ = { + isa = PBXGroup; + children = ( + 9AA910E525CD452900BD5E8B /* Gcd.c */, + 9AA910E625CD452900BD5E8B /* Gcd.h */, + ); + path = Gcd; + sourceTree = ""; + }; + 9AA910E725CD452900BD5E8B /* Image */ = { + isa = PBXGroup; + children = ( + 9AA910E825CD452900BD5E8B /* Image.c */, + 9AA910E925CD452900BD5E8B /* Image.h */, + ); + path = Image; + sourceTree = ""; + }; + 9AA910EC25CD452900BD5E8B /* SectionExtraction */ = { + isa = PBXGroup; + children = ( + 9AA910ED25CD452900BD5E8B /* CoreSectionExtraction.c */, + ); + path = SectionExtraction; + sourceTree = ""; + }; + 9AA910EE25CD452900BD5E8B /* Event */ = { + isa = PBXGroup; + children = ( + 9AA910EF25CD452900BD5E8B /* Timer.c */, + 9AA910F025CD452900BD5E8B /* Event.h */, + 9AA910F125CD452900BD5E8B /* Event.c */, + 9AA910F225CD452900BD5E8B /* Tpl.c */, + ); + path = Event; + sourceTree = ""; + }; + 9AA910F425CD452900BD5E8B /* Mem */ = { + isa = PBXGroup; + children = ( + 9AA910F525CD452900BD5E8B /* HeapGuard.c */, + 9AA910F625CD452900BD5E8B /* MemData.c */, + 9AA910F725CD452900BD5E8B /* MemoryProfileRecord.c */, + 9AA910F825CD452900BD5E8B /* Page.c */, + 9AA910F925CD452900BD5E8B /* HeapGuard.h */, + 9AA910FA25CD452900BD5E8B /* Imem.h */, + 9AA910FB25CD452900BD5E8B /* Pool.c */, + ); + path = Mem; + sourceTree = ""; + }; + 9AA910FC25CD452900BD5E8B /* PiSmmCore */ = { + isa = PBXGroup; + children = ( + 9AA910FD25CD452900BD5E8B /* Smi.c */, + 9AA910FE25CD452900BD5E8B /* SmiHandlerProfile.c */, + 9AA910FF25CD452900BD5E8B /* HeapGuard.c */, + 9AA9110025CD452900BD5E8B /* PiSmmCore.c */, + 9AA9110125CD452900BD5E8B /* Dispatcher.c */, + 9AA9110225CD452900BD5E8B /* PiSmmIplExtra.uni */, + 9AA9110325CD452900BD5E8B /* SmramProfileRecord.c */, + 9AA9110425CD452900BD5E8B /* Handle.c */, + 9AA9110525CD452900BD5E8B /* PiSmmCoreExtra.uni */, + 9AA9110625CD452900BD5E8B /* InstallConfigurationTable.c */, + 9AA9110725CD452900BD5E8B /* PiSmmCorePrivateData.h */, + 9AA9110825CD452900BD5E8B /* PiSmmIpl.c */, + 9AA9110925CD452900BD5E8B /* Page.c */, + 9AA9110A25CD452900BD5E8B /* PiSmmCore.h */, + 9AA9110B25CD452900BD5E8B /* HeapGuard.h */, + 9AA9110C25CD452900BD5E8B /* PiSmmCore.inf */, + 9AA9110D25CD452900BD5E8B /* Locate.c */, + 9AA9110E25CD452900BD5E8B /* Dependency.c */, + 9AA9110F25CD452900BD5E8B /* Pool.c */, + 9AA9111025CD452900BD5E8B /* PiSmmCore.uni */, + 9AA9111125CD452900BD5E8B /* MemoryAttributesTable.c */, + 9AA9111225CD452900BD5E8B /* PiSmmIpl.uni */, + 9AA9111325CD452900BD5E8B /* Notify.c */, + 9AA9111425CD452900BD5E8B /* PiSmmIpl.inf */, + ); + path = PiSmmCore; + sourceTree = ""; + }; + 9AA9111525CD452900BD5E8B /* Pei */ = { + isa = PBXGroup; + children = ( + 9AA9111625CD452900BD5E8B /* PeiMain.inf */, + 9AA9111725CD452900BD5E8B /* PciCfg2 */, + 9AA9111925CD452900BD5E8B /* Memory */, + 9AA9111B25CD452900BD5E8B /* Hob */, + 9AA9111D25CD452900BD5E8B /* Security */, + 9AA9111F25CD452900BD5E8B /* Reset */, + 9AA9112125CD452900BD5E8B /* Dispatcher */, + 9AA9112325CD452900BD5E8B /* FwVol */, + 9AA9112625CD452900BD5E8B /* Dependency */, + 9AA9112925CD452900BD5E8B /* Image */, + 9AA9112B25CD452900BD5E8B /* PeiMain */, + 9AA9112D25CD452900BD5E8B /* StatusCode */, + 9AA9112F25CD452900BD5E8B /* BootMode */, + 9AA9113125CD452900BD5E8B /* CpuIo */, + 9AA9113325CD452900BD5E8B /* Ppi */, + 9AA9113525CD452900BD5E8B /* PeiCoreExtra.uni */, + 9AA9113625CD452900BD5E8B /* PeiMain.h */, + 9AA9113725CD452900BD5E8B /* PeiCore.uni */, + ); + path = Pei; + sourceTree = ""; + }; + 9AA9111725CD452900BD5E8B /* PciCfg2 */ = { + isa = PBXGroup; + children = ( + 9AA9111825CD452900BD5E8B /* PciCfg2.c */, + ); + path = PciCfg2; + sourceTree = ""; + }; + 9AA9111925CD452900BD5E8B /* Memory */ = { + isa = PBXGroup; + children = ( + 9AA9111A25CD452900BD5E8B /* MemoryServices.c */, + ); + path = Memory; + sourceTree = ""; + }; + 9AA9111B25CD452900BD5E8B /* Hob */ = { + isa = PBXGroup; + children = ( + 9AA9111C25CD452900BD5E8B /* Hob.c */, + ); + path = Hob; + sourceTree = ""; + }; + 9AA9111D25CD452900BD5E8B /* Security */ = { + isa = PBXGroup; + children = ( + 9AA9111E25CD452900BD5E8B /* Security.c */, + ); + path = Security; + sourceTree = ""; + }; + 9AA9111F25CD452900BD5E8B /* Reset */ = { + isa = PBXGroup; + children = ( + 9AA9112025CD452900BD5E8B /* Reset.c */, + ); + path = Reset; + sourceTree = ""; + }; + 9AA9112125CD452900BD5E8B /* Dispatcher */ = { + isa = PBXGroup; + children = ( + 9AA9112225CD452900BD5E8B /* Dispatcher.c */, + ); + path = Dispatcher; + sourceTree = ""; + }; + 9AA9112325CD452900BD5E8B /* FwVol */ = { + isa = PBXGroup; + children = ( + 9AA9112425CD452900BD5E8B /* FwVol.h */, + 9AA9112525CD452900BD5E8B /* FwVol.c */, + ); + path = FwVol; + sourceTree = ""; + }; + 9AA9112625CD452900BD5E8B /* Dependency */ = { + isa = PBXGroup; + children = ( + 9AA9112725CD452900BD5E8B /* Dependency.h */, + 9AA9112825CD452900BD5E8B /* Dependency.c */, + ); + path = Dependency; + sourceTree = ""; + }; + 9AA9112925CD452900BD5E8B /* Image */ = { + isa = PBXGroup; + children = ( + 9AA9112A25CD452900BD5E8B /* Image.c */, + ); + path = Image; + sourceTree = ""; + }; + 9AA9112B25CD452900BD5E8B /* PeiMain */ = { + isa = PBXGroup; + children = ( + 9AA9112C25CD452900BD5E8B /* PeiMain.c */, + ); + path = PeiMain; + sourceTree = ""; + }; + 9AA9112D25CD452900BD5E8B /* StatusCode */ = { + isa = PBXGroup; + children = ( + 9AA9112E25CD452900BD5E8B /* StatusCode.c */, + ); + path = StatusCode; + sourceTree = ""; + }; + 9AA9112F25CD452900BD5E8B /* BootMode */ = { + isa = PBXGroup; + children = ( + 9AA9113025CD452900BD5E8B /* BootMode.c */, + ); + path = BootMode; + sourceTree = ""; + }; + 9AA9113125CD452900BD5E8B /* CpuIo */ = { + isa = PBXGroup; + children = ( + 9AA9113225CD452900BD5E8B /* CpuIo.c */, + ); + path = CpuIo; + sourceTree = ""; + }; + 9AA9113325CD452900BD5E8B /* Ppi */ = { + isa = PBXGroup; + children = ( + 9AA9113425CD452900BD5E8B /* Ppi.c */, + ); + path = Ppi; + sourceTree = ""; + }; + 9AA9113825CD452900BD5E8B /* DxeIplPeim */ = { + isa = PBXGroup; + children = ( + 9AA9113925CD452900BD5E8B /* DxeIpl.uni */, + 9AA9113A25CD452900BD5E8B /* Ebc */, + 9AA9113C25CD452900BD5E8B /* DxeLoad.c */, + 9AA9113D25CD452900BD5E8B /* DxeIpl.inf */, + 9AA9113E25CD452900BD5E8B /* X64 */, + 9AA9114225CD452900BD5E8B /* DxeIpl.h */, + 9AA9114325CD452900BD5E8B /* Ia32 */, + 9AA9114625CD452900BD5E8B /* Arm */, + 9AA9114825CD452900BD5E8B /* DxeIplExtra.uni */, + ); + path = DxeIplPeim; + sourceTree = ""; + }; + 9AA9113A25CD452900BD5E8B /* Ebc */ = { + isa = PBXGroup; + children = ( + 9AA9113B25CD452900BD5E8B /* DxeLoadFunc.c */, + ); + path = Ebc; + sourceTree = ""; + }; + 9AA9113E25CD452900BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA9113F25CD452900BD5E8B /* VirtualMemory.c */, + 9AA9114025CD452900BD5E8B /* VirtualMemory.h */, + 9AA9114125CD452900BD5E8B /* DxeLoadFunc.c */, + ); + path = X64; + sourceTree = ""; + }; + 9AA9114325CD452900BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA9114425CD452900BD5E8B /* IdtVectorAsm.nasm */, + 9AA9114525CD452900BD5E8B /* DxeLoadFunc.c */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA9114625CD452900BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA9114725CD452900BD5E8B /* DxeLoadFunc.c */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA9114925CD452900BD5E8B /* Universal */ = { + isa = PBXGroup; + children = ( + 9AA9114A25CD452900BD5E8B /* DebugPortDxe */, + 9AA9115125CD452900BD5E8B /* EsrtFmpDxe */, + 9AA9115725CD452900BD5E8B /* DebugSupportDxe */, + 9AA9116625CD452900BD5E8B /* Acpi */, + 9AA911A725CD452900BD5E8B /* EbcDxe */, + 9AA911E025CD452900BD5E8B /* EsrtDxe */, + 9AA911E725CD452900BD5E8B /* SmbiosDxe */, + 9AA911ED25CD452900BD5E8B /* SectionExtractionDxe */, + 9AA911F225CD452900BD5E8B /* RegularExpressionDxe */, + 9AA9121D25CD452900BD5E8B /* Variable */, + 9AA9123F25CD452900BD5E8B /* DisplayEngineDxe */, + 9AA9124925CD452900BD5E8B /* CapsuleOnDiskLoadPei */, + 9AA9124E25CD452900BD5E8B /* DriverHealthManagerDxe */, + 9AA9125825CD452A00BD5E8B /* MonotonicCounterRuntimeDxe */, + 9AA9125D25CD452A00BD5E8B /* LegacyRegion2Dxe */, + 9AA9126325CD452A00BD5E8B /* WatchdogTimerDxe */, + 9AA9126925CD452A00BD5E8B /* FaultTolerantWriteDxe */, + 9AA9127F25CD452A00BD5E8B /* DevicePathDxe */, + 9AA9128425CD452A00BD5E8B /* DriverSampleDxe */, + 9AA9128F25CD452A00BD5E8B /* SmbiosMeasurementDxe */, + 9AA9129425CD452A00BD5E8B /* HiiResourcesSampleDxe */, + 9AA9129B25CD452A00BD5E8B /* PlatformDriOverrideDxe */, + 9AA912A525CD452A00BD5E8B /* LoadFileOnFv2 */, + 9AA912AA25CD452A00BD5E8B /* BootManagerPolicyDxe */, + 9AA912AF25CD452A00BD5E8B /* PCD */, + 9AA912BE25CD452A00BD5E8B /* SectionExtractionPei */, + 9AA912C325CD452A00BD5E8B /* StatusCodeHandler */, + 9AA912DC25CD452A00BD5E8B /* DebugServicePei */, + 9AA912E125CD452A00BD5E8B /* TimestampDxe */, + 9AA912E625CD452A00BD5E8B /* ResetSystemPei */, + 9AA912EC25CD452A00BD5E8B /* FvSimpleFileSystemDxe */, + 9AA912F425CD452A00BD5E8B /* SecurityStubDxe */, + 9AA912FB25CD452A00BD5E8B /* Disk */, + 9AA9133025CD452A00BD5E8B /* MemoryTest */, + 9AA9133D25CD452A00BD5E8B /* HiiDatabaseDxe */, + 9AA9134A25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2Pei */, + 9AA9134F25CD452A00BD5E8B /* FaultTolerantWritePei */, + 9AA9135425CD452A00BD5E8B /* BdsDxe */, + 9AA9135E25CD452A00BD5E8B /* SmmCommunicationBufferDxe */, + 9AA9136325CD452A00BD5E8B /* CapsulePei */, + 9AA9137225CD452A00BD5E8B /* ResetSystemRuntimeDxe */, + 9AA9137825CD452A00BD5E8B /* PrintDxe */, + 9AA9137D25CD452A00BD5E8B /* SerialDxe */, + 9AA9138225CD452A00BD5E8B /* LockBox */, + 9AA9138825CD452A00BD5E8B /* FileExplorerDxe */, + 9AA9138D25CD452A00BD5E8B /* ReportStatusCodeRouter */, + 9AA913A025CD452A00BD5E8B /* CapsuleRuntimeDxe */, + 9AA913AE25CD452A00BD5E8B /* SetupBrowserDxe */, + 9AA913B825CD452A00BD5E8B /* Console */, + 9AA913E025CD452A00BD5E8B /* Metronome */, + ); + path = Universal; + sourceTree = ""; + }; + 9AA9114A25CD452900BD5E8B /* DebugPortDxe */ = { + isa = PBXGroup; + children = ( + 9AA9114B25CD452900BD5E8B /* DebugPort.c */, + 9AA9114C25CD452900BD5E8B /* DebugPortDxeExtra.uni */, + 9AA9114D25CD452900BD5E8B /* DebugPortDxe.inf */, + 9AA9114E25CD452900BD5E8B /* ComponentName.c */, + 9AA9114F25CD452900BD5E8B /* DebugPortDxe.uni */, + 9AA9115025CD452900BD5E8B /* DebugPort.h */, + ); + path = DebugPortDxe; + sourceTree = ""; + }; + 9AA9115125CD452900BD5E8B /* EsrtFmpDxe */ = { + isa = PBXGroup; + children = ( + 9AA9115225CD452900BD5E8B /* EsrtFmpDebugPrint.c */, + 9AA9115325CD452900BD5E8B /* EsrtFmpDxeExtra.uni */, + 9AA9115425CD452900BD5E8B /* EsrtFmpDxe.inf */, + 9AA9115525CD452900BD5E8B /* EsrtFmpDxe.uni */, + 9AA9115625CD452900BD5E8B /* EsrtFmp.c */, + ); + path = EsrtFmpDxe; + sourceTree = ""; + }; + 9AA9115725CD452900BD5E8B /* DebugSupportDxe */ = { + isa = PBXGroup; + children = ( + 9AA9115825CD452900BD5E8B /* X64 */, + 9AA9115C25CD452900BD5E8B /* DebugSupportDxeExtra.uni */, + 9AA9115D25CD452900BD5E8B /* DebugSupport.c */, + 9AA9115E25CD452900BD5E8B /* Ia32 */, + 9AA9116425CD452900BD5E8B /* DebugSupportDxe.uni */, + 9AA9116525CD452900BD5E8B /* DebugSupportDxe.inf */, + ); + path = DebugSupportDxe; + sourceTree = ""; + }; + 9AA9115825CD452900BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA9115925CD452900BD5E8B /* PlDebugSupport.h */, + 9AA9115A25CD452900BD5E8B /* PlDebugSupportX64.c */, + 9AA9115B25CD452900BD5E8B /* AsmFuncs.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA9115E25CD452900BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA9115F25CD452900BD5E8B /* PlDebugSupport.h */, + 9AA9116025CD452900BD5E8B /* AsmFuncs.nasm */, + 9AA9116125CD452900BD5E8B /* PlDebugSupport.c */, + 9AA9116225CD452900BD5E8B /* PlDebugSupportIa32.c */, + 9AA9116325CD452900BD5E8B /* DebugSupport.h */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA9116625CD452900BD5E8B /* Acpi */ = { + isa = PBXGroup; + children = ( + 9AA9116725CD452900BD5E8B /* AcpiTableDxe */, + 9AA9117525CD452900BD5E8B /* S3SaveStateDxe */, + 9AA9117C25CD452900BD5E8B /* BootGraphicsResourceTableDxe */, + 9AA9118125CD452900BD5E8B /* FirmwarePerformanceDataTableSmm */, + 9AA9118625CD452900BD5E8B /* FirmwarePerformanceDataTablePei */, + 9AA9118B25CD452900BD5E8B /* AcpiPlatformDxe */, + 9AA9119025CD452900BD5E8B /* BootScriptExecutorDxe */, + 9AA9119C25CD452900BD5E8B /* SmmS3SaveState */, + 9AA911A225CD452900BD5E8B /* FirmwarePerformanceDataTableDxe */, + ); + path = Acpi; + sourceTree = ""; + }; + 9AA9116725CD452900BD5E8B /* AcpiTableDxe */ = { + isa = PBXGroup; + children = ( + 9AA9116825CD452900BD5E8B /* AmlNamespace.c */, + 9AA9116925CD452900BD5E8B /* AcpiTableDxeExtra.uni */, + 9AA9116A25CD452900BD5E8B /* AcpiTableProtocol.c */, + 9AA9116B25CD452900BD5E8B /* AmlOption.c */, + 9AA9116C25CD452900BD5E8B /* AmlString.c */, + 9AA9116D25CD452900BD5E8B /* AcpiSdt.c */, + 9AA9116E25CD452900BD5E8B /* AcpiTable.c */, + 9AA9116F25CD452900BD5E8B /* AcpiTableDxe.uni */, + 9AA9117025CD452900BD5E8B /* AmlChild.c */, + 9AA9117125CD452900BD5E8B /* AcpiTableDxe.inf */, + 9AA9117225CD452900BD5E8B /* AcpiSdt.h */, + 9AA9117325CD452900BD5E8B /* Aml.c */, + 9AA9117425CD452900BD5E8B /* AcpiTable.h */, + ); + path = AcpiTableDxe; + sourceTree = ""; + }; + 9AA9117525CD452900BD5E8B /* S3SaveStateDxe */ = { + isa = PBXGroup; + children = ( + 9AA9117625CD452900BD5E8B /* AcpiS3ContextSave.c */, + 9AA9117725CD452900BD5E8B /* S3SaveStateDxeExtra.uni */, + 9AA9117825CD452900BD5E8B /* S3SaveState.c */, + 9AA9117925CD452900BD5E8B /* S3SaveStateDxe.uni */, + 9AA9117A25CD452900BD5E8B /* S3SaveStateDxe.inf */, + 9AA9117B25CD452900BD5E8B /* InternalS3SaveState.h */, + ); + path = S3SaveStateDxe; + sourceTree = ""; + }; + 9AA9117C25CD452900BD5E8B /* BootGraphicsResourceTableDxe */ = { + isa = PBXGroup; + children = ( + 9AA9117D25CD452900BD5E8B /* BootGraphicsResourceTableDxeExtra.uni */, + 9AA9117E25CD452900BD5E8B /* BootGraphicsResourceTableDxe.c */, + 9AA9117F25CD452900BD5E8B /* BootGraphicsResourceTableDxe.inf */, + 9AA9118025CD452900BD5E8B /* BootGraphicsResourceTableDxe.uni */, + ); + path = BootGraphicsResourceTableDxe; + sourceTree = ""; + }; + 9AA9118125CD452900BD5E8B /* FirmwarePerformanceDataTableSmm */ = { + isa = PBXGroup; + children = ( + 9AA9118225CD452900BD5E8B /* FirmwarePerformanceSmm.uni */, + 9AA9118325CD452900BD5E8B /* FirmwarePerformanceSmm.inf */, + 9AA9118425CD452900BD5E8B /* FirmwarePerformanceSmmExtra.uni */, + 9AA9118525CD452900BD5E8B /* FirmwarePerformanceSmm.c */, + ); + path = FirmwarePerformanceDataTableSmm; + sourceTree = ""; + }; + 9AA9118625CD452900BD5E8B /* FirmwarePerformanceDataTablePei */ = { + isa = PBXGroup; + children = ( + 9AA9118725CD452900BD5E8B /* FirmwarePerformancePei.c */, + 9AA9118825CD452900BD5E8B /* FirmwarePerformancePeiExtra.uni */, + 9AA9118925CD452900BD5E8B /* FirmwarePerformancePei.inf */, + 9AA9118A25CD452900BD5E8B /* FirmwarePerformancePei.uni */, + ); + path = FirmwarePerformanceDataTablePei; + sourceTree = ""; + }; + 9AA9118B25CD452900BD5E8B /* AcpiPlatformDxe */ = { + isa = PBXGroup; + children = ( + 9AA9118C25CD452900BD5E8B /* AcpiPlatform.c */, + 9AA9118D25CD452900BD5E8B /* AcpiPlatformDxe.inf */, + 9AA9118E25CD452900BD5E8B /* AcpiPlatformExtra.uni */, + 9AA9118F25CD452900BD5E8B /* AcpiPlatform.uni */, + ); + path = AcpiPlatformDxe; + sourceTree = ""; + }; + 9AA9119025CD452900BD5E8B /* BootScriptExecutorDxe */ = { + isa = PBXGroup; + children = ( + 9AA9119125CD452900BD5E8B /* BootScriptExecutorDxe.inf */, + 9AA9119225CD452900BD5E8B /* BootScriptExecutorDxe.uni */, + 9AA9119325CD452900BD5E8B /* X64 */, + 9AA9119625CD452900BD5E8B /* ScriptExecute.h */, + 9AA9119725CD452900BD5E8B /* BootScriptExecutorDxeExtra.uni */, + 9AA9119825CD452900BD5E8B /* IA32 */, + 9AA9119B25CD452900BD5E8B /* ScriptExecute.c */, + ); + path = BootScriptExecutorDxe; + sourceTree = ""; + }; + 9AA9119325CD452900BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA9119425CD452900BD5E8B /* S3Asm.nasm */, + 9AA9119525CD452900BD5E8B /* SetIdtEntry.c */, + ); + path = X64; + sourceTree = ""; + }; + 9AA9119825CD452900BD5E8B /* IA32 */ = { + isa = PBXGroup; + children = ( + 9AA9119925CD452900BD5E8B /* S3Asm.nasm */, + 9AA9119A25CD452900BD5E8B /* SetIdtEntry.c */, + ); + path = IA32; + sourceTree = ""; + }; + 9AA9119C25CD452900BD5E8B /* SmmS3SaveState */ = { + isa = PBXGroup; + children = ( + 9AA9119D25CD452900BD5E8B /* SmmS3SaveStateExtra.uni */, + 9AA9119E25CD452900BD5E8B /* SmmS3SaveState.inf */, + 9AA9119F25CD452900BD5E8B /* SmmS3SaveState.uni */, + 9AA911A025CD452900BD5E8B /* InternalSmmSaveState.h */, + 9AA911A125CD452900BD5E8B /* SmmS3SaveState.c */, + ); + path = SmmS3SaveState; + sourceTree = ""; + }; + 9AA911A225CD452900BD5E8B /* FirmwarePerformanceDataTableDxe */ = { + isa = PBXGroup; + children = ( + 9AA911A325CD452900BD5E8B /* FirmwarePerformanceDxe.inf */, + 9AA911A425CD452900BD5E8B /* FirmwarePerformanceDxe.uni */, + 9AA911A525CD452900BD5E8B /* FirmwarePerformanceDxeExtra.uni */, + 9AA911A625CD452900BD5E8B /* FirmwarePerformanceDxe.c */, + ); + path = FirmwarePerformanceDataTableDxe; + sourceTree = ""; + }; + 9AA911A725CD452900BD5E8B /* EbcDxe */ = { + isa = PBXGroup; + children = ( + 9AA911A825CD452900BD5E8B /* EbcDxe.uni */, + 9AA911A925CD452900BD5E8B /* EbcInt.h */, + 9AA911AA25CD452900BD5E8B /* EbcExecute.h */, + 9AA911AB25CD452900BD5E8B /* EbcDxe.inf */, + 9AA911AC25CD452900BD5E8B /* X64 */, + 9AA911AF25CD452900BD5E8B /* EbcDebugger.inf */, + 9AA911B025CD452900BD5E8B /* EbcDebuggerHook.c */, + 9AA911B125CD452900BD5E8B /* EbcDebugger */, + 9AA911D125CD452900BD5E8B /* EbcDebugger.uni */, + 9AA911D225CD452900BD5E8B /* EbcDebuggerConfig.uni */, + 9AA911D325CD452900BD5E8B /* Ia32 */, + 9AA911D625CD452900BD5E8B /* EbcInt.c */, + 9AA911D725CD452900BD5E8B /* EbcDebuggerConfig.inf */, + 9AA911D825CD452900BD5E8B /* EbcExecute.c */, + 9AA911D925CD452900BD5E8B /* EbcDebuggerHook.h */, + 9AA911DA25CD452900BD5E8B /* AArch64 */, + 9AA911DD25CD452900BD5E8B /* EbcDebuggerConfigExtra.uni */, + 9AA911DE25CD452900BD5E8B /* EbcDxeExtra.uni */, + 9AA911DF25CD452900BD5E8B /* EbcDebuggerExtra.uni */, + ); + path = EbcDxe; + sourceTree = ""; + }; + 9AA911AC25CD452900BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA911AD25CD452900BD5E8B /* EbcSupport.c */, + 9AA911AE25CD452900BD5E8B /* EbcLowLevel.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA911B125CD452900BD5E8B /* EbcDebugger */ = { + isa = PBXGroup; + children = ( + 9AA911B225CD452900BD5E8B /* EdbCommand.h */, + 9AA911B325CD452900BD5E8B /* EdbDisasm.h */, + 9AA911B425CD452900BD5E8B /* EdbDisasmSupport.c */, + 9AA911B525CD452900BD5E8B /* EdbSymbol.c */, + 9AA911B625CD452900BD5E8B /* EdbSupport.h */, + 9AA911B725CD452900BD5E8B /* EdbCommon.h */, + 9AA911B825CD452900BD5E8B /* EdbHook.c */, + 9AA911B925CD452900BD5E8B /* EdbSupportUI.c */, + 9AA911BA25CD452900BD5E8B /* EdbSupportString.c */, + 9AA911BB25CD452900BD5E8B /* EdbCmdExtIo.c */, + 9AA911BC25CD452900BD5E8B /* Edb.c */, + 9AA911BD25CD452900BD5E8B /* EdbCmdMemory.c */, + 9AA911BE25CD452900BD5E8B /* EbcDebuggerConfig.c */, + 9AA911BF25CD452900BD5E8B /* EdbDisasmSupport.h */, + 9AA911C025CD452900BD5E8B /* EdbSymbol.h */, + 9AA911C125CD452900BD5E8B /* EdbSupportFile.c */, + 9AA911C225CD452900BD5E8B /* EdbCommand.c */, + 9AA911C325CD452900BD5E8B /* EdbCmdStep.c */, + 9AA911C425CD452900BD5E8B /* EdbDisasm.c */, + 9AA911C525CD452900BD5E8B /* EdbCmdRegister.c */, + 9AA911C625CD452900BD5E8B /* EdbHook.h */, + 9AA911C725CD452900BD5E8B /* EdbCmdGo.c */, + 9AA911C825CD452900BD5E8B /* EdbCmdScope.c */, + 9AA911C925CD452900BD5E8B /* EdbCmdQuit.c */, + 9AA911CA25CD452900BD5E8B /* EdbCmdHelp.c */, + 9AA911CB25CD452900BD5E8B /* EdbCmdExtPci.c */, + 9AA911CC25CD452900BD5E8B /* EdbCmdBranch.c */, + 9AA911CD25CD452900BD5E8B /* Edb.h */, + 9AA911CE25CD452900BD5E8B /* EdbCmdBreak.c */, + 9AA911CF25CD452900BD5E8B /* EdbCmdSymbol.c */, + 9AA911D025CD452900BD5E8B /* EdbCmdBreakpoint.c */, + ); + path = EbcDebugger; + sourceTree = ""; + }; + 9AA911D325CD452900BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA911D425CD452900BD5E8B /* EbcSupport.c */, + 9AA911D525CD452900BD5E8B /* EbcLowLevel.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA911DA25CD452900BD5E8B /* AArch64 */ = { + isa = PBXGroup; + children = ( + 9AA911DB25CD452900BD5E8B /* EbcSupport.c */, + 9AA911DC25CD452900BD5E8B /* EbcLowLevel.S */, + ); + path = AArch64; + sourceTree = ""; + }; + 9AA911E025CD452900BD5E8B /* EsrtDxe */ = { + isa = PBXGroup; + children = ( + 9AA911E125CD452900BD5E8B /* EsrtDxe.c */, + 9AA911E225CD452900BD5E8B /* EsrtImpl.c */, + 9AA911E325CD452900BD5E8B /* EsrtDxe.uni */, + 9AA911E425CD452900BD5E8B /* EsrtImpl.h */, + 9AA911E525CD452900BD5E8B /* EsrtDxe.inf */, + 9AA911E625CD452900BD5E8B /* EsrtDxeExtra.uni */, + ); + path = EsrtDxe; + sourceTree = ""; + }; + 9AA911E725CD452900BD5E8B /* SmbiosDxe */ = { + isa = PBXGroup; + children = ( + 9AA911E825CD452900BD5E8B /* SmbiosDxe.h */, + 9AA911E925CD452900BD5E8B /* SmbiosDxe.c */, + 9AA911EA25CD452900BD5E8B /* SmbiosDxe.inf */, + 9AA911EB25CD452900BD5E8B /* SmbiosDxe.uni */, + 9AA911EC25CD452900BD5E8B /* SmbiosDxeExtra.uni */, + ); + path = SmbiosDxe; + sourceTree = ""; + }; + 9AA911ED25CD452900BD5E8B /* SectionExtractionDxe */ = { + isa = PBXGroup; + children = ( + 9AA911EE25CD452900BD5E8B /* SectionExtractionDxe.uni */, + 9AA911EF25CD452900BD5E8B /* SectionExtractionDxe.inf */, + 9AA911F025CD452900BD5E8B /* SectionExtractionDxe.c */, + 9AA911F125CD452900BD5E8B /* SectionExtractionDxeExtra.uni */, + ); + path = SectionExtractionDxe; + sourceTree = ""; + }; + 9AA911F225CD452900BD5E8B /* RegularExpressionDxe */ = { + isa = PBXGroup; + children = ( + 9AA911F325CD452900BD5E8B /* RegularExpressionDxe.inf */, + 9AA911F425CD452900BD5E8B /* RegularExpressionDxe.h */, + 9AA911F525CD452900BD5E8B /* Oniguruma */, + 9AA9121C25CD452900BD5E8B /* RegularExpressionDxe.c */, + ); + path = RegularExpressionDxe; + sourceTree = ""; + }; + 9AA911F525CD452900BD5E8B /* Oniguruma */ = { + isa = PBXGroup; + children = ( + 9AA911F625CD452900BD5E8B /* unicode_property_data_posix.c */, + 9AA911F725CD452900BD5E8B /* unicode.c */, + 9AA911F825CD452900BD5E8B /* st.h */, + 9AA911F925CD452900BD5E8B /* ascii.c */, + 9AA911FA25CD452900BD5E8B /* unicode_fold2_key.c */, + 9AA911FB25CD452900BD5E8B /* regparse.h */, + 9AA911FC25CD452900BD5E8B /* AUTHORS */, + 9AA911FD25CD452900BD5E8B /* unicode_fold3_key.c */, + 9AA911FE25CD452900BD5E8B /* regposix.c */, + 9AA911FF25CD452900BD5E8B /* unicode_fold1_key.c */, + 9AA9120025CD452900BD5E8B /* unicode_wb_data.c */, + 9AA9120125CD452900BD5E8B /* regexec.c */, + 9AA9120225CD452900BD5E8B /* regint.h */, + 9AA9120325CD452900BD5E8B /* regenc.h */, + 9AA9120425CD452900BD5E8B /* regcomp.c */, + 9AA9120525CD452900BD5E8B /* unicode_egcb_data.c */, + 9AA9120625CD452900BD5E8B /* regtrav.c */, + 9AA9120725CD452900BD5E8B /* regsyntax.c */, + 9AA9120825CD452900BD5E8B /* OnigurumaIntrinsics.c */, + 9AA9120925CD452900BD5E8B /* regversion.c */, + 9AA9120A25CD452900BD5E8B /* OnigurumaUefiPort.c */, + 9AA9120B25CD452900BD5E8B /* unicode_property_data.c */, + 9AA9120C25CD452900BD5E8B /* README */, + 9AA9120D25CD452900BD5E8B /* st.c */, + 9AA9120E25CD452900BD5E8B /* oniggnu.h */, + 9AA9120F25CD452900BD5E8B /* onigposix.h */, + 9AA9121025CD452900BD5E8B /* COPYING */, + 9AA9121125CD452900BD5E8B /* utf16_le.c */, + 9AA9121225CD452900BD5E8B /* oniguruma.h */, + 9AA9121325CD452900BD5E8B /* regposerr.c */, + 9AA9121425CD452900BD5E8B /* regparse.c */, + 9AA9121525CD452900BD5E8B /* onig_init.c */, + 9AA9121625CD452900BD5E8B /* regenc.c */, + 9AA9121725CD452900BD5E8B /* regerror.c */, + 9AA9121825CD452900BD5E8B /* OnigurumaUefiPort.h */, + 9AA9121925CD452900BD5E8B /* unicode_unfold_key.c */, + 9AA9121A25CD452900BD5E8B /* reggnu.c */, + 9AA9121B25CD452900BD5E8B /* unicode_fold_data.c */, + ); + path = Oniguruma; + sourceTree = ""; + }; + 9AA9121D25CD452900BD5E8B /* Variable */ = { + isa = PBXGroup; + children = ( + 9AA9121E25CD452900BD5E8B /* RuntimeDxe */, + 9AA9123925CD452900BD5E8B /* Pei */, + ); + path = Variable; + sourceTree = ""; + }; + 9AA9121E25CD452900BD5E8B /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + 9AA9121F25CD452900BD5E8B /* Measurement.c */, + 9AA9122025CD452900BD5E8B /* SpeculationBarrierDxe.c */, + 9AA9122125CD452900BD5E8B /* VariableStandaloneMm.inf */, + 9AA9122225CD452900BD5E8B /* VariableSmm.uni */, + 9AA9122325CD452900BD5E8B /* VariableSmmRuntimeDxeExtra.uni */, + 9AA9122425CD452900BD5E8B /* SpeculationBarrierSmm.c */, + 9AA9122525CD452900BD5E8B /* VariableSmm.inf */, + 9AA9122625CD452900BD5E8B /* VariableTraditionalMm.c */, + 9AA9122725CD452900BD5E8B /* PrivilegePolymorphic.h */, + 9AA9122825CD452900BD5E8B /* VariableExLib.c */, + 9AA9122925CD452900BD5E8B /* Variable.h */, + 9AA9122A25CD452900BD5E8B /* VariableSmmRuntimeDxe.c */, + 9AA9122B25CD452900BD5E8B /* VariableSmmRuntimeDxe.inf */, + 9AA9122C25CD452900BD5E8B /* VariableStandaloneMm.c */, + 9AA9122D25CD452900BD5E8B /* VariableSmmExtra.uni */, + 9AA9122E25CD452900BD5E8B /* VariableSmm.c */, + 9AA9122F25CD452900BD5E8B /* TcgMorLockSmm.c */, + 9AA9123025CD452900BD5E8B /* Reclaim.c */, + 9AA9123125CD452900BD5E8B /* VariableDxe.c */, + 9AA9123225CD452900BD5E8B /* VariableSmmRuntimeDxe.uni */, + 9AA9123325CD452900BD5E8B /* TcgMorLockDxe.c */, + 9AA9123425CD452900BD5E8B /* VarCheck.c */, + 9AA9123525CD452900BD5E8B /* VariableRuntimeDxe.inf */, + 9AA9123625CD452900BD5E8B /* VariableRuntimeDxeExtra.uni */, + 9AA9123725CD452900BD5E8B /* VariableRuntimeDxe.uni */, + 9AA9123825CD452900BD5E8B /* Variable.c */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + 9AA9123925CD452900BD5E8B /* Pei */ = { + isa = PBXGroup; + children = ( + 9AA9123A25CD452900BD5E8B /* PeiVariableExtra.uni */, + 9AA9123B25CD452900BD5E8B /* PeiVariable.uni */, + 9AA9123C25CD452900BD5E8B /* Variable.h */, + 9AA9123D25CD452900BD5E8B /* VariablePei.inf */, + 9AA9123E25CD452900BD5E8B /* Variable.c */, + ); + path = Pei; + sourceTree = ""; + }; + 9AA9123F25CD452900BD5E8B /* DisplayEngineDxe */ = { + isa = PBXGroup; + children = ( + 9AA9124025CD452900BD5E8B /* InputHandler.c */, + 9AA9124125CD452900BD5E8B /* FormDisplay.c */, + 9AA9124225CD452900BD5E8B /* DisplayEngine.uni */, + 9AA9124325CD452900BD5E8B /* FormDisplayStr.uni */, + 9AA9124425CD452900BD5E8B /* FormDisplay.h */, + 9AA9124525CD452900BD5E8B /* Popup.c */, + 9AA9124625CD452900BD5E8B /* ProcessOptions.c */, + 9AA9124725CD452900BD5E8B /* DisplayEngineDxe.inf */, + 9AA9124825CD452900BD5E8B /* DisplayEngineExtra.uni */, + ); + path = DisplayEngineDxe; + sourceTree = ""; + }; + 9AA9124925CD452900BD5E8B /* CapsuleOnDiskLoadPei */ = { + isa = PBXGroup; + children = ( + 9AA9124A25CD452900BD5E8B /* CapsuleOnDiskLoadPeiExtra.uni */, + 9AA9124B25CD452900BD5E8B /* CapsuleOnDiskLoadPei.c */, + 9AA9124C25CD452900BD5E8B /* CapsuleOnDiskLoadPei.inf */, + 9AA9124D25CD452900BD5E8B /* CapsuleOnDiskLoadPei.uni */, + ); + path = CapsuleOnDiskLoadPei; + sourceTree = ""; + }; + 9AA9124E25CD452900BD5E8B /* DriverHealthManagerDxe */ = { + isa = PBXGroup; + children = ( + 9AA9124F25CD452900BD5E8B /* DriverHealthManagerDxeExtra.uni */, + 9AA9125025CD452900BD5E8B /* DriverHealthManagerDxe.h */, + 9AA9125125CD452900BD5E8B /* DriverHealthManagerVfr.h */, + 9AA9125225CD452900BD5E8B /* DriverHealthManagerStrings.uni */, + 9AA9125325CD452900BD5E8B /* DriverHealthManagerVfr.Vfr */, + 9AA9125425CD452900BD5E8B /* DriverHealthManagerDxe.uni */, + 9AA9125525CD452A00BD5E8B /* DriverHealthConfigureVfr.Vfr */, + 9AA9125625CD452A00BD5E8B /* DriverHealthManagerDxe.c */, + 9AA9125725CD452A00BD5E8B /* DriverHealthManagerDxe.inf */, + ); + path = DriverHealthManagerDxe; + sourceTree = ""; + }; + 9AA9125825CD452A00BD5E8B /* MonotonicCounterRuntimeDxe */ = { + isa = PBXGroup; + children = ( + 9AA9125925CD452A00BD5E8B /* MonotonicCounterRuntimeDxeExtra.uni */, + 9AA9125A25CD452A00BD5E8B /* MonotonicCounterRuntimeDxe.inf */, + 9AA9125B25CD452A00BD5E8B /* MonotonicCounter.c */, + 9AA9125C25CD452A00BD5E8B /* MonotonicCounterRuntimeDxe.uni */, + ); + path = MonotonicCounterRuntimeDxe; + sourceTree = ""; + }; + 9AA9125D25CD452A00BD5E8B /* LegacyRegion2Dxe */ = { + isa = PBXGroup; + children = ( + 9AA9125E25CD452A00BD5E8B /* LegacyRegion2Dxe.uni */, + 9AA9125F25CD452A00BD5E8B /* LegacyRegion2.c */, + 9AA9126025CD452A00BD5E8B /* LegacyRegion2Dxe.inf */, + 9AA9126125CD452A00BD5E8B /* LegacyRegion2.h */, + 9AA9126225CD452A00BD5E8B /* LegacyRegion2DxeExtra.uni */, + ); + path = LegacyRegion2Dxe; + sourceTree = ""; + }; + 9AA9126325CD452A00BD5E8B /* WatchdogTimerDxe */ = { + isa = PBXGroup; + children = ( + 9AA9126425CD452A00BD5E8B /* WatchdogTimer.inf */, + 9AA9126525CD452A00BD5E8B /* WatchdogTimer.uni */, + 9AA9126625CD452A00BD5E8B /* WatchdogTimer.c */, + 9AA9126725CD452A00BD5E8B /* WatchdogTimerExtra.uni */, + 9AA9126825CD452A00BD5E8B /* WatchdogTimer.h */, + ); + path = WatchdogTimerDxe; + sourceTree = ""; + }; + 9AA9126925CD452A00BD5E8B /* FaultTolerantWriteDxe */ = { + isa = PBXGroup; + children = ( + 9AA9126A25CD452A00BD5E8B /* FaultTolerantWriteSmmDxeExtra.uni */, + 9AA9126B25CD452A00BD5E8B /* FaultTolerantWriteSmmCommon.h */, + 9AA9126C25CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.h */, + 9AA9126D25CD452A00BD5E8B /* FaultTolerantWriteStandaloneMm.inf */, + 9AA9126E25CD452A00BD5E8B /* SmmFaultTolerantWriteDxeExtra.uni */, + 9AA9126F25CD452A00BD5E8B /* FaultTolerantWrite.c */, + 9AA9127025CD452A00BD5E8B /* FaultTolerantWriteDxe.inf */, + 9AA9127125CD452A00BD5E8B /* FaultTolerantWriteStandaloneMm.c */, + 9AA9127225CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.c */, + 9AA9127325CD452A00BD5E8B /* FaultTolerantWriteDxeExtra.uni */, + 9AA9127425CD452A00BD5E8B /* FaultTolerantWriteDxe.uni */, + 9AA9127525CD452A00BD5E8B /* FaultTolerantWriteSmm.inf */, + 9AA9127625CD452A00BD5E8B /* FaultTolerantWriteTraditionalMm.c */, + 9AA9127725CD452A00BD5E8B /* FaultTolerantWriteDxe.c */, + 9AA9127825CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.uni */, + 9AA9127925CD452A00BD5E8B /* FaultTolerantWriteSmm.c */, + 9AA9127A25CD452A00BD5E8B /* FtwMisc.c */, + 9AA9127B25CD452A00BD5E8B /* SmmFaultTolerantWriteDxe.uni */, + 9AA9127C25CD452A00BD5E8B /* UpdateWorkingBlock.c */, + 9AA9127D25CD452A00BD5E8B /* FaultTolerantWriteSmmDxe.inf */, + 9AA9127E25CD452A00BD5E8B /* FaultTolerantWrite.h */, + ); + path = FaultTolerantWriteDxe; + sourceTree = ""; + }; + 9AA9127F25CD452A00BD5E8B /* DevicePathDxe */ = { + isa = PBXGroup; + children = ( + 9AA9128025CD452A00BD5E8B /* DevicePath.c */, + 9AA9128125CD452A00BD5E8B /* DevicePathDxe.inf */, + 9AA9128225CD452A00BD5E8B /* DevicePathDxeExtra.uni */, + 9AA9128325CD452A00BD5E8B /* DevicePathDxe.uni */, + ); + path = DevicePathDxe; + sourceTree = ""; + }; + 9AA9128425CD452A00BD5E8B /* DriverSampleDxe */ = { + isa = PBXGroup; + children = ( + 9AA9128525CD452A00BD5E8B /* NVDataStruc.h */, + 9AA9128625CD452A00BD5E8B /* DriverSample.c */, + 9AA9128725CD452A00BD5E8B /* DriverSampleDxe.inf */, + 9AA9128825CD452A00BD5E8B /* Inventory.vfr */, + 9AA9128925CD452A00BD5E8B /* Vfr.vfr */, + 9AA9128A25CD452A00BD5E8B /* DriverSample.uni */, + 9AA9128B25CD452A00BD5E8B /* InventoryStrings.uni */, + 9AA9128C25CD452A00BD5E8B /* DriverSampleExtra.uni */, + 9AA9128D25CD452A00BD5E8B /* DriverSample.h */, + 9AA9128E25CD452A00BD5E8B /* VfrStrings.uni */, + ); + path = DriverSampleDxe; + sourceTree = ""; + }; + 9AA9128F25CD452A00BD5E8B /* SmbiosMeasurementDxe */ = { + isa = PBXGroup; + children = ( + 9AA9129025CD452A00BD5E8B /* SmbiosMeasurementDxeExtra.uni */, + 9AA9129125CD452A00BD5E8B /* SmbiosMeasurementDxe.c */, + 9AA9129225CD452A00BD5E8B /* SmbiosMeasurementDxe.inf */, + 9AA9129325CD452A00BD5E8B /* SmbiosMeasurementDxe.uni */, + ); + path = SmbiosMeasurementDxe; + sourceTree = ""; + }; + 9AA9129425CD452A00BD5E8B /* HiiResourcesSampleDxe */ = { + isa = PBXGroup; + children = ( + 9AA9129525CD452A00BD5E8B /* HiiResourcesSample.c */, + 9AA9129625CD452A00BD5E8B /* HiiResourcesSample.uni */, + 9AA9129725CD452A00BD5E8B /* HiiResourcesSampleDxe.inf */, + 9AA9129825CD452A00BD5E8B /* HiiResourcesSampleExtra.uni */, + 9AA9129925CD452A00BD5E8B /* SampleStrings.uni */, + 9AA9129A25CD452A00BD5E8B /* Sample.vfr */, + ); + path = HiiResourcesSampleDxe; + sourceTree = ""; + }; + 9AA9129B25CD452A00BD5E8B /* PlatformDriOverrideDxe */ = { + isa = PBXGroup; + children = ( + 9AA9129C25CD452A00BD5E8B /* InternalPlatDriOverrideDxe.h */, + 9AA9129D25CD452A00BD5E8B /* Vfr.vfr */, + 9AA9129E25CD452A00BD5E8B /* PlatOverMngr.h */, + 9AA9129F25CD452A00BD5E8B /* PlatformDriOverrideDxe.inf */, + 9AA912A025CD452A00BD5E8B /* PlatDriOverrideLib.c */, + 9AA912A125CD452A00BD5E8B /* PlatDriOverrideDxe.uni */, + 9AA912A225CD452A00BD5E8B /* PlatDriOverrideDxeExtra.uni */, + 9AA912A325CD452A00BD5E8B /* PlatDriOverrideDxe.c */, + 9AA912A425CD452A00BD5E8B /* VfrStrings.uni */, + ); + path = PlatformDriOverrideDxe; + sourceTree = ""; + }; + 9AA912A525CD452A00BD5E8B /* LoadFileOnFv2 */ = { + isa = PBXGroup; + children = ( + 9AA912A625CD452A00BD5E8B /* LoadFileOnFv2.c */, + 9AA912A725CD452A00BD5E8B /* LoadFileOnFv2.inf */, + 9AA912A825CD452A00BD5E8B /* LoadFileOnFv2.uni */, + 9AA912A925CD452A00BD5E8B /* LoadFileOnFv2Extra.uni */, + ); + path = LoadFileOnFv2; + sourceTree = ""; + }; + 9AA912AA25CD452A00BD5E8B /* BootManagerPolicyDxe */ = { + isa = PBXGroup; + children = ( + 9AA912AB25CD452A00BD5E8B /* BootManagerPolicyDxe.uni */, + 9AA912AC25CD452A00BD5E8B /* BootManagerPolicyDxe.inf */, + 9AA912AD25CD452A00BD5E8B /* BootManagerPolicyDxeExtra.uni */, + 9AA912AE25CD452A00BD5E8B /* BootManagerPolicyDxe.c */, + ); + path = BootManagerPolicyDxe; + sourceTree = ""; + }; + 9AA912AF25CD452A00BD5E8B /* PCD */ = { + isa = PBXGroup; + children = ( + 9AA912B025CD452A00BD5E8B /* Dxe */, + 9AA912B725CD452A00BD5E8B /* Pei */, + ); + path = PCD; + sourceTree = ""; + }; + 9AA912B025CD452A00BD5E8B /* Dxe */ = { + isa = PBXGroup; + children = ( + 9AA912B125CD452A00BD5E8B /* Pcd.c */, + 9AA912B225CD452A00BD5E8B /* PcdDxeExtra.uni */, + 9AA912B325CD452A00BD5E8B /* Service.h */, + 9AA912B425CD452A00BD5E8B /* Pcd.inf */, + 9AA912B525CD452A00BD5E8B /* Service.c */, + 9AA912B625CD452A00BD5E8B /* PcdDxe.uni */, + ); + path = Dxe; + sourceTree = ""; + }; + 9AA912B725CD452A00BD5E8B /* Pei */ = { + isa = PBXGroup; + children = ( + 9AA912B825CD452A00BD5E8B /* Pcd.c */, + 9AA912B925CD452A00BD5E8B /* Service.h */, + 9AA912BA25CD452A00BD5E8B /* Pcd.inf */, + 9AA912BB25CD452A00BD5E8B /* PcdPeim.uni */, + 9AA912BC25CD452A00BD5E8B /* PcdPeimExtra.uni */, + 9AA912BD25CD452A00BD5E8B /* Service.c */, + ); + path = Pei; + sourceTree = ""; + }; + 9AA912BE25CD452A00BD5E8B /* SectionExtractionPei */ = { + isa = PBXGroup; + children = ( + 9AA912BF25CD452A00BD5E8B /* SectionExtractionPei.c */, + 9AA912C025CD452A00BD5E8B /* SectionExtractionPeiExtra.uni */, + 9AA912C125CD452A00BD5E8B /* SectionExtractionPei.uni */, + 9AA912C225CD452A00BD5E8B /* SectionExtractionPei.inf */, + ); + path = SectionExtractionPei; + sourceTree = ""; + }; + 9AA912C325CD452A00BD5E8B /* StatusCodeHandler */ = { + isa = PBXGroup; + children = ( + 9AA912C425CD452A00BD5E8B /* RuntimeDxe */, + 9AA912CC25CD452A00BD5E8B /* Pei */, + 9AA912D425CD452A00BD5E8B /* Smm */, + ); + path = StatusCodeHandler; + sourceTree = ""; + }; + 9AA912C425CD452A00BD5E8B /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + 9AA912C525CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.c */, + 9AA912C625CD452A00BD5E8B /* MemoryStatusCodeWorker.c */, + 9AA912C725CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxeExtra.uni */, + 9AA912C825CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.uni */, + 9AA912C925CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.inf */, + 9AA912CA25CD452A00BD5E8B /* StatusCodeHandlerRuntimeDxe.h */, + 9AA912CB25CD452A00BD5E8B /* SerialStatusCodeWorker.c */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + 9AA912CC25CD452A00BD5E8B /* Pei */ = { + isa = PBXGroup; + children = ( + 9AA912CD25CD452A00BD5E8B /* StatusCodeHandlerPei.uni */, + 9AA912CE25CD452A00BD5E8B /* StatusCodeHandlerPeiExtra.uni */, + 9AA912CF25CD452A00BD5E8B /* StatusCodeHandlerPei.inf */, + 9AA912D025CD452A00BD5E8B /* StatusCodeHandlerPei.h */, + 9AA912D125CD452A00BD5E8B /* MemoryStausCodeWorker.c */, + 9AA912D225CD452A00BD5E8B /* SerialStatusCodeWorker.c */, + 9AA912D325CD452A00BD5E8B /* StatusCodeHandlerPei.c */, + ); + path = Pei; + sourceTree = ""; + }; + 9AA912D425CD452A00BD5E8B /* Smm */ = { + isa = PBXGroup; + children = ( + 9AA912D525CD452A00BD5E8B /* MemoryStatusCodeWorker.c */, + 9AA912D625CD452A00BD5E8B /* StatusCodeHandlerSmm.c */, + 9AA912D725CD452A00BD5E8B /* StatusCodeHandlerSmmExtra.uni */, + 9AA912D825CD452A00BD5E8B /* StatusCodeHandlerSmm.inf */, + 9AA912D925CD452A00BD5E8B /* SerialStatusCodeWorker.c */, + 9AA912DA25CD452A00BD5E8B /* StatusCodeHandlerSmm.h */, + 9AA912DB25CD452A00BD5E8B /* StatusCodeHandlerSmm.uni */, + ); + path = Smm; + sourceTree = ""; + }; + 9AA912DC25CD452A00BD5E8B /* DebugServicePei */ = { + isa = PBXGroup; + children = ( + 9AA912DD25CD452A00BD5E8B /* DebugServicePei.c */, + 9AA912DE25CD452A00BD5E8B /* DebugService.h */, + 9AA912DF25CD452A00BD5E8B /* DebugServicePei.inf */, + 9AA912E025CD452A00BD5E8B /* DebugServicePei.uni */, + ); + path = DebugServicePei; + sourceTree = ""; + }; + 9AA912E125CD452A00BD5E8B /* TimestampDxe */ = { + isa = PBXGroup; + children = ( + 9AA912E225CD452A00BD5E8B /* TimestampDxe.c */, + 9AA912E325CD452A00BD5E8B /* TimestampDxe.uni */, + 9AA912E425CD452A00BD5E8B /* TimestampDxe.inf */, + 9AA912E525CD452A00BD5E8B /* TimestampDxeExtra.uni */, + ); + path = TimestampDxe; + sourceTree = ""; + }; + 9AA912E625CD452A00BD5E8B /* ResetSystemPei */ = { + isa = PBXGroup; + children = ( + 9AA912E725CD452A00BD5E8B /* ResetSystemPeiExtra.uni */, + 9AA912E825CD452A00BD5E8B /* ResetSystem.h */, + 9AA912E925CD452A00BD5E8B /* ResetSystemPei.inf */, + 9AA912EA25CD452A00BD5E8B /* ResetSystem.c */, + 9AA912EB25CD452A00BD5E8B /* ResetSystemPei.uni */, + ); + path = ResetSystemPei; + sourceTree = ""; + }; + 9AA912EC25CD452A00BD5E8B /* FvSimpleFileSystemDxe */ = { + isa = PBXGroup; + children = ( + 9AA912ED25CD452A00BD5E8B /* FvSimpleFileSystemEntryPoint.c */, + 9AA912EE25CD452A00BD5E8B /* FvSimpleFileSystem.c */, + 9AA912EF25CD452A00BD5E8B /* FvSimpleFileSystemDxe.inf */, + 9AA912F025CD452A00BD5E8B /* ComponentName.c */, + 9AA912F125CD452A00BD5E8B /* FvSimpleFileSystemInternal.h */, + 9AA912F225CD452A00BD5E8B /* FvSimpleFileSystem.uni */, + 9AA912F325CD452A00BD5E8B /* FvSimpleFileSystemExtra.uni */, + ); + path = FvSimpleFileSystemDxe; + sourceTree = ""; + }; + 9AA912F425CD452A00BD5E8B /* SecurityStubDxe */ = { + isa = PBXGroup; + children = ( + 9AA912F525CD452A00BD5E8B /* Defer3rdPartyImageLoad.c */, + 9AA912F625CD452A00BD5E8B /* SecurityStubDxe.uni */, + 9AA912F725CD452A00BD5E8B /* SecurityStub.c */, + 9AA912F825CD452A00BD5E8B /* SecurityStubDxe.inf */, + 9AA912F925CD452A00BD5E8B /* SecurityStubDxeExtra.uni */, + 9AA912FA25CD452A00BD5E8B /* Defer3rdPartyImageLoad.h */, + ); + path = SecurityStubDxe; + sourceTree = ""; + }; + 9AA912FB25CD452A00BD5E8B /* Disk */ = { + isa = PBXGroup; + children = ( + 9AA912FC25CD452A00BD5E8B /* DiskIoDxe */, + 9AA9130325CD452A00BD5E8B /* CdExpressPei */, + 9AA9130925CD452A00BD5E8B /* PartitionDxe */, + 9AA9131425CD452A00BD5E8B /* RamDiskDxe */, + 9AA9132125CD452A00BD5E8B /* UnicodeCollation */, + 9AA9132825CD452A00BD5E8B /* UdfDxe */, + ); + path = Disk; + sourceTree = ""; + }; + 9AA912FC25CD452A00BD5E8B /* DiskIoDxe */ = { + isa = PBXGroup; + children = ( + 9AA912FD25CD452A00BD5E8B /* DiskIoDxe.uni */, + 9AA912FE25CD452A00BD5E8B /* DiskIo.h */, + 9AA912FF25CD452A00BD5E8B /* DiskIoDxe.inf */, + 9AA9130025CD452A00BD5E8B /* ComponentName.c */, + 9AA9130125CD452A00BD5E8B /* DiskIoDxeExtra.uni */, + 9AA9130225CD452A00BD5E8B /* DiskIo.c */, + ); + path = DiskIoDxe; + sourceTree = ""; + }; + 9AA9130325CD452A00BD5E8B /* CdExpressPei */ = { + isa = PBXGroup; + children = ( + 9AA9130425CD452A00BD5E8B /* CdExpressPei.inf */, + 9AA9130525CD452A00BD5E8B /* PeiCdExpress.c */, + 9AA9130625CD452A00BD5E8B /* CdExpressPei.uni */, + 9AA9130725CD452A00BD5E8B /* PeiCdExpress.h */, + 9AA9130825CD452A00BD5E8B /* CdExpressPeiExtra.uni */, + ); + path = CdExpressPei; + sourceTree = ""; + }; + 9AA9130925CD452A00BD5E8B /* PartitionDxe */ = { + isa = PBXGroup; + children = ( + 9AA9130A25CD452A00BD5E8B /* Partition.c */, + 9AA9130B25CD452A00BD5E8B /* Udf.c */, + 9AA9130C25CD452A00BD5E8B /* PartitionDxeExtra.uni */, + 9AA9130D25CD452A00BD5E8B /* ComponentName.c */, + 9AA9130E25CD452A00BD5E8B /* ElTorito.c */, + 9AA9130F25CD452A00BD5E8B /* PartitionDxe.uni */, + 9AA9131025CD452A00BD5E8B /* Partition.h */, + 9AA9131125CD452A00BD5E8B /* PartitionDxe.inf */, + 9AA9131225CD452A00BD5E8B /* Mbr.c */, + 9AA9131325CD452A00BD5E8B /* Gpt.c */, + ); + path = PartitionDxe; + sourceTree = ""; + }; + 9AA9131425CD452A00BD5E8B /* RamDiskDxe */ = { + isa = PBXGroup; + children = ( + 9AA9131525CD452A00BD5E8B /* RamDiskImpl.h */, + 9AA9131625CD452A00BD5E8B /* RamDiskFileExplorer.c */, + 9AA9131725CD452A00BD5E8B /* RamDiskNVData.h */, + 9AA9131825CD452A00BD5E8B /* RamDiskHiiStrings.uni */, + 9AA9131925CD452A00BD5E8B /* RamDiskImpl.c */, + 9AA9131A25CD452A00BD5E8B /* RamDiskBlockIo.c */, + 9AA9131B25CD452A00BD5E8B /* RamDiskProtocol.c */, + 9AA9131C25CD452A00BD5E8B /* RamDiskHii.vfr */, + 9AA9131D25CD452A00BD5E8B /* RamDisk.asl */, + 9AA9131E25CD452A00BD5E8B /* RamDiskDxe.inf */, + 9AA9131F25CD452A00BD5E8B /* RamDiskDriver.c */, + 9AA9132025CD452A00BD5E8B /* RamDiskDxe.uni */, + ); + path = RamDiskDxe; + sourceTree = ""; + }; + 9AA9132125CD452A00BD5E8B /* UnicodeCollation */ = { + isa = PBXGroup; + children = ( + 9AA9132225CD452A00BD5E8B /* EnglishDxe */, + ); + path = UnicodeCollation; + sourceTree = ""; + }; + 9AA9132225CD452A00BD5E8B /* EnglishDxe */ = { + isa = PBXGroup; + children = ( + 9AA9132325CD452A00BD5E8B /* EnglishDxe.uni */, + 9AA9132425CD452A00BD5E8B /* EnglishDxeExtra.uni */, + 9AA9132525CD452A00BD5E8B /* UnicodeCollationEng.c */, + 9AA9132625CD452A00BD5E8B /* EnglishDxe.inf */, + 9AA9132725CD452A00BD5E8B /* UnicodeCollationEng.h */, + ); + path = EnglishDxe; + sourceTree = ""; + }; + 9AA9132825CD452A00BD5E8B /* UdfDxe */ = { + isa = PBXGroup; + children = ( + 9AA9132925CD452A00BD5E8B /* FileName.c */, + 9AA9132A25CD452A00BD5E8B /* Udf.c */, + 9AA9132B25CD452A00BD5E8B /* FileSystemOperations.c */, + 9AA9132C25CD452A00BD5E8B /* ComponentName.c */, + 9AA9132D25CD452A00BD5E8B /* UdfDxe.inf */, + 9AA9132E25CD452A00BD5E8B /* Udf.h */, + 9AA9132F25CD452A00BD5E8B /* File.c */, + ); + path = UdfDxe; + sourceTree = ""; + }; + 9AA9133025CD452A00BD5E8B /* MemoryTest */ = { + isa = PBXGroup; + children = ( + 9AA9133125CD452A00BD5E8B /* GenericMemoryTestDxe */, + 9AA9133725CD452A00BD5E8B /* NullMemoryTestDxe */, + ); + path = MemoryTest; + sourceTree = ""; + }; + 9AA9133125CD452A00BD5E8B /* GenericMemoryTestDxe */ = { + isa = PBXGroup; + children = ( + 9AA9133225CD452A00BD5E8B /* LightMemoryTest.c */, + 9AA9133325CD452A00BD5E8B /* GenericMemoryTestDxe.inf */, + 9AA9133425CD452A00BD5E8B /* GenericMemoryTestDxeExtra.uni */, + 9AA9133525CD452A00BD5E8B /* GenericMemoryTestDxe.uni */, + 9AA9133625CD452A00BD5E8B /* LightMemoryTest.h */, + ); + path = GenericMemoryTestDxe; + sourceTree = ""; + }; + 9AA9133725CD452A00BD5E8B /* NullMemoryTestDxe */ = { + isa = PBXGroup; + children = ( + 9AA9133825CD452A00BD5E8B /* NullMemoryTest.h */, + 9AA9133925CD452A00BD5E8B /* NullMemoryTestDxeExtra.uni */, + 9AA9133A25CD452A00BD5E8B /* NullMemoryTestDxe.inf */, + 9AA9133B25CD452A00BD5E8B /* NullMemoryTest.c */, + 9AA9133C25CD452A00BD5E8B /* NullMemoryTestDxe.uni */, + ); + path = NullMemoryTestDxe; + sourceTree = ""; + }; + 9AA9133D25CD452A00BD5E8B /* HiiDatabaseDxe */ = { + isa = PBXGroup; + children = ( + 9AA9133E25CD452A00BD5E8B /* HiiDatabaseDxe.inf */, + 9AA9133F25CD452A00BD5E8B /* HiiDatabase.uni */, + 9AA9134025CD452A00BD5E8B /* Database.c */, + 9AA9134125CD452A00BD5E8B /* ConfigRouting.c */, + 9AA9134225CD452A00BD5E8B /* Font.c */, + 9AA9134325CD452A00BD5E8B /* String.c */, + 9AA9134425CD452A00BD5E8B /* Image.c */, + 9AA9134525CD452A00BD5E8B /* HiiDatabaseExtra.uni */, + 9AA9134625CD452A00BD5E8B /* HiiDatabase.h */, + 9AA9134725CD452A00BD5E8B /* ConfigKeywordHandler.c */, + 9AA9134825CD452A00BD5E8B /* HiiDatabaseEntry.c */, + 9AA9134925CD452A00BD5E8B /* ImageEx.c */, + ); + path = HiiDatabaseDxe; + sourceTree = ""; + }; + 9AA9134A25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2Pei */ = { + isa = PBXGroup; + children = ( + 9AA9134B25CD452A00BD5E8B /* PciCfg2.c */, + 9AA9134C25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2Pei.inf */, + 9AA9134D25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2Pei.uni */, + 9AA9134E25CD452A00BD5E8B /* PcatSingleSegmentPciCfg2PeiExtra.uni */, + ); + path = PcatSingleSegmentPciCfg2Pei; + sourceTree = ""; + }; + 9AA9134F25CD452A00BD5E8B /* FaultTolerantWritePei */ = { + isa = PBXGroup; + children = ( + 9AA9135025CD452A00BD5E8B /* FaultTolerantWritePei.inf */, + 9AA9135125CD452A00BD5E8B /* FaultTolerantWritePei.uni */, + 9AA9135225CD452A00BD5E8B /* FaultTolerantWritePei.c */, + 9AA9135325CD452A00BD5E8B /* FaultTolerantWritePeiExtra.uni */, + ); + path = FaultTolerantWritePei; + sourceTree = ""; + }; + 9AA9135425CD452A00BD5E8B /* BdsDxe */ = { + isa = PBXGroup; + children = ( + 9AA9135525CD452A00BD5E8B /* Language.h */, + 9AA9135625CD452A00BD5E8B /* BdsEntry.c */, + 9AA9135725CD452A00BD5E8B /* HwErrRecSupport.c */, + 9AA9135825CD452A00BD5E8B /* BdsDxe.inf */, + 9AA9135925CD452A00BD5E8B /* BdsDxeExtra.uni */, + 9AA9135A25CD452A00BD5E8B /* BdsDxe.uni */, + 9AA9135B25CD452A00BD5E8B /* Bds.h */, + 9AA9135C25CD452A00BD5E8B /* Language.c */, + 9AA9135D25CD452A00BD5E8B /* HwErrRecSupport.h */, + ); + path = BdsDxe; + sourceTree = ""; + }; + 9AA9135E25CD452A00BD5E8B /* SmmCommunicationBufferDxe */ = { + isa = PBXGroup; + children = ( + 9AA9135F25CD452A00BD5E8B /* SmmCommunicationBufferExtraDxe.uni */, + 9AA9136025CD452A00BD5E8B /* SmmCommunicationBufferDxe.c */, + 9AA9136125CD452A00BD5E8B /* SmmCommunicationBufferDxe.uni */, + 9AA9136225CD452A00BD5E8B /* SmmCommunicationBufferDxe.inf */, + ); + path = SmmCommunicationBufferDxe; + sourceTree = ""; + }; + 9AA9136325CD452A00BD5E8B /* CapsulePei */ = { + isa = PBXGroup; + children = ( + 9AA9136425CD452A00BD5E8B /* CapsulePei.uni */, + 9AA9136525CD452A00BD5E8B /* CapsulePei.inf */, + 9AA9136625CD452A00BD5E8B /* CapsuleX64Extra.uni */, + 9AA9136725CD452A00BD5E8B /* CapsulePeiExtra.uni */, + 9AA9136825CD452A00BD5E8B /* X64 */, + 9AA9136B25CD452A00BD5E8B /* Common */, + 9AA9136E25CD452A00BD5E8B /* CapsuleX64.uni */, + 9AA9136F25CD452A00BD5E8B /* Capsule.h */, + 9AA9137025CD452A00BD5E8B /* CapsuleX64.inf */, + 9AA9137125CD452A00BD5E8B /* UefiCapsule.c */, + ); + path = CapsulePei; + sourceTree = ""; + }; + 9AA9136825CD452A00BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA9136925CD452A00BD5E8B /* X64Entry.c */, + 9AA9136A25CD452A00BD5E8B /* PageFaultHandler.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA9136B25CD452A00BD5E8B /* Common */ = { + isa = PBXGroup; + children = ( + 9AA9136C25CD452A00BD5E8B /* CapsuleCoalesce.c */, + 9AA9136D25CD452A00BD5E8B /* CommonHeader.h */, + ); + path = Common; + sourceTree = ""; + }; + 9AA9137225CD452A00BD5E8B /* ResetSystemRuntimeDxe */ = { + isa = PBXGroup; + children = ( + 9AA9137325CD452A00BD5E8B /* ResetSystem.h */, + 9AA9137425CD452A00BD5E8B /* ResetSystemRuntimeDxeExtra.uni */, + 9AA9137525CD452A00BD5E8B /* ResetSystemRuntimeDxe.uni */, + 9AA9137625CD452A00BD5E8B /* ResetSystemRuntimeDxe.inf */, + 9AA9137725CD452A00BD5E8B /* ResetSystem.c */, + ); + path = ResetSystemRuntimeDxe; + sourceTree = ""; + }; + 9AA9137825CD452A00BD5E8B /* PrintDxe */ = { + isa = PBXGroup; + children = ( + 9AA9137925CD452A00BD5E8B /* Print.c */, + 9AA9137A25CD452A00BD5E8B /* PrintDxeExtra.uni */, + 9AA9137B25CD452A00BD5E8B /* PrintDxe.uni */, + 9AA9137C25CD452A00BD5E8B /* PrintDxe.inf */, + ); + path = PrintDxe; + sourceTree = ""; + }; + 9AA9137D25CD452A00BD5E8B /* SerialDxe */ = { + isa = PBXGroup; + children = ( + 9AA9137E25CD452A00BD5E8B /* SerialIo.c */, + 9AA9137F25CD452A00BD5E8B /* SerialDxe.inf */, + 9AA9138025CD452A00BD5E8B /* SerialDxe.uni */, + 9AA9138125CD452A00BD5E8B /* SerialDxeExtra.uni */, + ); + path = SerialDxe; + sourceTree = ""; + }; + 9AA9138225CD452A00BD5E8B /* LockBox */ = { + isa = PBXGroup; + children = ( + 9AA9138325CD452A00BD5E8B /* SmmLockBox */, + ); + path = LockBox; + sourceTree = ""; + }; + 9AA9138325CD452A00BD5E8B /* SmmLockBox */ = { + isa = PBXGroup; + children = ( + 9AA9138425CD452A00BD5E8B /* SmmLockBoxExtra.uni */, + 9AA9138525CD452A00BD5E8B /* SmmLockBox.inf */, + 9AA9138625CD452A00BD5E8B /* SmmLockBox.uni */, + 9AA9138725CD452A00BD5E8B /* SmmLockBox.c */, + ); + path = SmmLockBox; + sourceTree = ""; + }; + 9AA9138825CD452A00BD5E8B /* FileExplorerDxe */ = { + isa = PBXGroup; + children = ( + 9AA9138925CD452A00BD5E8B /* FileExplorerDxe.c */, + 9AA9138A25CD452A00BD5E8B /* FileExplorerDxe.uni */, + 9AA9138B25CD452A00BD5E8B /* FileExplorerDxeExtra.uni */, + 9AA9138C25CD452A00BD5E8B /* FileExplorerDxe.inf */, + ); + path = FileExplorerDxe; + sourceTree = ""; + }; + 9AA9138D25CD452A00BD5E8B /* ReportStatusCodeRouter */ = { + isa = PBXGroup; + children = ( + 9AA9138E25CD452A00BD5E8B /* RuntimeDxe */, + 9AA9139425CD452A00BD5E8B /* Pei */, + 9AA9139A25CD452A00BD5E8B /* Smm */, + ); + path = ReportStatusCodeRouter; + sourceTree = ""; + }; + 9AA9138E25CD452A00BD5E8B /* RuntimeDxe */ = { + isa = PBXGroup; + children = ( + 9AA9138F25CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.c */, + 9AA9139025CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxeExtra.uni */, + 9AA9139125CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.uni */, + 9AA9139225CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.inf */, + 9AA9139325CD452A00BD5E8B /* ReportStatusCodeRouterRuntimeDxe.h */, + ); + path = RuntimeDxe; + sourceTree = ""; + }; + 9AA9139425CD452A00BD5E8B /* Pei */ = { + isa = PBXGroup; + children = ( + 9AA9139525CD452A00BD5E8B /* ReportStatusCodeRouterPei.inf */, + 9AA9139625CD452A00BD5E8B /* ReportStatusCodeRouterPei.uni */, + 9AA9139725CD452A00BD5E8B /* ReportStatusCodeRouterPeiExtra.uni */, + 9AA9139825CD452A00BD5E8B /* ReportStatusCodeRouterPei.h */, + 9AA9139925CD452A00BD5E8B /* ReportStatusCodeRouterPei.c */, + ); + path = Pei; + sourceTree = ""; + }; + 9AA9139A25CD452A00BD5E8B /* Smm */ = { + isa = PBXGroup; + children = ( + 9AA9139B25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.c */, + 9AA9139C25CD452A00BD5E8B /* ReportStatusCodeRouterSmmExtra.uni */, + 9AA9139D25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.uni */, + 9AA9139E25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.h */, + 9AA9139F25CD452A00BD5E8B /* ReportStatusCodeRouterSmm.inf */, + ); + path = Smm; + sourceTree = ""; + }; + 9AA913A025CD452A00BD5E8B /* CapsuleRuntimeDxe */ = { + isa = PBXGroup; + children = ( + 9AA913A125CD452A00BD5E8B /* CapsuleCache.c */, + 9AA913A225CD452A00BD5E8B /* CapsuleCacheNull.c */, + 9AA913A325CD452A00BD5E8B /* X64 */, + 9AA913A525CD452A00BD5E8B /* CapsuleService.h */, + 9AA913A625CD452A00BD5E8B /* CapsuleRuntimeDxe.uni */, + 9AA913A725CD452A00BD5E8B /* CapsuleRuntimeDxe.inf */, + 9AA913A825CD452A00BD5E8B /* CapsuleRuntimeDxeExtra.uni */, + 9AA913A925CD452A00BD5E8B /* CapsuleReset.c */, + 9AA913AA25CD452A00BD5E8B /* SaveLongModeContext.c */, + 9AA913AB25CD452A00BD5E8B /* Arm */, + 9AA913AD25CD452A00BD5E8B /* CapsuleService.c */, + ); + path = CapsuleRuntimeDxe; + sourceTree = ""; + }; + 9AA913A325CD452A00BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA913A425CD452A00BD5E8B /* SaveLongModeContext.c */, + ); + path = X64; + sourceTree = ""; + }; + 9AA913AB25CD452A00BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA913AC25CD452A00BD5E8B /* CapsuleReset.c */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA913AE25CD452A00BD5E8B /* SetupBrowserDxe */ = { + isa = PBXGroup; + children = ( + 9AA913AF25CD452A00BD5E8B /* Expression.c */, + 9AA913B025CD452A00BD5E8B /* SetupBrowserExtra.uni */, + 9AA913B125CD452A00BD5E8B /* Setup.h */, + 9AA913B225CD452A00BD5E8B /* Presentation.c */, + 9AA913B325CD452A00BD5E8B /* SetupBrowserDxe.inf */, + 9AA913B425CD452A00BD5E8B /* Setup.c */, + 9AA913B525CD452A00BD5E8B /* Expression.h */, + 9AA913B625CD452A00BD5E8B /* IfrParse.c */, + 9AA913B725CD452A00BD5E8B /* SetupBrowser.uni */, + ); + path = SetupBrowserDxe; + sourceTree = ""; + }; + 9AA913B825CD452A00BD5E8B /* Console */ = { + isa = PBXGroup; + children = ( + 9AA913B925CD452A00BD5E8B /* GraphicsConsoleDxe */, + 9AA913C125CD452A00BD5E8B /* TerminalDxe */, + 9AA913CC25CD452A00BD5E8B /* ConPlatformDxe */, + 9AA913D325CD452A00BD5E8B /* ConSplitterDxe */, + 9AA913DB25CD452A00BD5E8B /* GraphicsOutputDxe */, + ); + path = Console; + sourceTree = ""; + }; + 9AA913B925CD452A00BD5E8B /* GraphicsConsoleDxe */ = { + isa = PBXGroup; + children = ( + 9AA913BA25CD452A00BD5E8B /* GraphicsConsoleDxeExtra.uni */, + 9AA913BB25CD452A00BD5E8B /* GraphicsConsole.h */, + 9AA913BC25CD452A00BD5E8B /* ComponentName.c */, + 9AA913BD25CD452A00BD5E8B /* GraphicsConsoleDxe.inf */, + 9AA913BE25CD452A00BD5E8B /* GraphicsConsoleDxe.uni */, + 9AA913BF25CD452A00BD5E8B /* LaffStd.c */, + 9AA913C025CD452A00BD5E8B /* GraphicsConsole.c */, + ); + path = GraphicsConsoleDxe; + sourceTree = ""; + }; + 9AA913C125CD452A00BD5E8B /* TerminalDxe */ = { + isa = PBXGroup; + children = ( + 9AA913C225CD452A00BD5E8B /* TerminalDxeExtra.uni */, + 9AA913C325CD452A00BD5E8B /* TerminalDxe.uni */, + 9AA913C425CD452A00BD5E8B /* TerminalConOut.c */, + 9AA913C525CD452A00BD5E8B /* TerminalConIn.c */, + 9AA913C625CD452A00BD5E8B /* TerminalDxe.inf */, + 9AA913C725CD452A00BD5E8B /* Terminal.c */, + 9AA913C825CD452A00BD5E8B /* Vtutf8.c */, + 9AA913C925CD452A00BD5E8B /* ComponentName.c */, + 9AA913CA25CD452A00BD5E8B /* Terminal.h */, + 9AA913CB25CD452A00BD5E8B /* Ansi.c */, + ); + path = TerminalDxe; + sourceTree = ""; + }; + 9AA913CC25CD452A00BD5E8B /* ConPlatformDxe */ = { + isa = PBXGroup; + children = ( + 9AA913CD25CD452A00BD5E8B /* ConPlatformDxeExtra.uni */, + 9AA913CE25CD452A00BD5E8B /* ConPlatform.c */, + 9AA913CF25CD452A00BD5E8B /* ConPlatformDxe.inf */, + 9AA913D025CD452A00BD5E8B /* ComponentName.c */, + 9AA913D125CD452A00BD5E8B /* ConPlatformDxe.uni */, + 9AA913D225CD452A00BD5E8B /* ConPlatform.h */, + ); + path = ConPlatformDxe; + sourceTree = ""; + }; + 9AA913D325CD452A00BD5E8B /* ConSplitterDxe */ = { + isa = PBXGroup; + children = ( + 9AA913D425CD452A00BD5E8B /* ConSplitter.h */, + 9AA913D525CD452A00BD5E8B /* ConSplitterGraphics.c */, + 9AA913D625CD452A00BD5E8B /* ComponentName.c */, + 9AA913D725CD452A00BD5E8B /* ConSplitter.c */, + 9AA913D825CD452A00BD5E8B /* ConSplitterDxe.uni */, + 9AA913D925CD452A00BD5E8B /* ConSplitterDxeExtra.uni */, + 9AA913DA25CD452A00BD5E8B /* ConSplitterDxe.inf */, + ); + path = ConSplitterDxe; + sourceTree = ""; + }; + 9AA913DB25CD452A00BD5E8B /* GraphicsOutputDxe */ = { + isa = PBXGroup; + children = ( + 9AA913DC25CD452A00BD5E8B /* GraphicsOutput.h */, + 9AA913DD25CD452A00BD5E8B /* ComponentName.c */, + 9AA913DE25CD452A00BD5E8B /* GraphicsOutputDxe.inf */, + 9AA913DF25CD452A00BD5E8B /* GraphicsOutput.c */, + ); + path = GraphicsOutputDxe; + sourceTree = ""; + }; + 9AA913E025CD452A00BD5E8B /* Metronome */ = { + isa = PBXGroup; + children = ( + 9AA913E125CD452A00BD5E8B /* Metronome.inf */, + 9AA913E225CD452A00BD5E8B /* Metronome.c */, + 9AA913E325CD452A00BD5E8B /* Metronome.uni */, + 9AA913E425CD452A00BD5E8B /* MetronomeExtra.uni */, + 9AA913E525CD452A00BD5E8B /* Metronome.h */, + ); + path = Metronome; + sourceTree = ""; + }; + 9AA913E625CD452A00BD5E8B /* Include */ = { + isa = PBXGroup; + children = ( + 9AA913E725CD452A00BD5E8B /* Library */, + 9AA9140C25CD452A00BD5E8B /* Protocol */, + 9AA9143525CD452B00BD5E8B /* Guid */, + 9AA9146E25CD452B00BD5E8B /* Ppi */, + ); + path = Include; + sourceTree = ""; + }; + 9AA913E725CD452A00BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA913E825CD452A00BD5E8B /* FmpAuthenticationLib.h */, + 9AA913E925CD452A00BD5E8B /* PlatformHookLib.h */, + 9AA913EA25CD452A00BD5E8B /* UefiBootManagerLib.h */, + 9AA913EB25CD452A00BD5E8B /* HttpLib.h */, + 9AA913EC25CD452A00BD5E8B /* TpmMeasurementLib.h */, + 9AA913ED25CD452A00BD5E8B /* PciHostBridgeLib.h */, + 9AA913EE25CD452A00BD5E8B /* SecurityManagementLib.h */, + 9AA913EF25CD452A00BD5E8B /* DisplayUpdateProgressLib.h */, + 9AA913F025CD452A00BD5E8B /* IpmiLib.h */, + 9AA913F125CD452A00BD5E8B /* DebugAgentLib.h */, + 9AA913F225CD452A00BD5E8B /* UefiHiiServicesLib.h */, + 9AA913F325CD452A00BD5E8B /* PlatformBootManagerLib.h */, + 9AA913F425CD452A00BD5E8B /* UdpIoLib.h */, + 9AA913F525CD452A00BD5E8B /* MemoryProfileLib.h */, + 9AA913F625CD452A00BD5E8B /* SmmCorePlatformHookLib.h */, + 9AA913F725CD452A00BD5E8B /* CustomizedDisplayLib.h */, + 9AA913F825CD452A00BD5E8B /* ResetUtilityLib.h */, + 9AA913F925CD452A00BD5E8B /* SortLib.h */, + 9AA913FA25CD452A00BD5E8B /* FrameBufferBltLib.h */, + 9AA913FB25CD452A00BD5E8B /* NetLib.h */, + 9AA913FC25CD452A00BD5E8B /* OemHookStatusCodeLib.h */, + 9AA913FD25CD452A00BD5E8B /* BmpSupportLib.h */, + 9AA913FE25CD452A00BD5E8B /* LockBoxLib.h */, + 9AA913FF25CD452A00BD5E8B /* ResetSystemLib.h */, + 9AA9140025CD452A00BD5E8B /* VarCheckLib.h */, + 9AA9140125CD452A00BD5E8B /* RecoveryLib.h */, + 9AA9140225CD452A00BD5E8B /* AuthVariableLib.h */, + 9AA9140325CD452A00BD5E8B /* HiiLib.h */, + 9AA9140425CD452A00BD5E8B /* NonDiscoverableDeviceRegistrationLib.h */, + 9AA9140525CD452A00BD5E8B /* TcpIoLib.h */, + 9AA9140625CD452A00BD5E8B /* BootLogoLib.h */, + 9AA9140725CD452A00BD5E8B /* PlatformVarCleanupLib.h */, + 9AA9140825CD452A00BD5E8B /* CpuExceptionHandlerLib.h */, + 9AA9140925CD452A00BD5E8B /* CapsuleLib.h */, + 9AA9140A25CD452A00BD5E8B /* S3Lib.h */, + 9AA9140B25CD452A00BD5E8B /* FileExplorerLib.h */, + ); + path = Library; + sourceTree = ""; + }; + 9AA9140C25CD452A00BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA9140D25CD452A00BD5E8B /* Ps2Policy.h */, + 9AA9140E25CD452A00BD5E8B /* FileExplorer.h */, + 9AA9140F25CD452A00BD5E8B /* UfsHostControllerPlatform.h */, + 9AA9141025CD452A00BD5E8B /* EsrtManagement.h */, + 9AA9141125CD452A00BD5E8B /* NonDiscoverableDevice.h */, + 9AA9141225CD452A00BD5E8B /* PlatformSpecificResetFilter.h */, + 9AA9141325CD452A00BD5E8B /* IpmiProtocol.h */, + 9AA9141425CD452A00BD5E8B /* SwapAddressRange.h */, + 9AA9141525CD452A00BD5E8B /* DebuggerConfiguration.h */, + 9AA9141625CD452A00BD5E8B /* IoMmu.h */, + 9AA9141725CD452A00BD5E8B /* PlatformSpecificResetHandler.h */, + 9AA9141825CD452A00BD5E8B /* LoadPe32Image.h */, + 9AA9141925CD452A00BD5E8B /* VarCheck.h */, + 9AA9141A25CD452A00BD5E8B /* FirmwareManagementProgress.h */, + 9AA9141B25CD452A00BD5E8B /* AtaAtapiPolicy.h */, + 9AA9141C25CD452A00BD5E8B /* SmmMemoryAttribute.h */, + 9AA9141D25CD452A00BD5E8B /* SdMmcOverride.h */, + 9AA9141E25CD452A00BD5E8B /* FormBrowserEx2.h */, + 9AA9141F25CD452A00BD5E8B /* SmmSwapAddressRange.h */, + 9AA9142025CD452A00BD5E8B /* UfsHostController.h */, + 9AA9142125CD452A00BD5E8B /* SmmFirmwareVolumeBlock.h */, + 9AA9142225CD452A00BD5E8B /* EbcVmTest.h */, + 9AA9142325CD452A00BD5E8B /* PlatformLogo.h */, + 9AA9142425CD452A00BD5E8B /* PeCoffImageEmulator.h */, + 9AA9142525CD452A00BD5E8B /* Print2.h */, + 9AA9142625CD452B00BD5E8B /* BootLogo.h */, + 9AA9142725CD452B00BD5E8B /* SmmReadyToBoot.h */, + 9AA9142825CD452B00BD5E8B /* SmmLegacyBoot.h */, + 9AA9142925CD452B00BD5E8B /* SmmVariable.h */, + 9AA9142A25CD452B00BD5E8B /* SmmFaultTolerantWrite.h */, + 9AA9142B25CD452B00BD5E8B /* LockBox.h */, + 9AA9142C25CD452B00BD5E8B /* GenericMemoryTest.h */, + 9AA9142D25CD452B00BD5E8B /* DisplayProtocol.h */, + 9AA9142E25CD452B00BD5E8B /* BootLogo2.h */, + 9AA9142F25CD452B00BD5E8B /* FormBrowserEx.h */, + 9AA9143025CD452B00BD5E8B /* VariableLock.h */, + 9AA9143125CD452B00BD5E8B /* EbcSimpleDebugger.h */, + 9AA9143225CD452B00BD5E8B /* SmmVarCheck.h */, + 9AA9143325CD452B00BD5E8B /* SmmExitBootServices.h */, + 9AA9143425CD452B00BD5E8B /* FaultTolerantWrite.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA9143525CD452B00BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA9143625CD452B00BD5E8B /* EndOfS3Resume.h */, + 9AA9143725CD452B00BD5E8B /* MdeModulePkgTokenSpace.h */, + 9AA9143825CD452B00BD5E8B /* LoadModuleAtFixedAddress.h */, + 9AA9143925CD452B00BD5E8B /* SystemNvDataGuid.h */, + 9AA9143A25CD452B00BD5E8B /* ExtendedFirmwarePerformance.h */, + 9AA9143B25CD452B00BD5E8B /* MdeModuleHii.h */, + 9AA9143C25CD452B00BD5E8B /* NonDiscoverableDevice.h */, + 9AA9143D25CD452B00BD5E8B /* PlatformHasAcpi.h */, + 9AA9143E25CD452B00BD5E8B /* SmmVariableCommon.h */, + 9AA9143F25CD452B00BD5E8B /* MemoryProfile.h */, + 9AA9144025CD452B00BD5E8B /* RamDiskHii.h */, + 9AA9144125CD452B00BD5E8B /* PcdDataBaseSignatureGuid.h */, + 9AA9144225CD452B00BD5E8B /* VariableIndexTable.h */, + 9AA9144325CD452B00BD5E8B /* ConsoleInDevice.h */, + 9AA9144425CD452B00BD5E8B /* SerialPortLibVendor.h */, + 9AA9144525CD452B00BD5E8B /* RecoveryDevice.h */, + 9AA9144625CD452B00BD5E8B /* IdleLoopEvent.h */, + 9AA9144725CD452B00BD5E8B /* Performance.h */, + 9AA9144825CD452B00BD5E8B /* UsbKeyBoardLayout.h */, + 9AA9144925CD452B00BD5E8B /* ZeroGuid.h */, + 9AA9144A25CD452B00BD5E8B /* PcdDataBaseHobGuid.h */, + 9AA9144B25CD452B00BD5E8B /* LzmaDecompress.h */, + 9AA9144C25CD452B00BD5E8B /* Ip4Config2Hii.h */, + 9AA9144D25CD452B00BD5E8B /* PiSmmMemoryAttributesTable.h */, + 9AA9144E25CD452B00BD5E8B /* VarErrorFlag.h */, + 9AA9144F25CD452B00BD5E8B /* ConsoleOutDevice.h */, + 9AA9145025CD452B00BD5E8B /* SmmLockBox.h */, + 9AA9145125CD452B00BD5E8B /* BootScriptExecutorVariable.h */, + 9AA9145225CD452B00BD5E8B /* MtcVendor.h */, + 9AA9145325CD452B00BD5E8B /* DriverSampleHii.h */, + 9AA9145425CD452B00BD5E8B /* StandardErrorDevice.h */, + 9AA9145525CD452B00BD5E8B /* MemoryStatusCodeRecord.h */, + 9AA9145625CD452B00BD5E8B /* S3SmmInitDone.h */, + 9AA9145725CD452B00BD5E8B /* StatusCodeDataTypeDebug.h */, + 9AA9145825CD452B00BD5E8B /* EventExitBootServiceFailed.h */, + 9AA9145925CD452B00BD5E8B /* S3StorageDeviceInitList.h */, + 9AA9145A25CD452B00BD5E8B /* CapsuleVendor.h */, + 9AA9145B25CD452B00BD5E8B /* ConnectConInEvent.h */, + 9AA9145C25CD452B00BD5E8B /* VlanConfigHii.h */, + 9AA9145D25CD452B00BD5E8B /* SmiHandlerProfile.h */, + 9AA9145E25CD452B00BD5E8B /* PerformanceMeasurement.h */, + 9AA9145F25CD452B00BD5E8B /* HiiBootMaintenanceFormset.h */, + 9AA9146025CD452B00BD5E8B /* PlatDriOverrideHii.h */, + 9AA9146125CD452B00BD5E8B /* DebugMask.h */, + 9AA9146225CD452B00BD5E8B /* VariableFormat.h */, + 9AA9146325CD452B00BD5E8B /* AcpiS3Context.h */, + 9AA9146425CD452B00BD5E8B /* StatusCodeDataTypeVariable.h */, + 9AA9146525CD452B00BD5E8B /* Ip4IScsiConfigHii.h */, + 9AA9146625CD452B00BD5E8B /* Crc32GuidedSectionExtraction.h */, + 9AA9146725CD452B00BD5E8B /* TtyTerm.h */, + 9AA9146825CD452B00BD5E8B /* PiSmmCommunicationRegionTable.h */, + 9AA9146925CD452B00BD5E8B /* StatusCodeCallbackGuid.h */, + 9AA9146A25CD452B00BD5E8B /* HiiResourceSampleHii.h */, + 9AA9146B25CD452B00BD5E8B /* MemoryTypeInformation.h */, + 9AA9146C25CD452B00BD5E8B /* FirmwarePerformance.h */, + 9AA9146D25CD452B00BD5E8B /* FaultTolerantWrite.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA9146E25CD452B00BD5E8B /* Ppi */ = { + isa = PBXGroup; + children = ( + 9AA9146F25CD452B00BD5E8B /* SerialPortPei.h */, + 9AA9147025CD452B00BD5E8B /* PlatformSpecificResetFilter.h */, + 9AA9147125CD452B00BD5E8B /* Debug.h */, + 9AA9147225CD452B00BD5E8B /* SdMmcHostController.h */, + 9AA9147325CD452B00BD5E8B /* IoMmu.h */, + 9AA9147425CD452B00BD5E8B /* Usb2HostController.h */, + 9AA9147525CD452B00BD5E8B /* AtaController.h */, + 9AA9147625CD452B00BD5E8B /* AtaAhciController.h */, + 9AA9147725CD452B00BD5E8B /* PlatformSpecificResetHandler.h */, + 9AA9147825CD452B00BD5E8B /* AtaPassThru.h */, + 9AA9147925CD452B00BD5E8B /* IpmiPpi.h */, + 9AA9147A25CD452B00BD5E8B /* UfsHostController.h */, + 9AA9147B25CD452B00BD5E8B /* PlatformSpecificResetNotification.h */, + 9AA9147C25CD452B00BD5E8B /* StorageSecurityCommand.h */, + 9AA9147D25CD452B00BD5E8B /* SmmControl.h */, + 9AA9147E25CD452B00BD5E8B /* SmmCommunication.h */, + 9AA9147F25CD452B00BD5E8B /* NvmExpressPassThru.h */, + 9AA9148025CD452B00BD5E8B /* UsbHostController.h */, + 9AA9148125CD452B00BD5E8B /* UsbIo.h */, + 9AA9148225CD452B00BD5E8B /* NvmExpressHostController.h */, + 9AA9148325CD452B00BD5E8B /* UsbController.h */, + 9AA9148425CD452B00BD5E8B /* SmmAccess.h */, + 9AA9148525CD452B00BD5E8B /* CapsuleOnDisk.h */, + 9AA9148625CD452B00BD5E8B /* PostBootScriptTable.h */, + 9AA9148725CD452B00BD5E8B /* SecPerformance.h */, + ); + path = Ppi; + sourceTree = ""; + }; + 9AA9148925CD452B00BD5E8B /* Bus */ = { + isa = PBXGroup; + children = ( + 9AA9148A25CD452B00BD5E8B /* Sd */, + 9AA914B725CD452B00BD5E8B /* Pci */, + 9AA9158F25CD452B00BD5E8B /* Isa */, + 9AA915AA25CD452B00BD5E8B /* Scsi */, + 9AA915B925CD452B00BD5E8B /* Ufs */, + 9AA915CF25CD452B00BD5E8B /* I2c */, + 9AA915DE25CD452B00BD5E8B /* Usb */, + 9AA9162E25CD452B00BD5E8B /* Ata */, + ); + path = Bus; + sourceTree = ""; + }; + 9AA9148A25CD452B00BD5E8B /* Sd */ = { + isa = PBXGroup; + children = ( + 9AA9148B25CD452B00BD5E8B /* SdBlockIoPei */, + 9AA9149625CD452B00BD5E8B /* EmmcBlockIoPei */, + 9AA914A125CD452B00BD5E8B /* SdDxe */, + 9AA914AC25CD452B00BD5E8B /* EmmcDxe */, + ); + path = Sd; + sourceTree = ""; + }; + 9AA9148B25CD452B00BD5E8B /* SdBlockIoPei */ = { + isa = PBXGroup; + children = ( + 9AA9148C25CD452B00BD5E8B /* SdBlockIoPei.c */, + 9AA9148D25CD452B00BD5E8B /* SdHcMem.c */, + 9AA9148E25CD452B00BD5E8B /* SdBlockIoPeiExtra.uni */, + 9AA9148F25CD452B00BD5E8B /* SdHci.h */, + 9AA9149025CD452B00BD5E8B /* SdBlockIoPei.uni */, + 9AA9149125CD452B00BD5E8B /* SdBlockIoPei.inf */, + 9AA9149225CD452B00BD5E8B /* SdHcMem.h */, + 9AA9149325CD452B00BD5E8B /* SdBlockIoPei.h */, + 9AA9149425CD452B00BD5E8B /* DmaMem.c */, + 9AA9149525CD452B00BD5E8B /* SdHci.c */, + ); + path = SdBlockIoPei; + sourceTree = ""; + }; + 9AA9149625CD452B00BD5E8B /* EmmcBlockIoPei */ = { + isa = PBXGroup; + children = ( + 9AA9149725CD452B00BD5E8B /* EmmcHcMem.c */, + 9AA9149825CD452B00BD5E8B /* EmmcHci.c */, + 9AA9149925CD452B00BD5E8B /* EmmcBlockIoPei.c */, + 9AA9149A25CD452B00BD5E8B /* EmmcBlockIoPeiExtra.uni */, + 9AA9149B25CD452B00BD5E8B /* EmmcHcMem.h */, + 9AA9149C25CD452B00BD5E8B /* EmmcHci.h */, + 9AA9149D25CD452B00BD5E8B /* EmmcBlockIoPei.h */, + 9AA9149E25CD452B00BD5E8B /* DmaMem.c */, + 9AA9149F25CD452B00BD5E8B /* EmmcBlockIoPei.uni */, + 9AA914A025CD452B00BD5E8B /* EmmcBlockIoPei.inf */, + ); + path = EmmcBlockIoPei; + sourceTree = ""; + }; + 9AA914A125CD452B00BD5E8B /* SdDxe */ = { + isa = PBXGroup; + children = ( + 9AA914A225CD452B00BD5E8B /* SdBlockIo.c */, + 9AA914A325CD452B00BD5E8B /* SdDxe.uni */, + 9AA914A425CD452B00BD5E8B /* SdDxe.c */, + 9AA914A525CD452B00BD5E8B /* SdDxe.inf */, + 9AA914A625CD452B00BD5E8B /* ComponentName.c */, + 9AA914A725CD452B00BD5E8B /* SdDiskInfo.h */, + 9AA914A825CD452B00BD5E8B /* SdBlockIo.h */, + 9AA914A925CD452B00BD5E8B /* SdDxe.h */, + 9AA914AA25CD452B00BD5E8B /* SdDxeExtra.uni */, + 9AA914AB25CD452B00BD5E8B /* SdDiskInfo.c */, + ); + path = SdDxe; + sourceTree = ""; + }; + 9AA914AC25CD452B00BD5E8B /* EmmcDxe */ = { + isa = PBXGroup; + children = ( + 9AA914AD25CD452B00BD5E8B /* EmmcDxe.h */, + 9AA914AE25CD452B00BD5E8B /* EmmcDiskInfo.h */, + 9AA914AF25CD452B00BD5E8B /* EmmcDxe.uni */, + 9AA914B025CD452B00BD5E8B /* EmmcBlockIo.c */, + 9AA914B125CD452B00BD5E8B /* ComponentName.c */, + 9AA914B225CD452B00BD5E8B /* EmmcDxe.inf */, + 9AA914B325CD452B00BD5E8B /* EmmcDxe.c */, + 9AA914B425CD452B00BD5E8B /* EmmcDiskInfo.c */, + 9AA914B525CD452B00BD5E8B /* EmmcBlockIo.h */, + 9AA914B625CD452B00BD5E8B /* EmmcDxeExtra.uni */, + ); + path = EmmcDxe; + sourceTree = ""; + }; + 9AA914B725CD452B00BD5E8B /* Pci */ = { + isa = PBXGroup; + children = ( + 9AA914B825CD452B00BD5E8B /* IdeBusPei */, + 9AA914BE25CD452B00BD5E8B /* SdMmcPciHcDxe */, + 9AA914C925CD452B00BD5E8B /* IncompatiblePciDeviceSupportDxe */, + 9AA914CE25CD452B00BD5E8B /* PciBusDxe */, + 9AA914EE25CD452B00BD5E8B /* XhciPei */, + 9AA914FA25CD452B00BD5E8B /* EhciPei */, + 9AA9150825CD452B00BD5E8B /* UfsPciHcDxe */, + 9AA9150F25CD452B00BD5E8B /* UhciDxe */, + 9AA9152125CD452B00BD5E8B /* NvmExpressPei */, + 9AA9153225CD452B00BD5E8B /* SdMmcPciHcPei */, + 9AA9153825CD452B00BD5E8B /* SataControllerDxe */, + 9AA9153F25CD452B00BD5E8B /* PciSioSerialDxe */, + 9AA9154725CD452B00BD5E8B /* PciHostBridgeDxe */, + 9AA9154E25CD452B00BD5E8B /* XhciDxe */, + 9AA9155C25CD452B00BD5E8B /* UhciPei */, + 9AA9156325CD452B00BD5E8B /* NvmExpressDxe */, + 9AA9157125CD452B00BD5E8B /* NonDiscoverablePciDeviceDxe */, + 9AA9157725CD452B00BD5E8B /* EhciDxe */, + 9AA9158925CD452B00BD5E8B /* UfsPciHcPei */, + ); + path = Pci; + sourceTree = ""; + }; + 9AA914B825CD452B00BD5E8B /* IdeBusPei */ = { + isa = PBXGroup; + children = ( + 9AA914B925CD452B00BD5E8B /* AtapiPeim.h */, + 9AA914BA25CD452B00BD5E8B /* IdeBusPei.uni */, + 9AA914BB25CD452B00BD5E8B /* IdeBusPeiExtra.uni */, + 9AA914BC25CD452B00BD5E8B /* IdeBusPei.inf */, + 9AA914BD25CD452B00BD5E8B /* AtapiPeim.c */, + ); + path = IdeBusPei; + sourceTree = ""; + }; + 9AA914BE25CD452B00BD5E8B /* SdMmcPciHcDxe */ = { + isa = PBXGroup; + children = ( + 9AA914BF25CD452B00BD5E8B /* SdMmcPciHci.c */, + 9AA914C025CD452B00BD5E8B /* SdMmcPciHcDxeExtra.uni */, + 9AA914C125CD452B00BD5E8B /* SdDevice.c */, + 9AA914C225CD452B00BD5E8B /* ComponentName.c */, + 9AA914C325CD452B00BD5E8B /* SdMmcPciHcDxe.h */, + 9AA914C425CD452B00BD5E8B /* SdMmcPciHci.h */, + 9AA914C525CD452B00BD5E8B /* EmmcDevice.c */, + 9AA914C625CD452B00BD5E8B /* SdMmcPciHcDxe.inf */, + 9AA914C725CD452B00BD5E8B /* SdMmcPciHcDxe.uni */, + 9AA914C825CD452B00BD5E8B /* SdMmcPciHcDxe.c */, + ); + path = SdMmcPciHcDxe; + sourceTree = ""; + }; + 9AA914C925CD452B00BD5E8B /* IncompatiblePciDeviceSupportDxe */ = { + isa = PBXGroup; + children = ( + 9AA914CA25CD452B00BD5E8B /* IncompatiblePciDeviceSupportDxe.inf */, + 9AA914CB25CD452B00BD5E8B /* IncompatiblePciDeviceSupportExtra.uni */, + 9AA914CC25CD452B00BD5E8B /* IncompatiblePciDeviceSupport.uni */, + 9AA914CD25CD452B00BD5E8B /* IncompatiblePciDeviceSupport.c */, + ); + path = IncompatiblePciDeviceSupportDxe; + sourceTree = ""; + }; + 9AA914CE25CD452B00BD5E8B /* PciBusDxe */ = { + isa = PBXGroup; + children = ( + 9AA914CF25CD452B00BD5E8B /* PciEnumerator.c */, + 9AA914D025CD452B00BD5E8B /* PciDriverOverride.c */, + 9AA914D125CD452B00BD5E8B /* PciResourceSupport.c */, + 9AA914D225CD452B00BD5E8B /* PciDeviceSupport.c */, + 9AA914D325CD452B00BD5E8B /* PciIo.c */, + 9AA914D425CD452B00BD5E8B /* PciCommand.c */, + 9AA914D525CD452B00BD5E8B /* PciHotPlugSupport.c */, + 9AA914D625CD452B00BD5E8B /* PciOptionRomSupport.h */, + 9AA914D725CD452B00BD5E8B /* PciRomTable.h */, + 9AA914D825CD452B00BD5E8B /* PciEnumeratorSupport.c */, + 9AA914D925CD452B00BD5E8B /* PciLib.h */, + 9AA914DA25CD452B00BD5E8B /* PciBusDxeExtra.uni */, + 9AA914DB25CD452B00BD5E8B /* ComponentName.c */, + 9AA914DC25CD452B00BD5E8B /* PciBus.c */, + 9AA914DD25CD452B00BD5E8B /* PciPowerManagement.c */, + 9AA914DE25CD452B00BD5E8B /* PciResourceSupport.h */, + 9AA914DF25CD452B00BD5E8B /* PciDriverOverride.h */, + 9AA914E025CD452B00BD5E8B /* PciEnumerator.h */, + 9AA914E125CD452B00BD5E8B /* PciCommand.h */, + 9AA914E225CD452B00BD5E8B /* PciIo.h */, + 9AA914E325CD452B00BD5E8B /* PciDeviceSupport.h */, + 9AA914E425CD452B00BD5E8B /* PciRomTable.c */, + 9AA914E525CD452B00BD5E8B /* PciBusDxe.inf */, + 9AA914E625CD452B00BD5E8B /* PciOptionRomSupport.c */, + 9AA914E725CD452B00BD5E8B /* PciHotPlugSupport.h */, + 9AA914E825CD452B00BD5E8B /* PciPowerManagement.h */, + 9AA914E925CD452B00BD5E8B /* PciBus.h */, + 9AA914EA25CD452B00BD5E8B /* ComponentName.h */, + 9AA914EB25CD452B00BD5E8B /* PciBusDxe.uni */, + 9AA914EC25CD452B00BD5E8B /* PciEnumeratorSupport.h */, + 9AA914ED25CD452B00BD5E8B /* PciLib.c */, + ); + path = PciBusDxe; + sourceTree = ""; + }; + 9AA914EE25CD452B00BD5E8B /* XhciPei */ = { + isa = PBXGroup; + children = ( + 9AA914EF25CD452B00BD5E8B /* XhciSched.h */, + 9AA914F025CD452B00BD5E8B /* XhciPei.inf */, + 9AA914F125CD452B00BD5E8B /* XhcPeim.h */, + 9AA914F225CD452B00BD5E8B /* XhciPei.uni */, + 9AA914F325CD452B00BD5E8B /* UsbHcMem.h */, + 9AA914F425CD452B00BD5E8B /* XhciSched.c */, + 9AA914F525CD452B00BD5E8B /* DmaMem.c */, + 9AA914F625CD452B00BD5E8B /* XhciPeiExtra.uni */, + 9AA914F725CD452B00BD5E8B /* UsbHcMem.c */, + 9AA914F825CD452B00BD5E8B /* XhciReg.h */, + 9AA914F925CD452B00BD5E8B /* XhcPeim.c */, + ); + path = XhciPei; + sourceTree = ""; + }; + 9AA914FA25CD452B00BD5E8B /* EhciPei */ = { + isa = PBXGroup; + children = ( + 9AA914FB25CD452B00BD5E8B /* EhciPeiExtra.uni */, + 9AA914FC25CD452B00BD5E8B /* EhciUrb.h */, + 9AA914FD25CD452B00BD5E8B /* EhcPeim.h */, + 9AA914FE25CD452B00BD5E8B /* UsbHcMem.h */, + 9AA914FF25CD452B00BD5E8B /* EhciSched.c */, + 9AA9150025CD452B00BD5E8B /* EhciPei.uni */, + 9AA9150125CD452B00BD5E8B /* EhciPei.inf */, + 9AA9150225CD452B00BD5E8B /* DmaMem.c */, + 9AA9150325CD452B00BD5E8B /* EhciReg.h */, + 9AA9150425CD452B00BD5E8B /* EhcPeim.c */, + 9AA9150525CD452B00BD5E8B /* EhciUrb.c */, + 9AA9150625CD452B00BD5E8B /* EhciSched.h */, + 9AA9150725CD452B00BD5E8B /* UsbHcMem.c */, + ); + path = EhciPei; + sourceTree = ""; + }; + 9AA9150825CD452B00BD5E8B /* UfsPciHcDxe */ = { + isa = PBXGroup; + children = ( + 9AA9150925CD452B00BD5E8B /* UfsPciHcDxeExtra.uni */, + 9AA9150A25CD452B00BD5E8B /* ComponentName.c */, + 9AA9150B25CD452B00BD5E8B /* UfsPciHcDxe.c */, + 9AA9150C25CD452B00BD5E8B /* UfsPciHcDxe.uni */, + 9AA9150D25CD452B00BD5E8B /* UfsPciHcDxe.h */, + 9AA9150E25CD452B00BD5E8B /* UfsPciHcDxe.inf */, + ); + path = UfsPciHcDxe; + sourceTree = ""; + }; + 9AA9150F25CD452B00BD5E8B /* UhciDxe */ = { + isa = PBXGroup; + children = ( + 9AA9151025CD452B00BD5E8B /* UhciSched.h */, + 9AA9151125CD452B00BD5E8B /* UhciReg.h */, + 9AA9151225CD452B00BD5E8B /* UhciDebug.c */, + 9AA9151325CD452B00BD5E8B /* UhciQueue.h */, + 9AA9151425CD452B00BD5E8B /* Uhci.c */, + 9AA9151525CD452B00BD5E8B /* UhciDxeExtra.uni */, + 9AA9151625CD452B00BD5E8B /* ComponentName.c */, + 9AA9151725CD452B00BD5E8B /* UsbHcMem.h */, + 9AA9151825CD452B00BD5E8B /* UhciSched.c */, + 9AA9151925CD452B00BD5E8B /* UhciDxe.inf */, + 9AA9151A25CD452B00BD5E8B /* UhciDebug.h */, + 9AA9151B25CD452B00BD5E8B /* UhciReg.c */, + 9AA9151C25CD452B00BD5E8B /* UhciDxe.uni */, + 9AA9151D25CD452B00BD5E8B /* UhciQueue.c */, + 9AA9151E25CD452B00BD5E8B /* UsbHcMem.c */, + 9AA9151F25CD452B00BD5E8B /* Uhci.h */, + 9AA9152025CD452B00BD5E8B /* ComponentName.h */, + ); + path = UhciDxe; + sourceTree = ""; + }; + 9AA9152125CD452B00BD5E8B /* NvmExpressPei */ = { + isa = PBXGroup; + children = ( + 9AA9152225CD452B00BD5E8B /* DevicePath.c */, + 9AA9152325CD452B00BD5E8B /* NvmExpressPeiHci.h */, + 9AA9152425CD452B00BD5E8B /* NvmExpressPeiStorageSecurity.h */, + 9AA9152525CD452B00BD5E8B /* NvmExpressPei.c */, + 9AA9152625CD452B00BD5E8B /* NvmExpressPeiBlockIo.c */, + 9AA9152725CD452B00BD5E8B /* NvmExpressPeiExtra.uni */, + 9AA9152825CD452B00BD5E8B /* NvmExpressPeiPassThru.h */, + 9AA9152925CD452B00BD5E8B /* NvmExpressPeiS3.c */, + 9AA9152A25CD452B00BD5E8B /* NvmExpressPeiStorageSecurity.c */, + 9AA9152B25CD452B00BD5E8B /* NvmExpressPei.h */, + 9AA9152C25CD452B00BD5E8B /* NvmExpressPei.inf */, + 9AA9152D25CD452B00BD5E8B /* NvmExpressPeiHci.c */, + 9AA9152E25CD452B00BD5E8B /* NvmExpressPei.uni */, + 9AA9152F25CD452B00BD5E8B /* NvmExpressPeiBlockIo.h */, + 9AA9153025CD452B00BD5E8B /* DmaMem.c */, + 9AA9153125CD452B00BD5E8B /* NvmExpressPeiPassThru.c */, + ); + path = NvmExpressPei; + sourceTree = ""; + }; + 9AA9153225CD452B00BD5E8B /* SdMmcPciHcPei */ = { + isa = PBXGroup; + children = ( + 9AA9153325CD452B00BD5E8B /* SdMmcPciHcPei.inf */, + 9AA9153425CD452B00BD5E8B /* SdMmcPciHcPei.c */, + 9AA9153525CD452B00BD5E8B /* SdMmcPciHcPei.uni */, + 9AA9153625CD452B00BD5E8B /* SdMmcPciHcPeiExtra.uni */, + 9AA9153725CD452B00BD5E8B /* SdMmcPciHcPei.h */, + ); + path = SdMmcPciHcPei; + sourceTree = ""; + }; + 9AA9153825CD452B00BD5E8B /* SataControllerDxe */ = { + isa = PBXGroup; + children = ( + 9AA9153925CD452B00BD5E8B /* SataController.c */, + 9AA9153A25CD452B00BD5E8B /* SataControllerDxe.uni */, + 9AA9153B25CD452B00BD5E8B /* SataControllerDxeExtra.uni */, + 9AA9153C25CD452B00BD5E8B /* ComponentName.c */, + 9AA9153D25CD452B00BD5E8B /* SataControllerDxe.inf */, + 9AA9153E25CD452B00BD5E8B /* SataController.h */, + ); + path = SataControllerDxe; + sourceTree = ""; + }; + 9AA9153F25CD452B00BD5E8B /* PciSioSerialDxe */ = { + isa = PBXGroup; + children = ( + 9AA9154025CD452B00BD5E8B /* PciSioSerialDxe.inf */, + 9AA9154125CD452B00BD5E8B /* Serial.c */, + 9AA9154225CD452B00BD5E8B /* SerialIo.c */, + 9AA9154325CD452B00BD5E8B /* PciSioSerialDxe.uni */, + 9AA9154425CD452B00BD5E8B /* PciSioSerialDxeExtra.uni */, + 9AA9154525CD452B00BD5E8B /* ComponentName.c */, + 9AA9154625CD452B00BD5E8B /* Serial.h */, + ); + path = PciSioSerialDxe; + sourceTree = ""; + }; + 9AA9154725CD452B00BD5E8B /* PciHostBridgeDxe */ = { + isa = PBXGroup; + children = ( + 9AA9154825CD452B00BD5E8B /* PciRootBridgeIo.c */, + 9AA9154925CD452B00BD5E8B /* PciHostResource.h */, + 9AA9154A25CD452B00BD5E8B /* PciHostBridge.h */, + 9AA9154B25CD452B00BD5E8B /* PciRootBridge.h */, + 9AA9154C25CD452B00BD5E8B /* PciHostBridgeDxe.inf */, + 9AA9154D25CD452B00BD5E8B /* PciHostBridge.c */, + ); + path = PciHostBridgeDxe; + sourceTree = ""; + }; + 9AA9154E25CD452B00BD5E8B /* XhciDxe */ = { + isa = PBXGroup; + children = ( + 9AA9154F25CD452B00BD5E8B /* XhciDxeExtra.uni */, + 9AA9155025CD452B00BD5E8B /* XhciSched.h */, + 9AA9155125CD452B00BD5E8B /* Xhci.c */, + 9AA9155225CD452B00BD5E8B /* XhciReg.c */, + 9AA9155325CD452B00BD5E8B /* ComponentName.c */, + 9AA9155425CD452B00BD5E8B /* UsbHcMem.h */, + 9AA9155525CD452B00BD5E8B /* XhciSched.c */, + 9AA9155625CD452B00BD5E8B /* XhciDxe.inf */, + 9AA9155725CD452B00BD5E8B /* XhciDxe.uni */, + 9AA9155825CD452B00BD5E8B /* Xhci.h */, + 9AA9155925CD452B00BD5E8B /* UsbHcMem.c */, + 9AA9155A25CD452B00BD5E8B /* ComponentName.h */, + 9AA9155B25CD452B00BD5E8B /* XhciReg.h */, + ); + path = XhciDxe; + sourceTree = ""; + }; + 9AA9155C25CD452B00BD5E8B /* UhciPei */ = { + isa = PBXGroup; + children = ( + 9AA9155D25CD452B00BD5E8B /* UhcPeim.c */, + 9AA9155E25CD452B00BD5E8B /* UhciPei.inf */, + 9AA9155F25CD452B00BD5E8B /* UhciPei.uni */, + 9AA9156025CD452B00BD5E8B /* UhciPeiExtra.uni */, + 9AA9156125CD452B00BD5E8B /* UhcPeim.h */, + 9AA9156225CD452B00BD5E8B /* DmaMem.c */, + ); + path = UhciPei; + sourceTree = ""; + }; + 9AA9156325CD452B00BD5E8B /* NvmExpressDxe */ = { + isa = PBXGroup; + children = ( + 9AA9156425CD452B00BD5E8B /* NvmExpressHci.c */, + 9AA9156525CD452B00BD5E8B /* NvmExpressPassthru.c */, + 9AA9156625CD452B00BD5E8B /* NvmExpressBlockIo.c */, + 9AA9156725CD452B00BD5E8B /* NvmExpressDxe.inf */, + 9AA9156825CD452B00BD5E8B /* NvmExpressDxe.uni */, + 9AA9156925CD452B00BD5E8B /* NvmExpress.c */, + 9AA9156A25CD452B00BD5E8B /* NvmExpressDiskInfo.h */, + 9AA9156B25CD452B00BD5E8B /* ComponentName.c */, + 9AA9156C25CD452B00BD5E8B /* NvmExpressBlockIo.h */, + 9AA9156D25CD452B00BD5E8B /* NvmExpressHci.h */, + 9AA9156E25CD452B00BD5E8B /* NvmExpressDxeExtra.uni */, + 9AA9156F25CD452B00BD5E8B /* NvmExpressDiskInfo.c */, + 9AA9157025CD452B00BD5E8B /* NvmExpress.h */, + ); + path = NvmExpressDxe; + sourceTree = ""; + }; + 9AA9157125CD452B00BD5E8B /* NonDiscoverablePciDeviceDxe */ = { + isa = PBXGroup; + children = ( + 9AA9157225CD452B00BD5E8B /* NonDiscoverablePciDeviceDxe.inf */, + 9AA9157325CD452B00BD5E8B /* NonDiscoverablePciDeviceIo.c */, + 9AA9157425CD452B00BD5E8B /* ComponentName.c */, + 9AA9157525CD452B00BD5E8B /* NonDiscoverablePciDeviceDxe.c */, + 9AA9157625CD452B00BD5E8B /* NonDiscoverablePciDeviceIo.h */, + ); + path = NonDiscoverablePciDeviceDxe; + sourceTree = ""; + }; + 9AA9157725CD452B00BD5E8B /* EhciDxe */ = { + isa = PBXGroup; + children = ( + 9AA9157825CD452B00BD5E8B /* EhciReg.c */, + 9AA9157925CD452B00BD5E8B /* EhciUrb.h */, + 9AA9157A25CD452B00BD5E8B /* EhciDebug.h */, + 9AA9157B25CD452B00BD5E8B /* EhciDxe.uni */, + 9AA9157C25CD452B00BD5E8B /* Ehci.h */, + 9AA9157D25CD452B00BD5E8B /* ComponentName.c */, + 9AA9157E25CD452B00BD5E8B /* EhciDxe.inf */, + 9AA9157F25CD452B00BD5E8B /* UsbHcMem.h */, + 9AA9158025CD452B00BD5E8B /* EhciSched.c */, + 9AA9158125CD452B00BD5E8B /* EhciDxeExtra.uni */, + 9AA9158225CD452B00BD5E8B /* Ehci.c */, + 9AA9158325CD452B00BD5E8B /* EhciDebug.c */, + 9AA9158425CD452B00BD5E8B /* EhciReg.h */, + 9AA9158525CD452B00BD5E8B /* EhciUrb.c */, + 9AA9158625CD452B00BD5E8B /* EhciSched.h */, + 9AA9158725CD452B00BD5E8B /* UsbHcMem.c */, + 9AA9158825CD452B00BD5E8B /* ComponentName.h */, + ); + path = EhciDxe; + sourceTree = ""; + }; + 9AA9158925CD452B00BD5E8B /* UfsPciHcPei */ = { + isa = PBXGroup; + children = ( + 9AA9158A25CD452B00BD5E8B /* UfsPciHcPei.uni */, + 9AA9158B25CD452B00BD5E8B /* UfsPciHcPei.inf */, + 9AA9158C25CD452B00BD5E8B /* UfsPciHcPei.h */, + 9AA9158D25CD452B00BD5E8B /* UfsPciHcPeiExtra.uni */, + 9AA9158E25CD452B00BD5E8B /* UfsPciHcPei.c */, + ); + path = UfsPciHcPei; + sourceTree = ""; + }; + 9AA9158F25CD452B00BD5E8B /* Isa */ = { + isa = PBXGroup; + children = ( + 9AA9159025CD452B00BD5E8B /* IsaBusDxe */, + 9AA9159825CD452B00BD5E8B /* Ps2KeyboardDxe */, + 9AA915A125CD452B00BD5E8B /* Ps2MouseDxe */, + ); + path = Isa; + sourceTree = ""; + }; + 9AA9159025CD452B00BD5E8B /* IsaBusDxe */ = { + isa = PBXGroup; + children = ( + 9AA9159125CD452B00BD5E8B /* IsaBusDxeExtra.uni */, + 9AA9159225CD452B00BD5E8B /* ComponentName.c */, + 9AA9159325CD452B00BD5E8B /* IsaBusDxe.h */, + 9AA9159425CD452B00BD5E8B /* IsaBusDxe.inf */, + 9AA9159525CD452B00BD5E8B /* IsaBusDxe.uni */, + 9AA9159625CD452B00BD5E8B /* IsaBusDxe.c */, + 9AA9159725CD452B00BD5E8B /* ComponentName.h */, + ); + path = IsaBusDxe; + sourceTree = ""; + }; + 9AA9159825CD452B00BD5E8B /* Ps2KeyboardDxe */ = { + isa = PBXGroup; + children = ( + 9AA9159925CD452B00BD5E8B /* Ps2KbdTextIn.c */, + 9AA9159A25CD452B00BD5E8B /* Ps2KeyboardDxeExtra.uni */, + 9AA9159B25CD452B00BD5E8B /* Ps2Keyboard.c */, + 9AA9159C25CD452B00BD5E8B /* Ps2KbdCtrller.c */, + 9AA9159D25CD452B00BD5E8B /* ComponentName.c */, + 9AA9159E25CD452B00BD5E8B /* Ps2KeyboardDxe.inf */, + 9AA9159F25CD452B00BD5E8B /* Ps2KeyboardDxe.uni */, + 9AA915A025CD452B00BD5E8B /* Ps2Keyboard.h */, + ); + path = Ps2KeyboardDxe; + sourceTree = ""; + }; + 9AA915A125CD452B00BD5E8B /* Ps2MouseDxe */ = { + isa = PBXGroup; + children = ( + 9AA915A225CD452B00BD5E8B /* Ps2Mouse.c */, + 9AA915A325CD452B00BD5E8B /* ComponentName.c */, + 9AA915A425CD452B00BD5E8B /* CommPs2.h */, + 9AA915A525CD452B00BD5E8B /* Ps2Mouse.h */, + 9AA915A625CD452B00BD5E8B /* Ps2MouseDxeExtra.uni */, + 9AA915A725CD452B00BD5E8B /* Ps2MouseDxe.inf */, + 9AA915A825CD452B00BD5E8B /* CommPs2.c */, + 9AA915A925CD452B00BD5E8B /* Ps2MouseDxe.uni */, + ); + path = Ps2MouseDxe; + sourceTree = ""; + }; + 9AA915AA25CD452B00BD5E8B /* Scsi */ = { + isa = PBXGroup; + children = ( + 9AA915AB25CD452B00BD5E8B /* ScsiDiskDxe */, + 9AA915B225CD452B00BD5E8B /* ScsiBusDxe */, + ); + path = Scsi; + sourceTree = ""; + }; + 9AA915AB25CD452B00BD5E8B /* ScsiDiskDxe */ = { + isa = PBXGroup; + children = ( + 9AA915AC25CD452B00BD5E8B /* ScsiDiskDxe.inf */, + 9AA915AD25CD452B00BD5E8B /* ScsiDisk.c */, + 9AA915AE25CD452B00BD5E8B /* ComponentName.c */, + 9AA915AF25CD452B00BD5E8B /* ScsiDisk.uni */, + 9AA915B025CD452B00BD5E8B /* ScsiDiskExtra.uni */, + 9AA915B125CD452B00BD5E8B /* ScsiDisk.h */, + ); + path = ScsiDiskDxe; + sourceTree = ""; + }; + 9AA915B225CD452B00BD5E8B /* ScsiBusDxe */ = { + isa = PBXGroup; + children = ( + 9AA915B325CD452B00BD5E8B /* ScsiBusExtra.uni */, + 9AA915B425CD452B00BD5E8B /* ScsiBus.c */, + 9AA915B525CD452B00BD5E8B /* ComponentName.c */, + 9AA915B625CD452B00BD5E8B /* ScsiBus.uni */, + 9AA915B725CD452B00BD5E8B /* ScsiBusDxe.inf */, + 9AA915B825CD452B00BD5E8B /* ScsiBus.h */, + ); + path = ScsiBusDxe; + sourceTree = ""; + }; + 9AA915B925CD452B00BD5E8B /* Ufs */ = { + isa = PBXGroup; + children = ( + 9AA915BA25CD452B00BD5E8B /* UfsBlockIoPei */, + 9AA915C525CD452B00BD5E8B /* UfsPassThruDxe */, + ); + path = Ufs; + sourceTree = ""; + }; + 9AA915BA25CD452B00BD5E8B /* UfsBlockIoPei */ = { + isa = PBXGroup; + children = ( + 9AA915BB25CD452B00BD5E8B /* UfsBlockIoPei.inf */, + 9AA915BC25CD452B00BD5E8B /* UfsHcMem.c */, + 9AA915BD25CD452B00BD5E8B /* UfsBlockIoPeiExtra.uni */, + 9AA915BE25CD452B00BD5E8B /* UfsHci.c */, + 9AA915BF25CD452B00BD5E8B /* UfsBlockIoPei.uni */, + 9AA915C025CD452B00BD5E8B /* UfsBlockIoPei.c */, + 9AA915C125CD452B00BD5E8B /* UfsHcMem.h */, + 9AA915C225CD452B00BD5E8B /* UfsHci.h */, + 9AA915C325CD452B00BD5E8B /* UfsBlockIoPei.h */, + 9AA915C425CD452B00BD5E8B /* DmaMem.c */, + ); + path = UfsBlockIoPei; + sourceTree = ""; + }; + 9AA915C525CD452B00BD5E8B /* UfsPassThruDxe */ = { + isa = PBXGroup; + children = ( + 9AA915C625CD452B00BD5E8B /* UfsPassThru.uni */, + 9AA915C725CD452B00BD5E8B /* UfsPassThruHci.c */, + 9AA915C825CD452B00BD5E8B /* UfsPassThru.h */, + 9AA915C925CD452B00BD5E8B /* ComponentName.c */, + 9AA915CA25CD452B00BD5E8B /* UfsDevConfigProtocol.c */, + 9AA915CB25CD452B00BD5E8B /* UfsPassThruHci.h */, + 9AA915CC25CD452B00BD5E8B /* UfsPassThruDxe.inf */, + 9AA915CD25CD452B00BD5E8B /* UfsPassThruExtra.uni */, + 9AA915CE25CD452B00BD5E8B /* UfsPassThru.c */, + ); + path = UfsPassThruDxe; + sourceTree = ""; + }; + 9AA915CF25CD452B00BD5E8B /* I2c */ = { + isa = PBXGroup; + children = ( + 9AA915D025CD452B00BD5E8B /* I2cDxe */, + ); + path = I2c; + sourceTree = ""; + }; + 9AA915D025CD452B00BD5E8B /* I2cDxe */ = { + isa = PBXGroup; + children = ( + 9AA915D125CD452B00BD5E8B /* I2cBusDxeExtra.uni */, + 9AA915D225CD452B00BD5E8B /* I2cDxeExtra.uni */, + 9AA915D325CD452B00BD5E8B /* I2cDxe.inf */, + 9AA915D425CD452B00BD5E8B /* I2cBus.c */, + 9AA915D525CD452B00BD5E8B /* I2cDxe.h */, + 9AA915D625CD452B00BD5E8B /* I2cDxe.uni */, + 9AA915D725CD452B00BD5E8B /* I2cHost.c */, + 9AA915D825CD452B00BD5E8B /* I2cBusDxe.uni */, + 9AA915D925CD452B00BD5E8B /* I2cBusDxe.inf */, + 9AA915DA25CD452B00BD5E8B /* I2cHostDxe.inf */, + 9AA915DB25CD452B00BD5E8B /* I2cHostDxeExtra.uni */, + 9AA915DC25CD452B00BD5E8B /* I2cDxe.c */, + 9AA915DD25CD452B00BD5E8B /* I2cHostDxe.uni */, + ); + path = I2cDxe; + sourceTree = ""; + }; + 9AA915DE25CD452B00BD5E8B /* Usb */ = { + isa = PBXGroup; + children = ( + 9AA915DF25CD452B00BD5E8B /* UsbMouseDxe */, + 9AA915E725CD452B00BD5E8B /* UsbMouseAbsolutePointerDxe */, + 9AA915EF25CD452B00BD5E8B /* UsbBusDxe */, + 9AA915FE25CD452B00BD5E8B /* UsbKbDxe */, + 9AA9160725CD452B00BD5E8B /* UsbBusPei */, + 9AA9161225CD452B00BD5E8B /* UsbBotPei */, + 9AA9161E25CD452B00BD5E8B /* UsbMassStorageDxe */, + ); + path = Usb; + sourceTree = ""; + }; + 9AA915DF25CD452B00BD5E8B /* UsbMouseDxe */ = { + isa = PBXGroup; + children = ( + 9AA915E025CD452B00BD5E8B /* UsbMouseDxeExtra.uni */, + 9AA915E125CD452B00BD5E8B /* UsbMouse.h */, + 9AA915E225CD452B00BD5E8B /* ComponentName.c */, + 9AA915E325CD452B00BD5E8B /* UsbMouseDxe.inf */, + 9AA915E425CD452B00BD5E8B /* UsbMouse.c */, + 9AA915E525CD452B00BD5E8B /* MouseHid.c */, + 9AA915E625CD452B00BD5E8B /* UsbMouseDxe.uni */, + ); + path = UsbMouseDxe; + sourceTree = ""; + }; + 9AA915E725CD452B00BD5E8B /* UsbMouseAbsolutePointerDxe */ = { + isa = PBXGroup; + children = ( + 9AA915E825CD452B00BD5E8B /* UsbMouseAbsolutePointerDxeExtra.uni */, + 9AA915E925CD452B00BD5E8B /* UsbMouseAbsolutePointer.c */, + 9AA915EA25CD452B00BD5E8B /* UsbMouseAbsolutePointerDxe.inf */, + 9AA915EB25CD452B00BD5E8B /* ComponentName.c */, + 9AA915EC25CD452B00BD5E8B /* UsbMouseAbsolutePointerDxe.uni */, + 9AA915ED25CD452B00BD5E8B /* UsbMouseAbsolutePointer.h */, + 9AA915EE25CD452B00BD5E8B /* MouseHid.c */, + ); + path = UsbMouseAbsolutePointerDxe; + sourceTree = ""; + }; + 9AA915EF25CD452B00BD5E8B /* UsbBusDxe */ = { + isa = PBXGroup; + children = ( + 9AA915F025CD452B00BD5E8B /* UsbEnumer.h */, + 9AA915F125CD452B00BD5E8B /* UsbBusDxe.uni */, + 9AA915F225CD452B00BD5E8B /* UsbDesc.c */, + 9AA915F325CD452B00BD5E8B /* UsbBusDxe.inf */, + 9AA915F425CD452B00BD5E8B /* UsbHub.h */, + 9AA915F525CD452B00BD5E8B /* UsbBus.c */, + 9AA915F625CD452B00BD5E8B /* ComponentName.c */, + 9AA915F725CD452B00BD5E8B /* UsbUtility.h */, + 9AA915F825CD452B00BD5E8B /* UsbEnumer.c */, + 9AA915F925CD452B00BD5E8B /* UsbBusDxeExtra.uni */, + 9AA915FA25CD452B00BD5E8B /* UsbDesc.h */, + 9AA915FB25CD452B00BD5E8B /* UsbHub.c */, + 9AA915FC25CD452B00BD5E8B /* UsbUtility.c */, + 9AA915FD25CD452B00BD5E8B /* UsbBus.h */, + ); + path = UsbBusDxe; + sourceTree = ""; + }; + 9AA915FE25CD452B00BD5E8B /* UsbKbDxe */ = { + isa = PBXGroup; + children = ( + 9AA915FF25CD452B00BD5E8B /* UsbKbDxeExtra.uni */, + 9AA9160025CD452B00BD5E8B /* KeyBoard.c */, + 9AA9160125CD452B00BD5E8B /* UsbKbDxe.inf */, + 9AA9160225CD452B00BD5E8B /* EfiKey.h */, + 9AA9160325CD452B00BD5E8B /* UsbKbDxe.uni */, + 9AA9160425CD452B00BD5E8B /* ComponentName.c */, + 9AA9160525CD452B00BD5E8B /* KeyBoard.h */, + 9AA9160625CD452B00BD5E8B /* EfiKey.c */, + ); + path = UsbKbDxe; + sourceTree = ""; + }; + 9AA9160725CD452B00BD5E8B /* UsbBusPei */ = { + isa = PBXGroup; + children = ( + 9AA9160825CD452B00BD5E8B /* PeiUsbLib.c */, + 9AA9160925CD452B00BD5E8B /* HubPeim.h */, + 9AA9160A25CD452B00BD5E8B /* UsbBusPeiExtra.uni */, + 9AA9160B25CD452B00BD5E8B /* UsbPeim.h */, + 9AA9160C25CD452B00BD5E8B /* UsbIoPeim.c */, + 9AA9160D25CD452B00BD5E8B /* PeiUsbLib.h */, + 9AA9160E25CD452B00BD5E8B /* HubPeim.c */, + 9AA9160F25CD452B00BD5E8B /* UsbBusPei.uni */, + 9AA9161025CD452B00BD5E8B /* UsbPeim.c */, + 9AA9161125CD452B00BD5E8B /* UsbBusPei.inf */, + ); + path = UsbBusPei; + sourceTree = ""; + }; + 9AA9161225CD452B00BD5E8B /* UsbBotPei */ = { + isa = PBXGroup; + children = ( + 9AA9161325CD452B00BD5E8B /* PeiUsbLib.c */, + 9AA9161425CD452B00BD5E8B /* UsbBotPeiExtra.uni */, + 9AA9161525CD452B00BD5E8B /* UsbBotPeim.h */, + 9AA9161625CD452B00BD5E8B /* UsbPeim.h */, + 9AA9161725CD452B00BD5E8B /* BotPeim.c */, + 9AA9161825CD452B00BD5E8B /* UsbBotPei.inf */, + 9AA9161925CD452B00BD5E8B /* PeiUsbLib.h */, + 9AA9161A25CD452B00BD5E8B /* PeiAtapi.c */, + 9AA9161B25CD452B00BD5E8B /* UsbBotPei.uni */, + 9AA9161C25CD452B00BD5E8B /* UsbBotPeim.c */, + 9AA9161D25CD452B00BD5E8B /* BotPeim.h */, + ); + path = UsbBotPei; + sourceTree = ""; + }; + 9AA9161E25CD452B00BD5E8B /* UsbMassStorageDxe */ = { + isa = PBXGroup; + children = ( + 9AA9161F25CD452B00BD5E8B /* UsbMassDiskInfo.c */, + 9AA9162025CD452B00BD5E8B /* UsbMassCbi.h */, + 9AA9162125CD452B00BD5E8B /* UsbMassImpl.h */, + 9AA9162225CD452B00BD5E8B /* UsbMassBoot.c */, + 9AA9162325CD452B00BD5E8B /* UsbMassBot.h */, + 9AA9162425CD452B00BD5E8B /* UsbMassStorageDxe.uni */, + 9AA9162525CD452B00BD5E8B /* UsbMassStorageDxeExtra.uni */, + 9AA9162625CD452B00BD5E8B /* UsbMassStorageDxe.inf */, + 9AA9162725CD452B00BD5E8B /* ComponentName.c */, + 9AA9162825CD452B00BD5E8B /* UsbMassCbi.c */, + 9AA9162925CD452B00BD5E8B /* UsbMass.h */, + 9AA9162A25CD452B00BD5E8B /* UsbMassImpl.c */, + 9AA9162B25CD452B00BD5E8B /* UsbMassDiskInfo.h */, + 9AA9162C25CD452B00BD5E8B /* UsbMassBoot.h */, + 9AA9162D25CD452B00BD5E8B /* UsbMassBot.c */, + ); + path = UsbMassStorageDxe; + sourceTree = ""; + }; + 9AA9162E25CD452B00BD5E8B /* Ata */ = { + isa = PBXGroup; + children = ( + 9AA9162F25CD452B00BD5E8B /* AhciPei */, + 9AA9163F25CD452B00BD5E8B /* AtaAtapiPassThru */, + 9AA9164A25CD452C00BD5E8B /* AtaBusDxe */, + ); + path = Ata; + sourceTree = ""; + }; + 9AA9162F25CD452B00BD5E8B /* AhciPei */ = { + isa = PBXGroup; + children = ( + 9AA9163025CD452B00BD5E8B /* DevicePath.c */, + 9AA9163125CD452B00BD5E8B /* AhciPei.inf */, + 9AA9163225CD452B00BD5E8B /* AhciPei.h */, + 9AA9163325CD452B00BD5E8B /* AhciPeiBlockIo.c */, + 9AA9163425CD452B00BD5E8B /* AhciPei.uni */, + 9AA9163525CD452B00BD5E8B /* AhciPeiPassThru.c */, + 9AA9163625CD452B00BD5E8B /* AhciPeiExtra.uni */, + 9AA9163725CD452B00BD5E8B /* AhciPeiStorageSecurity.c */, + 9AA9163825CD452B00BD5E8B /* AhciPeiBlockIo.h */, + 9AA9163925CD452B00BD5E8B /* AhciPei.c */, + 9AA9163A25CD452B00BD5E8B /* AhciPeiPassThru.h */, + 9AA9163B25CD452B00BD5E8B /* DmaMem.c */, + 9AA9163C25CD452B00BD5E8B /* AhciPeiStorageSecurity.h */, + 9AA9163D25CD452B00BD5E8B /* AhciMode.c */, + 9AA9163E25CD452B00BD5E8B /* AhciPeiS3.c */, + ); + path = AhciPei; + sourceTree = ""; + }; + 9AA9163F25CD452B00BD5E8B /* AtaAtapiPassThru */ = { + isa = PBXGroup; + children = ( + 9AA9164025CD452B00BD5E8B /* AtaAtapiPassThru.h */, + 9AA9164125CD452B00BD5E8B /* AhciMode.h */, + 9AA9164225CD452B00BD5E8B /* ComponentName.c */, + 9AA9164325CD452C00BD5E8B /* AtaAtapiPassThru.inf */, + 9AA9164425CD452C00BD5E8B /* IdeMode.c */, + 9AA9164525CD452C00BD5E8B /* AtaAtapiPassThruDxeExtra.uni */, + 9AA9164625CD452C00BD5E8B /* AtaAtapiPassThru.c */, + 9AA9164725CD452C00BD5E8B /* AtaAtapiPassThruDxe.uni */, + 9AA9164825CD452C00BD5E8B /* IdeMode.h */, + 9AA9164925CD452C00BD5E8B /* AhciMode.c */, + ); + path = AtaAtapiPassThru; + sourceTree = ""; + }; + 9AA9164A25CD452C00BD5E8B /* AtaBusDxe */ = { + isa = PBXGroup; + children = ( + 9AA9164B25CD452C00BD5E8B /* AtaBusDxe.inf */, + 9AA9164C25CD452C00BD5E8B /* AtaPassThruExecute.c */, + 9AA9164D25CD452C00BD5E8B /* AtaBusDxe.uni */, + 9AA9164E25CD452C00BD5E8B /* ComponentName.c */, + 9AA9164F25CD452C00BD5E8B /* AtaBus.h */, + 9AA9165025CD452C00BD5E8B /* AtaBusDxeExtra.uni */, + 9AA9165125CD452C00BD5E8B /* AtaBus.c */, + ); + path = AtaBusDxe; + sourceTree = ""; + }; + 9AA9165225CD452C00BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA9165325CD452C00BD5E8B /* DxeCapsuleLibFmp */, + 9AA9166025CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol */, + 9AA9166425CD452C00BD5E8B /* OemHookStatusCodeLibNull */, + 9AA9166825CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib */, + 9AA9166C25CD452C00BD5E8B /* BootLogoLib */, + 9AA9167025CD452C00BD5E8B /* LockBoxNullLib */, + 9AA9167425CD452C00BD5E8B /* FmpAuthenticationLibNull */, + 9AA9167825CD452C00BD5E8B /* PlatformVarCleanupLib */, + 9AA9168025CD452C00BD5E8B /* PeiIpmiLibIpmiPpi */, + 9AA9168425CD452C00BD5E8B /* LzmaCustomDecompressLib */, + 9AA916A025CD452C00BD5E8B /* DeviceManagerUiLib */, + 9AA916A725CD452C00BD5E8B /* BaseIpmiLibNull */, + 9AA916AB25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib */, + 9AA916AF25CD452C00BD5E8B /* UefiBootManagerLib */, + 9AA916BB25CD452C00BD5E8B /* DxeNetLib */, + 9AA916C025CD452C00BD5E8B /* FileExplorerLib */, + 9AA916C825CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol */, + 9AA916CC25CD452C00BD5E8B /* VarCheckLib */, + 9AA916D025CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics */, + 9AA916D425CD452C00BD5E8B /* AuthVariableLibNull */, + 9AA916D825CD452C00BD5E8B /* SmmReportStatusCodeLib */, + 9AA916DC25CD452C00BD5E8B /* PeiReportStatusCodeLib */, + 9AA916E025CD452C00BD5E8B /* PeiPerformanceLib */, + 9AA916E425CD452C00BD5E8B /* SmmLockBoxLib */, + 9AA916EF25CD452C00BD5E8B /* DxePerformanceLib */, + 9AA916F325CD452C00BD5E8B /* SmmMemoryAllocationProfileLib */, + 9AA916F825CD452C00BD5E8B /* PlatformBootManagerLibNull */, + 9AA916FC25CD452C00BD5E8B /* DxeFileExplorerProtocol */, + 9AA9170025CD452C00BD5E8B /* PiDxeS3BootScriptLib */, + 9AA9170725CD452C00BD5E8B /* DxeHttpLib */, + 9AA9170C25CD452C00BD5E8B /* BasePlatformHookLibNull */, + 9AA9171025CD452C00BD5E8B /* BaseResetSystemLibNull */, + 9AA9171425CD452C00BD5E8B /* NonDiscoverableDeviceRegistrationLib */, + 9AA9171725CD452C00BD5E8B /* FrameBufferBltLib */, + 9AA9171A25CD452C00BD5E8B /* PciHostBridgeLibNull */, + 9AA9171E25CD452C00BD5E8B /* PeiDxeDebugLibReportStatusCode */, + 9AA9172225CD452C00BD5E8B /* TpmMeasurementLibNull */, + 9AA9172625CD452C00BD5E8B /* PeiDebugPrintHobLib */, + 9AA9172A25CD452C00BD5E8B /* RuntimeDxeReportStatusCodeLib */, + 9AA9172E25CD452C00BD5E8B /* UefiSortLib */, + 9AA9173225CD452C00BD5E8B /* VarCheckHiiLib */, + 9AA9173C25CD452C00BD5E8B /* BaseMemoryAllocationLibNull */, + 9AA9174025CD452C00BD5E8B /* DisplayUpdateProgressLibText */, + 9AA9174425CD452C00BD5E8B /* CustomizedDisplayLib */, + 9AA9174C25CD452C00BD5E8B /* SmmCorePlatformHookLibNull */, + 9AA9175025CD452C00BD5E8B /* DebugAgentLibNull */, + 9AA9175425CD452C00BD5E8B /* UefiHiiServicesLib */, + 9AA9175825CD452C00BD5E8B /* BootMaintenanceManagerUiLib */, + 9AA9176A25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi */, + 9AA9176E25CD452C00BD5E8B /* BaseSerialPortLib16550 */, + 9AA9177225CD452C00BD5E8B /* BaseHobLibNull */, + 9AA9177625CD452C00BD5E8B /* SmmPerformanceLib */, + 9AA9177A25CD452C00BD5E8B /* DxeCapsuleLibNull */, + 9AA9177E25CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib */, + 9AA9178225CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib */, + 9AA9178625CD452C00BD5E8B /* BrotliCustomDecompressLib */, + 9AA917A725CD452C00BD5E8B /* ResetUtilityLib */, + 9AA917AA25CD452C00BD5E8B /* SmmCorePerformanceLib */, + 9AA917AF25CD452C00BD5E8B /* UefiMemoryAllocationProfileLib */, + 9AA917B425CD452C00BD5E8B /* PeiDebugLibDebugPpi */, + 9AA917B725CD452C00BD5E8B /* SmmSmiHandlerProfileLib */, + 9AA917BB25CD452C00BD5E8B /* DxeReportStatusCodeLib */, + 9AA917BF25CD452C00BD5E8B /* VarCheckUefiLib */, + 9AA917C325CD452C00BD5E8B /* RuntimeResetSystemLib */, + 9AA917C725CD452C00BD5E8B /* VarCheckPcdLib */, + 9AA917CC25CD452C00BD5E8B /* DxeSecurityManagementLib */, + 9AA917D025CD452C00BD5E8B /* PiSmmCoreMemoryAllocationLib */, + 9AA917DA25CD452C00BD5E8B /* DxePrintLibPrint2Protocol */, + 9AA917DE25CD452C00BD5E8B /* DxeCoreMemoryAllocationLib */, + 9AA917E825CD452C00BD5E8B /* BootManagerUiLib */, + 9AA917EF25CD452C00BD5E8B /* BaseBmpSupportLib */, + 9AA917F325CD452C00BD5E8B /* CpuExceptionHandlerLibNull */, + 9AA917F725CD452C00BD5E8B /* UefiHiiLib */, + 9AA917FE25CD452C00BD5E8B /* BaseSortLib */, + 9AA9180225CD452C00BD5E8B /* DxeCorePerformanceLib */, + 9AA9180725CD452C00BD5E8B /* DxeResetSystemLib */, + 9AA9180B25CD452C00BD5E8B /* PeiResetSystemLib */, + ); + path = Library; + sourceTree = ""; + }; + 9AA9165325CD452C00BD5E8B /* DxeCapsuleLibFmp */ = { + isa = PBXGroup; + children = ( + 9AA9165425CD452C00BD5E8B /* DxeCapsuleRuntime.c */, + 9AA9165525CD452C00BD5E8B /* CapsuleOnDisk.c */, + 9AA9165625CD452C00BD5E8B /* DxeCapsuleProcessLibNull.c */, + 9AA9165725CD452C00BD5E8B /* DxeCapsuleReportLibNull.c */, + 9AA9165825CD452C00BD5E8B /* DxeCapsuleProcessLib.c */, + 9AA9165925CD452C00BD5E8B /* DxeCapsuleReportLib.c */, + 9AA9165A25CD452C00BD5E8B /* CapsuleOnDisk.h */, + 9AA9165B25CD452C00BD5E8B /* DxeRuntimeCapsuleLib.inf */, + 9AA9165C25CD452C00BD5E8B /* DxeCapsuleLib.uni */, + 9AA9165D25CD452C00BD5E8B /* DxeCapsuleLib.c */, + 9AA9165E25CD452C00BD5E8B /* DxeRuntimeCapsuleLib.uni */, + 9AA9165F25CD452C00BD5E8B /* DxeCapsuleLib.inf */, + ); + path = DxeCapsuleLibFmp; + sourceTree = ""; + }; + 9AA9166025CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol */ = { + isa = PBXGroup; + children = ( + 9AA9166125CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol.c */, + 9AA9166225CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol.inf */, + 9AA9166325CD452C00BD5E8B /* SmmIpmiLibSmmIpmiProtocol.uni */, + ); + path = SmmIpmiLibSmmIpmiProtocol; + sourceTree = ""; + }; + 9AA9166425CD452C00BD5E8B /* OemHookStatusCodeLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9166525CD452C00BD5E8B /* OemHookStatusCodeLibNull.inf */, + 9AA9166625CD452C00BD5E8B /* OemHookStatusCodeLibNull.c */, + 9AA9166725CD452C00BD5E8B /* OemHookStatusCodeLibNull.uni */, + ); + path = OemHookStatusCodeLibNull; + sourceTree = ""; + }; + 9AA9166825CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib */ = { + isa = PBXGroup; + children = ( + 9AA9166925CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib.c */, + 9AA9166A25CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib.inf */, + 9AA9166B25CD452C00BD5E8B /* DxeCrc32GuidedSectionExtractLib.uni */, + ); + path = DxeCrc32GuidedSectionExtractLib; + sourceTree = ""; + }; + 9AA9166C25CD452C00BD5E8B /* BootLogoLib */ = { + isa = PBXGroup; + children = ( + 9AA9166D25CD452C00BD5E8B /* BootLogoLib.c */, + 9AA9166E25CD452C00BD5E8B /* BootLogoLib.inf */, + 9AA9166F25CD452C00BD5E8B /* BootLogoLib.uni */, + ); + path = BootLogoLib; + sourceTree = ""; + }; + 9AA9167025CD452C00BD5E8B /* LockBoxNullLib */ = { + isa = PBXGroup; + children = ( + 9AA9167125CD452C00BD5E8B /* LockBoxNullLib.inf */, + 9AA9167225CD452C00BD5E8B /* LockBoxNullLib.c */, + 9AA9167325CD452C00BD5E8B /* LockBoxNullLib.uni */, + ); + path = LockBoxNullLib; + sourceTree = ""; + }; + 9AA9167425CD452C00BD5E8B /* FmpAuthenticationLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9167525CD452C00BD5E8B /* FmpAuthenticationLibNull.c */, + 9AA9167625CD452C00BD5E8B /* FmpAuthenticationLibNull.inf */, + 9AA9167725CD452C00BD5E8B /* FmpAuthenticationLibNull.uni */, + ); + path = FmpAuthenticationLibNull; + sourceTree = ""; + }; + 9AA9167825CD452C00BD5E8B /* PlatformVarCleanupLib */ = { + isa = PBXGroup; + children = ( + 9AA9167925CD452C00BD5E8B /* PlatVarCleanup.vfr */, + 9AA9167A25CD452C00BD5E8B /* PlatVarCleanupLib.c */, + 9AA9167B25CD452C00BD5E8B /* PlatVarCleanup.h */, + 9AA9167C25CD452C00BD5E8B /* PlatformVarCleanupLib.inf */, + 9AA9167D25CD452C00BD5E8B /* PlatVarCleanupHii.h */, + 9AA9167E25CD452C00BD5E8B /* VfrStrings.uni */, + 9AA9167F25CD452C00BD5E8B /* PlatformVarCleanupLib.uni */, + ); + path = PlatformVarCleanupLib; + sourceTree = ""; + }; + 9AA9168025CD452C00BD5E8B /* PeiIpmiLibIpmiPpi */ = { + isa = PBXGroup; + children = ( + 9AA9168125CD452C00BD5E8B /* PeiIpmiLibIpmiPpi.c */, + 9AA9168225CD452C00BD5E8B /* PeiIpmiLibIpmiPpi.inf */, + 9AA9168325CD452C00BD5E8B /* PeiIpmiLibIpmiPpi.uni */, + ); + path = PeiIpmiLibIpmiPpi; + sourceTree = ""; + }; + 9AA9168425CD452C00BD5E8B /* LzmaCustomDecompressLib */ = { + isa = PBXGroup; + children = ( + 9AA9168525CD452C00BD5E8B /* LzmaArchCustomDecompressLib.inf */, + 9AA9168625CD452C00BD5E8B /* F86GuidedSectionExtraction.c */, + 9AA9168725CD452C00BD5E8B /* LzmaCustomDecompressLib.inf */, + 9AA9168825CD452C00BD5E8B /* Sdk */, + 9AA9169925CD452C00BD5E8B /* LzmaDecompressLibInternal.h */, + 9AA9169A25CD452C00BD5E8B /* LZMA-SDK-README.txt */, + 9AA9169B25CD452C00BD5E8B /* LzmaArchDecompressLib.uni */, + 9AA9169C25CD452C00BD5E8B /* LzmaDecompress.c */, + 9AA9169D25CD452C00BD5E8B /* LzmaDecompressLib.uni */, + 9AA9169E25CD452C00BD5E8B /* GuidedSectionExtraction.c */, + 9AA9169F25CD452C00BD5E8B /* UefiLzma.h */, + ); + path = LzmaCustomDecompressLib; + sourceTree = ""; + }; + 9AA9168825CD452C00BD5E8B /* Sdk */ = { + isa = PBXGroup; + children = ( + 9AA9168925CD452C00BD5E8B /* DOC */, + 9AA9168C25CD452C00BD5E8B /* C */, + ); + path = Sdk; + sourceTree = ""; + }; + 9AA9168925CD452C00BD5E8B /* DOC */ = { + isa = PBXGroup; + children = ( + 9AA9168A25CD452C00BD5E8B /* lzma-sdk.txt */, + 9AA9168B25CD452C00BD5E8B /* lzma-history.txt */, + ); + path = DOC; + sourceTree = ""; + }; + 9AA9168C25CD452C00BD5E8B /* C */ = { + isa = PBXGroup; + children = ( + 9AA9168D25CD452C00BD5E8B /* LzHash.h */, + 9AA9168E25CD452C00BD5E8B /* 7zTypes.h */, + 9AA9168F25CD452C00BD5E8B /* Compiler.h */, + 9AA9169025CD452C00BD5E8B /* LzFind.c */, + 9AA9169125CD452C00BD5E8B /* Precomp.h */, + 9AA9169225CD452C00BD5E8B /* CpuArch.h */, + 9AA9169325CD452C00BD5E8B /* Bra86.c */, + 9AA9169425CD452C00BD5E8B /* LzmaDec.c */, + 9AA9169525CD452C00BD5E8B /* LzFind.h */, + 9AA9169625CD452C00BD5E8B /* 7zVersion.h */, + 9AA9169725CD452C00BD5E8B /* Bra.h */, + 9AA9169825CD452C00BD5E8B /* LzmaDec.h */, + ); + path = C; + sourceTree = ""; + }; + 9AA916A025CD452C00BD5E8B /* DeviceManagerUiLib */ = { + isa = PBXGroup; + children = ( + 9AA916A125CD452C00BD5E8B /* DeviceManagerUiLib.uni */, + 9AA916A225CD452C00BD5E8B /* DeviceManagerStrings.uni */, + 9AA916A325CD452C00BD5E8B /* DeviceManagerUiLib.inf */, + 9AA916A425CD452C00BD5E8B /* DeviceManager.h */, + 9AA916A525CD452C00BD5E8B /* DeviceManagerVfr.Vfr */, + 9AA916A625CD452C00BD5E8B /* DeviceManager.c */, + ); + path = DeviceManagerUiLib; + sourceTree = ""; + }; + 9AA916A725CD452C00BD5E8B /* BaseIpmiLibNull */ = { + isa = PBXGroup; + children = ( + 9AA916A825CD452C00BD5E8B /* BaseIpmiLibNull.c */, + 9AA916A925CD452C00BD5E8B /* BaseIpmiLibNull.inf */, + 9AA916AA25CD452C00BD5E8B /* BaseIpmiLibNull.uni */, + ); + path = BaseIpmiLibNull; + sourceTree = ""; + }; + 9AA916AB25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib */ = { + isa = PBXGroup; + children = ( + 9AA916AC25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib.uni */, + 9AA916AD25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib.inf */, + 9AA916AE25CD452C00BD5E8B /* PeiCrc32GuidedSectionExtractLib.c */, + ); + path = PeiCrc32GuidedSectionExtractLib; + sourceTree = ""; + }; + 9AA916AF25CD452C00BD5E8B /* UefiBootManagerLib */ = { + isa = PBXGroup; + children = ( + 9AA916B025CD452C00BD5E8B /* BmConnect.c */, + 9AA916B125CD452C00BD5E8B /* BmConsole.c */, + 9AA916B225CD452C00BD5E8B /* BmHotkey.c */, + 9AA916B325CD452C00BD5E8B /* InternalBm.h */, + 9AA916B425CD452C00BD5E8B /* UefiBootManagerLib.inf */, + 9AA916B525CD452C00BD5E8B /* BmLoadOption.c */, + 9AA916B625CD452C00BD5E8B /* BmBootDescription.c */, + 9AA916B725CD452C00BD5E8B /* UefiBootManagerLib.uni */, + 9AA916B825CD452C00BD5E8B /* BmDriverHealth.c */, + 9AA916B925CD452C00BD5E8B /* BmBoot.c */, + 9AA916BA25CD452C00BD5E8B /* BmMisc.c */, + ); + path = UefiBootManagerLib; + sourceTree = ""; + }; + 9AA916BB25CD452C00BD5E8B /* DxeNetLib */ = { + isa = PBXGroup; + children = ( + 9AA916BC25CD452C00BD5E8B /* DxeNetLib.inf */, + 9AA916BD25CD452C00BD5E8B /* DxeNetLib.uni */, + 9AA916BE25CD452C00BD5E8B /* NetBuffer.c */, + 9AA916BF25CD452C00BD5E8B /* DxeNetLib.c */, + ); + path = DxeNetLib; + sourceTree = ""; + }; + 9AA916C025CD452C00BD5E8B /* FileExplorerLib */ = { + isa = PBXGroup; + children = ( + 9AA916C125CD452C00BD5E8B /* FileExplorer.h */, + 9AA916C225CD452C00BD5E8B /* FileExplorerString.uni */, + 9AA916C325CD452C00BD5E8B /* FormGuid.h */, + 9AA916C425CD452C00BD5E8B /* FileExplorer.c */, + 9AA916C525CD452C00BD5E8B /* FileExplorerVfr.vfr */, + 9AA916C625CD452C00BD5E8B /* FileExplorerLib.inf */, + 9AA916C725CD452C00BD5E8B /* FileExplorerLib.uni */, + ); + path = FileExplorerLib; + sourceTree = ""; + }; + 9AA916C825CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol */ = { + isa = PBXGroup; + children = ( + 9AA916C925CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol.uni */, + 9AA916CA25CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol.inf */, + 9AA916CB25CD452C00BD5E8B /* DxeIpmiLibIpmiProtocol.c */, + ); + path = DxeIpmiLibIpmiProtocol; + sourceTree = ""; + }; + 9AA916CC25CD452C00BD5E8B /* VarCheckLib */ = { + isa = PBXGroup; + children = ( + 9AA916CD25CD452C00BD5E8B /* VarCheckLib.c */, + 9AA916CE25CD452C00BD5E8B /* VarCheckLib.inf */, + 9AA916CF25CD452C00BD5E8B /* VarCheckLib.uni */, + ); + path = VarCheckLib; + sourceTree = ""; + }; + 9AA916D025CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics */ = { + isa = PBXGroup; + children = ( + 9AA916D125CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics.uni */, + 9AA916D225CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics.inf */, + 9AA916D325CD452C00BD5E8B /* DisplayUpdateProgressLibGraphics.c */, + ); + path = DisplayUpdateProgressLibGraphics; + sourceTree = ""; + }; + 9AA916D425CD452C00BD5E8B /* AuthVariableLibNull */ = { + isa = PBXGroup; + children = ( + 9AA916D525CD452C00BD5E8B /* AuthVariableLibNull.uni */, + 9AA916D625CD452C00BD5E8B /* AuthVariableLibNull.inf */, + 9AA916D725CD452C00BD5E8B /* AuthVariableLibNull.c */, + ); + path = AuthVariableLibNull; + sourceTree = ""; + }; + 9AA916D825CD452C00BD5E8B /* SmmReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + 9AA916D925CD452C00BD5E8B /* SmmReportStatusCodeLib.uni */, + 9AA916DA25CD452C00BD5E8B /* ReportStatusCodeLib.c */, + 9AA916DB25CD452C00BD5E8B /* SmmReportStatusCodeLib.inf */, + ); + path = SmmReportStatusCodeLib; + sourceTree = ""; + }; + 9AA916DC25CD452C00BD5E8B /* PeiReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + 9AA916DD25CD452C00BD5E8B /* PeiReportStatusCodeLib.uni */, + 9AA916DE25CD452C00BD5E8B /* PeiReportStatusCodeLib.inf */, + 9AA916DF25CD452C00BD5E8B /* ReportStatusCodeLib.c */, + ); + path = PeiReportStatusCodeLib; + sourceTree = ""; + }; + 9AA916E025CD452C00BD5E8B /* PeiPerformanceLib */ = { + isa = PBXGroup; + children = ( + 9AA916E125CD452C00BD5E8B /* PeiPerformanceLib.uni */, + 9AA916E225CD452C00BD5E8B /* PeiPerformanceLib.c */, + 9AA916E325CD452C00BD5E8B /* PeiPerformanceLib.inf */, + ); + path = PeiPerformanceLib; + sourceTree = ""; + }; + 9AA916E425CD452C00BD5E8B /* SmmLockBoxLib */ = { + isa = PBXGroup; + children = ( + 9AA916E525CD452C00BD5E8B /* SmmLockBoxSmmLib.c */, + 9AA916E625CD452C00BD5E8B /* SmmLockBoxPeiLib.uni */, + 9AA916E725CD452C00BD5E8B /* SmmLockBoxDxeLib.uni */, + 9AA916E825CD452C00BD5E8B /* SmmLockBoxPeiLib.inf */, + 9AA916E925CD452C00BD5E8B /* SmmLockBoxDxeLib.inf */, + 9AA916EA25CD452C00BD5E8B /* SmmLockBoxSmmLib.inf */, + 9AA916EB25CD452C00BD5E8B /* SmmLockBoxSmmLib.uni */, + 9AA916EC25CD452C00BD5E8B /* SmmLockBoxPeiLib.c */, + 9AA916ED25CD452C00BD5E8B /* SmmLockBoxLibPrivate.h */, + 9AA916EE25CD452C00BD5E8B /* SmmLockBoxDxeLib.c */, + ); + path = SmmLockBoxLib; + sourceTree = ""; + }; + 9AA916EF25CD452C00BD5E8B /* DxePerformanceLib */ = { + isa = PBXGroup; + children = ( + 9AA916F025CD452C00BD5E8B /* DxePerformanceLib.c */, + 9AA916F125CD452C00BD5E8B /* DxePerformanceLib.uni */, + 9AA916F225CD452C00BD5E8B /* DxePerformanceLib.inf */, + ); + path = DxePerformanceLib; + sourceTree = ""; + }; + 9AA916F325CD452C00BD5E8B /* SmmMemoryAllocationProfileLib */ = { + isa = PBXGroup; + children = ( + 9AA916F425CD452C00BD5E8B /* SmmMemoryAllocationProfileLib.uni */, + 9AA916F525CD452C00BD5E8B /* MemoryAllocationLib.c */, + 9AA916F625CD452C00BD5E8B /* SmmMemoryAllocationProfileLib.inf */, + 9AA916F725CD452C00BD5E8B /* SmmMemoryProfileLib.c */, + ); + path = SmmMemoryAllocationProfileLib; + sourceTree = ""; + }; + 9AA916F825CD452C00BD5E8B /* PlatformBootManagerLibNull */ = { + isa = PBXGroup; + children = ( + 9AA916F925CD452C00BD5E8B /* PlatformBootManager.c */, + 9AA916FA25CD452C00BD5E8B /* PlatformBootManagerLibNull.inf */, + 9AA916FB25CD452C00BD5E8B /* PlatformBootManagerLibNull.uni */, + ); + path = PlatformBootManagerLibNull; + sourceTree = ""; + }; + 9AA916FC25CD452C00BD5E8B /* DxeFileExplorerProtocol */ = { + isa = PBXGroup; + children = ( + 9AA916FD25CD452C00BD5E8B /* DxeFileExplorerProtocol.inf */, + 9AA916FE25CD452C00BD5E8B /* DxeFileExplorerProtocol.uni */, + 9AA916FF25CD452C00BD5E8B /* DxeFileExplorerProtocol.c */, + ); + path = DxeFileExplorerProtocol; + sourceTree = ""; + }; + 9AA9170025CD452C00BD5E8B /* PiDxeS3BootScriptLib */ = { + isa = PBXGroup; + children = ( + 9AA9170125CD452C00BD5E8B /* InternalBootScriptLib.h */, + 9AA9170225CD452C00BD5E8B /* BootScriptInternalFormat.h */, + 9AA9170325CD452C00BD5E8B /* BootScriptSave.c */, + 9AA9170425CD452C00BD5E8B /* BootScriptExecute.c */, + 9AA9170525CD452C00BD5E8B /* DxeS3BootScriptLib.inf */, + 9AA9170625CD452C00BD5E8B /* DxeS3BootScriptLib.uni */, + ); + path = PiDxeS3BootScriptLib; + sourceTree = ""; + }; + 9AA9170725CD452C00BD5E8B /* DxeHttpLib */ = { + isa = PBXGroup; + children = ( + 9AA9170825CD452C00BD5E8B /* DxeHttpLib.c */, + 9AA9170925CD452C00BD5E8B /* DxeHttpLib.inf */, + 9AA9170A25CD452C00BD5E8B /* DxeHttpLib.uni */, + 9AA9170B25CD452C00BD5E8B /* DxeHttpLib.h */, + ); + path = DxeHttpLib; + sourceTree = ""; + }; + 9AA9170C25CD452C00BD5E8B /* BasePlatformHookLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9170D25CD452C00BD5E8B /* BasePlatformHookLibNull.inf */, + 9AA9170E25CD452C00BD5E8B /* BasePlatformHookLibNull.uni */, + 9AA9170F25CD452C00BD5E8B /* BasePlatformHookLibNull.c */, + ); + path = BasePlatformHookLibNull; + sourceTree = ""; + }; + 9AA9171025CD452C00BD5E8B /* BaseResetSystemLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9171125CD452C00BD5E8B /* BaseResetSystemLibNull.uni */, + 9AA9171225CD452C00BD5E8B /* BaseResetSystemLibNull.inf */, + 9AA9171325CD452C00BD5E8B /* BaseResetSystemLibNull.c */, + ); + path = BaseResetSystemLibNull; + sourceTree = ""; + }; + 9AA9171425CD452C00BD5E8B /* NonDiscoverableDeviceRegistrationLib */ = { + isa = PBXGroup; + children = ( + 9AA9171525CD452C00BD5E8B /* NonDiscoverableDeviceRegistrationLib.c */, + 9AA9171625CD452C00BD5E8B /* NonDiscoverableDeviceRegistrationLib.inf */, + ); + path = NonDiscoverableDeviceRegistrationLib; + sourceTree = ""; + }; + 9AA9171725CD452C00BD5E8B /* FrameBufferBltLib */ = { + isa = PBXGroup; + children = ( + 9AA9171825CD452C00BD5E8B /* FrameBufferBltLib.c */, + 9AA9171925CD452C00BD5E8B /* FrameBufferBltLib.inf */, + ); + path = FrameBufferBltLib; + sourceTree = ""; + }; + 9AA9171A25CD452C00BD5E8B /* PciHostBridgeLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9171B25CD452C00BD5E8B /* PciHostBridgeLibNull.uni */, + 9AA9171C25CD452C00BD5E8B /* PciHostBridgeLibNull.inf */, + 9AA9171D25CD452C00BD5E8B /* PciHostBridgeLibNull.c */, + ); + path = PciHostBridgeLibNull; + sourceTree = ""; + }; + 9AA9171E25CD452C00BD5E8B /* PeiDxeDebugLibReportStatusCode */ = { + isa = PBXGroup; + children = ( + 9AA9171F25CD452C00BD5E8B /* PeiDxeDebugLibReportStatusCode.uni */, + 9AA9172025CD452C00BD5E8B /* DebugLib.c */, + 9AA9172125CD452C00BD5E8B /* PeiDxeDebugLibReportStatusCode.inf */, + ); + path = PeiDxeDebugLibReportStatusCode; + sourceTree = ""; + }; + 9AA9172225CD452C00BD5E8B /* TpmMeasurementLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9172325CD452C00BD5E8B /* TpmMeasurementLibNull.uni */, + 9AA9172425CD452C00BD5E8B /* TpmMeasurementLibNull.c */, + 9AA9172525CD452C00BD5E8B /* TpmMeasurementLibNull.inf */, + ); + path = TpmMeasurementLibNull; + sourceTree = ""; + }; + 9AA9172625CD452C00BD5E8B /* PeiDebugPrintHobLib */ = { + isa = PBXGroup; + children = ( + 9AA9172725CD452C00BD5E8B /* PeiDebugPrintHobLib.uni */, + 9AA9172825CD452C00BD5E8B /* PeiDebugPrintHobLib.c */, + 9AA9172925CD452C00BD5E8B /* PeiDebugPrintHobLib.inf */, + ); + path = PeiDebugPrintHobLib; + sourceTree = ""; + }; + 9AA9172A25CD452C00BD5E8B /* RuntimeDxeReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + 9AA9172B25CD452C00BD5E8B /* RuntimeDxeReportStatusCodeLib.inf */, + 9AA9172C25CD452C00BD5E8B /* RuntimeDxeReportStatusCodeLib.uni */, + 9AA9172D25CD452C00BD5E8B /* ReportStatusCodeLib.c */, + ); + path = RuntimeDxeReportStatusCodeLib; + sourceTree = ""; + }; + 9AA9172E25CD452C00BD5E8B /* UefiSortLib */ = { + isa = PBXGroup; + children = ( + 9AA9172F25CD452C00BD5E8B /* UefiSortLib.inf */, + 9AA9173025CD452C00BD5E8B /* UefiSortLib.c */, + 9AA9173125CD452C00BD5E8B /* UefiSortLib.uni */, + ); + path = UefiSortLib; + sourceTree = ""; + }; + 9AA9173225CD452C00BD5E8B /* VarCheckHiiLib */ = { + isa = PBXGroup; + children = ( + 9AA9173325CD452C00BD5E8B /* VarCheckHiiGen.c */, + 9AA9173425CD452C00BD5E8B /* VarCheckHii.h */, + 9AA9173525CD452C00BD5E8B /* VarCheckHiiLib.uni */, + 9AA9173625CD452C00BD5E8B /* VarCheckHiiGenFromFv.c */, + 9AA9173725CD452C00BD5E8B /* VarCheckHiiLib.inf */, + 9AA9173825CD452C00BD5E8B /* InternalVarCheckStructure.h */, + 9AA9173925CD452C00BD5E8B /* VarCheckHiiGenFromHii.c */, + 9AA9173A25CD452C00BD5E8B /* VarCheckHiiLibNullClass.c */, + 9AA9173B25CD452C00BD5E8B /* VarCheckHiiGen.h */, + ); + path = VarCheckHiiLib; + sourceTree = ""; + }; + 9AA9173C25CD452C00BD5E8B /* BaseMemoryAllocationLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9173D25CD452C00BD5E8B /* BaseMemoryAllocationLibNull.c */, + 9AA9173E25CD452C00BD5E8B /* BaseMemoryAllocationLibNull.inf */, + 9AA9173F25CD452C00BD5E8B /* BaseMemoryAllocationLibNull.uni */, + ); + path = BaseMemoryAllocationLibNull; + sourceTree = ""; + }; + 9AA9174025CD452C00BD5E8B /* DisplayUpdateProgressLibText */ = { + isa = PBXGroup; + children = ( + 9AA9174125CD452C00BD5E8B /* DisplayUpdateProgressLibText.c */, + 9AA9174225CD452C00BD5E8B /* DisplayUpdateProgressLibText.inf */, + 9AA9174325CD452C00BD5E8B /* DisplayUpdateProgressLibText.uni */, + ); + path = DisplayUpdateProgressLibText; + sourceTree = ""; + }; + 9AA9174425CD452C00BD5E8B /* CustomizedDisplayLib */ = { + isa = PBXGroup; + children = ( + 9AA9174525CD452C00BD5E8B /* CustomizedDisplayLibModStrs.uni */, + 9AA9174625CD452C00BD5E8B /* Colors.h */, + 9AA9174725CD452C00BD5E8B /* CustomizedDisplayLibInternal.h */, + 9AA9174825CD452C00BD5E8B /* CustomizedDisplayLib.inf */, + 9AA9174925CD452C00BD5E8B /* CustomizedDisplayLib.uni */, + 9AA9174A25CD452C00BD5E8B /* CustomizedDisplayLibInternal.c */, + 9AA9174B25CD452C00BD5E8B /* CustomizedDisplayLib.c */, + ); + path = CustomizedDisplayLib; + sourceTree = ""; + }; + 9AA9174C25CD452C00BD5E8B /* SmmCorePlatformHookLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9174D25CD452C00BD5E8B /* SmmCorePlatformHookLibNull.inf */, + 9AA9174E25CD452C00BD5E8B /* SmmCorePlatformHookLibNull.uni */, + 9AA9174F25CD452C00BD5E8B /* SmmCorePlatformHookLibNull.c */, + ); + path = SmmCorePlatformHookLibNull; + sourceTree = ""; + }; + 9AA9175025CD452C00BD5E8B /* DebugAgentLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9175125CD452C00BD5E8B /* DebugAgentLibNull.uni */, + 9AA9175225CD452C00BD5E8B /* DebugAgentLibNull.inf */, + 9AA9175325CD452C00BD5E8B /* DebugAgentLibNull.c */, + ); + path = DebugAgentLibNull; + sourceTree = ""; + }; + 9AA9175425CD452C00BD5E8B /* UefiHiiServicesLib */ = { + isa = PBXGroup; + children = ( + 9AA9175525CD452C00BD5E8B /* UefiHiiServicesLib.inf */, + 9AA9175625CD452C00BD5E8B /* UefiHiiServicesLib.uni */, + 9AA9175725CD452C00BD5E8B /* UefiHiiServicesLib.c */, + ); + path = UefiHiiServicesLib; + sourceTree = ""; + }; + 9AA9175825CD452C00BD5E8B /* BootMaintenanceManagerUiLib */ = { + isa = PBXGroup; + children = ( + 9AA9175925CD452C00BD5E8B /* BmLib.c */, + 9AA9175A25CD452C00BD5E8B /* BootMaintenanceManagerUiLib.inf */, + 9AA9175B25CD452C00BD5E8B /* BootOption.c */, + 9AA9175C25CD452C00BD5E8B /* BootMaintenanceManagerUiLib.uni */, + 9AA9175D25CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUiSupport.c */, + 9AA9175E25CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUi.c */, + 9AA9175F25CD452C00BD5E8B /* BootMaintenanceManager.vfr */, + 9AA9176025CD452C00BD5E8B /* BootMaintenanceManagerStrings.uni */, + 9AA9176125CD452C00BD5E8B /* BootMaintenanceManager.h */, + 9AA9176225CD452C00BD5E8B /* BootMaintenance.c */, + 9AA9176325CD452C00BD5E8B /* FormGuid.h */, + 9AA9176425CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUiSupport.h */, + 9AA9176525CD452C00BD5E8B /* UpdatePage.c */, + 9AA9176625CD452C00BD5E8B /* Data.c */, + 9AA9176725CD452C00BD5E8B /* BootMaintenanceManagerCustomizedUi.h */, + 9AA9176825CD452C00BD5E8B /* ConsoleOption.c */, + 9AA9176925CD452C00BD5E8B /* Variable.c */, + ); + path = BootMaintenanceManagerUiLib; + sourceTree = ""; + }; + 9AA9176A25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi */ = { + isa = PBXGroup; + children = ( + 9AA9176B25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi.inf */, + 9AA9176C25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi.uni */, + 9AA9176D25CD452C00BD5E8B /* PlatformHookLibSerialPortPpi.c */, + ); + path = PlatformHookLibSerialPortPpi; + sourceTree = ""; + }; + 9AA9176E25CD452C00BD5E8B /* BaseSerialPortLib16550 */ = { + isa = PBXGroup; + children = ( + 9AA9176F25CD452C00BD5E8B /* BaseSerialPortLib16550.c */, + 9AA9177025CD452C00BD5E8B /* BaseSerialPortLib16550.inf */, + 9AA9177125CD452C00BD5E8B /* BaseSerialPortLib16550.uni */, + ); + path = BaseSerialPortLib16550; + sourceTree = ""; + }; + 9AA9177225CD452C00BD5E8B /* BaseHobLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9177325CD452C00BD5E8B /* BaseHobLibNull.c */, + 9AA9177425CD452C00BD5E8B /* BaseHobLibNull.inf */, + 9AA9177525CD452C00BD5E8B /* BaseHobLibNull.uni */, + ); + path = BaseHobLibNull; + sourceTree = ""; + }; + 9AA9177625CD452C00BD5E8B /* SmmPerformanceLib */ = { + isa = PBXGroup; + children = ( + 9AA9177725CD452C00BD5E8B /* SmmPerformanceLib.c */, + 9AA9177825CD452C00BD5E8B /* SmmPerformanceLib.inf */, + 9AA9177925CD452C00BD5E8B /* SmmPerformanceLib.uni */, + ); + path = SmmPerformanceLib; + sourceTree = ""; + }; + 9AA9177A25CD452C00BD5E8B /* DxeCapsuleLibNull */ = { + isa = PBXGroup; + children = ( + 9AA9177B25CD452C00BD5E8B /* DxeCapsuleLibNull.inf */, + 9AA9177C25CD452C00BD5E8B /* DxeCapsuleLibNull.uni */, + 9AA9177D25CD452C00BD5E8B /* DxeCapsuleLibNull.c */, + ); + path = DxeCapsuleLibNull; + sourceTree = ""; + }; + 9AA9177E25CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib */ = { + isa = PBXGroup; + children = ( + 9AA9177F25CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib.inf */, + 9AA9178025CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib.uni */, + 9AA9178125CD452C00BD5E8B /* DxeDebugPrintErrorLevelLib.c */, + ); + path = DxeDebugPrintErrorLevelLib; + sourceTree = ""; + }; + 9AA9178225CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA9178325CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib.uni */, + 9AA9178425CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib.inf */, + 9AA9178525CD452C00BD5E8B /* PiSmmCoreSmmServicesTableLib.c */, + ); + path = PiSmmCoreSmmServicesTableLib; + sourceTree = ""; + }; + 9AA9178625CD452C00BD5E8B /* BrotliCustomDecompressLib */ = { + isa = PBXGroup; + children = ( + 9AA9178725CD452C00BD5E8B /* LICENSE */, + 9AA9178825CD452C00BD5E8B /* BrotliDecompressLibInternal.h */, + 9AA9178925CD452C00BD5E8B /* brotli */, + 9AA9178D25CD452C00BD5E8B /* BrotliDecompress.c */, + 9AA9178E25CD452C00BD5E8B /* docs */, + 9AA9179025CD452C00BD5E8B /* README.md */, + 9AA9179125CD452C00BD5E8B /* common */, + 9AA9179A25CD452C00BD5E8B /* dec */, + 9AA917A325CD452C00BD5E8B /* ReadMe.txt */, + 9AA917A425CD452C00BD5E8B /* BrotliDecompressLib.uni */, + 9AA917A525CD452C00BD5E8B /* BrotliCustomDecompressLib.inf */, + 9AA917A625CD452C00BD5E8B /* GuidedSectionExtraction.c */, + ); + path = BrotliCustomDecompressLib; + sourceTree = ""; + }; + 9AA9178925CD452C00BD5E8B /* brotli */ = { + isa = PBXGroup; + children = ( + 9AA9178A25CD452C00BD5E8B /* port.h */, + 9AA9178B25CD452C00BD5E8B /* types.h */, + 9AA9178C25CD452C00BD5E8B /* decode.h */, + ); + path = brotli; + sourceTree = ""; + }; + 9AA9178E25CD452C00BD5E8B /* docs */ = { + isa = PBXGroup; + children = ( + 9AA9178F25CD452C00BD5E8B /* brotli-comparison-study-2015-09-22.pdf */, + ); + path = docs; + sourceTree = ""; + }; + 9AA9179125CD452C00BD5E8B /* common */ = { + isa = PBXGroup; + children = ( + 9AA9179225CD452C00BD5E8B /* dictionary.c */, + 9AA9179325CD452C00BD5E8B /* version.h */, + 9AA9179425CD452C00BD5E8B /* transform.c */, + 9AA9179525CD452C00BD5E8B /* context.h */, + 9AA9179625CD452C00BD5E8B /* constants.h */, + 9AA9179725CD452C00BD5E8B /* dictionary.h */, + 9AA9179825CD452C00BD5E8B /* transform.h */, + 9AA9179925CD452C00BD5E8B /* platform.h */, + ); + path = common; + sourceTree = ""; + }; + 9AA9179A25CD452C00BD5E8B /* dec */ = { + isa = PBXGroup; + children = ( + 9AA9179B25CD452C00BD5E8B /* state.c */, + 9AA9179C25CD452C00BD5E8B /* bit_reader.h */, + 9AA9179D25CD452C00BD5E8B /* decode.c */, + 9AA9179E25CD452C00BD5E8B /* huffman.c */, + 9AA9179F25CD452C00BD5E8B /* bit_reader.c */, + 9AA917A025CD452C00BD5E8B /* prefix.h */, + 9AA917A125CD452C00BD5E8B /* state.h */, + 9AA917A225CD452C00BD5E8B /* huffman.h */, + ); + path = dec; + sourceTree = ""; + }; + 9AA917A725CD452C00BD5E8B /* ResetUtilityLib */ = { + isa = PBXGroup; + children = ( + 9AA917A825CD452C00BD5E8B /* ResetUtility.c */, + 9AA917A925CD452C00BD5E8B /* ResetUtilityLib.inf */, + ); + path = ResetUtilityLib; + sourceTree = ""; + }; + 9AA917AA25CD452C00BD5E8B /* SmmCorePerformanceLib */ = { + isa = PBXGroup; + children = ( + 9AA917AB25CD452C00BD5E8B /* SmmCorePerformanceLib.c */, + 9AA917AC25CD452C00BD5E8B /* SmmCorePerformanceLib.uni */, + 9AA917AD25CD452C00BD5E8B /* SmmCorePerformanceLib.inf */, + 9AA917AE25CD452C00BD5E8B /* SmmCorePerformanceLibInternal.h */, + ); + path = SmmCorePerformanceLib; + sourceTree = ""; + }; + 9AA917AF25CD452C00BD5E8B /* UefiMemoryAllocationProfileLib */ = { + isa = PBXGroup; + children = ( + 9AA917B025CD452C00BD5E8B /* MemoryAllocationLib.c */, + 9AA917B125CD452C00BD5E8B /* UefiMemoryAllocationProfileLib.uni */, + 9AA917B225CD452C00BD5E8B /* UefiMemoryAllocationProfileLib.inf */, + 9AA917B325CD452C00BD5E8B /* DxeMemoryProfileLib.c */, + ); + path = UefiMemoryAllocationProfileLib; + sourceTree = ""; + }; + 9AA917B425CD452C00BD5E8B /* PeiDebugLibDebugPpi */ = { + isa = PBXGroup; + children = ( + 9AA917B525CD452C00BD5E8B /* PeiDebugLibDebugPpi.inf */, + 9AA917B625CD452C00BD5E8B /* DebugLib.c */, + ); + path = PeiDebugLibDebugPpi; + sourceTree = ""; + }; + 9AA917B725CD452C00BD5E8B /* SmmSmiHandlerProfileLib */ = { + isa = PBXGroup; + children = ( + 9AA917B825CD452C00BD5E8B /* SmmSmiHandlerProfileLib.c */, + 9AA917B925CD452C00BD5E8B /* SmmSmiHandlerProfileLib.inf */, + 9AA917BA25CD452C00BD5E8B /* SmmSmiHandlerProfileLib.uni */, + ); + path = SmmSmiHandlerProfileLib; + sourceTree = ""; + }; + 9AA917BB25CD452C00BD5E8B /* DxeReportStatusCodeLib */ = { + isa = PBXGroup; + children = ( + 9AA917BC25CD452C00BD5E8B /* DxeReportStatusCodeLib.inf */, + 9AA917BD25CD452C00BD5E8B /* DxeReportStatusCodeLib.uni */, + 9AA917BE25CD452C00BD5E8B /* ReportStatusCodeLib.c */, + ); + path = DxeReportStatusCodeLib; + sourceTree = ""; + }; + 9AA917BF25CD452C00BD5E8B /* VarCheckUefiLib */ = { + isa = PBXGroup; + children = ( + 9AA917C025CD452C00BD5E8B /* VarCheckUefiLib.inf */, + 9AA917C125CD452C00BD5E8B /* VarCheckUefiLib.uni */, + 9AA917C225CD452C00BD5E8B /* VarCheckUefiLibNullClass.c */, + ); + path = VarCheckUefiLib; + sourceTree = ""; + }; + 9AA917C325CD452C00BD5E8B /* RuntimeResetSystemLib */ = { + isa = PBXGroup; + children = ( + 9AA917C425CD452C00BD5E8B /* RuntimeResetSystemLib.inf */, + 9AA917C525CD452C00BD5E8B /* RuntimeResetSystemLib.c */, + 9AA917C625CD452C00BD5E8B /* RuntimeResetSystemLib.uni */, + ); + path = RuntimeResetSystemLib; + sourceTree = ""; + }; + 9AA917C725CD452C00BD5E8B /* VarCheckPcdLib */ = { + isa = PBXGroup; + children = ( + 9AA917C825CD452C00BD5E8B /* VarCheckPcdLibNullClass.c */, + 9AA917C925CD452C00BD5E8B /* VarCheckPcdStructure.h */, + 9AA917CA25CD452C00BD5E8B /* VarCheckPcdLib.uni */, + 9AA917CB25CD452C00BD5E8B /* VarCheckPcdLib.inf */, + ); + path = VarCheckPcdLib; + sourceTree = ""; + }; + 9AA917CC25CD452C00BD5E8B /* DxeSecurityManagementLib */ = { + isa = PBXGroup; + children = ( + 9AA917CD25CD452C00BD5E8B /* DxeSecurityManagementLib.c */, + 9AA917CE25CD452C00BD5E8B /* DxeSecurityManagementLib.uni */, + 9AA917CF25CD452C00BD5E8B /* DxeSecurityManagementLib.inf */, + ); + path = DxeSecurityManagementLib; + sourceTree = ""; + }; + 9AA917D025CD452C00BD5E8B /* PiSmmCoreMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + 9AA917D125CD452C00BD5E8B /* PiSmmCoreMemoryProfileLib.c */, + 9AA917D225CD452C00BD5E8B /* PiSmmCoreMemoryAllocationServices.h */, + 9AA917D325CD452C00BD5E8B /* MemoryAllocationLib.c */, + 9AA917D425CD452C00BD5E8B /* PiSmmCoreMemoryProfileServices.h */, + 9AA917D525CD452C00BD5E8B /* PiSmmCoreMemoryAllocationLib.uni */, + 9AA917D625CD452C00BD5E8B /* PiSmmCoreMemoryAllocationProfileLib.inf */, + 9AA917D725CD452C00BD5E8B /* PiSmmCoreMemoryProfileLibNull.c */, + 9AA917D825CD452C00BD5E8B /* PiSmmCoreMemoryAllocationLib.inf */, + 9AA917D925CD452C00BD5E8B /* PiSmmCoreMemoryAllocationProfileLib.uni */, + ); + path = PiSmmCoreMemoryAllocationLib; + sourceTree = ""; + }; + 9AA917DA25CD452C00BD5E8B /* DxePrintLibPrint2Protocol */ = { + isa = PBXGroup; + children = ( + 9AA917DB25CD452C00BD5E8B /* DxePrintLibPrint2Protocol.uni */, + 9AA917DC25CD452C00BD5E8B /* PrintLib.c */, + 9AA917DD25CD452C00BD5E8B /* DxePrintLibPrint2Protocol.inf */, + ); + path = DxePrintLibPrint2Protocol; + sourceTree = ""; + }; + 9AA917DE25CD452C00BD5E8B /* DxeCoreMemoryAllocationLib */ = { + isa = PBXGroup; + children = ( + 9AA917DF25CD452C00BD5E8B /* MemoryAllocationLib.c */, + 9AA917E025CD452C00BD5E8B /* DxeCoreMemoryAllocationServices.h */, + 9AA917E125CD452C00BD5E8B /* DxeCoreMemoryProfileServices.h */, + 9AA917E225CD452C00BD5E8B /* DxeCoreMemoryAllocationProfileLib.inf */, + 9AA917E325CD452C00BD5E8B /* DxeCoreMemoryAllocationProfileLib.uni */, + 9AA917E425CD452C00BD5E8B /* DxeCoreMemoryProfileLib.c */, + 9AA917E525CD452C00BD5E8B /* DxeCoreMemoryAllocationLib.uni */, + 9AA917E625CD452C00BD5E8B /* DxeCoreMemoryAllocationLib.inf */, + 9AA917E725CD452C00BD5E8B /* DxeCoreMemoryProfileLibNull.c */, + ); + path = DxeCoreMemoryAllocationLib; + sourceTree = ""; + }; + 9AA917E825CD452C00BD5E8B /* BootManagerUiLib */ = { + isa = PBXGroup; + children = ( + 9AA917E925CD452C00BD5E8B /* BootManagerStrings.uni */, + 9AA917EA25CD452C00BD5E8B /* BootManager.h */, + 9AA917EB25CD452C00BD5E8B /* BootManagerUiLib.uni */, + 9AA917EC25CD452C00BD5E8B /* BootManagerVfr.Vfr */, + 9AA917ED25CD452C00BD5E8B /* BootManagerUiLib.inf */, + 9AA917EE25CD452C00BD5E8B /* BootManager.c */, + ); + path = BootManagerUiLib; + sourceTree = ""; + }; + 9AA917EF25CD452C00BD5E8B /* BaseBmpSupportLib */ = { + isa = PBXGroup; + children = ( + 9AA917F025CD452C00BD5E8B /* BmpSupportLib.c */, + 9AA917F125CD452C00BD5E8B /* BaseBmpSupportLib.inf */, + 9AA917F225CD452C00BD5E8B /* BaseBmpSupportLib.uni */, + ); + path = BaseBmpSupportLib; + sourceTree = ""; + }; + 9AA917F325CD452C00BD5E8B /* CpuExceptionHandlerLibNull */ = { + isa = PBXGroup; + children = ( + 9AA917F425CD452C00BD5E8B /* CpuExceptionHandlerLibNull.uni */, + 9AA917F525CD452C00BD5E8B /* CpuExceptionHandlerLibNull.inf */, + 9AA917F625CD452C00BD5E8B /* CpuExceptionHandlerLibNull.c */, + ); + path = CpuExceptionHandlerLibNull; + sourceTree = ""; + }; + 9AA917F725CD452C00BD5E8B /* UefiHiiLib */ = { + isa = PBXGroup; + children = ( + 9AA917F825CD452C00BD5E8B /* HiiLib.c */, + 9AA917F925CD452C00BD5E8B /* UefiHiiLib.uni */, + 9AA917FA25CD452C00BD5E8B /* UefiHiiLib.inf */, + 9AA917FB25CD452C00BD5E8B /* HiiString.c */, + 9AA917FC25CD452C00BD5E8B /* HiiLanguage.c */, + 9AA917FD25CD452C00BD5E8B /* InternalHiiLib.h */, + ); + path = UefiHiiLib; + sourceTree = ""; + }; + 9AA917FE25CD452C00BD5E8B /* BaseSortLib */ = { + isa = PBXGroup; + children = ( + 9AA917FF25CD452C00BD5E8B /* BaseSortLib.inf */, + 9AA9180025CD452C00BD5E8B /* BaseSortLib.uni */, + 9AA9180125CD452C00BD5E8B /* BaseSortLib.c */, + ); + path = BaseSortLib; + sourceTree = ""; + }; + 9AA9180225CD452C00BD5E8B /* DxeCorePerformanceLib */ = { + isa = PBXGroup; + children = ( + 9AA9180325CD452C00BD5E8B /* DxeCorePerformanceLib.c */, + 9AA9180425CD452C00BD5E8B /* DxeCorePerformanceLibInternal.h */, + 9AA9180525CD452C00BD5E8B /* DxeCorePerformanceLib.inf */, + 9AA9180625CD452C00BD5E8B /* DxeCorePerformanceLib.uni */, + ); + path = DxeCorePerformanceLib; + sourceTree = ""; + }; + 9AA9180725CD452C00BD5E8B /* DxeResetSystemLib */ = { + isa = PBXGroup; + children = ( + 9AA9180825CD452C00BD5E8B /* DxeResetSystemLib.uni */, + 9AA9180925CD452C00BD5E8B /* DxeResetSystemLib.inf */, + 9AA9180A25CD452C00BD5E8B /* DxeResetSystemLib.c */, + ); + path = DxeResetSystemLib; + sourceTree = ""; + }; + 9AA9180B25CD452C00BD5E8B /* PeiResetSystemLib */ = { + isa = PBXGroup; + children = ( + 9AA9180C25CD452C00BD5E8B /* PeiResetSystemLib.uni */, + 9AA9180D25CD452C00BD5E8B /* PeiResetSystemLib.inf */, + 9AA9180E25CD452C00BD5E8B /* PeiResetSystemLib.c */, + ); + path = PeiResetSystemLib; + sourceTree = ""; + }; + 9AA9181025CD452C00BD5E8B /* Logo */ = { + isa = PBXGroup; + children = ( + 9AA9181125CD452D00BD5E8B /* LogoDxe.uni */, + 9AA9181225CD452D00BD5E8B /* LogoDxe.inf */, + 9AA9181325CD452D00BD5E8B /* Logo.bmp */, + 9AA9181425CD452D00BD5E8B /* Logo.uni */, + 9AA9181525CD452D00BD5E8B /* LogoDxeExtra.uni */, + 9AA9181625CD452D00BD5E8B /* LogoExtra.uni */, + 9AA9181725CD452D00BD5E8B /* Logo.inf */, + 9AA9181825CD452D00BD5E8B /* Logo.idf */, + 9AA9181925CD452D00BD5E8B /* Logo.c */, + ); + path = Logo; + sourceTree = ""; + }; + 9AA9181C25CD452D00BD5E8B /* Application */ = { + isa = PBXGroup; + children = ( + 9AA9181D25CD452D00BD5E8B /* UiApp */, + 9AA9182C25CD452D00BD5E8B /* HelloWorld */, + 9AA9183225CD452D00BD5E8B /* BootManagerMenuApp */, + 9AA9183925CD452D00BD5E8B /* CapsuleApp */, + 9AA9184225CD452D00BD5E8B /* MemoryProfileInfo */, + 9AA9184725CD452D00BD5E8B /* DumpDynPcd */, + 9AA9184B25CD452D00BD5E8B /* VariableInfo */, + 9AA9185025CD452D00BD5E8B /* SmiHandlerProfileInfo */, + ); + path = Application; + sourceTree = ""; + }; + 9AA9181D25CD452D00BD5E8B /* UiApp */ = { + isa = PBXGroup; + children = ( + 9AA9181E25CD452D00BD5E8B /* FrontPage.h */, + 9AA9181F25CD452D00BD5E8B /* FrontPageCustomizedUi.h */, + 9AA9182025CD452D00BD5E8B /* Ui.h */, + 9AA9182125CD452D00BD5E8B /* FrontPageCustomizedUiSupport.c */, + 9AA9182225CD452D00BD5E8B /* FrontPageVfr.Vfr */, + 9AA9182325CD452D00BD5E8B /* String.c */, + 9AA9182425CD452D00BD5E8B /* FrontPageCustomizedUi.c */, + 9AA9182525CD452D00BD5E8B /* UiApp.uni */, + 9AA9182625CD452D00BD5E8B /* FrontPage.c */, + 9AA9182725CD452D00BD5E8B /* FrontPageStrings.uni */, + 9AA9182825CD452D00BD5E8B /* UiAppExtra.uni */, + 9AA9182925CD452D00BD5E8B /* UiApp.inf */, + 9AA9182A25CD452D00BD5E8B /* FrontPageCustomizedUiSupport.h */, + 9AA9182B25CD452D00BD5E8B /* String.h */, + ); + path = UiApp; + sourceTree = ""; + }; + 9AA9182C25CD452D00BD5E8B /* HelloWorld */ = { + isa = PBXGroup; + children = ( + 9AA9182D25CD452D00BD5E8B /* HelloWorldStr.uni */, + 9AA9182E25CD452D00BD5E8B /* HelloWorld.uni */, + 9AA9182F25CD452D00BD5E8B /* HelloWorld.inf */, + 9AA9183025CD452D00BD5E8B /* HelloWorld.c */, + 9AA9183125CD452D00BD5E8B /* HelloWorldExtra.uni */, + ); + path = HelloWorld; + sourceTree = ""; + }; + 9AA9183225CD452D00BD5E8B /* BootManagerMenuApp */ = { + isa = PBXGroup; + children = ( + 9AA9183325CD452D00BD5E8B /* BootManagerMenu.c */, + 9AA9183425CD452D00BD5E8B /* BootManagerMenuAppExtra.uni */, + 9AA9183525CD452D00BD5E8B /* BootManagerMenuStrings.uni */, + 9AA9183625CD452D00BD5E8B /* BootManagerMenu.h */, + 9AA9183725CD452D00BD5E8B /* BootManagerMenuApp.inf */, + 9AA9183825CD452D00BD5E8B /* BootManagerMenuApp.uni */, + ); + path = BootManagerMenuApp; + sourceTree = ""; + }; + 9AA9183925CD452D00BD5E8B /* CapsuleApp */ = { + isa = PBXGroup; + children = ( + 9AA9183A25CD452D00BD5E8B /* CapsuleApp.h */, + 9AA9183B25CD452D00BD5E8B /* CapsuleApp.inf */, + 9AA9183C25CD452D00BD5E8B /* AppSupport.c */, + 9AA9183D25CD452D00BD5E8B /* CapsuleApp.uni */, + 9AA9183E25CD452D00BD5E8B /* CapsuleAppExtra.uni */, + 9AA9183F25CD452D00BD5E8B /* CapsuleOnDisk.c */, + 9AA9184025CD452D00BD5E8B /* CapsuleApp.c */, + 9AA9184125CD452D00BD5E8B /* CapsuleDump.c */, + ); + path = CapsuleApp; + sourceTree = ""; + }; + 9AA9184225CD452D00BD5E8B /* MemoryProfileInfo */ = { + isa = PBXGroup; + children = ( + 9AA9184325CD452D00BD5E8B /* MemoryProfileInfo.inf */, + 9AA9184425CD452D00BD5E8B /* MemoryProfileInfo.c */, + 9AA9184525CD452D00BD5E8B /* MemoryProfileInfo.uni */, + 9AA9184625CD452D00BD5E8B /* MemoryProfileInfoExtra.uni */, + ); + path = MemoryProfileInfo; + sourceTree = ""; + }; + 9AA9184725CD452D00BD5E8B /* DumpDynPcd */ = { + isa = PBXGroup; + children = ( + 9AA9184825CD452D00BD5E8B /* DumpDynPcd.inf */, + 9AA9184925CD452D00BD5E8B /* DumpDynPcdStr.uni */, + 9AA9184A25CD452D00BD5E8B /* DumpDynPcd.c */, + ); + path = DumpDynPcd; + sourceTree = ""; + }; + 9AA9184B25CD452D00BD5E8B /* VariableInfo */ = { + isa = PBXGroup; + children = ( + 9AA9184C25CD452D00BD5E8B /* VariableInfoExtra.uni */, + 9AA9184D25CD452D00BD5E8B /* VariableInfo.inf */, + 9AA9184E25CD452D00BD5E8B /* VariableInfo.uni */, + 9AA9184F25CD452D00BD5E8B /* VariableInfo.c */, + ); + path = VariableInfo; + sourceTree = ""; + }; + 9AA9185025CD452D00BD5E8B /* SmiHandlerProfileInfo */ = { + isa = PBXGroup; + children = ( + 9AA9185125CD452D00BD5E8B /* SmiHandlerProfileInfoExtra.uni */, + 9AA9185225CD452D00BD5E8B /* SmiHandlerProfileInfo.uni */, + 9AA9185325CD452D00BD5E8B /* SmiHandlerProfileInfo.inf */, + 9AA9185425CD452D00BD5E8B /* SmiHandlerProfileInfo.c */, + ); + path = SmiHandlerProfileInfo; + sourceTree = ""; + }; + 9AA9185625CD465800BD5E8B /* Clover */ = { + isa = PBXGroup; + children = ( + 9AA9185725CD468F00BD5E8B /* Include */, + 9AA91E0B25CD59F100BD5E8B /* Library */, + 9AA910B925CD452900BD5E8B /* MdeModulePkg */, + 9AA909E825CD451500BD5E8B /* MdePkg */, + 9AA918D925CD597E00BD5E8B /* OpenCorePkg */, + 9A36E51C24F3B5B4007A1107 /* rEFIt_UEFI */, + ); + name = Clover; + path = ../..; + sourceTree = ""; + }; + 9AA9185725CD468F00BD5E8B /* Include */ = { + isa = PBXGroup; + children = ( + 9AA9185825CD468F00BD5E8B /* AppleMacEfi */, + 9AA9187625CD468F00BD5E8B /* AppleMacEfi.h */, + 9AA918A425CD468F00BD5E8B /* EfiFlashMap.h */, + 9AA918B025CD468F00BD5E8B /* EfiImageFormat.h */, + 9AA9187725CD468F00BD5E8B /* EfiLdrHandoff.h */, + 9AA918A325CD468F00BD5E8B /* FlashLayout.h */, + 9AA918A525CD468F00BD5E8B /* Guid */, + 9AA9185A25CD468F00BD5E8B /* IndustryStandard */, + 9AA9187825CD468F00BD5E8B /* Library */, + 9AA918A225CD468F00BD5E8B /* MicrosoftWindows.h */, + 9AA9188825CD468F00BD5E8B /* Protocol */, + 9AA918B125CD468F00BD5E8B /* UefiLoader.h */, + ); + path = Include; + sourceTree = ""; + }; + 9AA9185825CD468F00BD5E8B /* AppleMacEfi */ = { + isa = PBXGroup; + children = ( + 9AA9185925CD468F00BD5E8B /* AppleMacEfiSpec.h */, + ); + path = AppleMacEfi; + sourceTree = ""; + }; + 9AA9185A25CD468F00BD5E8B /* IndustryStandard */ = { + isa = PBXGroup; + children = ( + 9AA9185B25CD468F00BD5E8B /* VesaBiosExtensions.h */, + 9AA9185C25CD468F00BD5E8B /* GenericIch.h */, + 9AA9185D25CD468F00BD5E8B /* CpuId.h */, + 9AA9185E25CD468F00BD5E8B /* AppleSmBios.h */, + 9AA9185F25CD468F00BD5E8B /* AppleRtc.h */, + 9AA9186025CD468F00BD5E8B /* AppleDiskImage.h */, + 9AA9186125CD468F00BD5E8B /* PiBootMode.h */, + 9AA9186225CD468F00BD5E8B /* PeImage.h */, + 9AA9186325CD468F00BD5E8B /* AppleChunklist.h */, + 9AA9186425CD468F00BD5E8B /* Riff.h */, + 9AA9186525CD468F00BD5E8B /* AppleFatBinaryImage.h */, + 9AA9186625CD468F00BD5E8B /* HdaCodec.h */, + 9AA9186725CD468F00BD5E8B /* AppleHibernate.h */, + 9AA9186825CD468F00BD5E8B /* AppleFeatures.h */, + 9AA9186925CD468F00BD5E8B /* AppleMachoImage.h.dis */, + 9AA9186A25CD468F00BD5E8B /* AppleCsrConfig.h */, + 9AA9186B25CD468F00BD5E8B /* PciCommand.h */, + 9AA9186C25CD468F00BD5E8B /* AppleDiskLabel.h */, + 9AA9186D25CD468F00BD5E8B /* MachO-loader.h */, + 9AA9186E25CD468F00BD5E8B /* VirtualMemory.h */, + 9AA9186F25CD468F00BD5E8B /* AppleHid.h.disabled */, + 9AA9187025CD468F00BD5E8B /* AppleBootArgs.h */, + 9AA9187125CD468F00BD5E8B /* AtomBios.h */, + 9AA9187225CD468F00BD5E8B /* UsbHid.h */, + 9AA9187325CD468F00BD5E8B /* AppleIntelCpuInfo.h */, + 9AA9187425CD468F00BD5E8B /* ProcessorInfo.h */, + 9AA9187525CD468F00BD5E8B /* PciBus.h */, + ); + path = IndustryStandard; + sourceTree = ""; + }; + 9AA9187825CD468F00BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA9188225CD468F00BD5E8B /* GenericBdsLib.h */, + 9AA9187A25CD468F00BD5E8B /* HdaModels.h */, + 9AA9187925CD468F00BD5E8B /* HdaRegisters.h */, + 9AA9187D25CD468F00BD5E8B /* HdaVerbs.h */, + 9AA9187C25CD468F00BD5E8B /* MachoLib.h */, + 9AA9188425CD468F00BD5E8B /* MemLogLib.h */, + 9AA9188725CD468F00BD5E8B /* OcAfterBootCompatLib4Clover.h */, + 9AA9188025CD468F00BD5E8B /* PeCoffLib.h */, + 9AA9188125CD468F00BD5E8B /* printf_lite-conf.h */, + 9AA9187F25CD468F00BD5E8B /* printf_lite.h */, + 9AA9187B25CD468F00BD5E8B /* UefiHiiServicesLib.h */, + 9AA9187E25CD468F00BD5E8B /* UsbMass.h */, + 9AA9188325CD468F00BD5E8B /* UsbMassBoot.h */, + 9AA9188525CD468F00BD5E8B /* VideoBiosPatchLib.h */, + 9AA9188625CD468F00BD5E8B /* WaveLib.h */, + ); + path = Library; + sourceTree = ""; + }; + 9AA9188825CD468F00BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA9188925CD468F00BD5E8B /* NullTextOutput.h */, + 9AA9188A25CD468F00BD5E8B /* UsbMassImpl.h */, + 9AA9188B25CD468F00BD5E8B /* AppleImageCodecProtocol.h */, + 9AA9188C25CD468F00BD5E8B /* AppleDeviceControl.h */, + 9AA9188D25CD468F00BD5E8B /* HdaControllerInfo.h */, + 9AA9188E25CD468F00BD5E8B /* AppleKeyState.h */, + 9AA9188F25CD468F00BD5E8B /* efiConsoleControl.h */, + 9AA9189025CD468F00BD5E8B /* ApplePartitionInfo.h */, + 9AA9189125CD468F00BD5E8B /* AudioIo.h */, + 9AA9189225CD468F00BD5E8B /* FSInjectProtocol.h */, + 9AA9189325CD468F00BD5E8B /* HdaIo.h */, + 9AA9189425CD468F00BD5E8B /* OcQuirksProtocol4Clover.h */, + 9AA9189525CD468F00BD5E8B /* EmuVariableControl.h */, + 9AA9189625CD468F00BD5E8B /* KeyboardInfo.h */, + 9AA9189725CD468F00BD5E8B /* AppleSMC.h */, + 9AA9189825CD468F00BD5E8B /* PciIoImp.h */, + 9AA9189925CD468F00BD5E8B /* AptioMemoryFix.h */, + 9AA9189A25CD468F00BD5E8B /* HdaCodecInfo.h */, + 9AA9189B25CD468F00BD5E8B /* ApfsEfiBootRecordInfo.h */, + 9AA9189C25CD468F00BD5E8B /* ApplePlatformInfoDatabase.h */, + 9AA9189D25CD468F00BD5E8B /* MsgLog.h */, + 9AA9189E25CD468F00BD5E8B /* SimpleAudioOut.h */, + 9AA9189F25CD468F00BD5E8B /* AppleDiskIo.h */, + 9AA918A025CD468F00BD5E8B /* AppleGraphConfig.h */, + 9AA918A125CD468F00BD5E8B /* Hash.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA918A525CD468F00BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA918A625CD468F00BD5E8B /* PciOptionRomTable.h */, + 9AA918A725CD468F00BD5E8B /* PciExpressBaseAddress.h */, + 9AA918A825CD468F00BD5E8B /* DxeCoreFileName.h */, + 9AA918A925CD468F00BD5E8B /* LdrMemoryDescriptor.h */, + 9AA918AA25CD468F00BD5E8B /* ConsoleOutConfig.h */, + 9AA918AB25CD468F00BD5E8B /* FlashMapHob.h */, + 9AA918AC25CD468F00BD5E8B /* MicrosoftVariable.h */, + 9AA918AD25CD468F00BD5E8B /* AcpiDescription.h */, + 9AA918AE25CD468F00BD5E8B /* ApplePlatformInfo.h */, + 9AA918AF25CD468F00BD5E8B /* AppleApfsInfo.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA918B825CD4B5900BD5E8B /* refit */ = { + isa = PBXGroup; + children = ( + 9AA925AB25CD79AA00BD5E8B /* icns.cpp */, + 9AA925A925CD79A900BD5E8B /* main.cpp */, + 9AA925AC25CD79AA00BD5E8B /* menu.cpp */, + 9AA925AD25CD79AA00BD5E8B /* menu.h */, + 9AA925AE25CD79AB00BD5E8B /* screen.cpp */, + 9AA925AA25CD79AA00BD5E8B /* screen.h */, + 9AA918BC25CD4B5900BD5E8B /* lib.cpp */, + 9AA918BD25CD4B5900BD5E8B /* lib.h */, + ); + path = refit; + sourceTree = ""; + }; + 9AA918D925CD597E00BD5E8B /* OpenCorePkg */ = { + isa = PBXGroup; + children = ( + 9AA91DAF25CD598100BD5E8B /* .gitattributes */, + 9AA91DAD25CD598100BD5E8B /* .gitignore */, + 9AA9199A25CD597E00BD5E8B /* .shellcheckrc */, + 9AA91DE725CD598100BD5E8B /* .travis.yml */, + 9AA918DA25CD597E00BD5E8B /* AppleModels */, + 9AA91DB125CD598100BD5E8B /* Application */, + 9AA91DAE25CD598100BD5E8B /* build_duet.tool */, + 9AA91DB025CD598100BD5E8B /* build_oc.tool */, + 9AA9199925CD597E00BD5E8B /* Changelog.md */, + 9AA91DE925CD598100BD5E8B /* Debug */, + 9AA91D0225CD598000BD5E8B /* Docs */, + 9AA91DE325CD598100BD5E8B /* Doxyfile */, + 9AA919A025CD597E00BD5E8B /* Include */, + 9AA91AD425CD597F00BD5E8B /* Legacy */, + 9AA91B3825CD597F00BD5E8B /* Library */, + 9AA91DE425CD598100BD5E8B /* LICENSE.txt */, + 9AA91DE625CD598100BD5E8B /* OpenCoreFromClover.h */, + 9AA91D2725CD598000BD5E8B /* OpenCorePkg.dec */, + 9AA91DE225CD598100BD5E8B /* OpenCorePkg.dsc */, + 9AA91DAC25CD598100BD5E8B /* OpenDuetPkg.dec */, + 9AA91DE525CD598100BD5E8B /* OpenDuetPkg.dsc */, + 9AA91D2625CD598000BD5E8B /* OpenDuetPkg.fdf */, + 9AA9199B25CD597E00BD5E8B /* Patches */, + 9AA91A8625CD597F00BD5E8B /* Platform */, + 9AA91D2825CD598000BD5E8B /* README.md */, + 9AA9196225CD597E00BD5E8B /* Staging */, + 9AA91ABE25CD597F00BD5E8B /* Tests */, + 9AA91CF225CD598000BD5E8B /* User */, + 9AA91D2925CD598000BD5E8B /* Utilities */, + 9AA91DE825CD598100BD5E8B /* xcbuild.tool */, + ); + path = OpenCorePkg; + sourceTree = ""; + }; + 9AA918DA25CD597E00BD5E8B /* AppleModels */ = { + isa = PBXGroup; + children = ( + 9AA918DB25CD597E00BD5E8B /* DataBase */, + 9AA9195D25CD597E00BD5E8B /* update_generated.py */, + 9AA9195E25CD597E00BD5E8B /* update_products.py */, + 9AA9195F25CD597E00BD5E8B /* README.md */, + 9AA9196025CD597E00BD5E8B /* Products.zjson */, + 9AA9196125CD597E00BD5E8B /* DataBase.md */, + ); + path = AppleModels; + sourceTree = ""; + }; + 9AA918DB25CD597E00BD5E8B /* DataBase */ = { + isa = PBXGroup; + children = ( + 9AA918DC25CD597E00BD5E8B /* MacBookPro */, + 9AA9190625CD597E00BD5E8B /* Macmini */, + 9AA9191225CD597E00BD5E8B /* Xserve */, + 9AA9191625CD597E00BD5E8B /* iMac */, + 9AA9193725CD597E00BD5E8B /* MacBookAir */, + 9AA9194725CD597E00BD5E8B /* MacBook */, + 9AA9195325CD597E00BD5E8B /* MacPro */, + 9AA9195B25CD597E00BD5E8B /* iMacPro */, + ); + path = DataBase; + sourceTree = ""; + }; + 9AA918DC25CD597E00BD5E8B /* MacBookPro */ = { + isa = PBXGroup; + children = ( + 9AA918DD25CD597E00BD5E8B /* MBP71.yaml */, + 9AA918DE25CD597E00BD5E8B /* MBP111.yaml */, + 9AA918DF25CD597E00BD5E8B /* MBP131.yaml */, + 9AA918E025CD597E00BD5E8B /* MBP51.yaml */, + 9AA918E125CD597E00BD5E8B /* MBP92.yaml */, + 9AA918E225CD597E00BD5E8B /* MBP11.yaml */, + 9AA918E325CD597E00BD5E8B /* MBP31.yaml */, + 9AA918E425CD597E00BD5E8B /* MBP151.yaml */, + 9AA918E525CD597E00BD5E8B /* MBP41.yaml */, + 9AA918E625CD597E00BD5E8B /* MBP121.yaml */, + 9AA918E725CD597E00BD5E8B /* MBP82.yaml */, + 9AA918E825CD597E00BD5E8B /* MBP101.yaml */, + 9AA918E925CD597E00BD5E8B /* MBP61.yaml */, + 9AA918EA25CD597E00BD5E8B /* MBP141.yaml */, + 9AA918EB25CD597E00BD5E8B /* MBP21.yaml */, + 9AA918EC25CD597E00BD5E8B /* MBP83.yaml */, + 9AA918ED25CD597E00BD5E8B /* MBP161.yaml */, + 9AA918EE25CD597E00BD5E8B /* MBP55.yaml */, + 9AA918EF25CD597E00BD5E8B /* MBP162.yaml */, + 9AA918F025CD597E00BD5E8B /* MBP115.yaml */, + 9AA918F125CD597E00BD5E8B /* MBP142.yaml */, + 9AA918F225CD597E00BD5E8B /* MBP154.yaml */, + 9AA918F325CD597E00BD5E8B /* MBP22.yaml */, + 9AA918F425CD597E00BD5E8B /* MBP102.yaml */, + 9AA918F525CD597E00BD5E8B /* MBP143.yaml */, + 9AA918F625CD597E00BD5E8B /* MBP62.yaml */, + 9AA918F725CD597E00BD5E8B /* MBP114.yaml */, + 9AA918F825CD597E00BD5E8B /* MBP163.yaml */, + 9AA918F925CD597E00BD5E8B /* MBP54.yaml */, + 9AA918FA25CD597E00BD5E8B /* MBP81.yaml */, + 9AA918FB25CD597E00BD5E8B /* MBP113.yaml */, + 9AA918FC25CD597E00BD5E8B /* MBP152.yaml */, + 9AA918FD25CD597E00BD5E8B /* MBP53.yaml */, + 9AA918FE25CD597E00BD5E8B /* MBP12.yaml */, + 9AA918FF25CD597E00BD5E8B /* MBP133.yaml */, + 9AA9190025CD597E00BD5E8B /* MBP164.yaml */, + 9AA9190125CD597E00BD5E8B /* MBP132.yaml */, + 9AA9190225CD597E00BD5E8B /* MBP52.yaml */, + 9AA9190325CD597E00BD5E8B /* MBP91.yaml */, + 9AA9190425CD597E00BD5E8B /* MBP153.yaml */, + 9AA9190525CD597E00BD5E8B /* MBP112.yaml */, + ); + path = MacBookPro; + sourceTree = ""; + }; + 9AA9190625CD597E00BD5E8B /* Macmini */ = { + isa = PBXGroup; + children = ( + 9AA9190725CD597E00BD5E8B /* MM81.yaml */, + 9AA9190825CD597E00BD5E8B /* MM62.yaml */, + 9AA9190925CD597E00BD5E8B /* MM52.yaml */, + 9AA9190A25CD597E00BD5E8B /* MM53.yaml */, + 9AA9190B25CD597E00BD5E8B /* MM31.yaml */, + 9AA9190C25CD597E00BD5E8B /* MM11.yaml */, + 9AA9190D25CD597E00BD5E8B /* MM51.yaml */, + 9AA9190E25CD597E00BD5E8B /* MM71.yaml */, + 9AA9190F25CD597E00BD5E8B /* MM21.yaml */, + 9AA9191025CD597E00BD5E8B /* MM61.yaml */, + 9AA9191125CD597E00BD5E8B /* MM41.yaml */, + ); + path = Macmini; + sourceTree = ""; + }; + 9AA9191225CD597E00BD5E8B /* Xserve */ = { + isa = PBXGroup; + children = ( + 9AA9191325CD597E00BD5E8B /* XS21.yaml */, + 9AA9191425CD597E00BD5E8B /* XS11.yaml */, + 9AA9191525CD597E00BD5E8B /* XS31.yaml */, + ); + path = Xserve; + sourceTree = ""; + }; + 9AA9191625CD597E00BD5E8B /* iMac */ = { + isa = PBXGroup; + children = ( + 9AA9191725CD597E00BD5E8B /* IM181.yaml */, + 9AA9191825CD597E00BD5E8B /* IM142.yaml */, + 9AA9191925CD597E00BD5E8B /* IM162.yaml */, + 9AA9191A25CD597E00BD5E8B /* IM61.yaml */, + 9AA9191B25CD597E00BD5E8B /* IM122.yaml */, + 9AA9191C25CD597E00BD5E8B /* IM41.yaml */, + 9AA9191D25CD597E00BD5E8B /* IM143.yaml */, + 9AA9191E25CD597E00BD5E8B /* IM133.yaml */, + 9AA9191F25CD597E00BD5E8B /* IM191.yaml */, + 9AA9192025CD597E00BD5E8B /* IM144.yaml */, + 9AA9192125CD597E00BD5E8B /* IM113.yaml */, + 9AA9192225CD597E00BD5E8B /* IM51.yaml */, + 9AA9192325CD597E00BD5E8B /* IM112.yaml */, + 9AA9192425CD597E00BD5E8B /* IM201.yaml */, + 9AA9192525CD597E00BD5E8B /* IM132.yaml */, + 9AA9192625CD597E00BD5E8B /* IM71.yaml */, + 9AA9192725CD597E00BD5E8B /* IM131.yaml */, + 9AA9192825CD597E00BD5E8B /* IM52.yaml */, + 9AA9192925CD597E00BD5E8B /* IM111.yaml */, + 9AA9192A25CD597E00BD5E8B /* IM91.yaml */, + 9AA9192B25CD597E00BD5E8B /* IM202.yaml */, + 9AA9192C25CD597E00BD5E8B /* IM192.yaml */, + 9AA9192D25CD597E00BD5E8B /* IM151.yaml */, + 9AA9192E25CD597E00BD5E8B /* IM171.yaml */, + 9AA9192F25CD597E00BD5E8B /* IM101.yaml */, + 9AA9193025CD597E00BD5E8B /* IM42.yaml */, + 9AA9193125CD597E00BD5E8B /* IM81.yaml */, + 9AA9193225CD597E00BD5E8B /* IM183.yaml */, + 9AA9193325CD597E00BD5E8B /* IM121.yaml */, + 9AA9193425CD597E00BD5E8B /* IM161.yaml */, + 9AA9193525CD597E00BD5E8B /* IM182.yaml */, + 9AA9193625CD597E00BD5E8B /* IM141.yaml */, + ); + path = iMac; + sourceTree = ""; + }; + 9AA9193725CD597E00BD5E8B /* MacBookAir */ = { + isa = PBXGroup; + children = ( + 9AA9193825CD597E00BD5E8B /* MBA72.yaml */, + 9AA9193925CD597E00BD5E8B /* MBA91.yaml */, + 9AA9193A25CD597E00BD5E8B /* MBA52.yaml */, + 9AA9193B25CD597E00BD5E8B /* MBA32.yaml */, + 9AA9193C25CD597E00BD5E8B /* MBA81.yaml */, + 9AA9193D25CD597E00BD5E8B /* MBA42.yaml */, + 9AA9193E25CD597E00BD5E8B /* MBA62.yaml */, + 9AA9193F25CD597E00BD5E8B /* MBA21.yaml */, + 9AA9194025CD597E00BD5E8B /* MBA61.yaml */, + 9AA9194125CD597E00BD5E8B /* MBA82.yaml */, + 9AA9194225CD597E00BD5E8B /* MBA41.yaml */, + 9AA9194325CD597E00BD5E8B /* MBA31.yaml */, + 9AA9194425CD597E00BD5E8B /* MBA11.yaml */, + 9AA9194525CD597E00BD5E8B /* MBA51.yaml */, + 9AA9194625CD597E00BD5E8B /* MBA71.yaml */, + ); + path = MacBookAir; + sourceTree = ""; + }; + 9AA9194725CD597E00BD5E8B /* MacBook */ = { + isa = PBXGroup; + children = ( + 9AA9194825CD597E00BD5E8B /* MB51.yaml */, + 9AA9194925CD597E00BD5E8B /* MB71.yaml */, + 9AA9194A25CD597E00BD5E8B /* MB31.yaml */, + 9AA9194B25CD597E00BD5E8B /* MB11.yaml */, + 9AA9194C25CD597E00BD5E8B /* MB61.yaml */, + 9AA9194D25CD597E00BD5E8B /* MB41.yaml */, + 9AA9194E25CD597E00BD5E8B /* MB21.yaml */, + 9AA9194F25CD597E00BD5E8B /* MB81.yaml */, + 9AA9195025CD597E00BD5E8B /* MB101.yaml */, + 9AA9195125CD597E00BD5E8B /* MB52.yaml */, + 9AA9195225CD597E00BD5E8B /* MB91.yaml */, + ); + path = MacBook; + sourceTree = ""; + }; + 9AA9195325CD597E00BD5E8B /* MacPro */ = { + isa = PBXGroup; + children = ( + 9AA9195425CD597E00BD5E8B /* MP41.yaml */, + 9AA9195525CD597E00BD5E8B /* MP61.yaml */, + 9AA9195625CD597E00BD5E8B /* MP21.yaml */, + 9AA9195725CD597E00BD5E8B /* MP71.yaml */, + 9AA9195825CD597E00BD5E8B /* MP51.yaml */, + 9AA9195925CD597E00BD5E8B /* MP11.yaml */, + 9AA9195A25CD597E00BD5E8B /* MP31.yaml */, + ); + path = MacPro; + sourceTree = ""; + }; + 9AA9195B25CD597E00BD5E8B /* iMacPro */ = { + isa = PBXGroup; + children = ( + 9AA9195C25CD597E00BD5E8B /* IMP11.yaml */, + ); + path = iMacPro; + sourceTree = ""; + }; + 9AA9196225CD597E00BD5E8B /* Staging */ = { + isa = PBXGroup; + children = ( + 9AA9196325CD597E00BD5E8B /* README.md */, + 9AA9196425CD597E00BD5E8B /* VBoxHfs */, + 9AA9198625CD597E00BD5E8B /* AudioDxe */, + ); + path = Staging; + sourceTree = ""; + }; + 9AA9196425CD597E00BD5E8B /* VBoxHfs */ = { + isa = PBXGroup; + children = ( + 9AA9196525CD597E00BD5E8B /* hfs_format.h */, + 9AA9196625CD597E00BD5E8B /* mk_fsw_strfunc.py */, + 9AA9196725CD597E00BD5E8B /* fsw_hfs.h */, + 9AA9196825CD597E00BD5E8B /* fsw_core.c */, + 9AA9196925CD597E00BD5E8B /* fsw_strfunc.h */, + 9AA9196A25CD597E00BD5E8B /* fsw_base.h */, + 9AA9196B25CD597E00BD5E8B /* fsw_efi.h */, + 9AA9196C25CD597E00BD5E8B /* fsw_efi_lib.c */, + 9AA9196D25CD597E00BD5E8B /* fsw_lib.c */, + 9AA9196E25CD597E00BD5E8B /* hfs_unistr.h */, + 9AA9196F25CD597E00BD5E8B /* fsw_hfs.c */, + 9AA9197025CD597E00BD5E8B /* fsw_core.h */, + 9AA9197125CD597E00BD5E8B /* fsw_efi_base.h */, + 9AA9197225CD597E00BD5E8B /* LICENSE.txt */, + 9AA9197325CD597E00BD5E8B /* VBoxHfs.inf */, + 9AA9197425CD597E00BD5E8B /* fsw_efi.c */, + 9AA9197525CD597E00BD5E8B /* devstuff */, + ); + path = VBoxHfs; + sourceTree = ""; + }; + 9AA9197525CD597E00BD5E8B /* devstuff */ = { + isa = PBXGroup; + children = ( + 9AA9197A25CD597E00BD5E8B /* posix */, + 9AA9197C25CD597E00BD5E8B /* msvc */, + 9AA9197E25CD597E00BD5E8B /* mswin */, + 9AA9198125CD597E00BD5E8B /* src */, + ); + path = devstuff; + sourceTree = ""; + }; + 9AA9197A25CD597E00BD5E8B /* posix */ = { + isa = PBXGroup; + children = ( + 9AA9197B25CD597E00BD5E8B /* Makefile */, + ); + path = posix; + sourceTree = ""; + }; + 9AA9197C25CD597E00BD5E8B /* msvc */ = { + isa = PBXGroup; + children = ( + 9AA9197D25CD597E00BD5E8B /* VBoxHfs.vcxproj */, + ); + path = msvc; + sourceTree = ""; + }; + 9AA9197E25CD597E00BD5E8B /* mswin */ = { + isa = PBXGroup; + children = ( + 9AA9197F25CD597E00BD5E8B /* Makefile */, + 9AA9198025CD597E00BD5E8B /* dirent.h */, + ); + path = mswin; + sourceTree = ""; + }; + 9AA9198125CD597E00BD5E8B /* src */ = { + isa = PBXGroup; + children = ( + 9AA9198225CD597E00BD5E8B /* fsw_posix.c */, + 9AA9198325CD597E00BD5E8B /* fsw_posix_base.h */, + 9AA9198425CD597E00BD5E8B /* fsw_posix.h */, + 9AA9198525CD597E00BD5E8B /* tstmain.c */, + ); + path = src; + sourceTree = ""; + }; + 9AA9198625CD597E00BD5E8B /* AudioDxe */ = { + isa = PBXGroup; + children = ( + 9AA9198725CD597E00BD5E8B /* AudioDxe.c */, + 9AA9198825CD597E00BD5E8B /* HdaCodec */, + 9AA9198F25CD597E00BD5E8B /* HdaController */, + 9AA9199725CD597E00BD5E8B /* AudioDxe.h */, + 9AA9199825CD597E00BD5E8B /* AudioDxe.inf */, + ); + path = AudioDxe; + sourceTree = ""; + }; + 9AA9198825CD597E00BD5E8B /* HdaCodec */ = { + isa = PBXGroup; + children = ( + 9AA9198925CD597E00BD5E8B /* HdaCodecInfo.c */, + 9AA9198A25CD597E00BD5E8B /* HdaCodecComponentName.c */, + 9AA9198B25CD597E00BD5E8B /* HdaCodec.h */, + 9AA9198C25CD597E00BD5E8B /* HdaCodecAudioIo.c */, + 9AA9198D25CD597E00BD5E8B /* HdaCodecComponentName.h */, + 9AA9198E25CD597E00BD5E8B /* HdaCodec.c */, + ); + path = HdaCodec; + sourceTree = ""; + }; + 9AA9198F25CD597E00BD5E8B /* HdaController */ = { + isa = PBXGroup; + children = ( + 9AA9199025CD597E00BD5E8B /* HdaControllerComponentName.c */, + 9AA9199125CD597E00BD5E8B /* HdaControllerMem.c */, + 9AA9199225CD597E00BD5E8B /* HdaController.c */, + 9AA9199325CD597E00BD5E8B /* HdaControllerHdaIo.c */, + 9AA9199425CD597E00BD5E8B /* HdaControllerInfo.c */, + 9AA9199525CD597E00BD5E8B /* HdaControllerComponentName.h */, + 9AA9199625CD597E00BD5E8B /* HdaController.h */, + ); + path = HdaController; + sourceTree = ""; + }; + 9AA9199B25CD597E00BD5E8B /* Patches */ = { + isa = PBXGroup; + children = ( + 9AA9199C25CD597E00BD5E8B /* 0001-MdeModulePkg-SataControllerDxe-Add-support-for-drive.patch */, + 9AA9199D25CD597E00BD5E8B /* 0001-ShellPkg-Add-support-for-input-with-separately-repor.patch */, + 9AA9199E25CD597E00BD5E8B /* 0002-MdeModulePkg-AtaAtapiPassThru-Add-support-for-drives.patch */, + 9AA9199F25CD597E00BD5E8B /* 0003-MdeModulePkg-AtaAtapiPassThru-Reduce-timeout.patch */, + ); + path = Patches; + sourceTree = ""; + }; + 9AA919A025CD597E00BD5E8B /* Include */ = { + isa = PBXGroup; + children = ( + 9AA919A125CD597E00BD5E8B /* Apple */, + 9AA91A0325CD597F00BD5E8B /* Intel */, + 9AA91A1B25CD597F00BD5E8B /* AMI */, + 9AA91A1F25CD597F00BD5E8B /* Duet */, + 9AA91A2D25CD597F00BD5E8B /* Microsoft */, + 9AA91A3125CD597F00BD5E8B /* Generic */, + 9AA91A3525CD597F00BD5E8B /* Acidanthera */, + 9AA91A8125CD597F00BD5E8B /* VMware */, + ); + path = Include; + sourceTree = ""; + }; + 9AA919A125CD597E00BD5E8B /* Apple */ = { + isa = PBXGroup; + children = ( + 9AA919A225CD597E00BD5E8B /* AppleMacEfi */, + 9AA919A425CD597E00BD5E8B /* Ebc */, + 9AA919A625CD597E00BD5E8B /* X64 */, + 9AA919A825CD597E00BD5E8B /* IndustryStandard */, + 9AA919C025CD597E00BD5E8B /* AppleMacEfi.h */, + 9AA919C125CD597E00BD5E8B /* Library */, + 9AA919C825CD597E00BD5E8B /* Protocol */, + 9AA919ED25CD597E00BD5E8B /* Ia32 */, + 9AA919EF25CD597F00BD5E8B /* Guid */, + 9AA919FF25CD597F00BD5E8B /* Arm */, + 9AA91A0125CD597F00BD5E8B /* AArch64 */, + ); + path = Apple; + sourceTree = ""; + }; + 9AA919A225CD597E00BD5E8B /* AppleMacEfi */ = { + isa = PBXGroup; + children = ( + 9AA919A325CD597E00BD5E8B /* AppleMacEfiSpec.h */, + ); + path = AppleMacEfi; + sourceTree = ""; + }; + 9AA919A425CD597E00BD5E8B /* Ebc */ = { + isa = PBXGroup; + children = ( + 9AA919A525CD597E00BD5E8B /* AppleCpuType.h */, + ); + path = Ebc; + sourceTree = ""; + }; + 9AA919A625CD597E00BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA919A725CD597E00BD5E8B /* AppleCpuType.h */, + ); + path = X64; + sourceTree = ""; + }; + 9AA919A825CD597E00BD5E8B /* IndustryStandard */ = { + isa = PBXGroup; + children = ( + 9AA919A925CD597E00BD5E8B /* AppleProvisioning.h */, + 9AA919AA25CD597E00BD5E8B /* AppleIcon.h */, + 9AA919AB25CD597E00BD5E8B /* AppleMachoImage.h */, + 9AA919AC25CD597E00BD5E8B /* AppleSmBios.h */, + 9AA919AD25CD597E00BD5E8B /* AppleNec.h */, + 9AA919AE25CD597E00BD5E8B /* AppleRtc.h */, + 9AA919AF25CD597E00BD5E8B /* AppleDiskImage.h */, + 9AA919B025CD597E00BD5E8B /* ApplePerfData.h */, + 9AA919B125CD597E00BD5E8B /* AppleChunklist.h */, + 9AA919B225CD597E00BD5E8B /* AppleFatBinaryImage.h */, + 9AA919B325CD597E00BD5E8B /* AppleSmc.h */, + 9AA919B425CD597E00BD5E8B /* AppleHibernate.h */, + 9AA919B525CD597E00BD5E8B /* AppleFeatures.h */, + 9AA919B625CD597E00BD5E8B /* Apfs.h */, + 9AA919B725CD597E00BD5E8B /* AppleCsrConfig.h */, + 9AA919B825CD597E00BD5E8B /* AppleDiskLabel.h */, + 9AA919B925CD597E00BD5E8B /* AppleBootArgs.h */, + 9AA919BA25CD597E00BD5E8B /* AppleHid.h */, + 9AA919BB25CD597E00BD5E8B /* AppleIntelCpuInfo.h */, + 9AA919BC25CD597E00BD5E8B /* AppleKmodInfo.h */, + 9AA919BD25CD597E00BD5E8B /* AppleKxldState.h */, + 9AA919BE25CD597E00BD5E8B /* AppleCompressedBinaryImage.h */, + 9AA919BF25CD597E00BD5E8B /* AppleMkext.h */, + ); + path = IndustryStandard; + sourceTree = ""; + }; + 9AA919C125CD597E00BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA919C225CD597E00BD5E8B /* AppleInterruptLib.h */, + 9AA919C325CD597E00BD5E8B /* BiosIdLib.h */, + 9AA919C425CD597E00BD5E8B /* AppleSmbiosLib.h */, + 9AA919C525CD597E00BD5E8B /* AppleCpuExtensionsLib.h */, + 9AA919C625CD597E00BD5E8B /* AppleDataHubLib.h */, + 9AA919C725CD597E00BD5E8B /* AppleEventLib.h */, + ); + path = Library; + sourceTree = ""; + }; + 9AA919C825CD597E00BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA919C925CD597E00BD5E8B /* UserInterfaceTheme.h */, + 9AA919CA25CD597E00BD5E8B /* OSInfo.h */, + 9AA919CB25CD597E00BD5E8B /* AppleDeviceControl.h */, + 9AA919CC25CD597E00BD5E8B /* AppleSmcIo.h */, + 9AA919CD25CD597E00BD5E8B /* AppleGraphicsPolicy.h */, + 9AA919CE25CD597E00BD5E8B /* ApplePartitionInfo.h */, + 9AA919CF25CD597E00BD5E8B /* ApfsUnsupportedBds.h */, + 9AA919D025CD597E00BD5E8B /* AppleSecureBoot.h */, + 9AA919D125CD597E00BD5E8B /* AppleFirmwarePassword.h */, + 9AA919D225CD597E00BD5E8B /* AppleDiskImage.h */, + 9AA919D325CD597E00BD5E8B /* AppleImageConversion.h */, + 9AA919D425CD597E00BD5E8B /* AppleRamDisk.h */, + 9AA919D525CD597E00BD5E8B /* KeyboardInfo.h */, + 9AA919D625CD597E00BD5E8B /* AppleBeepGen.h */, + 9AA919D725CD597E00BD5E8B /* AppleKeyMapDatabase.h */, + 9AA919D825CD597E00BD5E8B /* AppleGraphicsDriver.h */, + 9AA919D925CD597E00BD5E8B /* AppleRemovableMedia.h */, + 9AA919DA25CD597E00BD5E8B /* AppleKeyMapAggregator.h */, + 9AA919DB25CD597E00BD5E8B /* AppleFramebufferInfo.h */, + 9AA919DC25CD597E00BD5E8B /* ApfsEncryptedPartition.h */, + 9AA919DD25CD597E00BD5E8B /* AppleImg4Verification.h */, + 9AA919DE25CD597E00BD5E8B /* DevicePathPropertyDatabase.h */, + 9AA919DF25CD597E00BD5E8B /* AppleSingleFile.h */, + 9AA919E025CD597E00BD5E8B /* AppleRtcRam.h */, + 9AA919E125CD597E00BD5E8B /* AppleVoiceOver.h */, + 9AA919E225CD597E00BD5E8B /* AppleDebugLog.h */, + 9AA919E325CD597E00BD5E8B /* AppleHda.h */, + 9AA919E425CD597E00BD5E8B /* Apple80211.h */, + 9AA919E525CD597E00BD5E8B /* ApfsEfiBootRecordInfo.h */, + 9AA919E625CD597E00BD5E8B /* ApplePlatformInfoDatabase.h */, + 9AA919E725CD597E00BD5E8B /* AppleDiag.h */, + 9AA919E825CD597E00BD5E8B /* AppleSystemInfo.h */, + 9AA919E925CD597E00BD5E8B /* AppleBootPolicy.h */, + 9AA919EA25CD597E00BD5E8B /* AppleEvent.h */, + 9AA919EB25CD597E00BD5E8B /* AppleDmgBoot.h */, + 9AA919EC25CD597E00BD5E8B /* AppleLoadImage.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA919ED25CD597E00BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA919EE25CD597E00BD5E8B /* AppleCpuType.h */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA919EF25CD597F00BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA919F025CD597F00BD5E8B /* AppleBless.h */, + 9AA919F125CD597F00BD5E8B /* AppleDataHub.h */, + 9AA919F225CD597F00BD5E8B /* AppleFile.h */, + 9AA919F325CD597F00BD5E8B /* AppleOSLoaded.h */, + 9AA919F425CD597F00BD5E8B /* AppleCertificate.h */, + 9AA919F525CD597F00BD5E8B /* AppleDevicePath.h */, + 9AA919F625CD597F00BD5E8B /* AppleHob.h */, + 9AA919F725CD597F00BD5E8B /* AppleTscFrequency.h */, + 9AA919F825CD597F00BD5E8B /* ApplePlatformInfo.h */, + 9AA919F925CD597F00BD5E8B /* AppleHfsInfo.h */, + 9AA919FA25CD597F00BD5E8B /* AppleVariable.h */, + 9AA919FB25CD597F00BD5E8B /* BiosId.h */, + 9AA919FC25CD597F00BD5E8B /* AppleApfsInfo.h */, + 9AA919FD25CD597F00BD5E8B /* AppleTDMApprovedGuid.h */, + 9AA919FE25CD597F00BD5E8B /* AppleFirmwareVolume.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA919FF25CD597F00BD5E8B /* Arm */ = { + isa = PBXGroup; + children = ( + 9AA91A0025CD597F00BD5E8B /* AppleCpuType.h */, + ); + path = Arm; + sourceTree = ""; + }; + 9AA91A0125CD597F00BD5E8B /* AArch64 */ = { + isa = PBXGroup; + children = ( + 9AA91A0225CD597F00BD5E8B /* AppleCpuType.h */, + ); + path = AArch64; + sourceTree = ""; + }; + 9AA91A0325CD597F00BD5E8B /* Intel */ = { + isa = PBXGroup; + children = ( + 9AA91A0425CD597F00BD5E8B /* IndustryStandard */, + 9AA91A0D25CD597F00BD5E8B /* Protocol */, + 9AA91A1825CD597F00BD5E8B /* Guid */, + ); + path = Intel; + sourceTree = ""; + }; + 9AA91A0425CD597F00BD5E8B /* IndustryStandard */ = { + isa = PBXGroup; + children = ( + 9AA91A0525CD597F00BD5E8B /* HeciMsg.h */, + 9AA91A0625CD597F00BD5E8B /* HdaRegisters.h */, + 9AA91A0725CD597F00BD5E8B /* GenericIch.h */, + 9AA91A0825CD597F00BD5E8B /* CpuId.h */, + 9AA91A0925CD597F00BD5E8B /* HeciClientMsg.h */, + 9AA91A0A25CD597F00BD5E8B /* HdaVerbs.h */, + 9AA91A0B25CD597F00BD5E8B /* VirtualMemory.h */, + 9AA91A0C25CD597F00BD5E8B /* ProcessorInfo.h */, + ); + path = IndustryStandard; + sourceTree = ""; + }; + 9AA91A0D25CD597F00BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA91A0E25CD597F00BD5E8B /* Heci2.h */, + 9AA91A0F25CD597F00BD5E8B /* LegacyBios.h */, + 9AA91A1025CD597F00BD5E8B /* HotPlugDevice.h */, + 9AA91A1125CD597F00BD5E8B /* FrameworkMpService.h */, + 9AA91A1225CD597F00BD5E8B /* ConsoleControl.h */, + 9AA91A1325CD597F00BD5E8B /* Heci.h */, + 9AA91A1425CD597F00BD5E8B /* VgaMiniPort.h */, + 9AA91A1525CD597F00BD5E8B /* LegacyRegion.h */, + 9AA91A1625CD597F00BD5E8B /* DataHub.h */, + 9AA91A1725CD597F00BD5E8B /* FirmwareVolume.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA91A1825CD597F00BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA91A1925CD597F00BD5E8B /* DataHubRecords.h */, + 9AA91A1A25CD597F00BD5E8B /* BlockIoVendor.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA91A1B25CD597F00BD5E8B /* AMI */ = { + isa = PBXGroup; + children = ( + 9AA91A1C25CD597F00BD5E8B /* Protocol */, + ); + path = AMI; + sourceTree = ""; + }; + 9AA91A1C25CD597F00BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA91A1D25CD597F00BD5E8B /* AmiPointer.h */, + 9AA91A1E25CD597F00BD5E8B /* AmiKeycode.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA91A1F25CD597F00BD5E8B /* Duet */ = { + isa = PBXGroup; + children = ( + 9AA91A2025CD597F00BD5E8B /* EfiLdrHandoff.h */, + 9AA91A2125CD597F00BD5E8B /* Library */, + 9AA91A2325CD597F00BD5E8B /* FlashLayout.h */, + 9AA91A2425CD597F00BD5E8B /* EfiFlashMap.h */, + 9AA91A2525CD597F00BD5E8B /* Guid */, + 9AA91A2C25CD597F00BD5E8B /* EfiImageFormat.h */, + ); + path = Duet; + sourceTree = ""; + }; + 9AA91A2125CD597F00BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA91A2225CD597F00BD5E8B /* DuetBdsLib.h */, + ); + path = Library; + sourceTree = ""; + }; + 9AA91A2525CD597F00BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA91A2625CD597F00BD5E8B /* PciOptionRomTable.h */, + 9AA91A2725CD597F00BD5E8B /* PciExpressBaseAddress.h */, + 9AA91A2825CD597F00BD5E8B /* DxeCoreFileName.h */, + 9AA91A2925CD597F00BD5E8B /* LdrMemoryDescriptor.h */, + 9AA91A2A25CD597F00BD5E8B /* FlashMapHob.h */, + 9AA91A2B25CD597F00BD5E8B /* AcpiDescription.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA91A2D25CD597F00BD5E8B /* Microsoft */ = { + isa = PBXGroup; + children = ( + 9AA91A2E25CD597F00BD5E8B /* MicrosoftWindows.h */, + 9AA91A2F25CD597F00BD5E8B /* Guid */, + ); + path = Microsoft; + sourceTree = ""; + }; + 9AA91A2F25CD597F00BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA91A3025CD597F00BD5E8B /* MicrosoftVariable.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA91A3125CD597F00BD5E8B /* Generic */ = { + isa = PBXGroup; + children = ( + 9AA91A3225CD597F00BD5E8B /* IndustryStandard */, + ); + path = Generic; + sourceTree = ""; + }; + 9AA91A3225CD597F00BD5E8B /* IndustryStandard */ = { + isa = PBXGroup; + children = ( + 9AA91A3325CD597F00BD5E8B /* Riff.h */, + 9AA91A3425CD597F00BD5E8B /* UsbHid.h */, + ); + path = IndustryStandard; + sourceTree = ""; + }; + 9AA91A3525CD597F00BD5E8B /* Acidanthera */ = { + isa = PBXGroup; + children = ( + 9AA91A3625CD597F00BD5E8B /* IndustryStandard */, + 9AA91A3825CD597F00BD5E8B /* Library */, + 9AA91A7225CD597F00BD5E8B /* Protocol */, + 9AA91A7D25CD597F00BD5E8B /* Guid */, + 9AA91A8025CD597F00BD5E8B /* OpenCore.h */, + ); + path = Acidanthera; + sourceTree = ""; + }; + 9AA91A3625CD597F00BD5E8B /* IndustryStandard */ = { + isa = PBXGroup; + children = ( + 9AA91A3725CD597F00BD5E8B /* OcPeImage.h */, + ); + path = IndustryStandard; + sourceTree = ""; + }; + 9AA91A3825CD597F00BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA91A3925CD597F00BD5E8B /* OcAppleImg4Lib.h */, + 9AA91A3A25CD597F00BD5E8B /* OcHeciLib.h */, + 9AA91A3B25CD597F00BD5E8B /* OcAppleKeyMapLib.h */, + 9AA91A3C25CD597F00BD5E8B /* OcCpuLib.h */, + 9AA91A3D25CD597F00BD5E8B /* OcHashServicesLib.h */, + 9AA91A3E25CD597F00BD5E8B /* OcMacInfoLib.h */, + 9AA91A3F25CD597F00BD5E8B /* OcApfsLib.h */, + 9AA91A4025CD597F00BD5E8B /* OcVirtualFsLib.h */, + 9AA91A4125CD597F00BD5E8B /* OcAppleImageConversionLib.h */, + 9AA91A4225CD597F00BD5E8B /* OcRtcLib.h */, + 9AA91A4325CD597F00BD5E8B /* OcMiscLib.h */, + 9AA91A4425CD597F00BD5E8B /* OcPeCoffLib.h */, + 9AA91A4525CD597F00BD5E8B /* OcConfigurationLib.h */, + 9AA91A4625CD597F00BD5E8B /* OcDevicePathLib.h */, + 9AA91A4725CD597F00BD5E8B /* OcFileLib.h */, + 9AA91A4825CD597F00BD5E8B /* OcTemplateLib.h */, + 9AA91A4925CD597F00BD5E8B /* OcAppleKernelLib.h */, + 9AA91A4A25CD597F00BD5E8B /* OcDriverConnectionLib.h */, + 9AA91A4B25CD597F00BD5E8B /* OcAudioLib.h */, + 9AA91A4C25CD597F00BD5E8B /* OcStorageLib.h */, + 9AA91A4D25CD597F00BD5E8B /* OcAppleRamDiskLib.h */, + 9AA91A4E25CD597F00BD5E8B /* OcAfterBootCompatLib.h */, + 9AA91A4F25CD597F00BD5E8B /* OcStringLib.h */, + 9AA91A5025CD597F00BD5E8B /* OcAppleUserInterfaceThemeLib.h */, + 9AA91A5125CD597F00BD5E8B /* OcDebugLogLib.h */, + 9AA91A5225CD597F00BD5E8B /* OcXmlLib.h */, + 9AA91A5325CD597F00BD5E8B /* OcFirmwarePasswordLib.h */, + 9AA91A5425CD597F00BD5E8B /* OcMachoLib.h */, + 9AA91A5525CD597F00BD5E8B /* OcAppleChunklistLib.h */, + 9AA91A5625CD597F00BD5E8B /* OcAcpiLib.h */, + 9AA91A5725CD597F00BD5E8B /* OcDataHubLib.h */, + 9AA91A5825CD597F00BD5E8B /* OcSerializeLib.h */, + 9AA91A5925CD597F00BD5E8B /* OcBootServicesTableLib.h */, + 9AA91A5A25CD597F00BD5E8B /* OcMemoryLib.h */, + 9AA91A5B25CD597F00BD5E8B /* OcSmcLib.h */, + 9AA91A5C25CD597F00BD5E8B /* OcOSInfoLib.h */, + 9AA91A5D25CD597F00BD5E8B /* OcBootManagementLib.h */, + 9AA91A5E25CD597F00BD5E8B /* OcHdaDevicesLib.h */, + 9AA91A5F25CD597F00BD5E8B /* OcGuardLib.h */, + 9AA91A6025CD597F00BD5E8B /* OcAppleSecureBootLib.h */, + 9AA91A6125CD597F00BD5E8B /* OcSmbiosLib.h */, + 9AA91A6225CD597F00BD5E8B /* OcUnicodeCollationEngGenericLib.h */, + 9AA91A6325CD597F00BD5E8B /* OcAppleBootPolicyLib.h */, + 9AA91A6425CD597F00BD5E8B /* OcCryptoLib.h */, + 9AA91A6525CD597F00BD5E8B /* OcDevicePropertyLib.h */, + 9AA91A6625CD597F00BD5E8B /* OcAppleKeysLib.h */, + 9AA91A6725CD597F00BD5E8B /* OcInputLib.h */, + 9AA91A6825CD597F00BD5E8B /* OcAppleDiskImageLib.h */, + 9AA91A6925CD597F00BD5E8B /* OcDeviceTreeLib.h */, + 9AA91A6A25CD597F00BD5E8B /* OcAppleEventLib.h */, + 9AA91A6B25CD597F00BD5E8B /* OcPngLib.h */, + 9AA91A6C25CD597F00BD5E8B /* OcFirmwareVolumeLib.h */, + 9AA91A6D25CD597F00BD5E8B /* OcAppleImageVerificationLib.h */, + 9AA91A6E25CD597F00BD5E8B /* OcTimerLib.h */, + 9AA91A6F25CD597F00BD5E8B /* OcRngLib.h */, + 9AA91A7025CD597F00BD5E8B /* OcConsoleLib.h */, + 9AA91A7125CD597F00BD5E8B /* OcCompressionLib.h */, + ); + path = Library; + sourceTree = ""; + }; + 9AA91A7225CD597F00BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA91A7325CD597F00BD5E8B /* OcInterface.h */, + 9AA91A7425CD597F00BD5E8B /* OcFirmwareRuntime.h */, + 9AA91A7525CD597F00BD5E8B /* HdaControllerInfo.h */, + 9AA91A7625CD597F00BD5E8B /* AudioIo.h */, + 9AA91A7725CD597F00BD5E8B /* HdaIo.h */, + 9AA91A7825CD597F00BD5E8B /* OcAfterBootCompat.h */, + 9AA91A7925CD597F00BD5E8B /* HdaCodecInfo.h */, + 9AA91A7A25CD597F00BD5E8B /* OcBootstrap.h */, + 9AA91A7B25CD597F00BD5E8B /* OcLog.h */, + 9AA91A7C25CD597F00BD5E8B /* OcAudio.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA91A7D25CD597F00BD5E8B /* Guid */ = { + isa = PBXGroup; + children = ( + 9AA91A7E25CD597F00BD5E8B /* OcSmBios.h */, + 9AA91A7F25CD597F00BD5E8B /* OcVariable.h */, + ); + path = Guid; + sourceTree = ""; + }; + 9AA91A8125CD597F00BD5E8B /* VMware */ = { + isa = PBXGroup; + children = ( + 9AA91A8225CD597F00BD5E8B /* Protocol */, + ); + path = VMware; + sourceTree = ""; + }; + 9AA91A8225CD597F00BD5E8B /* Protocol */ = { + isa = PBXGroup; + children = ( + 9AA91A8325CD597F00BD5E8B /* VMwareMac.h */, + 9AA91A8425CD597F00BD5E8B /* VMwareDebug.h */, + 9AA91A8525CD597F00BD5E8B /* VMwareHda.h */, + ); + path = Protocol; + sourceTree = ""; + }; + 9AA91A8625CD597F00BD5E8B /* Platform */ = { + isa = PBXGroup; + children = ( + 9AA91A8725CD597F00BD5E8B /* OpenCanopy */, + 9AA91A9A25CD597F00BD5E8B /* OpenRuntime */, + 9AA91A9F25CD597F00BD5E8B /* OpenUsbKbDxe */, + 9AA91AAA25CD597F00BD5E8B /* CrScreenshotDxe */, + 9AA91AAF25CD597F00BD5E8B /* OpenCore */, + ); + path = Platform; + sourceTree = ""; + }; + 9AA91A8725CD597F00BD5E8B /* OpenCanopy */ = { + isa = PBXGroup; + children = ( + 9AA91A8825CD597F00BD5E8B /* GuiApp.c */, + 9AA91A8925CD597F00BD5E8B /* BmfLib.h */, + 9AA91A8A25CD597F00BD5E8B /* OpenCanopy.inf */, + 9AA91A8B25CD597F00BD5E8B /* Input */, + 9AA91A8E25CD597F00BD5E8B /* OpenCanopy.h */, + 9AA91A8F25CD597F00BD5E8B /* Output */, + 9AA91A9125CD597F00BD5E8B /* OcBootstrap.c */, + 9AA91A9225CD597F00BD5E8B /* GuiApp.h */, + 9AA91A9325CD597F00BD5E8B /* GuiIo.h */, + 9AA91A9425CD597F00BD5E8B /* OpenCanopy.c */, + 9AA91A9525CD597F00BD5E8B /* BitmapFont.c */, + 9AA91A9625CD597F00BD5E8B /* Views */, + 9AA91A9925CD597F00BD5E8B /* BmfFile.h */, + ); + path = OpenCanopy; + sourceTree = ""; + }; + 9AA91A8B25CD597F00BD5E8B /* Input */ = { + isa = PBXGroup; + children = ( + 9AA91A8C25CD597F00BD5E8B /* InputSimTextIn.c */, + 9AA91A8D25CD597F00BD5E8B /* InputSimAbsPtr.c */, + ); + path = Input; + sourceTree = ""; + }; + 9AA91A8F25CD597F00BD5E8B /* Output */ = { + isa = PBXGroup; + children = ( + 9AA91A9025CD597F00BD5E8B /* OutputStGop.c */, + ); + path = Output; + sourceTree = ""; + }; + 9AA91A9625CD597F00BD5E8B /* Views */ = { + isa = PBXGroup; + children = ( + 9AA91A9725CD597F00BD5E8B /* BootPicker.c */, + 9AA91A9825CD597F00BD5E8B /* BootPicker.h */, + ); + path = Views; + sourceTree = ""; + }; + 9AA91A9A25CD597F00BD5E8B /* OpenRuntime */ = { + isa = PBXGroup; + children = ( + 9AA91A9B25CD597F00BD5E8B /* OpenRuntimePrivate.h */, + 9AA91A9C25CD597F00BD5E8B /* OpenRuntime.inf */, + 9AA91A9D25CD597F00BD5E8B /* OpenRuntime.c */, + 9AA91A9E25CD597F00BD5E8B /* UefiRuntimeServices.c */, + ); + path = OpenRuntime; + sourceTree = ""; + }; + 9AA91A9F25CD597F00BD5E8B /* OpenUsbKbDxe */ = { + isa = PBXGroup; + children = ( + 9AA91AA025CD597F00BD5E8B /* UsbKbDxeExtra.uni */, + 9AA91AA125CD597F00BD5E8B /* AppleKey.c */, + 9AA91AA225CD597F00BD5E8B /* KeyBoard.c */, + 9AA91AA325CD597F00BD5E8B /* UsbKbDxe.inf */, + 9AA91AA425CD597F00BD5E8B /* EfiKey.h */, + 9AA91AA525CD597F00BD5E8B /* UsbKbDxe.uni */, + 9AA91AA625CD597F00BD5E8B /* ComponentName.c */, + 9AA91AA725CD597F00BD5E8B /* KeyBoard.h */, + 9AA91AA825CD597F00BD5E8B /* AppleKey.h */, + 9AA91AA925CD597F00BD5E8B /* EfiKey.c */, + ); + path = OpenUsbKbDxe; + sourceTree = ""; + }; + 9AA91AAA25CD597F00BD5E8B /* CrScreenshotDxe */ = { + isa = PBXGroup; + children = ( + 9AA91AAB25CD597F00BD5E8B /* CrScreenshotDxe.inf */, + 9AA91AAC25CD597F00BD5E8B /* LICENSE */, + 9AA91AAD25CD597F00BD5E8B /* CrScreenshotDxe.c */, + 9AA91AAE25CD597F00BD5E8B /* README.md */, + ); + path = CrScreenshotDxe; + sourceTree = ""; + }; + 9AA91AAF25CD597F00BD5E8B /* OpenCore */ = { + isa = PBXGroup; + children = ( + 9AA91AB025CD597F00BD5E8B /* OpenCoreUefi.c */, + 9AA91AB125CD597F00BD5E8B /* OpenCoreVault.c */, + 9AA91AB225CD597F00BD5E8B /* OpenCoreLib.inf */, + 9AA91AB325CD597F00BD5E8B /* OpenCore.c */, + 9AA91AB425CD597F00BD5E8B /* OpenCoreAcpi.c */, + 9AA91AB525CD597F00BD5E8B /* OpenCoreUefiInOut.c */, + 9AA91AB625CD597F00BD5E8B /* OpenCoreMisc.c */, + 9AA91AB725CD597F00BD5E8B /* OpenCorePlatform.c */, + 9AA91AB825CD597F00BD5E8B /* OpenCoreDevProps.c */, + 9AA91AB925CD597F00BD5E8B /* OpenCoreNvram.c */, + 9AA91ABA25CD597F00BD5E8B /* OpenCoreKernelPatch.c */, + 9AA91ABB25CD597F00BD5E8B /* OpenCoreUefiAudio.c */, + 9AA91ABC25CD597F00BD5E8B /* OpenCore.inf */, + 9AA91ABD25CD597F00BD5E8B /* OpenCoreKernel.c */, + ); + path = OpenCore; + sourceTree = ""; + }; + 9AA91ABE25CD597F00BD5E8B /* Tests */ = { + isa = PBXGroup; + children = ( + 9AA91ABF25CD597F00BD5E8B /* AcpiTest */, + 9AA91AC325CD597F00BD5E8B /* CryptoTest */, + 9AA91AC825CD597F00BD5E8B /* SmbiosTest */, + 9AA91ACC25CD597F00BD5E8B /* DataHubTest */, + 9AA91AD025CD597F00BD5E8B /* PropertyTest */, + ); + path = Tests; + sourceTree = ""; + }; + 9AA91ABF25CD597F00BD5E8B /* AcpiTest */ = { + isa = PBXGroup; + children = ( + 9AA91AC025CD597F00BD5E8B /* AcpiTest.c */, + 9AA91AC125CD597F00BD5E8B /* AcpiTestApp.inf */, + 9AA91AC225CD597F00BD5E8B /* AcpiTest.inf */, + ); + path = AcpiTest; + sourceTree = ""; + }; + 9AA91AC325CD597F00BD5E8B /* CryptoTest */ = { + isa = PBXGroup; + children = ( + 9AA91AC425CD597F00BD5E8B /* CryptoTest.inf */, + 9AA91AC525CD597F00BD5E8B /* CryptoTest.c */, + 9AA91AC625CD597F00BD5E8B /* CryptoSamples.h */, + 9AA91AC725CD597F00BD5E8B /* CryptoTestApp.inf */, + ); + path = CryptoTest; + sourceTree = ""; + }; + 9AA91AC825CD597F00BD5E8B /* SmbiosTest */ = { + isa = PBXGroup; + children = ( + 9AA91AC925CD597F00BD5E8B /* SmbiosTestApp.inf */, + 9AA91ACA25CD597F00BD5E8B /* SmbiosTest.inf */, + 9AA91ACB25CD597F00BD5E8B /* SmbiosTest.c */, + ); + path = SmbiosTest; + sourceTree = ""; + }; + 9AA91ACC25CD597F00BD5E8B /* DataHubTest */ = { + isa = PBXGroup; + children = ( + 9AA91ACD25CD597F00BD5E8B /* DataHubTestApp.inf */, + 9AA91ACE25CD597F00BD5E8B /* DataHubTest.inf */, + 9AA91ACF25CD597F00BD5E8B /* DataHubTest.c */, + ); + path = DataHubTest; + sourceTree = ""; + }; + 9AA91AD025CD597F00BD5E8B /* PropertyTest */ = { + isa = PBXGroup; + children = ( + 9AA91AD125CD597F00BD5E8B /* PropertyTest.inf */, + 9AA91AD225CD597F00BD5E8B /* PropertyTest.c */, + 9AA91AD325CD597F00BD5E8B /* PropertyTestApp.inf */, + ); + path = PropertyTest; + sourceTree = ""; + }; + 9AA91AD425CD597F00BD5E8B /* Legacy */ = { + isa = PBXGroup; + children = ( + 9AA91AD525CD597F00BD5E8B /* BootLoader */, + 9AA91AD925CD597F00BD5E8B /* BootPlatform */, + 9AA91B2E25CD597F00BD5E8B /* README.md */, + 9AA91B2F25CD597F00BD5E8B /* BootSector */, + 9AA91B3425CD597F00BD5E8B /* BinDrivers */, + ); + path = Legacy; + sourceTree = ""; + }; + 9AA91AD525CD597F00BD5E8B /* BootLoader */ = { + isa = PBXGroup; + children = ( + 9AA91AD625CD597F00BD5E8B /* Makefile */, + 9AA91AD725CD597F00BD5E8B /* boot0.nasm */, + 9AA91AD825CD597F00BD5E8B /* boot1f32.nasm */, + ); + path = BootLoader; + sourceTree = ""; + }; + 9AA91AD925CD597F00BD5E8B /* BootPlatform */ = { + isa = PBXGroup; + children = ( + 9AA91ADA25CD597F00BD5E8B /* SmbiosGenDxe */, + 9AA91ADF25CD597F00BD5E8B /* CpuDxe */, + 9AA91AE725CD597F00BD5E8B /* EfiLdr */, + 9AA91AF125CD597F00BD5E8B /* PciRootBridgeDxe */, + 9AA91AFA25CD597F00BD5E8B /* LegacyRegion2Dxe */, + 9AA91AFE25CD597F00BD5E8B /* AcpiResetDxe */, + 9AA91B0125CD597F00BD5E8B /* DxeIpl */, + 9AA91B1125CD597F00BD5E8B /* BiosVideo */, + 9AA91B1825CD597F00BD5E8B /* BdsDxe */, + 9AA91B1D25CD597F00BD5E8B /* PciBusNoEnumerationDxe */, + ); + path = BootPlatform; + sourceTree = ""; + }; + 9AA91ADA25CD597F00BD5E8B /* SmbiosGenDxe */ = { + isa = PBXGroup; + children = ( + 9AA91ADB25CD597F00BD5E8B /* SmbiosGenStrings.uni */, + 9AA91ADC25CD597F00BD5E8B /* SmbiosGen.c */, + 9AA91ADD25CD597F00BD5E8B /* SmbiosGen.inf */, + 9AA91ADE25CD597F00BD5E8B /* SmbiosGen.h */, + ); + path = SmbiosGenDxe; + sourceTree = ""; + }; + 9AA91ADF25CD597F00BD5E8B /* CpuDxe */ = { + isa = PBXGroup; + children = ( + 9AA91AE025CD597F00BD5E8B /* X64 */, + 9AA91AE225CD597F00BD5E8B /* CpuDxe.c */, + 9AA91AE325CD597F00BD5E8B /* Ia32 */, + 9AA91AE525CD597F00BD5E8B /* CpuDxe.h */, + 9AA91AE625CD597F00BD5E8B /* CpuDxe.inf */, + ); + path = CpuDxe; + sourceTree = ""; + }; + 9AA91AE025CD597F00BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA91AE125CD597F00BD5E8B /* CpuInterrupt.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA91AE325CD597F00BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA91AE425CD597F00BD5E8B /* CpuInterrupt.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA91AE725CD597F00BD5E8B /* EfiLdr */ = { + isa = PBXGroup; + children = ( + 9AA91AE825CD597F00BD5E8B /* LzmaDecompress.h */, + 9AA91AE925CD597F00BD5E8B /* PeLoader.c */, + 9AA91AEA25CD597F00BD5E8B /* EfiLdrHandoff.h */, + 9AA91AEB25CD597F00BD5E8B /* Support.c */, + 9AA91AEC25CD597F00BD5E8B /* EfiLoader.c */, + 9AA91AED25CD597F00BD5E8B /* EfiLdr.h */, + 9AA91AEE25CD597F00BD5E8B /* PeLoader.h */, + 9AA91AEF25CD597F00BD5E8B /* EfiLdr.inf */, + 9AA91AF025CD597F00BD5E8B /* Support.h */, + ); + path = EfiLdr; + sourceTree = ""; + }; + 9AA91AF125CD597F00BD5E8B /* PciRootBridgeDxe */ = { + isa = PBXGroup; + children = ( + 9AA91AF225CD597F00BD5E8B /* PciRootBridgeNoEnumeration.inf */, + 9AA91AF325CD597F00BD5E8B /* PcatPciRootBridge.c */, + 9AA91AF425CD597F00BD5E8B /* PcatPciRootBridgeDevicePath.c */, + 9AA91AF525CD597F00BD5E8B /* DeviceIo.h */, + 9AA91AF625CD597F00BD5E8B /* PcatPciRootBridgeIo.c */, + 9AA91AF725CD597F00BD5E8B /* PcatPciRootBridge.h */, + 9AA91AF825CD597F00BD5E8B /* PcatIo.c */, + 9AA91AF925CD597F00BD5E8B /* DeviceIo.c */, + ); + path = PciRootBridgeDxe; + sourceTree = ""; + }; + 9AA91AFA25CD597F00BD5E8B /* LegacyRegion2Dxe */ = { + isa = PBXGroup; + children = ( + 9AA91AFB25CD597F00BD5E8B /* LegacyRegion2.c */, + 9AA91AFC25CD597F00BD5E8B /* LegacyRegion2Dxe.inf */, + 9AA91AFD25CD597F00BD5E8B /* LegacyRegion2.h */, + ); + path = LegacyRegion2Dxe; + sourceTree = ""; + }; + 9AA91AFE25CD597F00BD5E8B /* AcpiResetDxe */ = { + isa = PBXGroup; + children = ( + 9AA91AFF25CD597F00BD5E8B /* Reset.c */, + 9AA91B0025CD597F00BD5E8B /* Reset.inf */, + ); + path = AcpiResetDxe; + sourceTree = ""; + }; + 9AA91B0125CD597F00BD5E8B /* DxeIpl */ = { + isa = PBXGroup; + children = ( + 9AA91B0225CD597F00BD5E8B /* LegacyTable.c */, + 9AA91B0325CD597F00BD5E8B /* DxeIpl.inf */, + 9AA91B0425CD597F00BD5E8B /* X64 */, + 9AA91B0825CD597F00BD5E8B /* DxeIpl.h */, + 9AA91B0925CD597F00BD5E8B /* HobGeneration.h */, + 9AA91B0A25CD597F00BD5E8B /* LegacyTable.h */, + 9AA91B0B25CD597F00BD5E8B /* DxeInit.c */, + 9AA91B0C25CD597F00BD5E8B /* Ia32 */, + 9AA91B1025CD597F00BD5E8B /* HobGeneration.c */, + ); + path = DxeIpl; + sourceTree = ""; + }; + 9AA91B0425CD597F00BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA91B0525CD597F00BD5E8B /* Paging.c */, + 9AA91B0625CD597F00BD5E8B /* EnterDxeCore.c */, + 9AA91B0725CD597F00BD5E8B /* VirtualMemory.h */, + ); + path = X64; + sourceTree = ""; + }; + 9AA91B0C25CD597F00BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA91B0D25CD597F00BD5E8B /* Paging.c */, + 9AA91B0E25CD597F00BD5E8B /* EnterDxeCore.c */, + 9AA91B0F25CD597F00BD5E8B /* VirtualMemory.h */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA91B1125CD597F00BD5E8B /* BiosVideo */ = { + isa = PBXGroup; + children = ( + 9AA91B1225CD597F00BD5E8B /* LegacyBiosThunk.c */, + 9AA91B1325CD597F00BD5E8B /* VesaBiosExtensions.h */, + 9AA91B1425CD597F00BD5E8B /* BiosVideo.h */, + 9AA91B1525CD597F00BD5E8B /* ComponentName.c */, + 9AA91B1625CD597F00BD5E8B /* BiosVideo.inf */, + 9AA91B1725CD597F00BD5E8B /* BiosVideo.c */, + ); + path = BiosVideo; + sourceTree = ""; + }; + 9AA91B1825CD597F00BD5E8B /* BdsDxe */ = { + isa = PBXGroup; + children = ( + 9AA91B1925CD597F00BD5E8B /* BdsEntry.c */, + 9AA91B1A25CD597F00BD5E8B /* BdsDxe.inf */, + 9AA91B1B25CD597F00BD5E8B /* BdsDxe.uni */, + 9AA91B1C25CD597F00BD5E8B /* Bds.h */, + ); + path = BdsDxe; + sourceTree = ""; + }; + 9AA91B1D25CD597F00BD5E8B /* PciBusNoEnumerationDxe */ = { + isa = PBXGroup; + children = ( + 9AA91B1E25CD597F00BD5E8B /* PciEnumerator.c */, + 9AA91B1F25CD597F00BD5E8B /* PciDeviceSupport.c */, + 9AA91B2025CD597F00BD5E8B /* PciIo.c */, + 9AA91B2125CD597F00BD5E8B /* PciCommand.c */, + 9AA91B2225CD597F00BD5E8B /* PciEnumeratorSupport.c */, + 9AA91B2325CD597F00BD5E8B /* ComponentName.c */, + 9AA91B2425CD597F00BD5E8B /* PciBus.c */, + 9AA91B2525CD597F00BD5E8B /* PciPowerManagement.c */, + 9AA91B2625CD597F00BD5E8B /* PciBusNoEnumeration.inf */, + 9AA91B2725CD597F00BD5E8B /* PciEnumerator.h */, + 9AA91B2825CD597F00BD5E8B /* PciCommand.h */, + 9AA91B2925CD597F00BD5E8B /* PciIo.h */, + 9AA91B2A25CD597F00BD5E8B /* PciDeviceSupport.h */, + 9AA91B2B25CD597F00BD5E8B /* PciPowerManagement.h */, + 9AA91B2C25CD597F00BD5E8B /* PciBus.h */, + 9AA91B2D25CD597F00BD5E8B /* PciEnumeratorSupport.h */, + ); + path = PciBusNoEnumerationDxe; + sourceTree = ""; + }; + 9AA91B2F25CD597F00BD5E8B /* BootSector */ = { + isa = PBXGroup; + children = ( + 9AA91B3025CD597F00BD5E8B /* Makefile */, + 9AA91B3125CD597F00BD5E8B /* start.nasm */, + 9AA91B3225CD597F00BD5E8B /* efi64.nasm */, + 9AA91B3325CD597F00BD5E8B /* efi32.nasm */, + ); + path = BootSector; + sourceTree = ""; + }; + 9AA91B3425CD597F00BD5E8B /* BinDrivers */ = { + isa = PBXGroup; + children = ( + 9AA91B3525CD597F00BD5E8B /* HfsPlus.inf */, + 9AA91B3625CD597F00BD5E8B /* OpenUsbKbDxe.inf */, + 9AA91B3725CD597F00BD5E8B /* README.md */, + ); + path = BinDrivers; + sourceTree = ""; + }; + 9AA91B3825CD597F00BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA91B5725CD597F00BD5E8B /* DuetBdsLib */, + 9AA91C6825CD598000BD5E8B /* DuetTimerLib */, + 9AA91C3325CD598000BD5E8B /* OcAcpiLib */, + 9AA91C6B25CD598000BD5E8B /* OcAfterBootCompatLib */, + 9AA91B7825CD597F00BD5E8B /* OcApfsLib */, + 9AA91C2D25CD598000BD5E8B /* OcAppleBootPolicyLib */, + 9AA91B8D25CD597F00BD5E8B /* OcAppleChunklistLib */, + 9AA91C5125CD598000BD5E8B /* OcAppleDiskImageLib */, + 9AA91B7025CD597F00BD5E8B /* OcAppleEventLib */, + 9AA91B9A25CD597F00BD5E8B /* OcAppleImageConversionLib */, + 9AA91B9725CD597F00BD5E8B /* OcAppleImageVerificationLib */, + 9AA91BB925CD597F00BD5E8B /* OcAppleImg4Lib */, + 9AA91C9925CD598000BD5E8B /* OcAppleKernelLib */, + 9AA91C0425CD598000BD5E8B /* OcAppleKeyMapLib */, + 9AA91C2A25CD598000BD5E8B /* OcAppleKeysLib */, + 9AA91CEB25CD598000BD5E8B /* OcAppleRamDiskLib */, + 9AA91C1D25CD598000BD5E8B /* OcAppleSecureBootLib */, + 9AA91C3025CD598000BD5E8B /* OcAppleUserInterfaceThemeLib */, + 9AA91C8A25CD598000BD5E8B /* OcAudioLib */, + 9AA91BD325CD598000BD5E8B /* OcBootManagementLib */, + 9AA91C6325CD598000BD5E8B /* OcBootServicesTableLib */, + 9AA91CDD25CD598000BD5E8B /* OcCompilerIntrinsicsLib */, + 9AA91BE525CD598000BD5E8B /* OcCompressionLib */, + 9AA91CC425CD598000BD5E8B /* OcConfigurationLib */, + 9AA91B9325CD597F00BD5E8B /* OcConsoleControlEntryModeLib */, + 9AA91B5F25CD597F00BD5E8B /* OcConsoleLib */, + 9AA91CB825CD598000BD5E8B /* OcCpuLib */, + 9AA91B9D25CD597F00BD5E8B /* OcCryptoLib */, + 9AA91B5225CD597F00BD5E8B /* OcDataHubLib */, + 9AA91C8225CD598000BD5E8B /* OcDebugLogLib */, + 9AA91CCB25CD598000BD5E8B /* OcDebugLogLibOc2Clover */, + 9AA91C7E25CD598000BD5E8B /* OcDevicePathLib */, + 9AA91CD425CD598000BD5E8B /* OcDevicePropertyLib */, + 9AA91B7F25CD597F00BD5E8B /* OcDeviceTreeLib */, + 9AA91CC825CD598000BD5E8B /* OcDriverConnectionLib */, + 9AA91CAD25CD598000BD5E8B /* OcFileLib */, + 9AA91C4D25CD598000BD5E8B /* OcFirmwarePasswordLib */, + 9AA91C7925CD598000BD5E8B /* OcFirmwareVolumeLib */, + 9AA91C2025CD598000BD5E8B /* OcGuardLib */, + 9AA91B8925CD597F00BD5E8B /* OcHashServicesLib */, + 9AA91C5F25CD598000BD5E8B /* OcHdaDevicesLib */, + 9AA91B9025CD597F00BD5E8B /* OcHeciLib */, + 9AA91C1225CD598000BD5E8B /* OcHiiDatabaseLib */, + 9AA91C3725CD598000BD5E8B /* OcInputLib */, + 9AA91B3925CD597F00BD5E8B /* OcMachoLib */, + 9AA91B4125CD597F00BD5E8B /* OcMacInfoLib */, + 9AA91CE125CD598000BD5E8B /* OcMemoryLib */, + 9AA91BAF25CD597F00BD5E8B /* OcMiscLib */, + 9AA91CD725CD598000BD5E8B /* OcOSInfoLib */, + 9AA91CAA25CD598000BD5E8B /* OcPeCoffLib */, + 9AA91B4A25CD597F00BD5E8B /* OcPngLib */, + 9AA91C5725CD598000BD5E8B /* OcRngLib */, + 9AA91B6B25CD597F00BD5E8B /* OcRtcLib */, + 9AA91B4F25CD597F00BD5E8B /* OcSerializeLib */, + 9AA91C0725CD598000BD5E8B /* OcSmbiosLib */, + 9AA91CEE25CD598000BD5E8B /* OcSmcLib */, + 9AA91C0F25CD598000BD5E8B /* OcStorageLib */, + 9AA91B4625CD597F00BD5E8B /* OcStringLib */, + 9AA91CDA25CD598000BD5E8B /* OcTemplateLib */, + 9AA91BB625CD597F00BD5E8B /* OcTimerLib */, + 9AA91B8225CD597F00BD5E8B /* OcUnicodeCollationEngLib */, + 9AA91C9225CD598000BD5E8B /* OcVirtualFsLib */, + 9AA91CD125CD598000BD5E8B /* OcXmlLib */, + ); + path = Library; + sourceTree = ""; + }; + 9AA91B3925CD597F00BD5E8B /* OcMachoLib */ = { + isa = PBXGroup; + children = ( + 9AA91B3A25CD597F00BD5E8B /* Fat.c */, + 9AA91B3B25CD597F00BD5E8B /* OcMachoLibInternal.h */, + 9AA91B3C25CD597F00BD5E8B /* OcMachoLib.inf */, + 9AA91B3D25CD597F00BD5E8B /* Header.c */, + 9AA91B3E25CD597F00BD5E8B /* Symbols.c */, + 9AA91B3F25CD597F00BD5E8B /* Relocations.c */, + 9AA91B4025CD597F00BD5E8B /* CxxSymbols.c */, + ); + path = OcMachoLib; + sourceTree = ""; + }; + 9AA91B4125CD597F00BD5E8B /* OcMacInfoLib */ = { + isa = PBXGroup; + children = ( + 9AA91B4225CD597F00BD5E8B /* MacInfoInternal.h */, + 9AA91B4325CD597F00BD5E8B /* AutoGenerated.c */, + 9AA91B4425CD597F00BD5E8B /* OcMacInfoLib.c */, + 9AA91B4525CD597F00BD5E8B /* OcMacInfoLib.inf */, + ); + path = OcMacInfoLib; + sourceTree = ""; + }; + 9AA91B4625CD597F00BD5E8B /* OcStringLib */ = { + isa = PBXGroup; + children = ( + 9AA91B4725CD597F00BD5E8B /* OcStringLib.inf */, + 9AA91B4825CD597F00BD5E8B /* OcUnicodeLib.c */, + 9AA91B4925CD597F00BD5E8B /* OcAsciiLib.c */, + ); + path = OcStringLib; + sourceTree = ""; + }; + 9AA91B4A25CD597F00BD5E8B /* OcPngLib */ = { + isa = PBXGroup; + children = ( + 9AA91B4B25CD597F00BD5E8B /* OcPngLib.inf */, + 9AA91B4C25CD597F00BD5E8B /* lodepng.h */, + 9AA91B4D25CD597F00BD5E8B /* OcPng.c */, + 9AA91B4E25CD597F00BD5E8B /* lodepng.c */, + ); + path = OcPngLib; + sourceTree = ""; + }; + 9AA91B4F25CD597F00BD5E8B /* OcSerializeLib */ = { + isa = PBXGroup; + children = ( + 9AA91B5025CD597F00BD5E8B /* OcSerializeLib.c */, + 9AA91B5125CD597F00BD5E8B /* OcSerializeLib.inf */, + ); + path = OcSerializeLib; + sourceTree = ""; + }; + 9AA91B5225CD597F00BD5E8B /* OcDataHubLib */ = { + isa = PBXGroup; + children = ( + 9AA91B5325CD597F00BD5E8B /* OcDataHubLib.c */, + 9AA91B5425CD597F00BD5E8B /* OcDataHubLib.inf */, + 9AA91B5525CD597F00BD5E8B /* DataHub.c */, + 9AA91B5625CD597F00BD5E8B /* DataHub.h */, + ); + path = OcDataHubLib; + sourceTree = ""; + }; + 9AA91B5725CD597F00BD5E8B /* DuetBdsLib */ = { + isa = PBXGroup; + children = ( + 9AA91B5825CD597F00BD5E8B /* PlatformData.c */, + 9AA91B5925CD597F00BD5E8B /* BdsPlatform.h */, + 9AA91B5A25CD597F00BD5E8B /* DuetBdsLib.inf */, + 9AA91B5B25CD597F00BD5E8B /* BdsMisc.c */, + 9AA91B5C25CD597F00BD5E8B /* BdsPlatform.c */, + 9AA91B5D25CD597F00BD5E8B /* BdsConnect.c */, + 9AA91B5E25CD597F00BD5E8B /* BdsConsole.c */, + ); + path = DuetBdsLib; + sourceTree = ""; + }; + 9AA91B5F25CD597F00BD5E8B /* OcConsoleLib */ = { + isa = PBXGroup; + children = ( + 9AA91B6025CD597F00BD5E8B /* ConsoleControl.c */, + 9AA91B6125CD597F00BD5E8B /* OcConsoleLibInternal.h */, + 9AA91B6225CD597F00BD5E8B /* ResolutionParsing.c */, + 9AA91B6325CD597F00BD5E8B /* OcConsoleLib.inf */, + 9AA91B6425CD597F00BD5E8B /* UgaPassThrough.c */, + 9AA91B6525CD597F00BD5E8B /* OcConsoleLib.c */, + 9AA91B6625CD597F00BD5E8B /* FramebufferInfo.c */, + 9AA91B6725CD597F00BD5E8B /* ConsoleGop.c */, + 9AA91B6825CD597F00BD5E8B /* TextOutputNull.c */, + 9AA91B6925CD597F00BD5E8B /* TextOutputSystem.c */, + 9AA91B6A25CD597F00BD5E8B /* TextOutputBuiltin.c */, + ); + path = OcConsoleLib; + sourceTree = ""; + }; + 9AA91B6B25CD597F00BD5E8B /* OcRtcLib */ = { + isa = PBXGroup; + children = ( + 9AA91B6C25CD597F00BD5E8B /* AppleRtcRam.c */, + 9AA91B6D25CD597F00BD5E8B /* OcRtcLibInternal.h */, + 9AA91B6E25CD597F00BD5E8B /* OcRtcLib.inf */, + 9AA91B6F25CD597F00BD5E8B /* OcRtcLib.c */, + ); + path = OcRtcLib; + sourceTree = ""; + }; + 9AA91B7025CD597F00BD5E8B /* OcAppleEventLib */ = { + isa = PBXGroup; + children = ( + 9AA91B7125CD597F00BD5E8B /* OcAppleEventLib.inf */, + 9AA91B7225CD597F00BD5E8B /* AppleEventInternal.h */, + 9AA91B7325CD597F00BD5E8B /* OcAppleEventLib.c */, + 9AA91B7425CD597F00BD5E8B /* AppleKeyMap.c */, + 9AA91B7525CD597F00BD5E8B /* EventQueue.c */, + 9AA91B7625CD597F00BD5E8B /* KeyHandler.c */, + 9AA91B7725CD597F00BD5E8B /* PointerHandler.c */, + ); + path = OcAppleEventLib; + sourceTree = ""; + }; + 9AA91B7825CD597F00BD5E8B /* OcApfsLib */ = { + isa = PBXGroup; + children = ( + 9AA91B7925CD597F00BD5E8B /* OcApfsInternal.h */, + 9AA91B7A25CD597F00BD5E8B /* OcApfsIo.c */, + 9AA91B7B25CD597F00BD5E8B /* OcApfsLib.c */, + 9AA91B7C25CD597F00BD5E8B /* OcApfsFusion.c */, + 9AA91B7D25CD597F00BD5E8B /* OcApfsLib.inf */, + 9AA91B7E25CD597F00BD5E8B /* OcApfsConnect.c */, + ); + path = OcApfsLib; + sourceTree = ""; + }; + 9AA91B7F25CD597F00BD5E8B /* OcDeviceTreeLib */ = { + isa = PBXGroup; + children = ( + 9AA91B8025CD597F00BD5E8B /* OcDeviceTreeLib.c */, + 9AA91B8125CD597F00BD5E8B /* OcDeviceTreeLib.inf */, + ); + path = OcDeviceTreeLib; + sourceTree = ""; + }; + 9AA91B8225CD597F00BD5E8B /* OcUnicodeCollationEngLib */ = { + isa = PBXGroup; + children = ( + 9AA91B8325CD597F00BD5E8B /* OcUnicodeCollationEngLocal.c */, + 9AA91B8425CD597F00BD5E8B /* OcUnicodeCollationEngLocalLib.inf */, + 9AA91B8525CD597F00BD5E8B /* OcUnicodeCollationEngGenericLib.inf */, + 9AA91B8625CD597F00BD5E8B /* OcUnicodeCollationEngGeneric.c */, + 9AA91B8725CD597F00BD5E8B /* OcUnicodeCollationEngCommon.c */, + 9AA91B8825CD597F00BD5E8B /* OcUnicodeCollationEngInternal.h */, + ); + path = OcUnicodeCollationEngLib; + sourceTree = ""; + }; + 9AA91B8925CD597F00BD5E8B /* OcHashServicesLib */ = { + isa = PBXGroup; + children = ( + 9AA91B8A25CD597F00BD5E8B /* OcHashServicesLibInternal.h */, + 9AA91B8B25CD597F00BD5E8B /* OcHashServicesLib.c */, + 9AA91B8C25CD597F00BD5E8B /* OcHashServicesLib.inf */, + ); + path = OcHashServicesLib; + sourceTree = ""; + }; + 9AA91B8D25CD597F00BD5E8B /* OcAppleChunklistLib */ = { + isa = PBXGroup; + children = ( + 9AA91B8E25CD597F00BD5E8B /* OcAppleChunklistLib.c */, + 9AA91B8F25CD597F00BD5E8B /* OcAppleChunklistLib.inf */, + ); + path = OcAppleChunklistLib; + sourceTree = ""; + }; + 9AA91B9025CD597F00BD5E8B /* OcHeciLib */ = { + isa = PBXGroup; + children = ( + 9AA91B9125CD597F00BD5E8B /* OcHeciLib.c */, + 9AA91B9225CD597F00BD5E8B /* OcHeciLib.inf */, + ); + path = OcHeciLib; + sourceTree = ""; + }; + 9AA91B9325CD597F00BD5E8B /* OcConsoleControlEntryModeLib */ = { + isa = PBXGroup; + children = ( + 9AA91B9425CD597F00BD5E8B /* OcConsoleControlEntryModeGenericLib.inf */, + 9AA91B9525CD597F00BD5E8B /* OcConsoleControlEntryModeLib.c */, + 9AA91B9625CD597F00BD5E8B /* OcConsoleControlEntryModeLocalLib.inf */, + ); + path = OcConsoleControlEntryModeLib; + sourceTree = ""; + }; + 9AA91B9725CD597F00BD5E8B /* OcAppleImageVerificationLib */ = { + isa = PBXGroup; + children = ( + 9AA91B9825CD597F00BD5E8B /* OcAppleImageVerificationLib.inf */, + 9AA91B9925CD597F00BD5E8B /* OcAppleImageVerification.c */, + ); + path = OcAppleImageVerificationLib; + sourceTree = ""; + }; + 9AA91B9A25CD597F00BD5E8B /* OcAppleImageConversionLib */ = { + isa = PBXGroup; + children = ( + 9AA91B9B25CD597F00BD5E8B /* OcAppleImageConversionLib.inf */, + 9AA91B9C25CD597F00BD5E8B /* OcAppleImageConversionLib.c */, + ); + path = OcAppleImageConversionLib; + sourceTree = ""; + }; + 9AA91B9D25CD597F00BD5E8B /* OcCryptoLib */ = { + isa = PBXGroup; + children = ( + 9AA91B9E25CD597F00BD5E8B /* Aes.c */, + 9AA91B9F25CD597F00BD5E8B /* Sha2.c */, + 9AA91BA025CD597F00BD5E8B /* BigNumMontgomery.c */, + 9AA91BA125CD597F00BD5E8B /* OcCryptoLib.inf */, + 9AA91BA225CD597F00BD5E8B /* X64 */, + 9AA91BA425CD597F00BD5E8B /* BigNumLibInternal.h */, + 9AA91BA525CD597F00BD5E8B /* BigNumLib.h */, + 9AA91BA625CD597F00BD5E8B /* Sha1.c */, + 9AA91BA725CD597F00BD5E8B /* BigNumPrimitives.c */, + 9AA91BA825CD597F00BD5E8B /* PasswordHash.c */, + 9AA91BA925CD597F00BD5E8B /* Ia32 */, + 9AA91BAB25CD597F00BD5E8B /* ChaCha.c */, + 9AA91BAC25CD597F00BD5E8B /* RsaDigitalSign.c */, + 9AA91BAD25CD597F00BD5E8B /* Md5.c */, + 9AA91BAE25CD597F00BD5E8B /* SecureMem.c */, + ); + path = OcCryptoLib; + sourceTree = ""; + }; + 9AA91BA225CD597F00BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA91BA325CD597F00BD5E8B /* BigNumWordMul64.c */, + ); + path = X64; + sourceTree = ""; + }; + 9AA91BA925CD597F00BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA91BAA25CD597F00BD5E8B /* BigNumWordMul64.c */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA91BAF25CD597F00BD5E8B /* OcMiscLib */ = { + isa = PBXGroup; + children = ( + 9AA91BB025CD597F00BD5E8B /* DirectReset.c */, + 9AA91BB125CD597F00BD5E8B /* Math.c */, + 9AA91BB225CD597F00BD5E8B /* ReleaseUsbOwnership.c */, + 9AA91BB325CD597F00BD5E8B /* ProtocolSupport.c */, + 9AA91BB425CD597F00BD5E8B /* OcMiscLib.inf */, + 9AA91BB525CD597F00BD5E8B /* DataPatcher.c */, + ); + path = OcMiscLib; + sourceTree = ""; + }; + 9AA91BB625CD597F00BD5E8B /* OcTimerLib */ = { + isa = PBXGroup; + children = ( + 9AA91BB725CD597F00BD5E8B /* OcTimerLib.c */, + 9AA91BB825CD597F00BD5E8B /* OcTimerLib.inf */, + ); + path = OcTimerLib; + sourceTree = ""; + }; + 9AA91BB925CD597F00BD5E8B /* OcAppleImg4Lib */ = { + isa = PBXGroup; + children = ( + 9AA91BBA25CD597F00BD5E8B /* libDER */, + 9AA91BC925CD598000BD5E8B /* OcAppleImg4Lib.c */, + 9AA91BCA25CD598000BD5E8B /* OcAppleImg4Lib.inf */, + 9AA91BCB25CD598000BD5E8B /* libDER_config.h */, + 9AA91BCC25CD598000BD5E8B /* libDERImg4 */, + ); + path = OcAppleImg4Lib; + sourceTree = ""; + }; + 9AA91BBA25CD597F00BD5E8B /* libDER */ = { + isa = PBXGroup; + children = ( + 9AA91BBB25CD597F00BD5E8B /* DER_CertCrl.c */, + 9AA91BBC25CD597F00BD5E8B /* DER_Keys.c */, + 9AA91BBD25CD597F00BD5E8B /* DER_Encode.h */, + 9AA91BBE25CD597F00BD5E8B /* oids.h */, + 9AA91BBF25CD597F00BD5E8B /* libDER.h */, + 9AA91BC025CD597F00BD5E8B /* DER_Decode.h */, + 9AA91BC125CD597F00BD5E8B /* DER_Digest.c */, + 9AA91BC225CD597F00BD5E8B /* DER_CertCrl.h */, + 9AA91BC325CD597F00BD5E8B /* asn1Types.h */, + 9AA91BC425CD597F00BD5E8B /* DER_Keys.h */, + 9AA91BC525CD597F00BD5E8B /* DER_Decode.c */, + 9AA91BC625CD597F00BD5E8B /* oids.c */, + 9AA91BC725CD597F00BD5E8B /* DER_Encode.c */, + 9AA91BC825CD598000BD5E8B /* DER_Digest.h */, + ); + path = libDER; + sourceTree = ""; + }; + 9AA91BCC25CD598000BD5E8B /* libDERImg4 */ = { + isa = PBXGroup; + children = ( + 9AA91BCD25CD598000BD5E8B /* libDERImg4_config.h */, + 9AA91BCE25CD598000BD5E8B /* Img4oids.c */, + 9AA91BCF25CD598000BD5E8B /* DER_Img4Manifest.h */, + 9AA91BD025CD598000BD5E8B /* DER_Img4Manifest.c */, + 9AA91BD125CD598000BD5E8B /* libDERImg4.h */, + 9AA91BD225CD598000BD5E8B /* Img4oids.h */, + ); + path = libDERImg4; + sourceTree = ""; + }; + 9AA91BD325CD598000BD5E8B /* OcBootManagementLib */ = { + isa = PBXGroup; + children = ( + 9AA91BD425CD598000BD5E8B /* ImageLoader.c */, + 9AA91BD525CD598000BD5E8B /* OcBootManagementLib.c */, + 9AA91BD625CD598000BD5E8B /* BootEntryInfo.c */, + 9AA91BD725CD598000BD5E8B /* DmgBootSupport.c */, + 9AA91BD825CD598000BD5E8B /* ApplePanic.c */, + 9AA91BD925CD598000BD5E8B /* AppleRecovery.c */, + 9AA91BDA25CD598000BD5E8B /* BootManagementInternal.h */, + 9AA91BDB25CD598000BD5E8B /* HotKeySupport.c */, + 9AA91BDC25CD598000BD5E8B /* OcBootManagementLib.inf */, + 9AA91BDD25CD598000BD5E8B /* PolicyManagement.c */, + 9AA91BDE25CD598000BD5E8B /* DefaultEntryChoice.c */, + 9AA91BDF25CD598000BD5E8B /* BootAudio.c */, + 9AA91BE025CD598000BD5E8B /* BootArguments.c */, + 9AA91BE125CD598000BD5E8B /* BootSignature.bin */, + 9AA91BE225CD598000BD5E8B /* AppleHibernate.c */, + 9AA91BE325CD598000BD5E8B /* BootEntryManagement.c */, + 9AA91BE425CD598000BD5E8B /* VariableManagement.c */, + ); + path = OcBootManagementLib; + sourceTree = ""; + }; + 9AA91BE525CD598000BD5E8B /* OcCompressionLib */ = { + isa = PBXGroup; + children = ( + 9AA91BE625CD598000BD5E8B /* lzss */, + 9AA91BE925CD598000BD5E8B /* OcCompressionLib.c */, + 9AA91BEA25CD598000BD5E8B /* zlib */, + 9AA91C0025CD598000BD5E8B /* OcCompressionLib.inf */, + 9AA91C0125CD598000BD5E8B /* lzvn */, + ); + path = OcCompressionLib; + sourceTree = ""; + }; + 9AA91BE625CD598000BD5E8B /* lzss */ = { + isa = PBXGroup; + children = ( + 9AA91BE725CD598000BD5E8B /* lzss.c */, + 9AA91BE825CD598000BD5E8B /* lzss.h */, + ); + path = lzss; + sourceTree = ""; + }; + 9AA91BEA25CD598000BD5E8B /* zlib */ = { + isa = PBXGroup; + children = ( + 9AA91BEB25CD598000BD5E8B /* zlib_uefi.c */, + 9AA91BEC25CD598000BD5E8B /* zutil.h */, + 9AA91BED25CD598000BD5E8B /* inftrees.h */, + 9AA91BEE25CD598000BD5E8B /* inflate.c */, + 9AA91BEF25CD598000BD5E8B /* compress.c */, + 9AA91BF025CD598000BD5E8B /* deflate.c */, + 9AA91BF125CD598000BD5E8B /* inffixed.h */, + 9AA91BF225CD598000BD5E8B /* trees.h */, + 9AA91BF325CD598000BD5E8B /* inffast.h */, + 9AA91BF425CD598000BD5E8B /* crc32.c */, + 9AA91BF525CD598000BD5E8B /* infback.c */, + 9AA91BF625CD598000BD5E8B /* deflate.h */, + 9AA91BF725CD598000BD5E8B /* zlib.h */, + 9AA91BF825CD598000BD5E8B /* inflate.h */, + 9AA91BF925CD598000BD5E8B /* inftrees.c */, + 9AA91BFA25CD598000BD5E8B /* uncompr.c */, + 9AA91BFB25CD598000BD5E8B /* trees.c */, + 9AA91BFC25CD598000BD5E8B /* crc32.h */, + 9AA91BFD25CD598000BD5E8B /* inffast.c */, + 9AA91BFE25CD598000BD5E8B /* adler32.c */, + 9AA91BFF25CD598000BD5E8B /* zconf.h */, + ); + path = zlib; + sourceTree = ""; + }; + 9AA91C0125CD598000BD5E8B /* lzvn */ = { + isa = PBXGroup; + children = ( + 9AA91C0225CD598000BD5E8B /* lzvn.h */, + 9AA91C0325CD598000BD5E8B /* lzvn.c */, + ); + path = lzvn; + sourceTree = ""; + }; + 9AA91C0425CD598000BD5E8B /* OcAppleKeyMapLib */ = { + isa = PBXGroup; + children = ( + 9AA91C0525CD598000BD5E8B /* OcAppleKeyMapLib.inf */, + 9AA91C0625CD598000BD5E8B /* OcAppleKeyMapLib.c */, + ); + path = OcAppleKeyMapLib; + sourceTree = ""; + }; + 9AA91C0725CD598000BD5E8B /* OcSmbiosLib */ = { + isa = PBXGroup; + children = ( + 9AA91C0825CD598000BD5E8B /* DebugSmbios.c */, + 9AA91C0925CD598000BD5E8B /* SmbiosInternal.c */, + 9AA91C0A25CD598000BD5E8B /* DebugSmbios.h */, + 9AA91C0B25CD598000BD5E8B /* OcSmbiosLib.inf */, + 9AA91C0C25CD598000BD5E8B /* SmbiosInternal.h */, + 9AA91C0D25CD598000BD5E8B /* SmbiosDump.c */, + 9AA91C0E25CD598000BD5E8B /* SmbiosPatch.c */, + ); + path = OcSmbiosLib; + sourceTree = ""; + }; + 9AA91C0F25CD598000BD5E8B /* OcStorageLib */ = { + isa = PBXGroup; + children = ( + 9AA91C1025CD598000BD5E8B /* OcStorageLib.inf */, + 9AA91C1125CD598000BD5E8B /* OcStorageLib.c */, + ); + path = OcStorageLib; + sourceTree = ""; + }; + 9AA91C1225CD598000BD5E8B /* OcHiiDatabaseLib */ = { + isa = PBXGroup; + children = ( + 9AA91C1325CD598000BD5E8B /* Database.c */, + 9AA91C1425CD598000BD5E8B /* ConfigRouting.c */, + 9AA91C1525CD598000BD5E8B /* Font.c */, + 9AA91C1625CD598000BD5E8B /* String.c */, + 9AA91C1725CD598000BD5E8B /* Image.c */, + 9AA91C1825CD598000BD5E8B /* OcHiiDatabaseLocalLib.inf */, + 9AA91C1925CD598000BD5E8B /* HiiDatabase.h */, + 9AA91C1A25CD598000BD5E8B /* ConfigKeywordHandler.c */, + 9AA91C1B25CD598000BD5E8B /* HiiDatabaseEntry.c */, + 9AA91C1C25CD598000BD5E8B /* ImageEx.c */, + ); + path = OcHiiDatabaseLib; + sourceTree = ""; + }; + 9AA91C1D25CD598000BD5E8B /* OcAppleSecureBootLib */ = { + isa = PBXGroup; + children = ( + 9AA91C1E25CD598000BD5E8B /* OcAppleSecureBootLib.c */, + 9AA91C1F25CD598000BD5E8B /* OcAppleSecureBootLib.inf */, + ); + path = OcAppleSecureBootLib; + sourceTree = ""; + }; + 9AA91C2025CD598000BD5E8B /* OcGuardLib */ = { + isa = PBXGroup; + children = ( + 9AA91C2125CD598000BD5E8B /* Canary.c */, + 9AA91C2225CD598000BD5E8B /* Ubsan.h */, + 9AA91C2325CD598000BD5E8B /* UbsanPrintf.c */, + 9AA91C2425CD598000BD5E8B /* OcGuardLib.inf */, + 9AA91C2525CD598000BD5E8B /* BitOverflow.c */, + 9AA91C2625CD598000BD5E8B /* Alignment.c */, + 9AA91C2725CD598000BD5E8B /* TripleOverflow.c */, + 9AA91C2825CD598000BD5E8B /* Ubsan.c */, + 9AA91C2925CD598000BD5E8B /* NativeOverflow.c */, + ); + path = OcGuardLib; + sourceTree = ""; + }; + 9AA91C2A25CD598000BD5E8B /* OcAppleKeysLib */ = { + isa = PBXGroup; + children = ( + 9AA91C2B25CD598000BD5E8B /* OcAppleKeysLib.inf */, + 9AA91C2C25CD598000BD5E8B /* OcAppleKeysLib.c */, + ); + path = OcAppleKeysLib; + sourceTree = ""; + }; + 9AA91C2D25CD598000BD5E8B /* OcAppleBootPolicyLib */ = { + isa = PBXGroup; + children = ( + 9AA91C2E25CD598000BD5E8B /* OcAppleBootPolicyLib.c */, + 9AA91C2F25CD598000BD5E8B /* OcAppleBootPolicyLib.inf */, + ); + path = OcAppleBootPolicyLib; + sourceTree = ""; + }; + 9AA91C3025CD598000BD5E8B /* OcAppleUserInterfaceThemeLib */ = { + isa = PBXGroup; + children = ( + 9AA91C3125CD598000BD5E8B /* OcAppleUserInterfaceThemeLib.c */, + 9AA91C3225CD598000BD5E8B /* OcAppleUserInterfaceThemeLib.inf */, + ); + path = OcAppleUserInterfaceThemeLib; + sourceTree = ""; + }; + 9AA91C3325CD598000BD5E8B /* OcAcpiLib */ = { + isa = PBXGroup; + children = ( + 9AA91C3425CD598000BD5E8B /* OcAcpiLib.c */, + 9AA91C3525CD598000BD5E8B /* OcAcpiLib.inf */, + 9AA91C3625CD598000BD5E8B /* AcpiDump.c */, + ); + path = OcAcpiLib; + sourceTree = ""; + }; + 9AA91C3725CD598000BD5E8B /* OcInputLib */ = { + isa = PBXGroup; + children = ( + 9AA91C3825CD598000BD5E8B /* Keycode */, + 9AA91C4725CD598000BD5E8B /* OcInputLib.inf */, + 9AA91C4825CD598000BD5E8B /* Timer */, + 9AA91C4A25CD598000BD5E8B /* Pointer */, + ); + path = OcInputLib; + sourceTree = ""; + }; + 9AA91C3825CD598000BD5E8B /* Keycode */ = { + isa = PBXGroup; + children = ( + 9AA91C3925CD598000BD5E8B /* AppleHid.txt */, + 9AA91C3A25CD598000BD5E8B /* AIKSource.h */, + 9AA91C3B25CD598000BD5E8B /* AIK.h */, + 9AA91C3C25CD598000BD5E8B /* AIKTarget.c */, + 9AA91C3D25CD598000BD5E8B /* AIKShim.c */, + 9AA91C3E25CD598000BD5E8B /* AIKTranslate.h */, + 9AA91C3F25CD598000BD5E8B /* AIKData.h */, + 9AA91C4025CD598000BD5E8B /* AIKMap.c */, + 9AA91C4125CD598000BD5E8B /* AIK.c */, + 9AA91C4225CD598000BD5E8B /* AIKSource.c */, + 9AA91C4325CD598000BD5E8B /* AIKTranslate.c */, + 9AA91C4425CD598000BD5E8B /* AIKTarget.h */, + 9AA91C4525CD598000BD5E8B /* AIKShim.h */, + 9AA91C4625CD598000BD5E8B /* AIKData.c */, + ); + path = Keycode; + sourceTree = ""; + }; + 9AA91C4825CD598000BD5E8B /* Timer */ = { + isa = PBXGroup; + children = ( + 9AA91C4925CD598000BD5E8B /* AIT.c */, + ); + path = Timer; + sourceTree = ""; + }; + 9AA91C4A25CD598000BD5E8B /* Pointer */ = { + isa = PBXGroup; + children = ( + 9AA91C4B25CD598000BD5E8B /* AIM.c */, + 9AA91C4C25CD598000BD5E8B /* AIM.h */, + ); + path = Pointer; + sourceTree = ""; + }; + 9AA91C4D25CD598000BD5E8B /* OcFirmwarePasswordLib */ = { + isa = PBXGroup; + children = ( + 9AA91C4E25CD598000BD5E8B /* OcFirmwarePasswordLib.c */, + 9AA91C4F25CD598000BD5E8B /* AppleFwPasswordInternal.h */, + 9AA91C5025CD598000BD5E8B /* OcFirmwarePasswordLib.inf */, + ); + path = OcFirmwarePasswordLib; + sourceTree = ""; + }; + 9AA91C5125CD598000BD5E8B /* OcAppleDiskImageLib */ = { + isa = PBXGroup; + children = ( + 9AA91C5225CD598000BD5E8B /* OcAppleDiskImageLib.c */, + 9AA91C5325CD598000BD5E8B /* OcAppleDiskImageLibInternal.h */, + 9AA91C5425CD598000BD5E8B /* OcAppleDiskImageLib.inf */, + 9AA91C5525CD598000BD5E8B /* OcAppleDiskImageBlockIo.c */, + 9AA91C5625CD598000BD5E8B /* OcAppleDiskImageLibInternal.c */, + ); + path = OcAppleDiskImageLib; + sourceTree = ""; + }; + 9AA91C5725CD598000BD5E8B /* OcRngLib */ = { + isa = PBXGroup; + children = ( + 9AA91C5825CD598000BD5E8B /* X64 */, + 9AA91C5A25CD598000BD5E8B /* OcRngLib.c */, + 9AA91C5B25CD598000BD5E8B /* Ia32 */, + 9AA91C5D25CD598000BD5E8B /* OcRngLib.inf */, + 9AA91C5E25CD598000BD5E8B /* OcRngInternals.h */, + ); + path = OcRngLib; + sourceTree = ""; + }; + 9AA91C5825CD598000BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA91C5925CD598000BD5E8B /* RngDelay.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA91C5B25CD598000BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA91C5C25CD598000BD5E8B /* RngDelay.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA91C5F25CD598000BD5E8B /* OcHdaDevicesLib */ = { + isa = PBXGroup; + children = ( + 9AA91C6025CD598000BD5E8B /* OcHdaDevicesLib.c */, + 9AA91C6125CD598000BD5E8B /* OcHdaDevicesLib.inf */, + 9AA91C6225CD598000BD5E8B /* OcHdaDevicesInternal.h */, + ); + path = OcHdaDevicesLib; + sourceTree = ""; + }; + 9AA91C6325CD598000BD5E8B /* OcBootServicesTableLib */ = { + isa = PBXGroup; + children = ( + 9AA91C6425CD598000BD5E8B /* OcBootServicesTableLib.c */, + 9AA91C6525CD598000BD5E8B /* UefiBootServicesTableLib.inf */, + 9AA91C6625CD598000BD5E8B /* OcBootServicesTableLib.inf */, + 9AA91C6725CD598000BD5E8B /* UefiBootServicesTableLib.c */, + ); + path = OcBootServicesTableLib; + sourceTree = ""; + }; + 9AA91C6825CD598000BD5E8B /* DuetTimerLib */ = { + isa = PBXGroup; + children = ( + 9AA91C6925CD598000BD5E8B /* X86TimerLib.c */, + 9AA91C6A25CD598000BD5E8B /* DuetTimerLib.inf */, + ); + path = DuetTimerLib; + sourceTree = ""; + }; + 9AA91C6B25CD598000BD5E8B /* OcAfterBootCompatLib */ = { + isa = PBXGroup; + children = ( + 9AA91C6C25CD598000BD5E8B /* CustomSlide.c */, + 9AA91C6D25CD598000BD5E8B /* X64 */, + 9AA91C7125CD598000BD5E8B /* BootCompatInternal.h */, + 9AA91C7225CD598000BD5E8B /* ServiceOverrides.c */, + 9AA91C7325CD598000BD5E8B /* Ia32 */, + 9AA91C7625CD598000BD5E8B /* KernelSupport.c */, + 9AA91C7725CD598000BD5E8B /* OcAfterBootCompatLib.inf */, + 9AA91C7825CD598000BD5E8B /* OcAfterBootCompatLib.c */, + ); + path = OcAfterBootCompatLib; + sourceTree = ""; + }; + 9AA91C6D25CD598000BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA91C6E25CD598000BD5E8B /* ContextSwitchSupport.c */, + 9AA91C6F25CD598000BD5E8B /* ContextSwitch.nasm */, + 9AA91C7025CD598000BD5E8B /* ContextSwitch.h */, + ); + path = X64; + sourceTree = ""; + }; + 9AA91C7325CD598000BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA91C7425CD598000BD5E8B /* ContextSwitchSupport.c */, + 9AA91C7525CD598000BD5E8B /* ContextSwitch.h */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA91C7925CD598000BD5E8B /* OcFirmwareVolumeLib */ = { + isa = PBXGroup; + children = ( + 9AA91C7A25CD598000BD5E8B /* OcFirmwareVolumeLib.inf */, + 9AA91C7B25CD598000BD5E8B /* OcFirmwareVolumeLib.c */, + 9AA91C7C25CD598000BD5E8B /* FvOnFv2Thunk.c */, + 9AA91C7D25CD598000BD5E8B /* OcFirmwareVolumeLibInternal.h */, + ); + path = OcFirmwareVolumeLib; + sourceTree = ""; + }; + 9AA91C7E25CD598000BD5E8B /* OcDevicePathLib */ = { + isa = PBXGroup; + children = ( + 9AA91C7F25CD598000BD5E8B /* OcDevicePathLib.inf */, + 9AA91C8025CD598000BD5E8B /* ExpandDevicePath.c */, + 9AA91C8125CD598000BD5E8B /* OcDevicePathLib.c */, + ); + path = OcDevicePathLib; + sourceTree = ""; + }; + 9AA91C8225CD598000BD5E8B /* OcDebugLogLib */ = { + isa = PBXGroup; + children = ( + 9AA91C8325CD598000BD5E8B /* OcAppleLog.c */, + 9AA91C8425CD598000BD5E8B /* DebugHelp.c */, + 9AA91C8525CD598000BD5E8B /* DebugPrint.c */, + 9AA91C8625CD598000BD5E8B /* OcDebugLogLib.inf */, + 9AA91C8725CD598000BD5E8B /* OcLog.c */, + 9AA91C8825CD598000BD5E8B /* OcLogInternal.h */, + 9AA91C8925CD598000BD5E8B /* OcDebugLogLib.c */, + ); + path = OcDebugLogLib; + sourceTree = ""; + }; + 9AA91C8A25CD598000BD5E8B /* OcAudioLib */ = { + isa = PBXGroup; + children = ( + 9AA91C8B25CD598000BD5E8B /* OcAudioGenBeep.c */, + 9AA91C8C25CD598000BD5E8B /* OcAudioLib.inf */, + 9AA91C8D25CD598000BD5E8B /* OcAudio.c */, + 9AA91C8E25CD598000BD5E8B /* OcAudioWave.c */, + 9AA91C8F25CD598000BD5E8B /* OcAudioInternal.h */, + 9AA91C9025CD598000BD5E8B /* OcAudioLib.c */, + 9AA91C9125CD598000BD5E8B /* OcAudioVoiceOver.c */, + ); + path = OcAudioLib; + sourceTree = ""; + }; + 9AA91C9225CD598000BD5E8B /* OcVirtualFsLib */ = { + isa = PBXGroup; + children = ( + 9AA91C9325CD598000BD5E8B /* VirtualDir.c */, + 9AA91C9425CD598000BD5E8B /* VirtualFile.c */, + 9AA91C9525CD598000BD5E8B /* OcVirtualFsLib.inf */, + 9AA91C9625CD598000BD5E8B /* VirtualVolume.c */, + 9AA91C9725CD598000BD5E8B /* VirtualFs.c */, + 9AA91C9825CD598000BD5E8B /* VirtualFsInternal.h */, + ); + path = OcVirtualFsLib; + sourceTree = ""; + }; + 9AA91C9925CD598000BD5E8B /* OcAppleKernelLib */ = { + isa = PBXGroup; + children = ( + 9AA91C9A25CD598000BD5E8B /* PrelinkedKext.c */, + 9AA91C9B25CD598000BD5E8B /* KxldState.c */, + 9AA91C9C25CD598000BD5E8B /* PrelinkedContext.c */, + 9AA91C9D25CD598000BD5E8B /* Link.c */, + 9AA91C9E25CD598000BD5E8B /* OcAppleKernelLib.inf */, + 9AA91C9F25CD598000BD5E8B /* KextPatcher.c */, + 9AA91CA025CD598000BD5E8B /* CommonPatches.c */, + 9AA91CA125CD598000BD5E8B /* KernelVersion.c */, + 9AA91CA225CD598000BD5E8B /* MkextInternal.h */, + 9AA91CA325CD598000BD5E8B /* CachelessContext.c */, + 9AA91CA425CD598000BD5E8B /* Vtables.c */, + 9AA91CA525CD598000BD5E8B /* KernelReader.c */, + 9AA91CA625CD598000BD5E8B /* KernelCollection.c */, + 9AA91CA725CD598000BD5E8B /* MkextContext.c */, + 9AA91CA825CD598000BD5E8B /* PrelinkedInternal.h */, + 9AA91CA925CD598000BD5E8B /* CachelessInternal.h */, + ); + path = OcAppleKernelLib; + sourceTree = ""; + }; + 9AA91CAA25CD598000BD5E8B /* OcPeCoffLib */ = { + isa = PBXGroup; + children = ( + 9AA91CAB25CD598000BD5E8B /* OcPeCoffLib.inf */, + 9AA91CAC25CD598000BD5E8B /* OcPeCoffLib.c */, + ); + path = OcPeCoffLib; + sourceTree = ""; + }; + 9AA91CAD25CD598000BD5E8B /* OcFileLib */ = { + isa = PBXGroup; + children = ( + 9AA91CAE25CD598000BD5E8B /* OpenFile.c */, + 9AA91CAF25CD598000BD5E8B /* FsConnectQuirk.c */, + 9AA91CB025CD598000BD5E8B /* GptPartitionEntry.c */, + 9AA91CB125CD598000BD5E8B /* ReadFile.c */, + 9AA91CB225CD598000BD5E8B /* FirmwareFile.c */, + 9AA91CB325CD598000BD5E8B /* GetVolumeLabel.c */, + 9AA91CB425CD598000BD5E8B /* FileProtocol.c */, + 9AA91CB525CD598000BD5E8B /* GetFileInfo.c */, + 9AA91CB625CD598000BD5E8B /* LocateFileSystem.c */, + 9AA91CB725CD598000BD5E8B /* OcFileLib.inf */, + ); + path = OcFileLib; + sourceTree = ""; + }; + 9AA91CB825CD598000BD5E8B /* OcCpuLib */ = { + isa = PBXGroup; + children = ( + 9AA91CB925CD598000BD5E8B /* OcCpuInternals.h */, + 9AA91CBA25CD598000BD5E8B /* X64 */, + 9AA91CBD25CD598000BD5E8B /* FrequencyDetect.c */, + 9AA91CBE25CD598000BD5E8B /* OcCpuLib.inf */, + 9AA91CBF25CD598000BD5E8B /* AppleCpuSupport.c */, + 9AA91CC025CD598000BD5E8B /* OcCpuLib.c */, + 9AA91CC125CD598000BD5E8B /* Ia32 */, + ); + path = OcCpuLib; + sourceTree = ""; + }; + 9AA91CBA25CD598000BD5E8B /* X64 */ = { + isa = PBXGroup; + children = ( + 9AA91CBB25CD598000BD5E8B /* Microcode.nasm */, + 9AA91CBC25CD598000BD5E8B /* Atomic.nasm */, + ); + path = X64; + sourceTree = ""; + }; + 9AA91CC125CD598000BD5E8B /* Ia32 */ = { + isa = PBXGroup; + children = ( + 9AA91CC225CD598000BD5E8B /* Microcode.nasm */, + 9AA91CC325CD598000BD5E8B /* Atomic.nasm */, + ); + path = Ia32; + sourceTree = ""; + }; + 9AA91CC425CD598000BD5E8B /* OcConfigurationLib */ = { + isa = PBXGroup; + children = ( + 9AA91CC525CD598000BD5E8B /* OcConfigurationLib.inf */, + 9AA91CC625CD598000BD5E8B /* CheckSchema.py */, + 9AA91CC725CD598000BD5E8B /* OcConfigurationLib.c */, + ); + path = OcConfigurationLib; + sourceTree = ""; + }; + 9AA91CC825CD598000BD5E8B /* OcDriverConnectionLib */ = { + isa = PBXGroup; + children = ( + 9AA91CC925CD598000BD5E8B /* OcDriverConnectionLib.c */, + 9AA91CCA25CD598000BD5E8B /* OcDriverConnectionLib.inf */, + ); + path = OcDriverConnectionLib; + sourceTree = ""; + }; + 9AA91CCB25CD598000BD5E8B /* OcDebugLogLibOc2Clover */ = { + isa = PBXGroup; + children = ( + 9AA91CCC25CD598000BD5E8B /* OcAppleLog.c */, + 9AA91CCD25CD598000BD5E8B /* DebugHelp.c */, + 9AA91CCE25CD598000BD5E8B /* DebugPrint.c */, + 9AA91CCF25CD598000BD5E8B /* OcLog.c */, + 9AA91CD025CD598000BD5E8B /* OcDebugLogLibOc2Clover.inf */, + ); + path = OcDebugLogLibOc2Clover; + sourceTree = ""; + }; + 9AA91CD125CD598000BD5E8B /* OcXmlLib */ = { + isa = PBXGroup; + children = ( + 9AA91CD225CD598000BD5E8B /* OcXmlLib.c */, + 9AA91CD325CD598000BD5E8B /* OcXmlLib.inf */, + ); + path = OcXmlLib; + sourceTree = ""; + }; + 9AA91CD425CD598000BD5E8B /* OcDevicePropertyLib */ = { + isa = PBXGroup; + children = ( + 9AA91CD525CD598000BD5E8B /* OcDevicePropertyLib.inf */, + 9AA91CD625CD598000BD5E8B /* OcDevicePropertyLib.c */, + ); + path = OcDevicePropertyLib; + sourceTree = ""; + }; + 9AA91CD725CD598000BD5E8B /* OcOSInfoLib */ = { + isa = PBXGroup; + children = ( + 9AA91CD825CD598000BD5E8B /* OcOSInfoLib.c */, + 9AA91CD925CD598000BD5E8B /* OcOSInfoLib.inf */, + ); + path = OcOSInfoLib; + sourceTree = ""; + }; + 9AA91CDA25CD598000BD5E8B /* OcTemplateLib */ = { + isa = PBXGroup; + children = ( + 9AA91CDB25CD598000BD5E8B /* OcTemplateLib.inf */, + 9AA91CDC25CD598000BD5E8B /* OcTemplateLib.c */, + ); + path = OcTemplateLib; + sourceTree = ""; + }; + 9AA91CDD25CD598000BD5E8B /* OcCompilerIntrinsicsLib */ = { + isa = PBXGroup; + children = ( + 9AA91CDE25CD598000BD5E8B /* OcCompilerIntrinsicsLib.c */, + 9AA91CDF25CD598000BD5E8B /* OcCompilerIntrinsicsLib.inf */, + 9AA91CE025CD598000BD5E8B /* MsvcMath32.c */, + ); + path = OcCompilerIntrinsicsLib; + sourceTree = ""; + }; + 9AA91CE125CD598000BD5E8B /* OcMemoryLib */ = { + isa = PBXGroup; + children = ( + 9AA91CE225CD598000BD5E8B /* MemoryMap.c */, + 9AA91CE325CD598000BD5E8B /* MemoryAttributes.c */, + 9AA91CE425CD598000BD5E8B /* VirtualMemory.c */, + 9AA91CE525CD598000BD5E8B /* LegacyRegionLock.c */, + 9AA91CE625CD598000BD5E8B /* LegacyRegionUnLock.c */, + 9AA91CE725CD598000BD5E8B /* MemoryDebug.c */, + 9AA91CE825CD598000BD5E8B /* MemoryAlloc.c */, + 9AA91CE925CD598000BD5E8B /* OcMemoryLib.inf */, + 9AA91CEA25CD598000BD5E8B /* UmmMalloc.c */, + ); + path = OcMemoryLib; + sourceTree = ""; + }; + 9AA91CEB25CD598000BD5E8B /* OcAppleRamDiskLib */ = { + isa = PBXGroup; + children = ( + 9AA91CEC25CD598000BD5E8B /* OcAppleRamDiskLib.inf */, + 9AA91CED25CD598000BD5E8B /* OcAppleRamDiskLib.c */, + ); + path = OcAppleRamDiskLib; + sourceTree = ""; + }; + 9AA91CEE25CD598000BD5E8B /* OcSmcLib */ = { + isa = PBXGroup; + children = ( + 9AA91CEF25CD598000BD5E8B /* OcSmcLib.c */, + 9AA91CF025CD598000BD5E8B /* OcSmcLib.inf */, + 9AA91CF125CD598000BD5E8B /* OcSmcLibInternal.h */, + ); + path = OcSmcLib; + sourceTree = ""; + }; + 9AA91CF225CD598000BD5E8B /* User */ = { + isa = PBXGroup; + children = ( + 9AA91CF325CD598000BD5E8B /* Makefile */, + 9AA91CF425CD598000BD5E8B /* Include */, + 9AA91CF925CD598000BD5E8B /* Library */, + ); + path = User; + sourceTree = ""; + }; + 9AA91CF425CD598000BD5E8B /* Include */ = { + isa = PBXGroup; + children = ( + 9AA91CF525CD598000BD5E8B /* GlobalVar.h */, + 9AA91CF625CD598000BD5E8B /* File.h */, + 9AA91CF725CD598000BD5E8B /* Pcd.h */, + 9AA91CF825CD598000BD5E8B /* BootServices.h */, + ); + path = Include; + sourceTree = ""; + }; + 9AA91CF925CD598000BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA91CFA25CD598000BD5E8B /* Pcd.c */, + 9AA91CFB25CD598000BD5E8B /* UserMath.c */, + 9AA91CFC25CD598000BD5E8B /* BootServices.c */, + 9AA91CFD25CD598000BD5E8B /* BaseMemoryLib.c */, + 9AA91CFE25CD598000BD5E8B /* GlobalVar.c */, + 9AA91CFF25CD598000BD5E8B /* File.c */, + 9AA91D0025CD598000BD5E8B /* UserMisc.c */, + 9AA91D0125CD598000BD5E8B /* OcDummy.c */, + ); + path = Library; + sourceTree = ""; + }; + 9AA91D0225CD598000BD5E8B /* Docs */ = { + isa = PBXGroup; + children = ( + 9AA91D0325CD598000BD5E8B /* Configuration.tex */, + 9AA91D0425CD598000BD5E8B /* BuildDocs.tool */, + 9AA91D0525CD598000BD5E8B /* Errata */, + 9AA91D0825CD598000BD5E8B /* Logos */, + 9AA91D1025CD598000BD5E8B /* Configuration.pdf */, + 9AA91D1125CD598000BD5E8B /* AcpiSamples */, + 9AA91D1E25CD598000BD5E8B /* SampleCustom.plist */, + 9AA91D1F25CD598000BD5E8B /* Kexts.md */, + 9AA91D2025CD598000BD5E8B /* Libraries.md */, + 9AA91D2125CD598000BD5E8B /* Differences */, + 9AA91D2525CD598000BD5E8B /* Sample.plist */, + ); + path = Docs; + sourceTree = ""; + }; + 9AA91D0525CD598000BD5E8B /* Errata */ = { + isa = PBXGroup; + children = ( + 9AA91D0625CD598000BD5E8B /* Errata.pdf */, + 9AA91D0725CD598000BD5E8B /* Errata.tex */, + ); + path = Errata; + sourceTree = ""; + }; + 9AA91D0825CD598000BD5E8B /* Logos */ = { + isa = PBXGroup; + children = ( + 9AA91D0925CD598000BD5E8B /* LogoApprox.svg */, + 9AA91D0A25CD598000BD5E8B /* OpenCore_with_text_Small.png */, + 9AA91D0B25CD598000BD5E8B /* OpenCore_with_text_Large.png */, + 9AA91D0C25CD598000BD5E8B /* README.md */, + 9AA91D0D25CD598000BD5E8B /* Logo.pdf */, + 9AA91D0E25CD598000BD5E8B /* Logo.png */, + 9AA91D0F25CD598000BD5E8B /* Logo.sketch */, + ); + path = Logos; + sourceTree = ""; + }; + 9AA91D1125CD598000BD5E8B /* AcpiSamples */ = { + isa = PBXGroup; + children = ( + 9AA91D1225CD598000BD5E8B /* SSDT-RTC0-RANGE.dsl */, + 9AA91D1325CD598000BD5E8B /* SSDT-AWAC.dsl */, + 9AA91D1425CD598000BD5E8B /* SSDT-RTC0.dsl */, + 9AA91D1525CD598000BD5E8B /* SSDT-IMEI.dsl */, + 9AA91D1625CD598000BD5E8B /* SSDT-EC.dsl */, + 9AA91D1725CD598000BD5E8B /* SSDT-ALS0.dsl */, + 9AA91D1825CD598000BD5E8B /* SSDT-BRG0.dsl */, + 9AA91D1925CD598000BD5E8B /* SSDT-PMC.dsl */, + 9AA91D1A25CD598000BD5E8B /* SSDT-SBUS-MCHC.dsl */, + 9AA91D1B25CD598000BD5E8B /* SSDT-EC-USBX.dsl */, + 9AA91D1C25CD598000BD5E8B /* SSDT-EHCx_OFF.dsl */, + 9AA91D1D25CD598000BD5E8B /* SSDT-PLUG.dsl */, + ); + path = AcpiSamples; + sourceTree = ""; + }; + 9AA91D2125CD598000BD5E8B /* Differences */ = { + isa = PBXGroup; + children = ( + 9AA91D2225CD598000BD5E8B /* Differences.pdf */, + 9AA91D2325CD598000BD5E8B /* PreviousConfiguration.tex */, + 9AA91D2425CD598000BD5E8B /* Differences.tex */, + ); + path = Differences; + sourceTree = ""; + }; + 9AA91D2925CD598000BD5E8B /* Utilities */ = { + isa = PBXGroup; + children = ( + 9AA91D2A25CD598000BD5E8B /* TestSmbios */, + 9AA91D2E25CD598000BD5E8B /* BaseTools */, + 9AA91D3C25CD598000BD5E8B /* WinNvram */, + 9AA91D4025CD598100BD5E8B /* TestBmf */, + 9AA91D4325CD598100BD5E8B /* disklabel */, + 9AA91D4625CD598100BD5E8B /* AppleKeyboardLayouts */, + 9AA91D4925CD598100BD5E8B /* TestImg4 */, + 9AA91D4C25CD598100BD5E8B /* TestHelloWorld */, + 9AA91D4F25CD598100BD5E8B /* MacEfiUnpack */, + 9AA91D5125CD598100BD5E8B /* LegacyBoot */, + 9AA91D5725CD598100BD5E8B /* macserial */, + 9AA91D6025CD598100BD5E8B /* RsaTool */, + 9AA91D6525CD598100BD5E8B /* TestPeCoff */, + 9AA91D6825CD598100BD5E8B /* CreateVault */, + 9AA91D6C25CD598100BD5E8B /* TestDiskImage */, + 9AA91D7025CD598100BD5E8B /* TestRsaPreprocess */, + 9AA91D7325CD598100BD5E8B /* icnspack */, + 9AA91D7625CD598100BD5E8B /* kpdescribe */, + 9AA91D7825CD598100BD5E8B /* AppleEfiSignTool */, + 9AA91D9025CD598100BD5E8B /* EfiResTool */, + 9AA91D9425CD598100BD5E8B /* TestMacho */, + 9AA91D9825CD598100BD5E8B /* ocvalidate */, + 9AA91D9C25CD598100BD5E8B /* LogoutHook */, + 9AA91DA025CD598100BD5E8B /* macrecovery */, + 9AA91DA525CD598100BD5E8B /* TestKextInject */, + ); + path = Utilities; + sourceTree = ""; + }; + 9AA91D2A25CD598000BD5E8B /* TestSmbios */ = { + isa = PBXGroup; + children = ( + 9AA91D2B25CD598000BD5E8B /* Makefile */, + 9AA91D2C25CD598000BD5E8B /* Smbios.bin */, + 9AA91D2D25CD598000BD5E8B /* Smbios.c */, + ); + path = TestSmbios; + sourceTree = ""; + }; + 9AA91D2E25CD598000BD5E8B /* BaseTools */ = { + isa = PBXGroup; + children = ( + 9AA91D2F25CD598000BD5E8B /* EfiLdrImage.c */, + 9AA91D3025CD598000BD5E8B /* Makefile */, + 9AA91D3125CD598000BD5E8B /* bin.Darwin */, + 9AA91D3425CD598000BD5E8B /* GenPage.c */, + 9AA91D3525CD598000BD5E8B /* bin.Linux */, + 9AA91D3825CD598000BD5E8B /* VirtualMemory.h */, + 9AA91D3925CD598000BD5E8B /* bin.Windows */, + ); + path = BaseTools; + sourceTree = ""; + }; + 9AA91D3125CD598000BD5E8B /* bin.Darwin */ = { + isa = PBXGroup; + children = ( + 9AA91D3225CD598000BD5E8B /* EfiLdrImage */, + 9AA91D3325CD598000BD5E8B /* GenPage */, + ); + path = bin.Darwin; + sourceTree = ""; + }; + 9AA91D3525CD598000BD5E8B /* bin.Linux */ = { + isa = PBXGroup; + children = ( + 9AA91D3625CD598000BD5E8B /* EfiLdrImage */, + 9AA91D3725CD598000BD5E8B /* GenPage */, + ); + path = bin.Linux; + sourceTree = ""; + }; + 9AA91D3925CD598000BD5E8B /* bin.Windows */ = { + isa = PBXGroup; + children = ( + 9AA91D3A25CD598000BD5E8B /* EfiLdrImage.exe */, + 9AA91D3B25CD598000BD5E8B /* GenPage.exe */, + ); + path = bin.Windows; + sourceTree = ""; + }; + 9AA91D3C25CD598000BD5E8B /* WinNvram */ = { + isa = PBXGroup; + children = ( + 9AA91D3D25CD598000BD5E8B /* nvram.exe */, + 9AA91D3E25CD598100BD5E8B /* Makefile */, + 9AA91D3F25CD598100BD5E8B /* nvram.c */, + ); + path = WinNvram; + sourceTree = ""; + }; + 9AA91D4025CD598100BD5E8B /* TestBmf */ = { + isa = PBXGroup; + children = ( + 9AA91D4125CD598100BD5E8B /* Makefile */, + 9AA91D4225CD598100BD5E8B /* Bmf.c */, + ); + path = TestBmf; + sourceTree = ""; + }; + 9AA91D4325CD598100BD5E8B /* disklabel */ = { + isa = PBXGroup; + children = ( + 9AA91D4425CD598100BD5E8B /* Makefile */, + 9AA91D4525CD598100BD5E8B /* disklabel.c */, + ); + path = disklabel; + sourceTree = ""; + }; + 9AA91D4625CD598100BD5E8B /* AppleKeyboardLayouts */ = { + isa = PBXGroup; + children = ( + 9AA91D4725CD598100BD5E8B /* AppleKeyboardLayouts.txt */, + 9AA91D4825CD598100BD5E8B /* AppleKeyboardLayouts.bt */, + ); + path = AppleKeyboardLayouts; + sourceTree = ""; + }; + 9AA91D4925CD598100BD5E8B /* TestImg4 */ = { + isa = PBXGroup; + children = ( + 9AA91D4A25CD598100BD5E8B /* Makefile */, + 9AA91D4B25CD598100BD5E8B /* Img4.c */, + ); + path = TestImg4; + sourceTree = ""; + }; + 9AA91D4C25CD598100BD5E8B /* TestHelloWorld */ = { + isa = PBXGroup; + children = ( + 9AA91D4D25CD598100BD5E8B /* Makefile */, + 9AA91D4E25CD598100BD5E8B /* HelloWorld.c */, + ); + path = TestHelloWorld; + sourceTree = ""; + }; + 9AA91D4F25CD598100BD5E8B /* MacEfiUnpack */ = { + isa = PBXGroup; + children = ( + 9AA91D5025CD598100BD5E8B /* MacEfiUnpack.py */, + ); + path = MacEfiUnpack; + sourceTree = ""; + }; + 9AA91D5125CD598100BD5E8B /* LegacyBoot */ = { + isa = PBXGroup; + children = ( + 9AA91D5225CD598100BD5E8B /* boot0 */, + 9AA91D5325CD598100BD5E8B /* boot1f32 */, + 9AA91D5425CD598100BD5E8B /* README.md */, + 9AA91D5525CD598100BD5E8B /* QemuBuild.command */, + 9AA91D5625CD598100BD5E8B /* BootInstall.command */, + ); + path = LegacyBoot; + sourceTree = ""; + }; + 9AA91D5725CD598100BD5E8B /* macserial */ = { + isa = PBXGroup; + children = ( + 9AA91D5825CD598100BD5E8B /* macserial.h */, + 9AA91D5925CD598100BD5E8B /* Makefile */, + 9AA91D5A25CD598100BD5E8B /* README.md */, + 9AA91D5B25CD598100BD5E8B /* modelinfo_autogen.h */, + 9AA91D5C25CD598100BD5E8B /* modelinfo.h */, + 9AA91D5D25CD598100BD5E8B /* macserial.c */, + 9AA91D5E25CD598100BD5E8B /* FORMAT.md */, + 9AA91D5F25CD598100BD5E8B /* cccdump.py */, + ); + path = macserial; + sourceTree = ""; + }; + 9AA91D6025CD598100BD5E8B /* RsaTool */ = { + isa = PBXGroup; + children = ( + 9AA91D6125CD598100BD5E8B /* LICENSE */, + 9AA91D6225CD598100BD5E8B /* Makefile */, + 9AA91D6325CD598100BD5E8B /* RsaTool.c */, + 9AA91D6425CD598100BD5E8B /* openssl_compat.h */, + ); + path = RsaTool; + sourceTree = ""; + }; + 9AA91D6525CD598100BD5E8B /* TestPeCoff */ = { + isa = PBXGroup; + children = ( + 9AA91D6625CD598100BD5E8B /* Makefile */, + 9AA91D6725CD598100BD5E8B /* PeCoff.c */, + ); + path = TestPeCoff; + sourceTree = ""; + }; + 9AA91D6825CD598100BD5E8B /* CreateVault */ = { + isa = PBXGroup; + children = ( + 9AA91D6925CD598100BD5E8B /* create_vault.sh */, + 9AA91D6A25CD598100BD5E8B /* sign.command */, + 9AA91D6B25CD598100BD5E8B /* RsaTool */, + ); + path = CreateVault; + sourceTree = ""; + }; + 9AA91D6C25CD598100BD5E8B /* TestDiskImage */ = { + isa = PBXGroup; + children = ( + 9AA91D6D25CD598100BD5E8B /* Makefile */, + 9AA91D6E25CD598100BD5E8B /* FileDummy.c */, + 9AA91D6F25CD598100BD5E8B /* DiskImage.c */, + ); + path = TestDiskImage; + sourceTree = ""; + }; + 9AA91D7025CD598100BD5E8B /* TestRsaPreprocess */ = { + isa = PBXGroup; + children = ( + 9AA91D7125CD598100BD5E8B /* Makefile */, + 9AA91D7225CD598100BD5E8B /* RsaPreprocess.c */, + ); + path = TestRsaPreprocess; + sourceTree = ""; + }; + 9AA91D7325CD598100BD5E8B /* icnspack */ = { + isa = PBXGroup; + children = ( + 9AA91D7425CD598100BD5E8B /* Makefile */, + 9AA91D7525CD598100BD5E8B /* icnspack.c */, + ); + path = icnspack; + sourceTree = ""; + }; + 9AA91D7625CD598100BD5E8B /* kpdescribe */ = { + isa = PBXGroup; + children = ( + 9AA91D7725CD598100BD5E8B /* kpdescribe.sh */, + ); + path = kpdescribe; + sourceTree = ""; + }; + 9AA91D7825CD598100BD5E8B /* AppleEfiSignTool */ = { + isa = PBXGroup; + children = ( + 9AA91D7925CD598100BD5E8B /* AppleEfiFatBinary.h */, + 9AA91D7A25CD598100BD5E8B /* Makefile */, + 9AA91D7B25CD598100BD5E8B /* AppleEfiBinary.c */, + 9AA91D7C25CD598100BD5E8B /* README.md */, + 9AA91D7D25CD598100BD5E8B /* Samples */, + 9AA91D8D25CD598100BD5E8B /* Edk2PeImage.h */, + 9AA91D8E25CD598100BD5E8B /* AppleEfiSignTool.c */, + 9AA91D8F25CD598100BD5E8B /* AppleEfiPeImage.h */, + ); + path = AppleEfiSignTool; + sourceTree = ""; + }; + 9AA91D7D25CD598100BD5E8B /* Samples */ = { + isa = PBXGroup; + children = ( + 9AA91D7E25CD598100BD5E8B /* boot_10.12.6.efi */, + 9AA91D7F25CD598100BD5E8B /* boot_10.7.5.efi */, + 9AA91D8025CD598100BD5E8B /* boot_10.10.5.efi */, + 9AA91D8125CD598100BD5E8B /* boot_10.14_0.18A389.efi */, + 9AA91D8225CD598100BD5E8B /* boot_10.13.6.efi */, + 9AA91D8325CD598100BD5E8B /* boot_10.14.0.18A371a.efi */, + 9AA91D8425CD598100BD5E8B /* apfs.efi */, + 9AA91D8525CD598100BD5E8B /* boot_10.11.6.efi */, + 9AA91D8625CD598100BD5E8B /* apfs_10.15.efi */, + 9AA91D8725CD598100BD5E8B /* apfs_aligned_10.15.efi */, + 9AA91D8825CD598100BD5E8B /* boot_10.8.5.efi */, + 9AA91D8925CD598100BD5E8B /* boot_10.6.8.efi */, + 9AA91D8A25CD598100BD5E8B /* boot_10.4.11.efi */, + 9AA91D8B25CD598100BD5E8B /* boot_10.9.5.efi */, + 9AA91D8C25CD598100BD5E8B /* boot_10.5.8.efi */, + ); + path = Samples; + sourceTree = ""; + }; + 9AA91D9025CD598100BD5E8B /* EfiResTool */ = { + isa = PBXGroup; + children = ( + 9AA91D9125CD598100BD5E8B /* Makefile */, + 9AA91D9225CD598100BD5E8B /* README.md */, + 9AA91D9325CD598100BD5E8B /* EfiResTool.c */, + ); + path = EfiResTool; + sourceTree = ""; + }; + 9AA91D9425CD598100BD5E8B /* TestMacho */ = { + isa = PBXGroup; + children = ( + 9AA91D9525CD598100BD5E8B /* Macho.c */, + 9AA91D9625CD598100BD5E8B /* Makefile */, + 9AA91D9725CD598100BD5E8B /* kernel */, + ); + path = TestMacho; + sourceTree = ""; + }; + 9AA91D9825CD598100BD5E8B /* ocvalidate */ = { + isa = PBXGroup; + children = ( + 9AA91D9925CD598100BD5E8B /* Makefile */, + 9AA91D9A25CD598100BD5E8B /* config.plist */, + 9AA91D9B25CD598100BD5E8B /* ocvalidate.c */, + ); + path = ocvalidate; + sourceTree = ""; + }; + 9AA91D9C25CD598100BD5E8B /* LogoutHook */ = { + isa = PBXGroup; + children = ( + 9AA91D9D25CD598100BD5E8B /* LogoutHook.command */, + 9AA91D9E25CD598100BD5E8B /* README.md */, + 9AA91D9F25CD598100BD5E8B /* nvram.mojave */, + ); + path = LogoutHook; + sourceTree = ""; + }; + 9AA91DA025CD598100BD5E8B /* macrecovery */ = { + isa = PBXGroup; + children = ( + 9AA91DA125CD598100BD5E8B /* recovery_urls.txt */, + 9AA91DA225CD598100BD5E8B /* boards.json */, + 9AA91DA325CD598100BD5E8B /* README.md */, + 9AA91DA425CD598100BD5E8B /* macrecovery.py */, + ); + path = macrecovery; + sourceTree = ""; + }; + 9AA91DA525CD598100BD5E8B /* TestKextInject */ = { + isa = PBXGroup; + children = ( + 9AA91DA625CD598100BD5E8B /* Makefile */, + 9AA91DA725CD598100BD5E8B /* check_injection.sh */, + 9AA91DA825CD598100BD5E8B /* KextInject.c */, + ); + path = TestKextInject; + sourceTree = ""; + }; + 9AA91DB125CD598100BD5E8B /* Application */ = { + isa = PBXGroup; + children = ( + 9AA91DB225CD598100BD5E8B /* HdaCodecDump */, + 9AA91DB625CD598100BD5E8B /* VerifyMemOpt */, + 9AA91DB925CD598100BD5E8B /* BootKicker */, + 9AA91DBC25CD598100BD5E8B /* Bootstrap */, + 9AA91DBF25CD598100BD5E8B /* KeyTester */, + 9AA91DC225CD598100BD5E8B /* VerifyMsrE2 */, + 9AA91DC525CD598100BD5E8B /* RtcRw */, + 9AA91DC825CD598100BD5E8B /* GopStop */, + 9AA91DCF25CD598100BD5E8B /* ResetSystem */, + 9AA91DD225CD598100BD5E8B /* ChipTune */, + 9AA91DD525CD598100BD5E8B /* PavpProvision */, + 9AA91DD925CD598100BD5E8B /* CleanNvram */, + 9AA91DDC25CD598100BD5E8B /* OpenControl */, + 9AA91DDF25CD598100BD5E8B /* MmapDump */, + ); + path = Application; + sourceTree = ""; + }; + 9AA91DB225CD598100BD5E8B /* HdaCodecDump */ = { + isa = PBXGroup; + children = ( + 9AA91DB325CD598100BD5E8B /* HdaCodecDump.inf */, + 9AA91DB425CD598100BD5E8B /* HdaCodecDump.h */, + 9AA91DB525CD598100BD5E8B /* HdaCodecDump.c */, + ); + path = HdaCodecDump; + sourceTree = ""; + }; + 9AA91DB625CD598100BD5E8B /* VerifyMemOpt */ = { + isa = PBXGroup; + children = ( + 9AA91DB725CD598100BD5E8B /* VerifyMemOpt.inf */, + 9AA91DB825CD598100BD5E8B /* VerifyMemOpt.c */, + ); + path = VerifyMemOpt; + sourceTree = ""; + }; + 9AA91DB925CD598100BD5E8B /* BootKicker */ = { + isa = PBXGroup; + children = ( + 9AA91DBA25CD598100BD5E8B /* BootKicker.inf */, + 9AA91DBB25CD598100BD5E8B /* BootKicker.c */, + ); + path = BootKicker; + sourceTree = ""; + }; + 9AA91DBC25CD598100BD5E8B /* Bootstrap */ = { + isa = PBXGroup; + children = ( + 9AA91DBD25CD598100BD5E8B /* Bootstrap.inf */, + 9AA91DBE25CD598100BD5E8B /* Bootstrap.c */, + ); + path = Bootstrap; + sourceTree = ""; + }; + 9AA91DBF25CD598100BD5E8B /* KeyTester */ = { + isa = PBXGroup; + children = ( + 9AA91DC025CD598100BD5E8B /* KeyTester.inf */, + 9AA91DC125CD598100BD5E8B /* KeyTester.c */, + ); + path = KeyTester; + sourceTree = ""; + }; + 9AA91DC225CD598100BD5E8B /* VerifyMsrE2 */ = { + isa = PBXGroup; + children = ( + 9AA91DC325CD598100BD5E8B /* VerifyMsrE2.inf */, + 9AA91DC425CD598100BD5E8B /* VerifyMsrE2.c */, + ); + path = VerifyMsrE2; + sourceTree = ""; + }; + 9AA91DC525CD598100BD5E8B /* RtcRw */ = { + isa = PBXGroup; + children = ( + 9AA91DC625CD598100BD5E8B /* RtcRw.inf */, + 9AA91DC725CD598100BD5E8B /* RtcRw.c */, + ); + path = RtcRw; + sourceTree = ""; + }; + 9AA91DC825CD598100BD5E8B /* GopStop */ = { + isa = PBXGroup; + children = ( + 9AA91DC925CD598100BD5E8B /* GopStop.inf */, + 9AA91DCA25CD598100BD5E8B /* GopStop.c */, + 9AA91DCB25CD598100BD5E8B /* README.md */, + 9AA91DCC25CD598100BD5E8B /* Examples */, + ); + path = GopStop; + sourceTree = ""; + }; + 9AA91DCC25CD598100BD5E8B /* Examples */ = { + isa = PBXGroup; + children = ( + 9AA91DCD25CD598100BD5E8B /* Step3.png */, + 9AA91DCE25CD598100BD5E8B /* Step10.png */, + ); + path = Examples; + sourceTree = ""; + }; + 9AA91DCF25CD598100BD5E8B /* ResetSystem */ = { + isa = PBXGroup; + children = ( + 9AA91DD025CD598100BD5E8B /* ResetSystem.inf */, + 9AA91DD125CD598100BD5E8B /* ResetSystem.c */, + ); + path = ResetSystem; + sourceTree = ""; + }; + 9AA91DD225CD598100BD5E8B /* ChipTune */ = { + isa = PBXGroup; + children = ( + 9AA91DD325CD598100BD5E8B /* ChipTune.inf */, + 9AA91DD425CD598100BD5E8B /* ChipTune.c */, + ); + path = ChipTune; + sourceTree = ""; + }; + 9AA91DD525CD598100BD5E8B /* PavpProvision */ = { + isa = PBXGroup; + children = ( + 9AA91DD625CD598100BD5E8B /* PavpProvision.inf */, + 9AA91DD725CD598100BD5E8B /* PavpProvisionData.c */, + 9AA91DD825CD598100BD5E8B /* PavpProvision.c */, + ); + path = PavpProvision; + sourceTree = ""; + }; + 9AA91DD925CD598100BD5E8B /* CleanNvram */ = { + isa = PBXGroup; + children = ( + 9AA91DDA25CD598100BD5E8B /* CleanNvram.c */, + 9AA91DDB25CD598100BD5E8B /* CleanNvram.inf */, + ); + path = CleanNvram; + sourceTree = ""; + }; + 9AA91DDC25CD598100BD5E8B /* OpenControl */ = { + isa = PBXGroup; + children = ( + 9AA91DDD25CD598100BD5E8B /* OpenControl.inf */, + 9AA91DDE25CD598100BD5E8B /* OpenControl.c */, + ); + path = OpenControl; + sourceTree = ""; + }; + 9AA91DDF25CD598100BD5E8B /* MmapDump */ = { + isa = PBXGroup; + children = ( + 9AA91DE025CD598100BD5E8B /* MmapDump.inf */, + 9AA91DE125CD598100BD5E8B /* MmapDump.c */, + ); + path = MmapDump; + sourceTree = ""; + }; + 9AA91DE925CD598100BD5E8B /* Debug */ = { + isa = PBXGroup; + children = ( + 9AA91DEA25CD598100BD5E8B /* GdbSyms */, + 9AA91DFB25CD598100BD5E8B /* ClangDwarf.patch */, + 9AA91DFC25CD598100BD5E8B /* README.md */, + 9AA91DFD25CD598100BD5E8B /* Scripts */, + 9AA91E0325CD598100BD5E8B /* efidebug.tool */, + ); + path = Debug; + sourceTree = ""; + }; + 9AA91DEA25CD598100BD5E8B /* GdbSyms */ = { + isa = PBXGroup; + children = ( + 9AA91DEB25CD598100BD5E8B /* Bin */, + 9AA91DF925CD598100BD5E8B /* GdbSyms.c */, + 9AA91DFA25CD598100BD5E8B /* GdbSyms.inf */, + ); + path = GdbSyms; + sourceTree = ""; + }; + 9AA91DEB25CD598100BD5E8B /* Bin */ = { + isa = PBXGroup; + children = ( + 9AA91DEC25CD598100BD5E8B /* Ia32_XCODE5 */, + 9AA91DEE25CD598100BD5E8B /* X64_CLANGPDB */, + 9AA91DF125CD598100BD5E8B /* X64_CLANGDWARF */, + 9AA91DF325CD598100BD5E8B /* X64_GCC5 */, + 9AA91DF525CD598100BD5E8B /* X64_XCODE5 */, + 9AA91DF725CD598100BD5E8B /* Ia32_GCC5 */, + ); + path = Bin; + sourceTree = ""; + }; + 9AA91DEC25CD598100BD5E8B /* Ia32_XCODE5 */ = { + isa = PBXGroup; + children = ( + 9AA91DED25CD598100BD5E8B /* GdbSyms.dll */, + ); + path = Ia32_XCODE5; + sourceTree = ""; + }; + 9AA91DEE25CD598100BD5E8B /* X64_CLANGPDB */ = { + isa = PBXGroup; + children = ( + 9AA91DEF25CD598100BD5E8B /* GdbSyms.dll */, + 9AA91DF025CD598100BD5E8B /* GdbSyms.pdb */, + ); + path = X64_CLANGPDB; + sourceTree = ""; + }; + 9AA91DF125CD598100BD5E8B /* X64_CLANGDWARF */ = { + isa = PBXGroup; + children = ( + 9AA91DF225CD598100BD5E8B /* GdbSyms.debug */, + ); + path = X64_CLANGDWARF; + sourceTree = ""; + }; + 9AA91DF325CD598100BD5E8B /* X64_GCC5 */ = { + isa = PBXGroup; + children = ( + 9AA91DF425CD598100BD5E8B /* GdbSyms.debug */, + ); + path = X64_GCC5; + sourceTree = ""; + }; + 9AA91DF525CD598100BD5E8B /* X64_XCODE5 */ = { + isa = PBXGroup; + children = ( + 9AA91DF625CD598100BD5E8B /* GdbSyms.dll */, + ); + path = X64_XCODE5; + sourceTree = ""; + }; + 9AA91DF725CD598100BD5E8B /* Ia32_GCC5 */ = { + isa = PBXGroup; + children = ( + 9AA91DF825CD598100BD5E8B /* GdbSyms.debug */, + ); + path = Ia32_GCC5; + sourceTree = ""; + }; + 9AA91DFD25CD598100BD5E8B /* Scripts */ = { + isa = PBXGroup; + children = ( + 9AA91DFE25CD598100BD5E8B /* common_uefi.py */, + 9AA91DFF25CD598100BD5E8B /* lldb_uefi.py */, + 9AA91E0025CD598100BD5E8B /* common_uefi.pyc */, + 9AA91E0125CD598100BD5E8B /* x86_64_target_definition.py */, + 9AA91E0225CD598100BD5E8B /* gdb_uefi.py */, + ); + path = Scripts; + sourceTree = ""; + }; + 9AA91E0B25CD59F100BD5E8B /* Library */ = { + isa = PBXGroup; + children = ( + 9AA91E2425CD59F100BD5E8B /* MemLogLibDefault */, + ); + path = Library; + sourceTree = ""; + }; + 9AA91E2425CD59F100BD5E8B /* MemLogLibDefault */ = { + isa = PBXGroup; + children = ( + 9A0F1D4C2B0BDA5800F9BC7C /* MemLogLib.c */, + 9AA91E2625CD59F100BD5E8B /* printf_lite.c */, + 9AA91E2825CD59F100BD5E8B /* printf_lite.h */, + ); + path = MemLogLibDefault; + sourceTree = ""; + }; + 9AA9253525CD764800BD5E8B /* menu_items */ = { + isa = PBXGroup; + children = ( + 9AA9253625CD764800BD5E8B /* menu_items.h */, + 9AA9253725CD764800BD5E8B /* menu_globals.h */, + 9AA9253825CD764800BD5E8B /* menu_items.cpp */, + ); + path = menu_items; + sourceTree = ""; + }; + 9AA9E50525CD306700BD5E8B /* entry_scan */ = { + isa = PBXGroup; + children = ( + 9AA9251F25CD74C900BD5E8B /* bootscreen.cpp */, + 9AA9252225CD74CA00BD5E8B /* bootscreen.h */, + 9AA9252725CD74CB00BD5E8B /* CanonicalDB.h */, + 9AA9252125CD74C900BD5E8B /* CloverDB.h */, + 9AA9252625CD74CA00BD5E8B /* CloverKEK.h */, + 9AA9252A25CD74CB00BD5E8B /* common.cpp */, + 9AA9251B25CD74C800BD5E8B /* common.h */, + 9AA9251925CD74C800BD5E8B /* entry_scan.h */, + 9AA9251E25CD74C900BD5E8B /* legacy.cpp */, + 9AA9251C25CD74C800BD5E8B /* lockedgraphics.cpp */, + 9AA9251A25CD74C800BD5E8B /* MSKEK.h */, + 9AA9252025CD74C900BD5E8B /* MSPCADB.h */, + 9AA9252525CD74CA00BD5E8B /* MSUEFICADB.h */, + 9AA9252325CD74CA00BD5E8B /* secureboot.cpp */, + 9AA9251725CD74C700BD5E8B /* secureboot.h */, + 9AA9252825CD74CB00BD5E8B /* securebootkeys.h */, + 9AA9251D25CD74C900BD5E8B /* securehash.cpp */, + 9AA9252425CD74CA00BD5E8B /* securemenu.cpp */, + 9AA9252925CD74CB00BD5E8B /* securevars.cpp */, + 9AA9251825CD74C800BD5E8B /* tool.cpp */, + 9AA9251625CD74C700BD5E8B /* tool.h */, + 9AA9E51B25CD306700BD5E8B /* loader.cpp */, + 9AA9E51325CD306700BD5E8B /* loader.h */, + ); + path = entry_scan; + sourceTree = ""; + }; + 9AD469462452B30500D6D0DB /* gui */ = { + isa = PBXGroup; + children = ( + 9AA9253525CD764800BD5E8B /* menu_items */, + 9AD7B14F26079F5D00E850D1 /* REFIT_MAINMENU_SCREEN.cpp */, + 9AD7B14E26079F5C00E850D1 /* REFIT_MAINMENU_SCREEN.h */, + 9AA9253925CD764800BD5E8B /* REFIT_MENU_SCREEN.cpp */, + 9AA9253425CD764800BD5E8B /* REFIT_MENU_SCREEN.h */, + 9AD469472452B33700D6D0DB /* shared_with_menu.cpp */, + 9AD469482452B33700D6D0DB /* shared_with_menu.h */, + ); + path = gui; + sourceTree = ""; + }; + 9AE276442B04EAA4006343AB /* Protocols */ = { + isa = PBXGroup; + children = ( + 9AE2764D2B04EB26006343AB /* AppleImageCodec */, + 9AE276542B04EB26006343AB /* AppleKeyAggregator */, + 9AE276492B04EB26006343AB /* FirmwareVolume */, + 9AE276582B04EB26006343AB /* SMCHelper */, + ); + name = Protocols; + path = ../../Protocols; + sourceTree = ""; + }; + 9AE276492B04EB26006343AB /* FirmwareVolume */ = { + isa = PBXGroup; + children = ( + 9AE2764A2B04EB26006343AB /* FirmwareVolume.c */, + ); + path = FirmwareVolume; + sourceTree = ""; + }; + 9AE2764D2B04EB26006343AB /* AppleImageCodec */ = { + isa = PBXGroup; + children = ( + 9AE2764E2B04EB26006343AB /* load_bmp.c */, + 9AE2764F2B04EB26006343AB /* AppleImageCodec.c */, + 9AE276502B04EB26006343AB /* picopng.h */, + 9AE276512B04EB26006343AB /* load_icns.c */, + 9AE276532B04EB26006343AB /* picopng.c */, + ); + path = AppleImageCodec; + sourceTree = ""; + }; + 9AE276542B04EB26006343AB /* AppleKeyAggregator */ = { + isa = PBXGroup; + children = ( + 9AE276552B04EB26006343AB /* AppleKeyAggregator.h */, + 9AE276572B04EB26006343AB /* AppleKeyAggregator.c */, + ); + path = AppleKeyAggregator; + sourceTree = ""; + }; + 9AE276582B04EB26006343AB /* SMCHelper */ = { + isa = PBXGroup; + children = ( + 9AE2765A2B04EB26006343AB /* SMCHelper.c */, + ); + path = SMCHelper; + sourceTree = ""; + }; + 9AFDCEB225CD9BB000EEAF06 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; + 9AFDD05825CE730F00EEAF06 /* cpp_unit_test */ = { + isa = PBXGroup; + children = ( + 9AFDD07125CE730F00EEAF06 /* all_tests.cpp */, + 9AFDD07A25CE730F00EEAF06 /* all_tests.h */, + 9A9037E425CFE7D000F14179 /* config-test.cpp */, + 9A9037E225CFE7CD00F14179 /* config-test.h */, + 9AFDD06E25CE730F00EEAF06 /* find_replace_mask_Clover_tests.cpp */, + 9AFDD06625CE730F00EEAF06 /* find_replace_mask_Clover_tests.h */, + 9AFDD07C25CE730F00EEAF06 /* find_replace_mask_OC_tests.cpp */, + 9AFDD06225CE730F00EEAF06 /* find_replace_mask_OC_tests.h */, + 9AFDD05C25CE730F00EEAF06 /* global_test.cpp */, + 9AFDD06525CE730F00EEAF06 /* global_test.h */, + 9AE276672B04EBA0006343AB /* guid_tests.cpp */, + 9AE276682B04EBA1006343AB /* guid_tests.h */, + 9AFDD06125CE730F00EEAF06 /* LoadOptions_test.cpp */, + 9AFDD07825CE730F00EEAF06 /* LoadOptions_test.h */, + 9AFDD06925CE730F00EEAF06 /* MacOsVersion_test.cpp */, + 9AFDD06F25CE730F00EEAF06 /* MacOsVersion_test.h */, + 9AE276662B04EBA0006343AB /* MemoryTracker_test.cpp */, + 9AE276652B04EBA0006343AB /* MemoryTracker_test.h */, + 9AFDD06825CE730F00EEAF06 /* plist_tests.cpp */, + 9AFDD05B25CE730F00EEAF06 /* plist_tests.h */, + 9AFDD06325CE730F00EEAF06 /* printf_lite-test.cpp */, + 9AFDD07625CE730F00EEAF06 /* printf_lite-test.h */, + 9AFDD06B25CE730F00EEAF06 /* printlib-test.cpp */, + 9AFDD07225CE730F00EEAF06 /* printlib-test.h */, + 9A0D113625FF583F0040555F /* strcasecmp_test.cpp */, + 9A0D113725FF58400040555F /* strcasecmp_test.h */, + 9AFDD06A25CE730F00EEAF06 /* strcmp_test.cpp */, + 9AFDD05F25CE730F00EEAF06 /* strcmp_test.h */, + 9AFDD07B25CE730F00EEAF06 /* strlen_test.cpp */, + 9AFDD07025CE730F00EEAF06 /* strlen_test.h */, + 9AFDD07525CE730F00EEAF06 /* strncmp_test.cpp */, + 9AFDD05D25CE730F00EEAF06 /* strncmp_test.h */, + 9AFDD07425CE730F00EEAF06 /* XArray_tests.cpp */, + 9AFDD06425CE730F00EEAF06 /* XArray_tests.h */, + 9AFDD06025CE730F00EEAF06 /* XBuffer_tests.cpp */, + 9AFDD05E25CE730F00EEAF06 /* XBuffer_tests.h */, + 9AB67BE2261834F300CC853A /* xml_lite-reapeatingdict-test.cpp */, + 9AB67BE3261834F300CC853A /* xml_lite-reapeatingdict-test.h */, + 9A9037E325CFE7CD00F14179 /* xml_lite-test.cpp */, + 9A9037E525CFE7D000F14179 /* xml_lite-test.h */, + 9AFDD07325CE730F00EEAF06 /* XObjArray_tests.cpp */, + 9AFDD06D25CE730F00EEAF06 /* XObjArray_tests.h */, + 9AFDD07725CE730F00EEAF06 /* XString_test.cpp */, + 9AFDD05A25CE730F00EEAF06 /* XString_test.h */, + 9AFDD06C25CE730F00EEAF06 /* XStringArray_test.cpp */, + 9AFDD06725CE730F00EEAF06 /* XStringArray_test.h */, + 9AFDD07925CE730F00EEAF06 /* XToolsCommon_test.cpp */, + 9AFDD05925CE730F00EEAF06 /* XToolsCommon_test.h */, + ); + path = cpp_unit_test; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 9A92232C2402FD1000483CBA /* CloverMacOsApp-UTF16_signed-DebugLibs */ = { + isa = PBXNativeTarget; + buildConfigurationList = 9A9223342402FD1000483CBA /* Build configuration list for PBXNativeTarget "CloverMacOsApp-UTF16_signed-DebugLibs" */; + buildPhases = ( + 9A9223292402FD1000483CBA /* Sources */, + 9A92232A2402FD1000483CBA /* Frameworks */, + 9A92232B2402FD1000483CBA /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "CloverMacOsApp-UTF16_signed-DebugLibs"; + productName = cpp_tests; + productReference = 9A92232D2402FD1000483CBA /* CloverMacOsApp-UTF16_signed-DebugLibs */; + productType = "com.apple.product-type.tool"; + }; + 9AE276922B051DAB006343AB /* CloverMacOsApp-UTF32_signed-DebugLibs */ = { + isa = PBXNativeTarget; + buildConfigurationList = 9AE277902B051DAB006343AB /* Build configuration list for PBXNativeTarget "CloverMacOsApp-UTF32_signed-DebugLibs" */; + buildPhases = ( + 9AE276932B051DAB006343AB /* Sources */, + 9AE277372B051DAB006343AB /* Frameworks */, + 9AE2778F2B051DAB006343AB /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "CloverMacOsApp-UTF32_signed-DebugLibs"; + productName = cpp_tests; + productReference = 9AE277942B051DAB006343AB /* CloverMacOsApp-UTF32_signed-DebugLibs */; + productType = "com.apple.product-type.tool"; + }; + 9AE2785A2642869E005C8F2F /* CloverMacOsApp-UTF16_signed-ReleaseLibs */ = { + isa = PBXNativeTarget; + buildConfigurationList = 9AE279522642869E005C8F2F /* Build configuration list for PBXNativeTarget "CloverMacOsApp-UTF16_signed-ReleaseLibs" */; + buildPhases = ( + 9AE2785B2642869E005C8F2F /* Sources */, + 9AE278FD2642869E005C8F2F /* Frameworks */, + 9AE279512642869E005C8F2F /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "CloverMacOsApp-UTF16_signed-ReleaseLibs"; + productName = cpp_tests; + productReference = 9AE279562642869E005C8F2F /* CloverMacOsApp-UTF16_signed-ReleaseLibs */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 9A9223252402FD1000483CBA /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1410; + ORGANIZATIONNAME = Jief_Machak; + TargetAttributes = { + 9A92232C2402FD1000483CBA = { + CreatedOnToolsVersion = 10.1; + }; + }; + }; + buildConfigurationList = 9A9223282402FD1000483CBA /* Build configuration list for PBXProject "CloverMacOsApp" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 9A9223242402FD1000483CBA; + productRefGroup = 9A92232E2402FD1000483CBA /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 9A92232C2402FD1000483CBA /* CloverMacOsApp-UTF16_signed-DebugLibs */, + 9AE2785A2642869E005C8F2F /* CloverMacOsApp-UTF16_signed-ReleaseLibs */, + 9AE276922B051DAB006343AB /* CloverMacOsApp-UTF32_signed-DebugLibs */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 9A9223292402FD1000483CBA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9AA9245F25CD5B2E00BD5E8B /* usbfix.cpp in Sources */, + 9AA9E4D625CD1C9400BD5E8B /* card_vlist.cpp in Sources */, + 9A36E50424F3B537007A1107 /* TagInt64.cpp in Sources */, + 9A1F87BD2642772B00884E81 /* SMBIOSPlist.cpp in Sources */, + 9AE2765E2B04EB27006343AB /* AppleImageCodec.c in Sources */, + 9A36E50024F3B537007A1107 /* TagDict.cpp in Sources */, + 9A4C576B255AAD07004F0B21 /* MacOsVersion.cpp in Sources */, + 9A36E50C24F3B537007A1107 /* TagData.cpp in Sources */, + 9AE276602B04EB27006343AB /* picopng.c in Sources */, + 9A1F87C726427A2100884E81 /* SmbiosFillPatchingValues.cpp in Sources */, + 9AA9253025CD74CC00BD5E8B /* secureboot.cpp in Sources */, + 9AA924FB25CD5B2E00BD5E8B /* AcpiPatcher.cpp in Sources */, + 9A7D518424FC32F700FA1CC3 /* XBuffer.cpp in Sources */, + 9AA924E325CD5B2E00BD5E8B /* ati.cpp in Sources */, + 9AA924DF25CD5B2E00BD5E8B /* Console.cpp in Sources */, + 9AA9246F25CD5B2E00BD5E8B /* KextList.cpp in Sources */, + 9A36E53C24F3EDED007A1107 /* base64.cpp in Sources */, + 9AFDD0BD25CE731000EEAF06 /* strlen_test.cpp in Sources */, + 9A358B3D25CF117A00A3850D /* XmlLiteCompositeTypes.cpp in Sources */, + 9AA9250325CD5B2E00BD5E8B /* StateGenerator.cpp in Sources */, + 9AA9253125CD74CC00BD5E8B /* securemenu.cpp in Sources */, + 9AD0EB24260A497600093F23 /* XmlLiteSimpleTypes.cpp in Sources */, + 9AFDD0A525CE731000EEAF06 /* all_tests.cpp in Sources */, + 9A7A0DB82643DFDF00FD8B2A /* main.cpp in Sources */, + 9AFDD0AD25CE731000EEAF06 /* XArray_tests.cpp in Sources */, + 9A4FFA7E2451C8330050B38B /* XString.cpp in Sources */, + 9AA925A525CD770F00BD5E8B /* egemb_icons.cpp in Sources */, + 9AA9E4F225CD283400BD5E8B /* XTheme.cpp in Sources */, + 9AA9248325CD5B2E00BD5E8B /* Volumes.cpp in Sources */, + 9A1F87832642714800884E81 /* clover_strlen.cpp in Sources */, + 9AA9241F25CD5B2E00BD5E8B /* LegacyBiosThunk.cpp in Sources */, + 9AA9246325CD5B2E00BD5E8B /* HdaCodecDump.cpp in Sources */, + 9AA9259125CD770F00BD5E8B /* scroll_images.cpp in Sources */, + 9AFDD05425CDBC1800EEAF06 /* printf_lite.c in Sources */, + 9AFDD0C125CE731000EEAF06 /* find_replace_mask_OC_tests.cpp in Sources */, + 9AA9249325CD5B2E00BD5E8B /* DataHubCpu.cpp in Sources */, + 9A36E51824F3B537007A1107 /* TagKey.cpp in Sources */, + 9AFDD09525CE731000EEAF06 /* strcmp_test.cpp in Sources */, + 9A36E52624F3BB6B007A1107 /* FloatLib.cpp in Sources */, + 9A0F1D2F2B0BD0CF00F9BC7C /* Globals.cpp in Sources */, + 9AFDD09125CE731000EEAF06 /* MacOsVersion_test.cpp in Sources */, + 9A838CB425347C36008303F5 /* MemoryOperation.c in Sources */, + 9AA9252B25CD74CC00BD5E8B /* tool.cpp in Sources */, + 9AA9252C25CD74CC00BD5E8B /* lockedgraphics.cpp in Sources */, + 9A1F87AF2642772B00884E81 /* ConfigManager.cpp in Sources */, + 9AA9E4EE25CD283400BD5E8B /* XIcon.cpp in Sources */, + 9AA9242725CD5B2E00BD5E8B /* smbios.cpp in Sources */, + 9AFDD08525CE731000EEAF06 /* LoadOptions_test.cpp in Sources */, + 9AE276622B04EB27006343AB /* SMCHelper.c in Sources */, + 9AA9247B25CD5B2E00BD5E8B /* platformdata.cpp in Sources */, + 9AA9E4EA25CD283400BD5E8B /* XImage.cpp in Sources */, + 9AA9241B25CD5B2E00BD5E8B /* Edid.cpp in Sources */, + 9A1F87C526427A1E00884E81 /* CloverVersion.cpp in Sources */, + 9A0F1D202B0BD0CE00F9BC7C /* AutoGen.c in Sources */, + 9A071C48261A44080007CC44 /* XmlLiteUnionTypes.cpp in Sources */, + 9AA9252D25CD74CC00BD5E8B /* securehash.cpp in Sources */, + 9AA9252E25CD74CC00BD5E8B /* legacy.cpp in Sources */, + 9AE2766A2B04EBA1006343AB /* guid_tests.cpp in Sources */, + 9AA925A125CD770F00BD5E8B /* VectorGraphics.cpp in Sources */, + 9A1F87812642714800884E81 /* posix_additions.cpp in Sources */, + 9AA924D725CD5B2E00BD5E8B /* cpu.cpp in Sources */, + 9A1F87842642714800884E81 /* BootLog.cpp in Sources */, + 9AA9242B25CD5B2E00BD5E8B /* spd.cpp in Sources */, + 9AA925DE25CD967800BD5E8B /* SafeString.c in Sources */, + 9AA9258525CD770F00BD5E8B /* nanosvg.cpp in Sources */, + 9AFDD0A925CE731000EEAF06 /* XObjArray_tests.cpp in Sources */, + 9AA924CF25CD5B2E00BD5E8B /* hda.cpp in Sources */, + 9AE2765F2B04EB27006343AB /* load_icns.c in Sources */, + 9A1F87BF2642772B00884E81 /* Self.cpp in Sources */, + 9AA9249725CD5B2E00BD5E8B /* Hibernate.cpp in Sources */, + 9AF4E1C0261F0D9500365AD2 /* main.cpp in Sources */, + 9AFDD0B925CE731000EEAF06 /* XToolsCommon_test.cpp in Sources */, + 9AA9E4F625CD283400BD5E8B /* XCinema.cpp in Sources */, + 9AA924F325CD5B2E00BD5E8B /* device_inject.cpp in Sources */, + 9AA9247F25CD5B2E00BD5E8B /* sound.cpp in Sources */, + 9AE276612B04EB27006343AB /* AppleKeyAggregator.c in Sources */, + 9AFDD0A125CE731000EEAF06 /* find_replace_mask_Clover_tests.cpp in Sources */, + 9A071C47261A44080007CC44 /* XmlLiteArrayTypes.cpp in Sources */, + 9AA9249F25CD5B2E00BD5E8B /* nvidia.cpp in Sources */, + 9AA9249B25CD5B2E00BD5E8B /* APFS.cpp in Sources */, + 9AA9257925CD770F00BD5E8B /* text.cpp in Sources */, + 9A1F87AD2642772B00884E81 /* SelfOem.cpp in Sources */, + 9A9037E725CFE7D100F14179 /* config-test.cpp in Sources */, + 9AF1EFF82634354A00F7C2C0 /* SettingsUtils.cpp in Sources */, + 9AA9E4DC25CD279200BD5E8B /* VersionString.cpp in Sources */, + 9AA9252F25CD74CC00BD5E8B /* bootscreen.cpp in Sources */, + 9AA9241725CD5B2E00BD5E8B /* BdsConnect.cpp in Sources */, + 9AFDD0B525CE731000EEAF06 /* XString_test.cpp in Sources */, + 9A36E4FC24F3B537007A1107 /* TagBool.cpp in Sources */, + 9AA9248B25CD5B2E00BD5E8B /* Nvram.cpp in Sources */, + 9AA9253F25CD765000BD5E8B /* shared_with_menu.cpp in Sources */, + 9A071C49261A44080007CC44 /* XmlLiteDictTypes.cpp in Sources */, + 9AA924DB25CD5B2E00BD5E8B /* StartupSound.cpp in Sources */, + 9AA9253B25CD764900BD5E8B /* REFIT_MENU_SCREEN.cpp in Sources */, + 9AA9259D25CD770F00BD5E8B /* lodepng.cpp in Sources */, + 9AA925B325CD79AB00BD5E8B /* icns.cpp in Sources */, + 9A36E4F424F3B537007A1107 /* plist.cpp in Sources */, + 9AA924D325CD5B2E00BD5E8B /* Events.cpp in Sources */, + 9AA924EF25CD5B2E00BD5E8B /* FixBiosDsdt.cpp in Sources */, + 9AA9248725CD5B2E00BD5E8B /* BootOptions.cpp in Sources */, + 9AA924A325CD5B2E00BD5E8B /* kext_inject.cpp in Sources */, + 9AE276632B04EB79006343AB /* MemoryTracker.cpp in Sources */, + 9AA924CB25CD5B2E00BD5E8B /* AmlGenerator.cpp in Sources */, + 9A36E4F824F3B537007A1107 /* xml.cpp in Sources */, + 9A9AEB8D243F73CE00FBD7D8 /* unicode_conversions.cpp in Sources */, + 9A1F87B12642772B00884E81 /* Config_GUI.cpp in Sources */, + 9AA9258125CD770F00BD5E8B /* nanosvgrast.cpp in Sources */, + 9AA925B725CD79AB00BD5E8B /* menu.cpp in Sources */, + 9AE276692B04EBA1006343AB /* MemoryTracker_test.cpp in Sources */, + 9AA9247725CD5B2E00BD5E8B /* kext_patcher.cpp in Sources */, + 9AA9253A25CD764900BD5E8B /* menu_items.cpp in Sources */, + 9A1F87B32642772B00884E81 /* Config_Quirks.cpp in Sources */, + 9AA9257D25CD770F00BD5E8B /* libscreen.cpp in Sources */, + 9AA925BB25CD79AB00BD5E8B /* screen.cpp in Sources */, + 9A9037E625CFE7D100F14179 /* xml_lite-test.cpp in Sources */, + 9A358B3E25CF117A00A3850D /* XmlLiteParser.cpp in Sources */, + 9AA9248F25CD5B2E00BD5E8B /* LegacyBoot.cpp in Sources */, + 9A0F1D4D2B0BDA5800F9BC7C /* MemLogLib.c in Sources */, + 9AA924FF25CD5B2E00BD5E8B /* KERNEL_AND_KEXT_PATCHES.cpp in Sources */, + 9AA9253225CD74CC00BD5E8B /* securevars.cpp in Sources */, + 9AA9242325CD5B2E00BD5E8B /* PlatformDriverOverride.cpp in Sources */, + 9AF1EFF92634354A00F7C2C0 /* Volume.cpp in Sources */, + 9AA918C725CD4CD300BD5E8B /* BmLib.cpp in Sources */, + 9AA924E725CD5B2E00BD5E8B /* gma.cpp in Sources */, + 9A7D518524FC32F700FA1CC3 /* XRBuffer.cpp in Sources */, + 9AA9257525CD770F00BD5E8B /* egemb_icons_dark.cpp in Sources */, + 9A4185C02439F73A00BEAFB8 /* XStringArray.cpp in Sources */, + 9AB67BE4261834F300CC853A /* xml_lite-reapeatingdict-test.cpp in Sources */, + 9AA924EB25CD5B2E00BD5E8B /* kernel_patcher.cpp in Sources */, + 9AA9253325CD74CC00BD5E8B /* common.cpp in Sources */, + 9AFDD09925CE731000EEAF06 /* printlib-test.cpp in Sources */, + 9AA9E50225CD2FF400BD5E8B /* Utils.cpp in Sources */, + 9AFDD0B125CE731000EEAF06 /* strncmp_test.cpp in Sources */, + 9A36E51024F3B537007A1107 /* TagArray.cpp in Sources */, + 9A272A7F25D5062E00F03E19 /* DataHub.cpp in Sources */, + 9A0D113825FF58420040555F /* strcasecmp_test.cpp in Sources */, + 9AA918C125CD4B7900BD5E8B /* lib.cpp in Sources */, + 9A1F87BB2642772B00884E81 /* Config_ACPI_DSDT.cpp in Sources */, + 9A36E4F024F3B537007A1107 /* TagString8.cpp in Sources */, + 9AFDD08D25CE731000EEAF06 /* plist_tests.cpp in Sources */, + 9AA9E53D25CD306700BD5E8B /* loader.cpp in Sources */, + 9A0F0A272B0BD0B600F9BC7C /* xcode_utf_fixed.cpp in Sources */, + 9AA924C725CD5B2E00BD5E8B /* Injectors.cpp in Sources */, + 9AA9258925CD770F00BD5E8B /* load_icns.cpp in Sources */, + 9AFDD07D25CE731000EEAF06 /* global_test.cpp in Sources */, + 9AA9246B25CD5B2E00BD5E8B /* guid.cpp in Sources */, + 9AE2765B2B04EB27006343AB /* FirmwareVolume.c in Sources */, + 9A36E50824F3B537007A1107 /* TagDate.cpp in Sources */, + 9AFDD08925CE731000EEAF06 /* printf_lite-test.cpp in Sources */, + 9AFDD09D25CE731000EEAF06 /* XStringArray_test.cpp in Sources */, + 9AA3918F25CC75420099DC1F /* Settings.cpp in Sources */, + 9AE277962B054D82006343AB /* operatorNewDelete.cpp in Sources */, + 9A36E51F24F3B82A007A1107 /* b64cdecode.cpp in Sources */, + 9AFDD08125CE731000EEAF06 /* XBuffer_tests.cpp in Sources */, + 9AA9259925CD770F00BD5E8B /* egemb_font.cpp in Sources */, + 9A1F87852642714800884E81 /* BasicIO.cpp in Sources */, + 9A36E51424F3B537007A1107 /* TagFloat.cpp in Sources */, + 9AE2765D2B04EB27006343AB /* load_bmp.c in Sources */, + 9A1F87B92642772B00884E81 /* ConfigPlistAbstract.cpp in Sources */, + 9AA9259525CD770F00BD5E8B /* image.cpp in Sources */, + 9A1F87822642714800884E81 /* abort.cpp in Sources */, + 9A0FF40A2B0BB30B00F9BC7C /* UtilsEFI.cpp in Sources */, + 9AD7B15026079F5D00E850D1 /* REFIT_MAINMENU_SCREEN.cpp in Sources */, + 9A0B085E240300E000E2B470 /* Platform.cpp in Sources */, + 9AA9E4FA25CD283400BD5E8B /* XPointer.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9AE276932B051DAB006343AB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9AE276942B051DAB006343AB /* usbfix.cpp in Sources */, + 9AE276952B051DAB006343AB /* card_vlist.cpp in Sources */, + 9AE276962B051DAB006343AB /* TagInt64.cpp in Sources */, + 9AE276972B051DAB006343AB /* SMBIOSPlist.cpp in Sources */, + 9AE276982B051DAB006343AB /* AppleImageCodec.c in Sources */, + 9AE276992B051DAB006343AB /* TagDict.cpp in Sources */, + 9AE2769A2B051DAB006343AB /* MacOsVersion.cpp in Sources */, + 9AE2769B2B051DAB006343AB /* TagData.cpp in Sources */, + 9AE2769C2B051DAB006343AB /* picopng.c in Sources */, + 9AE2769D2B051DAB006343AB /* SmbiosFillPatchingValues.cpp in Sources */, + 9AE2769F2B051DAB006343AB /* secureboot.cpp in Sources */, + 9AE276A02B051DAB006343AB /* AcpiPatcher.cpp in Sources */, + 9AE276A12B051DAB006343AB /* XBuffer.cpp in Sources */, + 9AE276A22B051DAB006343AB /* ati.cpp in Sources */, + 9AE276A32B051DAB006343AB /* Console.cpp in Sources */, + 9AE276A42B051DAB006343AB /* KextList.cpp in Sources */, + 9AE276A52B051DAB006343AB /* base64.cpp in Sources */, + 9AE276A62B051DAB006343AB /* strlen_test.cpp in Sources */, + 9AE276A72B051DAB006343AB /* XmlLiteCompositeTypes.cpp in Sources */, + 9AE276A82B051DAB006343AB /* StateGenerator.cpp in Sources */, + 9AE276AA2B051DAB006343AB /* securemenu.cpp in Sources */, + 9AE276AB2B051DAB006343AB /* XmlLiteSimpleTypes.cpp in Sources */, + 9AE276AC2B051DAB006343AB /* all_tests.cpp in Sources */, + 9AE276AD2B051DAB006343AB /* main.cpp in Sources */, + 9AE276AE2B051DAB006343AB /* XArray_tests.cpp in Sources */, + 9AE276AF2B051DAB006343AB /* XString.cpp in Sources */, + 9AE276B02B051DAB006343AB /* egemb_icons.cpp in Sources */, + 9AE276B12B051DAB006343AB /* XTheme.cpp in Sources */, + 9AE276B22B051DAB006343AB /* Volumes.cpp in Sources */, + 9AE276B32B051DAB006343AB /* clover_strlen.cpp in Sources */, + 9AE276B42B051DAB006343AB /* LegacyBiosThunk.cpp in Sources */, + 9AE276B52B051DAB006343AB /* HdaCodecDump.cpp in Sources */, + 9AE276B62B051DAB006343AB /* scroll_images.cpp in Sources */, + 9AE276B72B051DAB006343AB /* printf_lite.c in Sources */, + 9AE276B82B051DAB006343AB /* find_replace_mask_OC_tests.cpp in Sources */, + 9AE276B92B051DAB006343AB /* DataHubCpu.cpp in Sources */, + 9AE276BA2B051DAB006343AB /* TagKey.cpp in Sources */, + 9AE276BB2B051DAB006343AB /* strcmp_test.cpp in Sources */, + 9AE276BC2B051DAB006343AB /* FloatLib.cpp in Sources */, + 9A0F1D312B0BD0CF00F9BC7C /* Globals.cpp in Sources */, + 9AE276BD2B051DAB006343AB /* MacOsVersion_test.cpp in Sources */, + 9AE276BE2B051DAB006343AB /* MemoryOperation.c in Sources */, + 9AE276BF2B051DAB006343AB /* tool.cpp in Sources */, + 9AE276C02B051DAB006343AB /* lockedgraphics.cpp in Sources */, + 9AE276C12B051DAB006343AB /* ConfigManager.cpp in Sources */, + 9AE276C22B051DAB006343AB /* XIcon.cpp in Sources */, + 9AE276C32B051DAB006343AB /* smbios.cpp in Sources */, + 9AE276C42B051DAB006343AB /* LoadOptions_test.cpp in Sources */, + 9AE276C52B051DAB006343AB /* SMCHelper.c in Sources */, + 9AE276C62B051DAB006343AB /* platformdata.cpp in Sources */, + 9AE276C72B051DAB006343AB /* XImage.cpp in Sources */, + 9AE276C82B051DAB006343AB /* Edid.cpp in Sources */, + 9AE276C92B051DAB006343AB /* CloverVersion.cpp in Sources */, + 9A0F1D222B0BD0CE00F9BC7C /* AutoGen.c in Sources */, + 9AE276CA2B051DAB006343AB /* XmlLiteUnionTypes.cpp in Sources */, + 9AE276CB2B051DAB006343AB /* securehash.cpp in Sources */, + 9AE276CC2B051DAB006343AB /* legacy.cpp in Sources */, + 9AE276CD2B051DAB006343AB /* guid_tests.cpp in Sources */, + 9AE276CE2B051DAB006343AB /* VectorGraphics.cpp in Sources */, + 9AE276CF2B051DAB006343AB /* posix_additions.cpp in Sources */, + 9AE276D02B051DAB006343AB /* cpu.cpp in Sources */, + 9AE276D12B051DAB006343AB /* BootLog.cpp in Sources */, + 9AE276D22B051DAB006343AB /* spd.cpp in Sources */, + 9AE276D32B051DAB006343AB /* SafeString.c in Sources */, + 9AE276D42B051DAB006343AB /* nanosvg.cpp in Sources */, + 9AE276D52B051DAB006343AB /* XObjArray_tests.cpp in Sources */, + 9AE276D62B051DAB006343AB /* hda.cpp in Sources */, + 9AE276D72B051DAB006343AB /* load_icns.c in Sources */, + 9AE276D82B051DAB006343AB /* Self.cpp in Sources */, + 9AE276D92B051DAB006343AB /* Hibernate.cpp in Sources */, + 9AE276DA2B051DAB006343AB /* main.cpp in Sources */, + 9AE276DB2B051DAB006343AB /* XToolsCommon_test.cpp in Sources */, + 9AE276DC2B051DAB006343AB /* XCinema.cpp in Sources */, + 9AE276DD2B051DAB006343AB /* device_inject.cpp in Sources */, + 9AE276DE2B051DAB006343AB /* sound.cpp in Sources */, + 9AE276DF2B051DAB006343AB /* AppleKeyAggregator.c in Sources */, + 9AE276E02B051DAB006343AB /* find_replace_mask_Clover_tests.cpp in Sources */, + 9AE276E12B051DAB006343AB /* XmlLiteArrayTypes.cpp in Sources */, + 9AE276E22B051DAB006343AB /* nvidia.cpp in Sources */, + 9AE276E32B051DAB006343AB /* APFS.cpp in Sources */, + 9AE276E42B051DAB006343AB /* text.cpp in Sources */, + 9AE276E52B051DAB006343AB /* SelfOem.cpp in Sources */, + 9AE276E62B051DAB006343AB /* config-test.cpp in Sources */, + 9AE276E72B051DAB006343AB /* SettingsUtils.cpp in Sources */, + 9AE276E82B051DAB006343AB /* VersionString.cpp in Sources */, + 9AE276E92B051DAB006343AB /* bootscreen.cpp in Sources */, + 9AE276EA2B051DAB006343AB /* BdsConnect.cpp in Sources */, + 9AE276EB2B051DAB006343AB /* XString_test.cpp in Sources */, + 9AE276EC2B051DAB006343AB /* TagBool.cpp in Sources */, + 9AE276ED2B051DAB006343AB /* Nvram.cpp in Sources */, + 9AE276EE2B051DAB006343AB /* shared_with_menu.cpp in Sources */, + 9AE276EF2B051DAB006343AB /* XmlLiteDictTypes.cpp in Sources */, + 9AE276F02B051DAB006343AB /* StartupSound.cpp in Sources */, + 9AE276F12B051DAB006343AB /* REFIT_MENU_SCREEN.cpp in Sources */, + 9AE276F22B051DAB006343AB /* lodepng.cpp in Sources */, + 9AE276F32B051DAB006343AB /* icns.cpp in Sources */, + 9AE276F42B051DAB006343AB /* plist.cpp in Sources */, + 9AE276F52B051DAB006343AB /* Events.cpp in Sources */, + 9AE276F62B051DAB006343AB /* FixBiosDsdt.cpp in Sources */, + 9AE276F72B051DAB006343AB /* BootOptions.cpp in Sources */, + 9AE276F82B051DAB006343AB /* kext_inject.cpp in Sources */, + 9AE276F92B051DAB006343AB /* MemoryTracker.cpp in Sources */, + 9AE276FA2B051DAB006343AB /* AmlGenerator.cpp in Sources */, + 9AE276FB2B051DAB006343AB /* xml.cpp in Sources */, + 9AE276FC2B051DAB006343AB /* unicode_conversions.cpp in Sources */, + 9AE276FE2B051DAB006343AB /* Config_GUI.cpp in Sources */, + 9AE277002B051DAB006343AB /* nanosvgrast.cpp in Sources */, + 9AE277012B051DAB006343AB /* menu.cpp in Sources */, + 9AE277022B051DAB006343AB /* MemoryTracker_test.cpp in Sources */, + 9AE277032B051DAB006343AB /* kext_patcher.cpp in Sources */, + 9AE277042B051DAB006343AB /* menu_items.cpp in Sources */, + 9AE277052B051DAB006343AB /* Config_Quirks.cpp in Sources */, + 9AE277062B051DAB006343AB /* libscreen.cpp in Sources */, + 9AE277072B051DAB006343AB /* screen.cpp in Sources */, + 9AE277082B051DAB006343AB /* xml_lite-test.cpp in Sources */, + 9AE277092B051DAB006343AB /* XmlLiteParser.cpp in Sources */, + 9AE2770A2B051DAB006343AB /* LegacyBoot.cpp in Sources */, + 9A0F1D4E2B0BDA5C00F9BC7C /* MemLogLib.c in Sources */, + 9AE2770B2B051DAB006343AB /* KERNEL_AND_KEXT_PATCHES.cpp in Sources */, + 9AE2770C2B051DAB006343AB /* securevars.cpp in Sources */, + 9AE2770D2B051DAB006343AB /* PlatformDriverOverride.cpp in Sources */, + 9AE2770E2B051DAB006343AB /* Volume.cpp in Sources */, + 9AE2770F2B051DAB006343AB /* BmLib.cpp in Sources */, + 9AE277102B051DAB006343AB /* gma.cpp in Sources */, + 9AE277112B051DAB006343AB /* XRBuffer.cpp in Sources */, + 9AE277122B051DAB006343AB /* egemb_icons_dark.cpp in Sources */, + 9AE277132B051DAB006343AB /* XStringArray.cpp in Sources */, + 9AE277142B051DAB006343AB /* xml_lite-reapeatingdict-test.cpp in Sources */, + 9AE277152B051DAB006343AB /* kernel_patcher.cpp in Sources */, + 9AE277162B051DAB006343AB /* common.cpp in Sources */, + 9AE277172B051DAB006343AB /* printlib-test.cpp in Sources */, + 9AE277182B051DAB006343AB /* Utils.cpp in Sources */, + 9AE277192B051DAB006343AB /* strncmp_test.cpp in Sources */, + 9AE2771A2B051DAB006343AB /* TagArray.cpp in Sources */, + 9AE2771B2B051DAB006343AB /* DataHub.cpp in Sources */, + 9AE2771C2B051DAB006343AB /* strcasecmp_test.cpp in Sources */, + 9AE2771D2B051DAB006343AB /* lib.cpp in Sources */, + 9AE2771E2B051DAB006343AB /* Config_ACPI_DSDT.cpp in Sources */, + 9AE2771F2B051DAB006343AB /* TagString8.cpp in Sources */, + 9AE277202B051DAB006343AB /* plist_tests.cpp in Sources */, + 9AE277212B051DAB006343AB /* loader.cpp in Sources */, + 9A0F0A292B0BD0B600F9BC7C /* xcode_utf_fixed.cpp in Sources */, + 9AE277222B051DAB006343AB /* Injectors.cpp in Sources */, + 9AE277232B051DAB006343AB /* load_icns.cpp in Sources */, + 9AE277242B051DAB006343AB /* global_test.cpp in Sources */, + 9AE277252B051DAB006343AB /* guid.cpp in Sources */, + 9AE277262B051DAB006343AB /* FirmwareVolume.c in Sources */, + 9AE277272B051DAB006343AB /* TagDate.cpp in Sources */, + 9AE277282B051DAB006343AB /* printf_lite-test.cpp in Sources */, + 9AE277292B051DAB006343AB /* XStringArray_test.cpp in Sources */, + 9AE2772A2B051DAB006343AB /* Settings.cpp in Sources */, + 9AE277982B054D82006343AB /* operatorNewDelete.cpp in Sources */, + 9AE2772B2B051DAB006343AB /* b64cdecode.cpp in Sources */, + 9AE2772C2B051DAB006343AB /* XBuffer_tests.cpp in Sources */, + 9AE2772D2B051DAB006343AB /* egemb_font.cpp in Sources */, + 9AE2772E2B051DAB006343AB /* BasicIO.cpp in Sources */, + 9AE2772F2B051DAB006343AB /* TagFloat.cpp in Sources */, + 9AE277302B051DAB006343AB /* load_bmp.c in Sources */, + 9AE277312B051DAB006343AB /* ConfigPlistAbstract.cpp in Sources */, + 9AE277322B051DAB006343AB /* image.cpp in Sources */, + 9AE277332B051DAB006343AB /* abort.cpp in Sources */, + 9A0FF40C2B0BB30C00F9BC7C /* UtilsEFI.cpp in Sources */, + 9AE277342B051DAB006343AB /* REFIT_MAINMENU_SCREEN.cpp in Sources */, + 9AE277352B051DAB006343AB /* Platform.cpp in Sources */, + 9AE277362B051DAB006343AB /* XPointer.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9AE2785B2642869E005C8F2F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9AE2785C2642869E005C8F2F /* usbfix.cpp in Sources */, + 9AE2785D2642869E005C8F2F /* card_vlist.cpp in Sources */, + 9AE2785E2642869E005C8F2F /* TagInt64.cpp in Sources */, + 9AE2785F2642869E005C8F2F /* SMBIOSPlist.cpp in Sources */, + 9AE278602642869E005C8F2F /* TagDict.cpp in Sources */, + 9AE276642B04EB7A006343AB /* MemoryTracker.cpp in Sources */, + 9AE278612642869E005C8F2F /* MacOsVersion.cpp in Sources */, + 9AE278622642869E005C8F2F /* TagData.cpp in Sources */, + 9AE278632642869E005C8F2F /* SmbiosFillPatchingValues.cpp in Sources */, + 9AE278652642869E005C8F2F /* secureboot.cpp in Sources */, + 9AE278662642869E005C8F2F /* AcpiPatcher.cpp in Sources */, + 9AE278672642869E005C8F2F /* XBuffer.cpp in Sources */, + 9AE278682642869E005C8F2F /* ati.cpp in Sources */, + 9AE278692642869E005C8F2F /* Console.cpp in Sources */, + 9AE2786A2642869E005C8F2F /* KextList.cpp in Sources */, + 9AE2786B2642869E005C8F2F /* base64.cpp in Sources */, + 9AE2786C2642869E005C8F2F /* strlen_test.cpp in Sources */, + 9AE2786D2642869E005C8F2F /* XmlLiteCompositeTypes.cpp in Sources */, + 9A0F0A282B0BD0B600F9BC7C /* xcode_utf_fixed.cpp in Sources */, + 9AE2786E2642869E005C8F2F /* StateGenerator.cpp in Sources */, + 9AE278702642869E005C8F2F /* securemenu.cpp in Sources */, + 9AE278712642869E005C8F2F /* XmlLiteSimpleTypes.cpp in Sources */, + 9A7A0DB92643DFDF00FD8B2A /* main.cpp in Sources */, + 9AE278722642869E005C8F2F /* all_tests.cpp in Sources */, + 9AE278732642869E005C8F2F /* XArray_tests.cpp in Sources */, + 9AE278742642869E005C8F2F /* XString.cpp in Sources */, + 9AE278752642869E005C8F2F /* egemb_icons.cpp in Sources */, + 9AE278762642869E005C8F2F /* XTheme.cpp in Sources */, + 9AE278772642869E005C8F2F /* Volumes.cpp in Sources */, + 9AE2787A2642869E005C8F2F /* clover_strlen.cpp in Sources */, + 9AE2787B2642869E005C8F2F /* LegacyBiosThunk.cpp in Sources */, + 9AE2787C2642869E005C8F2F /* HdaCodecDump.cpp in Sources */, + 9AE2787D2642869E005C8F2F /* scroll_images.cpp in Sources */, + 9AE2787E2642869E005C8F2F /* printf_lite.c in Sources */, + 9A0F1D302B0BD0CF00F9BC7C /* Globals.cpp in Sources */, + 9AE2787F2642869E005C8F2F /* find_replace_mask_OC_tests.cpp in Sources */, + 9AE278802642869E005C8F2F /* DataHubCpu.cpp in Sources */, + 9AE278812642869E005C8F2F /* TagKey.cpp in Sources */, + 9AE278822642869E005C8F2F /* strcmp_test.cpp in Sources */, + 9AE278832642869E005C8F2F /* FloatLib.cpp in Sources */, + 9AE278842642869E005C8F2F /* MacOsVersion_test.cpp in Sources */, + 9AE278852642869E005C8F2F /* MemoryOperation.c in Sources */, + 9AE278862642869E005C8F2F /* tool.cpp in Sources */, + 9AE278872642869E005C8F2F /* lockedgraphics.cpp in Sources */, + 9AE278892642869E005C8F2F /* ConfigManager.cpp in Sources */, + 9AE2788A2642869E005C8F2F /* XIcon.cpp in Sources */, + 9AE2788B2642869E005C8F2F /* smbios.cpp in Sources */, + 9AE2788C2642869E005C8F2F /* LoadOptions_test.cpp in Sources */, + 9AE2788D2642869E005C8F2F /* platformdata.cpp in Sources */, + 9AE2788E2642869E005C8F2F /* XImage.cpp in Sources */, + 9AE2788F2642869E005C8F2F /* Edid.cpp in Sources */, + 9AE278902642869E005C8F2F /* CloverVersion.cpp in Sources */, + 9AE278912642869E005C8F2F /* XmlLiteUnionTypes.cpp in Sources */, + 9AE278922642869E005C8F2F /* securehash.cpp in Sources */, + 9AE278932642869E005C8F2F /* legacy.cpp in Sources */, + 9AE278942642869E005C8F2F /* VectorGraphics.cpp in Sources */, + 9AE278952642869E005C8F2F /* posix_additions.cpp in Sources */, + 9AE278972642869E005C8F2F /* cpu.cpp in Sources */, + 9AE278982642869E005C8F2F /* BootLog.cpp in Sources */, + 9AE278992642869E005C8F2F /* spd.cpp in Sources */, + 9AE2789A2642869E005C8F2F /* SafeString.c in Sources */, + 9AE2789B2642869E005C8F2F /* nanosvg.cpp in Sources */, + 9AE2789C2642869E005C8F2F /* XObjArray_tests.cpp in Sources */, + 9AE2789D2642869E005C8F2F /* hda.cpp in Sources */, + 9A0F1D4F2B0BDA5C00F9BC7C /* MemLogLib.c in Sources */, + 9AE2789E2642869E005C8F2F /* Self.cpp in Sources */, + 9AE2789F2642869E005C8F2F /* Hibernate.cpp in Sources */, + 9AE278A02642869E005C8F2F /* main.cpp in Sources */, + 9AE278A12642869E005C8F2F /* XToolsCommon_test.cpp in Sources */, + 9AE278A22642869E005C8F2F /* XCinema.cpp in Sources */, + 9AE278A32642869E005C8F2F /* device_inject.cpp in Sources */, + 9AE278A42642869E005C8F2F /* sound.cpp in Sources */, + 9AE278A52642869E005C8F2F /* find_replace_mask_Clover_tests.cpp in Sources */, + 9AE278A62642869E005C8F2F /* XmlLiteArrayTypes.cpp in Sources */, + 9AE278A72642869E005C8F2F /* nvidia.cpp in Sources */, + 9AE278A82642869E005C8F2F /* APFS.cpp in Sources */, + 9AE278AA2642869E005C8F2F /* text.cpp in Sources */, + 9AE278AB2642869E005C8F2F /* SelfOem.cpp in Sources */, + 9AE278AC2642869E005C8F2F /* config-test.cpp in Sources */, + 9AE278AD2642869E005C8F2F /* SettingsUtils.cpp in Sources */, + 9AE278AE2642869E005C8F2F /* VersionString.cpp in Sources */, + 9AE278AF2642869E005C8F2F /* bootscreen.cpp in Sources */, + 9AE278B02642869E005C8F2F /* BdsConnect.cpp in Sources */, + 9AE278B12642869E005C8F2F /* XString_test.cpp in Sources */, + 9AE278B22642869E005C8F2F /* TagBool.cpp in Sources */, + 9AE278B32642869E005C8F2F /* Nvram.cpp in Sources */, + 9AE278B42642869E005C8F2F /* shared_with_menu.cpp in Sources */, + 9AE2766B2B04EBB6006343AB /* MemoryTracker_test.cpp in Sources */, + 9AE2766C2B04EBBA006343AB /* guid_tests.cpp in Sources */, + 9AE278B52642869E005C8F2F /* XmlLiteDictTypes.cpp in Sources */, + 9AE278B62642869E005C8F2F /* StartupSound.cpp in Sources */, + 9AE278B72642869E005C8F2F /* REFIT_MENU_SCREEN.cpp in Sources */, + 9AE278B82642869E005C8F2F /* lodepng.cpp in Sources */, + 9AE278B92642869E005C8F2F /* icns.cpp in Sources */, + 9AE278BA2642869E005C8F2F /* plist.cpp in Sources */, + 9AE278BB2642869E005C8F2F /* Events.cpp in Sources */, + 9AE278BC2642869E005C8F2F /* FixBiosDsdt.cpp in Sources */, + 9AE278BD2642869E005C8F2F /* BootOptions.cpp in Sources */, + 9AE278BE2642869E005C8F2F /* kext_inject.cpp in Sources */, + 9AE278BF2642869E005C8F2F /* AmlGenerator.cpp in Sources */, + 9AE278C02642869E005C8F2F /* xml.cpp in Sources */, + 9AE278C12642869E005C8F2F /* unicode_conversions.cpp in Sources */, + 9AE278C32642869E005C8F2F /* Config_GUI.cpp in Sources */, + 9AE278C52642869E005C8F2F /* nanosvgrast.cpp in Sources */, + 9AE278C62642869E005C8F2F /* menu.cpp in Sources */, + 9AE277972B054D82006343AB /* operatorNewDelete.cpp in Sources */, + 9AE278C82642869E005C8F2F /* kext_patcher.cpp in Sources */, + 9AE278C92642869E005C8F2F /* menu_items.cpp in Sources */, + 9AE278CA2642869E005C8F2F /* Config_Quirks.cpp in Sources */, + 9AE278CB2642869E005C8F2F /* libscreen.cpp in Sources */, + 9AE278CC2642869E005C8F2F /* screen.cpp in Sources */, + 9AE278CD2642869E005C8F2F /* xml_lite-test.cpp in Sources */, + 9AE278CE2642869E005C8F2F /* XmlLiteParser.cpp in Sources */, + 9AE278CF2642869E005C8F2F /* LegacyBoot.cpp in Sources */, + 9AE278D02642869E005C8F2F /* KERNEL_AND_KEXT_PATCHES.cpp in Sources */, + 9AE278D12642869E005C8F2F /* securevars.cpp in Sources */, + 9AE278D22642869E005C8F2F /* PlatformDriverOverride.cpp in Sources */, + 9AE278D32642869E005C8F2F /* Volume.cpp in Sources */, + 9AE278D42642869E005C8F2F /* BmLib.cpp in Sources */, + 9AE278D52642869E005C8F2F /* gma.cpp in Sources */, + 9AE278D62642869E005C8F2F /* XRBuffer.cpp in Sources */, + 9AE278D72642869E005C8F2F /* egemb_icons_dark.cpp in Sources */, + 9AE278D82642869E005C8F2F /* XStringArray.cpp in Sources */, + 9AE278D92642869E005C8F2F /* xml_lite-reapeatingdict-test.cpp in Sources */, + 9AE278DA2642869E005C8F2F /* kernel_patcher.cpp in Sources */, + 9AE278DB2642869E005C8F2F /* common.cpp in Sources */, + 9AE278DC2642869E005C8F2F /* printlib-test.cpp in Sources */, + 9AE278DD2642869E005C8F2F /* Utils.cpp in Sources */, + 9AE278DE2642869E005C8F2F /* strncmp_test.cpp in Sources */, + 9AE278E02642869E005C8F2F /* TagArray.cpp in Sources */, + 9AE278E12642869E005C8F2F /* DataHub.cpp in Sources */, + 9AE278E22642869E005C8F2F /* strcasecmp_test.cpp in Sources */, + 9AE278E32642869E005C8F2F /* lib.cpp in Sources */, + 9AE278E42642869E005C8F2F /* Config_ACPI_DSDT.cpp in Sources */, + 9A0FF40B2B0BB30C00F9BC7C /* UtilsEFI.cpp in Sources */, + 9A0F1D492B0BD89200F9BC7C /* AutoGen.c in Sources */, + 9AE278E52642869E005C8F2F /* TagString8.cpp in Sources */, + 9AE278E62642869E005C8F2F /* plist_tests.cpp in Sources */, + 9AE278E72642869E005C8F2F /* loader.cpp in Sources */, + 9AE278E82642869E005C8F2F /* Injectors.cpp in Sources */, + 9AE278E92642869E005C8F2F /* load_icns.cpp in Sources */, + 9AE278EA2642869E005C8F2F /* global_test.cpp in Sources */, + 9AE278EB2642869E005C8F2F /* guid.cpp in Sources */, + 9AE278EC2642869E005C8F2F /* TagDate.cpp in Sources */, + 9AE278ED2642869E005C8F2F /* printf_lite-test.cpp in Sources */, + 9AE278EE2642869E005C8F2F /* XStringArray_test.cpp in Sources */, + 9AE278F02642869E005C8F2F /* Settings.cpp in Sources */, + 9AE278F12642869E005C8F2F /* b64cdecode.cpp in Sources */, + 9AE278F22642869E005C8F2F /* XBuffer_tests.cpp in Sources */, + 9AE278F32642869E005C8F2F /* egemb_font.cpp in Sources */, + 9AE278F42642869E005C8F2F /* BasicIO.cpp in Sources */, + 9AE278F52642869E005C8F2F /* TagFloat.cpp in Sources */, + 9AE278F62642869E005C8F2F /* ConfigPlistAbstract.cpp in Sources */, + 9AE278F72642869E005C8F2F /* image.cpp in Sources */, + 9AE278F82642869E005C8F2F /* abort.cpp in Sources */, + 9AE278FA2642869E005C8F2F /* REFIT_MAINMENU_SCREEN.cpp in Sources */, + 9AE278FB2642869E005C8F2F /* Platform.cpp in Sources */, + 9AE278FC2642869E005C8F2F /* XPointer.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 9A9223322402FD1000483CBA /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = NO; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_ASSIGN_ENUM = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_CXX0X_EXTENSIONS = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = NO; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_FLOAT_CONVERSION = YES; + CLANG_WARN_IMPLICIT_SIGN_CONVERSION = NO; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_EXPLICIT_OWNERSHIP_TYPE = YES; + CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_INTERFACE_IVARS = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = YES; + CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES_AGGRESSIVE; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SEMICOLON_BEFORE_METHOD_BODY = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CLANG_WARN__EXIT_TIME_DESTRUCTORS = NO; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = c11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREFIX_HEADER = ""; + GCC_PREPROCESSOR_DEFINITIONS = ( + JIEF_DEBUG, + UNIT_TESTS, + UNIT_TESTS_MACOS, + "JCONST=const", + "___NOT___ENABLE_SECURE_BOOT", + "sprintf=__sprintf_is_disabled__", + "wcscmp=__wcscmp_is_disabled__", + OC_TARGET_DEBUG, + CLOVER_BUILD, + IS_UEFI_MODULE, + ); + GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES; + GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; + GCC_WARN_ABOUT_MISSING_NEWLINE = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; + GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; + GCC_WARN_PEDANTIC = YES; + GCC_WARN_SHADOW = YES; + GCC_WARN_SIGN_COMPARE = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNKNOWN_PRAGMAS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_LABEL = YES; + GCC_WARN_UNUSED_PARAMETER = NO; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(PROJECT_DIR)/src", + "$(PROJECT_DIR)/../../PosixEFICompilation", + "$(PROJECT_DIR)/../../PosixEFICompilation/UefiMock", + "$(PROJECT_DIR)/../../PosixEFICompilation/CloverMock/Include", + "$(PROJECT_DIR)/../../Include", + "$(PROJECT_DIR)/../../IntelFrameworkPkg/Include", + "$(PROJECT_DIR)/../../UefiCpuPkg/Include", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Apple", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Intel", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Acidanthera", + "$(PROJECT_DIR)/../../OpenCorePkg", + "$(PROJECT_DIR)/../../MdePkg/Include", + "$(PROJECT_DIR)/../../MdePkg/Include/X64", + "$(PROJECT_DIR)/../../MdePkg/Include/Register/Intel", + "$(PROJECT_DIR)/../../MdeModulePkg/Include", + "$(PROJECT_DIR)/../../rEFIT_UEFI/PlatformPOSIX+EFI", + "$(PROJECT_DIR)/../../rEFIT_UEFI/PlatformPOSIX+EFI/include", + "$(PROJECT_DIR)/../../rEFIT_UEFI/include", + ); + INCLUDED_SOURCE_FILE_NAMES = ""; + LLVM_LTO = NO; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + OTHER_CFLAGS = ( + "-include", + Platform.h, + ); + OTHER_LDFLAGS = ""; + SDKROOT = macosx; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ( + "-Wno-c99-extensions", + "-Wno-gnu-zero-variadic-macro-arguments", + "-Wignored-qualifiers", + "-Wreorder", + ); + }; + name = Debug; + }; + 9A9223332402FD1000483CBA /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = NO; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_ASSIGN_ENUM = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_CXX0X_EXTENSIONS = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = NO; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_FLOAT_CONVERSION = YES; + CLANG_WARN_IMPLICIT_SIGN_CONVERSION = NO; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_EXPLICIT_OWNERSHIP_TYPE = YES; + CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_INTERFACE_IVARS = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = YES; + CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES_AGGRESSIVE; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SEMICOLON_BEFORE_METHOD_BODY = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CLANG_WARN__EXIT_TIME_DESTRUCTORS = NO; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = c11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREFIX_HEADER = ""; + GCC_PREPROCESSOR_DEFINITIONS = ( + UNIT_TESTS, + UNIT_TESTS_MACOS, + "JCONST=const", + "___NOT___ENABLE_SECURE_BOOT", + "sprintf=__sprintf_is_disabled__", + "wcscmp=__wcscmp_is_disabled__", + ); + GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES; + GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; + GCC_WARN_ABOUT_MISSING_NEWLINE = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; + GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; + GCC_WARN_PEDANTIC = YES; + GCC_WARN_SHADOW = YES; + GCC_WARN_SIGN_COMPARE = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNKNOWN_PRAGMAS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_LABEL = YES; + GCC_WARN_UNUSED_PARAMETER = NO; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(PROJECT_DIR)/src", + "$(PROJECT_DIR)/../../PosixEFICompilation", + "$(PROJECT_DIR)/../../PosixEFICompilation/UefiMock", + "$(PROJECT_DIR)/../../PosixEFICompilation/CloverMock/Include", + "$(PROJECT_DIR)/../../Include", + "$(PROJECT_DIR)/../../IntelFrameworkPkg/Include", + "$(PROJECT_DIR)/../../UefiCpuPkg/Include", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Apple", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Intel", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Acidanthera", + "$(PROJECT_DIR)/../../OpenCorePkg", + "$(PROJECT_DIR)/../../MdePkg/Include", + "$(PROJECT_DIR)/../../MdePkg/Include/X64", + "$(PROJECT_DIR)/../../MdePkg/Include/Register/Intel", + "$(PROJECT_DIR)/../../MdeModulePkg/Include", + "$(PROJECT_DIR)/../../rEFIT_UEFI/PlatformPOSIX+EFI", + "$(PROJECT_DIR)/../../rEFIT_UEFI/PlatformPOSIX+EFI/include", + "$(PROJECT_DIR)/../../rEFIT_UEFI/include", + ); + INCLUDED_SOURCE_FILE_NAMES = ""; + LLVM_LTO = YES; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + OTHER_CFLAGS = ( + "-include", + Platform.h, + ); + OTHER_LDFLAGS = ""; + SDKROOT = macosx; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ( + "-Wno-c99-extensions", + "-Wno-gnu-zero-variadic-macro-arguments", + "-Wignored-qualifiers", + "-Wreorder", + ); + }; + name = Release; + }; + 9A9223352402FD1000483CBA /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "wcslen=wcslen_fixed", + "wcsncmp=wcsncmp_fixed", + "wcsstr=wcsstr_fixed", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + OTHER_CFLAGS = ( + "$(inherited)", + "-fshort-wchar", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 9A9223362402FD1000483CBA /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "wcslen=wcslen_fixed", + "wcsncmp=wcsncmp_fixed", + "wcsstr=wcsstr_fixed", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + OTHER_CFLAGS = ( + "$(inherited)", + "-fshort-wchar", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; + 9AE277912B051DAB006343AB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + OTHER_CFLAGS = "$(inherited)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 9AE277922B051DAB006343AB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + OTHER_CFLAGS = "$(inherited)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; + 9AE277932B051DAB006343AB /* Release_nolto */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + OTHER_CFLAGS = "$(inherited)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release_nolto; + }; + 9AE27858264285C5005C8F2F /* Release_nolto */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = NO; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_ASSIGN_ENUM = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_CXX0X_EXTENSIONS = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = NO; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_FLOAT_CONVERSION = YES; + CLANG_WARN_IMPLICIT_SIGN_CONVERSION = NO; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_EXPLICIT_OWNERSHIP_TYPE = YES; + CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_INTERFACE_IVARS = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = YES; + CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES_AGGRESSIVE; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SEMICOLON_BEFORE_METHOD_BODY = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CLANG_WARN__EXIT_TIME_DESTRUCTORS = NO; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = c11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREFIX_HEADER = ""; + GCC_PREPROCESSOR_DEFINITIONS = ( + UNIT_TESTS, + UNIT_TESTS_MACOS, + "JCONST=const", + "___NOT___ENABLE_SECURE_BOOT", + "sprintf=__sprintf_is_disabled__", + "wcscmp=__wcscmp_is_disabled__", + ); + GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES; + GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; + GCC_WARN_ABOUT_MISSING_NEWLINE = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; + GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; + GCC_WARN_PEDANTIC = YES; + GCC_WARN_SHADOW = YES; + GCC_WARN_SIGN_COMPARE = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNKNOWN_PRAGMAS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_LABEL = YES; + GCC_WARN_UNUSED_PARAMETER = NO; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(PROJECT_DIR)/src", + "$(PROJECT_DIR)/../../PosixEFICompilation", + "$(PROJECT_DIR)/../../PosixEFICompilation/UefiMock", + "$(PROJECT_DIR)/../../PosixEFICompilation/CloverMock/Include", + "$(PROJECT_DIR)/../../Include", + "$(PROJECT_DIR)/../../IntelFrameworkPkg/Include", + "$(PROJECT_DIR)/../../UefiCpuPkg/Include", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Apple", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Intel", + "$(PROJECT_DIR)/../../OpenCorePkg/Include/Acidanthera", + "$(PROJECT_DIR)/../../OpenCorePkg", + "$(PROJECT_DIR)/../../MdePkg/Include", + "$(PROJECT_DIR)/../../MdePkg/Include/X64", + "$(PROJECT_DIR)/../../MdePkg/Include/Register/Intel", + "$(PROJECT_DIR)/../../MdeModulePkg/Include", + "$(PROJECT_DIR)/../../rEFIT_UEFI/PlatformPOSIX+EFI", + "$(PROJECT_DIR)/../../rEFIT_UEFI/PlatformPOSIX+EFI/include", + "$(PROJECT_DIR)/../../rEFIT_UEFI/include", + ); + INCLUDED_SOURCE_FILE_NAMES = ""; + LLVM_LTO = NO; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + OTHER_CFLAGS = ( + "-include", + Platform.h, + ); + OTHER_LDFLAGS = ""; + SDKROOT = macosx; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ( + "-Wno-c99-extensions", + "-Wno-gnu-zero-variadic-macro-arguments", + "-Wignored-qualifiers", + "-Wreorder", + ); + }; + name = Release_nolto; + }; + 9AE27859264285C5005C8F2F /* Release_nolto */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "wcslen=wcslen_fixed", + "wcsncmp=wcsncmp_fixed", + "wcsstr=wcsstr_fixed", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = 13.0; + OTHER_CFLAGS = ( + "$(inherited)", + "-fshort-wchar", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release_nolto; + }; + 9AE279532642869E005C8F2F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "wcslen=wcslen_fixed", + "wcsncmp=wcsncmp_fixed", + "wcsstr=wcsstr_fixed", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; + OTHER_CFLAGS = ( + "$(inherited)", + "-fshort-wchar", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 9AE279542642869E005C8F2F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "wcslen=wcslen_fixed", + "wcsncmp=wcsncmp_fixed", + "wcsstr=wcsstr_fixed", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; + OTHER_CFLAGS = ( + "$(inherited)", + "-fshort-wchar", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; + 9AE279552642869E005C8F2F /* Release_nolto */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "wcslen=wcslen_fixed", + "wcsncmp=wcsncmp_fixed", + "wcsstr=wcsstr_fixed", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; + OTHER_CFLAGS = ( + "$(inherited)", + "-fshort-wchar", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release_nolto; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 9A9223282402FD1000483CBA /* Build configuration list for PBXProject "CloverMacOsApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9A9223322402FD1000483CBA /* Debug */, + 9A9223332402FD1000483CBA /* Release */, + 9AE27858264285C5005C8F2F /* Release_nolto */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9A9223342402FD1000483CBA /* Build configuration list for PBXNativeTarget "CloverMacOsApp-UTF16_signed-DebugLibs" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9A9223352402FD1000483CBA /* Debug */, + 9A9223362402FD1000483CBA /* Release */, + 9AE27859264285C5005C8F2F /* Release_nolto */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9AE277902B051DAB006343AB /* Build configuration list for PBXNativeTarget "CloverMacOsApp-UTF32_signed-DebugLibs" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9AE277912B051DAB006343AB /* Debug */, + 9AE277922B051DAB006343AB /* Release */, + 9AE277932B051DAB006343AB /* Release_nolto */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9AE279522642869E005C8F2F /* Build configuration list for PBXNativeTarget "CloverMacOsApp-UTF16_signed-ReleaseLibs" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9AE279532642869E005C8F2F /* Debug */, + 9AE279542642869E005C8F2F /* Release */, + 9AE279552642869E005C8F2F /* Release_nolto */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 9A9223252402FD1000483CBA /* Project object */; +} diff --git a/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/xcshareddata/xcschemes/CloverMacOsApp-UTF16.xcscheme b/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/xcshareddata/xcschemes/CloverMacOsApp-UTF16.xcscheme new file mode 100644 index 0000000000..f43f8a6bfd --- /dev/null +++ b/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/xcshareddata/xcschemes/CloverMacOsApp-UTF16.xcscheme @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/xcshareddata/xcschemes/CloverMacOsApp-UTF32.xcscheme b/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/xcshareddata/xcschemes/CloverMacOsApp-UTF32.xcscheme new file mode 100644 index 0000000000..3899ef45d6 --- /dev/null +++ b/Xcode/CloverMacOsApp/CloverMacOsApp.xcodeproj/xcshareddata/xcschemes/CloverMacOsApp-UTF32.xcscheme @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Xcode/CloverMacOsApp/DSDT_before_AIRPORT.bin b/Xcode/CloverMacOsApp/DSDT_before_AIRPORT.bin new file mode 100755 index 0000000000..4773f188a2 Binary files /dev/null and b/Xcode/CloverMacOsApp/DSDT_before_AIRPORT.bin differ diff --git a/Xcode/CloverMacOsApp/Include/poolprint-test-cpp_conf.h b/Xcode/CloverMacOsApp/Include/poolprint-test-cpp_conf.h new file mode 100644 index 0000000000..de155e67c8 --- /dev/null +++ b/Xcode/CloverMacOsApp/Include/poolprint-test-cpp_conf.h @@ -0,0 +1,13 @@ + +#include "../../../Include/Library/printf_lite.h" +#define F(x) x +#define LF(x) L##x +#define PRIF "%a" +#define PRILF "%s" + +//#define loggf(...) printf__VA_ARGS__) +#define loggf(...) printf(__VA_ARGS__) + +//#define DISPLAY_ONLY_FAILED +#define DISPLAY_START_INFO + diff --git a/Xcode/CloverMacOsApp/Include/poolprintfloat-test-cpp_conf.h b/Xcode/CloverMacOsApp/Include/poolprintfloat-test-cpp_conf.h new file mode 100644 index 0000000000..b338137bce --- /dev/null +++ b/Xcode/CloverMacOsApp/Include/poolprintfloat-test-cpp_conf.h @@ -0,0 +1,12 @@ + +#define F(x) x +#define LF(x) L##x +#define PRIF "%a" +#define PRILF "%s" + +#define loggf(...) printf__VA_ARGS__) +//#define loggf(...) printf(__VA_ARGS__) + +#define DISPLAY_ONLY_FAILED +//#define DISPLAY_START_INFO + diff --git a/Xcode/CloverMacOsApp/config-small.plist b/Xcode/CloverMacOsApp/config-small.plist new file mode 100644 index 0000000000..0a53cffcce --- /dev/null +++ b/Xcode/CloverMacOsApp/config-small.plist @@ -0,0 +1,9 @@ + + + + + SMBIOS + + + + diff --git a/Xcode/CloverMacOsApp/config-test1.plist b/Xcode/CloverMacOsApp/config-test1.plist new file mode 100644 index 0000000000..8eef8d8e61 --- /dev/null +++ b/Xcode/CloverMacOsApp/config-test1.plist @@ -0,0 +1,1723 @@ + + + + + ACPI + + AutoMerge + + DSDT + + Debug + + Fixes + + #AddDTGP_0001 + + AddDTGP_0001 + + AddHDMI_8000000 + + AddIMEI_80000 + + AddMCHC_0008 + + AddPNLF_1000000 + + DeleteUnused_400000 + + FIX_ACST_4000000 + + FIX_ADP1_800000 + + FIX_INTELGFX_100000 + + FIX_RTC_20000 + + FIX_S3D_2000000 + + FIX_TMR_40000 + + FIX_WAK_200000 + + FakeLPC_0020 + + FixAirport_4000 + + FixDarwin + + FixDarwin7_10000 + + FixDisplay + + FixFirewire_0800 + + FixHDA_8000 + + FixHPET_0010 + + FixHeaders_20000000 + + FixIDE_0200 + + FixIPIC_0040 + + FixLAN_2000 + + FixRegions_10000000 + + FixSATA_0400 + + FixSBUS_0080 + + FixShutdown_0004 + + FixUSB_1000 + + + Name + aa + Patches + + + Comment + ACPI1 + Disabled + + Find + + AA== + + Replace + + AQ== + + + + Comment + ACPI2 + Disabled + + Find + + Ag== + + Replace + + Aw== + + + + Comment + change EHC1 to EH01 + Disabled + + Find + + RUhDMQ== + + Replace + + RUgwMQ== + + + + ReuseFFFF + + Rtc8Allowed + + SuspendOverride + + + DisableASPM + + DisabledAML + + aa + bb + #bb + cc + + DropTables + + + Signature + SSDT + TableId + CpuPm + Length + 12 + DropForAllOS + yes + + + HaltEnabler + + PatchAPIC + + ResetAddress + 0 + ResetValue + 02 + SSDT + + C3Latency + 0xd + DoubleFirstState + + DropOem + + EnableC2 + + EnableC4 + + EnableC6 + + EnableC7 + + #Generate + + CStates + + PStates + + + Generate + + CStates + + PStates + + + MaxMultiplier + 12 + MinMultiplier + 11 + PLimitDict + 2 + PluginType + 1 + UnderVoltStep + 5 + UseSystemIO + + + SortedOrder + + dd + cc + + smartUPS + No + #smartUPS + + #RenameDevices + + _SBZZZ.PCI0.RP02.PXSX + bb + c + + + RenameDevices + + + _SB.PCI0.RP05.PXSX + UPSB + _SB.PCI0.RP05.PXSY + UPSY + + + _SB.PCI0.RP05.UPSB.DSB1.NHI0 + UPS0 + + + _SB.PCI0.RP03.PXSX + BRG3 + + + + Boot + + Arguments + -v arch=i386 slide=0 dart=0 -xcpm darkwake=1 npci=0x2000 nv_disable=1 cpus=1 rootless=0 debug=0x100 aa + BlackList + + hh + + CustomLogo + Apple + Debug + + DefaultLoader + ii + DefaultVolume + LastBootedVolume + DisableCloverHotkeys + + HibernationFixup + + Legacy + LegacyBiosDefault + LegacyBiosDefaultEntry + 12 + NeverDoRecovery + + NeverHibernate + + NoEarlyProgress + + Policy + Allow + Secure + + SignatureFixup + + SkipHibernateTimeout + + StrictHibernate + + Timeout + -1 + WhiteList + + ff + gg + + XMPDetection + 1 + + BootGraphics + + DefaultBackgroundColor + 0xF1F1F1 + EFILoginHiDPI + 2 + UIScale + 4 + flagstate + 3 + + CPU + + BusSpeedkHz + 800 + C2 + + #C4 + + C6 + + FrequencyMHz + 2000 + HWPEnable + + HWPValue + 0x7 + Latency + 0x3 + QEMU + + QPI + 4 + TDP + 6 + TurboDisable + + Type + 0x5 + UseARTFrequency + + + Devices + + Properties + + #Properties_key1 + + pci-aspm-default + 0 + AAPL,GfxYTile + + AQAAAA== + + AAPL,ig-platform-id + + AAAbWQ== + + AAPL,slot-name + Internal@0,2,0 + device-id + + G1kAAA== + + + Test2 + + Test2Key1 + AQAAAA== + Test2Key2 + Test2Value2 + + !PrimaryGPU + + TestPrimaryGPU + AQAAAA== + Test2Key2 + Test2Value2 + + SecondaryGPU + + Test2SecondaryGPU + AQAAAA== + Test2Key2 + Test2Value2 + + + #Arbitrary + + + Comment + C1 + PciAddr + 00:00.01 + CustomProperties + + + Disabled + + Key + ll + Value + mm + + + Disabled + + Key + nn + Value + 1 + + + Disabled + + Key + oo + Value + + Ag== + + + + + + AddProperties + + + Device + SATA + Disabled + + Key + 10 + Value + 11 + + + AirportBridgeDeviceName + airp + Audio + + AFGLowPowerState + + Inject + 0x11 + ResetHDA + + + DisableFunctions + 0x18F6 + FakeID + + ATI + 0x22221002 + IMEI + 0x22221002 + IntelGFX + 0x22221002 + LAN + 0x22221002 + NVidia + 0x22221002 + SATA + 0x22221002 + WIFI + 0x22221002 + XHCI + 0x22221002 + + ForceHPET + + Inject + + IntelMaxValue + 0x710 + NoDefaultProperties + + SetIntelBacklight + + SetIntelMaxBacklight + + USB + + AddClockID + + FixOwnership + + HighCurrent + + Inject + + + UseIntelHDMI + + + DisableDrivers + + Ps2KeyboardDxe + OsxAptioFixDrv + + + GUI + + EmbeddedThemeType + Dark + ConsoleMode + Max + Mouse + + DoubleClickTime + 501 + Enabled + + Mirror + + Speed + 5 + + Custom + + Entries + + + AddArguments + addarg + #Arguments + arg + BootBgColor + bootbgcolor + CustomLogo + Apple + Disabled + + DriveImage + driveimage + FullTitle + title + Hidden + Always + Hotkey + H + Image + image + Path + path + Settings + settings + SubEntries + + + AddArguments + arg2 + FullTitle + title111 + + + AddArguments + arg3 + Title + title2 + + + Arguments + arg4 + FullTitle + title3 + + + AddArguments + arg5 + Title + title4 + + + Type + Oldest + Volume + v1 + VolumeType + Internal + + + Legacy + + + Disabled + + FullTitle + title + Hidden + + Hotkey + I + Type + Windows + Volume + v2 + + + Tool + + + Arguments + b + Disabled + + Hidden + + Hotkey + b + Path + path + Title + title + Volume + tool1 + + + + CustomIcons + + Hide + + sdfsdfdf + sdfsfdf + + Language + es + Scan + + Entries + + Tool + + Linux + + Legacy + + Kernel + + + ScreenResolution + 1366x768 + ShowOptimus + + TextOnly + + Theme + theme + + Graphics + + ATI + + + IOPCIPrimaryMatch + 0x1002888 + IOPCISubDevId + 0x106B + LoadVBios + + Model + cc + VRAM + 2000 + VideoPorts + 3 + + + IOPCIPrimaryMatch + 0x1002888 + IOPCISubDevId + 0x106B + LoadVBios + + Model + cc + VRAM + 2000 + VideoPorts + 3 + + + NVIDIA + + + IOPCIPrimaryMatch + 0x10DE999 + IOPCISubDevId + 0x106B + LoadVBios + + Model + aa + VRAM + 1000 + VideoPorts + 1 + + + IOPCIPrimaryMatch + 0x10DE999 + IOPCISubDevId + 0x106B + LoadVBios + + Model + bb + VRAM + 1000 + VideoPorts + 2 + + + BootDisplay + 12 + DualLink + 1 + EDID + + Custom + AP///////wBMo0cwAAAAAAAUAQOAHBB46h2FkVZZjyYYUFQAAAABAQEBAQEBAQEBAQEBAQEBOB1W1FAAFjAwICUAFZwQAAAZAAAADwAAAAAAAAAAACXZBmoAAAAA/gBTQU1TVU5HCiBMo0FUAAAA/gBMVE4xMjVBVDAxNDAxAF0= + Inject + + ProductID + 0x9777 + VendorID + 0x1007 + + FBName + Exmoor + Inject + + LoadVBios + + NVCAP + 0304 + NvidiaGeneric + + NvidiaNoEFI + + NvidiaSingle + + PatchVBios + + PatchVBiosBytes + + + Find + + AwQF + + Replace + + BgcI + + + + VRAM + 1500 + VideoPorts + 2 + display-cfg + 04 + ig-platform-id + 0x59230000 + + KernelAndKextPatches + + ATIConnectorsController + ATICtl + ATIConnectorsData + 111213 + ATIConnectorsPatch + 141516 + AppleIntelCPUPM + + AppleRTC + + BootPatches + + + Comment + c3 + Disabled + + Find + + MTI= + + MatchBuild + 10.12.6 + MatchOS + 10.12 + Replace + + MzQ= + + + + Debug + + DellSMBIOSPatch + + FakeCPUID + 0x0306D0 + ForceKextsToLoad + + + \ + ForceKext + + KernelLapic + + KernelPm + + KernelToPatch + + + #Comment + Disable panic kext logging on 10.14 Release kernel + Disabled + + Find + + igKEwHRC + + MaskFind + + //////// + + MaskReplace + + AAAAAP8A + + MatchOS + 10.14 + Replace + + igKEwOtC + + + + Comment + Disable panic kext logging on 10.13 Release kernel + Disabled + + Find + + igKEwHRE + + MatchOS + 10.13 + Replace + + igKEwOtE + + + + Comment + Lapic panic patch example + Disabled + + Find + + 6AAA//+DAAAAAAAA + + MaskFind + + /wAA////AAAAAP// + + MaskReplace + + /wAA//////////// + + MaskStart + + /////wA= + + MatchOS + All + RangeFind + 200 + Replace + + 6AAA//8xwJCQkJCQ + + StartPattern + + ACnHeAAx241H+oM= + + + + Comment + Symbolic patch example got lapic panic + Disabled + + Find + + 6AAA//+DAAAAAAAA + + MaskFind + + /wAA////AAAAAP// + + MaskReplace + + /wAA//////////// + + MatchOS + All + Procedure + _lapic_interrupt + RangeFind + 200 + Replace + + 6AAA//8xwJCQkJCQ + + + + KernelXCPM + + KextsToPatch + + + Comment + Enable TRIM for SSD + Find + 01 + Replace + 02 + + + Comment + External icons patch + Disabled + + Find + + RXh0ZXJuYWw= + + InfoPlistPatch + + MatchOS + 10.11.x,10.12.x,10.13.x,10.14.x,10.15.x + Name + com.apple.driver.AppleAHCIPort + Replace + + SW50ZXJuYWw= + + + + Comment + framebuffer4K + Disabled + + Find + + AwAiDQADAwMAAAACAAAwAQ== + + InfoPlistPatch + + Name + AppleIntelFramebufferAzul + Replace + + AwAiDQADAwMAAAAEAAAAAw== + + + + Comment + Disable NVDARequiredOS + Disabled + + Find + + TlZEQVJlcXVpcmVkT1MA + + InfoPlistPatch + + Name + NVDAStartupWeb + Replace + + AAAAAAAAAAAAAAAAAAAA + + + + Comment + Disable board-id check to prevent no signal + Disabled + + Find + + SI01qjQ= + + InfoPlistPatch + + Name + com.apple.driver.AppleGraphicsDevicePolicy + Replace + + Dx+AAAA= + + + + Comment + Prevent AGDP from loading + Disabled + + Find + + ugUAAAA= + + InfoPlistPatch + + MatchOS + 10.15.x + Name + com.apple.driver.AppleGraphicsDevicePolicy + Replace + + ugAAAAA= + + + + Comment + Atheros Locale Fix + Disabled + + Find + + g/g3 + + InfoPlistPatch + + MatchOS + 10.12.x + Name + AirPortAtheros40 + Replace + + g/gh + + + + Comment + IONVMeFamily IONameMatch + Disabled + + Find + + PHN0cmluZz5wY2kxNDRkLGE4MDQ8L3N0cmluZz4= + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + PHN0cmluZz5wY2kxNDRkLGE4MDI8L3N0cmluZz4= + + + + Comment + IONVMeFamily Pike R. Alpha Patch#1 (Sierra) + Disabled + + Find + + ibPoAgAAweAMBQAQAACJgw== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + ibPoAgAAweAJBQAQAACJgw== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#2 (Sierra) + Disabled + + Find + + D7aMiIIAAACD+QwPhTIBAA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + D7aMiIIAAACD+QkPhTIBAA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#3 (Sierra) + Disabled + + Find + + AMeDpAAAAAAQAABIi0gISA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + AMeDpAAAAAACAABIi0gISA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#4 (Sierra) + Disabled + + Find + + SYnGTYX2dGFBwecMSWP/vg== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + SYnGTYX2dGFBwecJSWP/vg== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#5 (Sierra) + Disabled + + Find + + hv8PAABIwegMD7cPgeH/Dw== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + hv8PAABIwegJD7cPgeH/Dw== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#6_7 (Sierra) + Disabled + + Find + + icGB4f8PAABIAdFIgfn/DwAAdzs= + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + icGB4f8BAABIAdFIgfn/AQAAdzs= + + + + Comment + IONVMeFamily Pike R. Alpha Patch#8 (Sierra) + Disabled + + Find + + SYHF/w8AAEnB7QxJiwQkSA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + SYHF/w8AAEnB7QlJiwQkSA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#9_10 (Sierra) + Disabled + + Find + + BgIAAEyNuAAQAABMiflIgeEA8P//SYmGGgEAAEmJjiIB + AABBvAAQAABJKfQ= + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + BgIAAEyNuAACAABMiflIgeEA8P//SYmGGgEAAEmJjiIB + AABBvAACAABJKfQ= + + + + Comment + IONVMeFamily Pike R. Alpha Patch#11 (Sierra) + Disabled + + Find + + AABJiY4iAQAAugAQAABIKQ== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + AABJiY4iAQAAugACAABIKQ== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#12 (Sierra) + Disabled + + Find + + yAAAAEkp17gAEAAATYskJA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + yAAAAEkp17gAAgAATYskJA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#13 (Sierra) + Disabled + + Find + + 4b+AQBUGTYnWugAQAABFMQ== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + 4b+AQBUGTYnWugACAABFMQ== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#14 (Sierra) + Disabled + + Find + + iWTY+EmBxAAQAABJgccA8A== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + iWTY+EmBxAACAABJgccA8A== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#15 (Sierra) + Disabled + + Find + + Bf8PAABIwegMZvfB/w8PlQ== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + Bf8PAABIwegJZvfB/w8PlQ== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#16 (Sierra) + Disabled + + Find + + weIIQQ+2wcHgDEQJ0EQJwA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + weIIQQ+2wcHgCUQJ0EQJwA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#17 (Sierra) + Disabled + + Find + + RYTJD5XAD7bAweAMRAnYRA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + RYTJD5XAD7bAweAJRAnYRA== + + + + Comment + change 15 port limit to 26 in XHCI kext (100-series) + Disabled + + Find + + g32MEA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + AppleUSBXHCIPCI + Replace + + g32MGw== + + + + Comment + change 15 port limit to 26 in XHCI kext (100-series) + Disabled + + Find + + g710////EA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + AppleUSBXHCISPT + Replace + + g710////Gw== + + + + Comment + 15 to 20 port limit (9-series) + Disabled + + Find + + g710////EA== + + InfoPlistPatch + + MatchOS + 10.12.6 + Name + AppleUSBXHCIPCI + Replace + + g710////FQ== + + + + Comment + 15 to 26 port limit (100-series) + Disabled + + Find + + g710////EA== + + InfoPlistPatch + + MatchOS + 10.12.6 + Name + AppleUSBXHCIPCI + Replace + + g710////Gw== + + + + Comment + USB 10.13.6 by PMHeart + Disabled + + Find + + g32IDw+DpwQAAA== + + InfoPlistPatch + + MatchOS + 10.13.6 + Name + com.apple.driver.usb.AppleUSBXHCI + Replace + + g32ID5CQkJCQkA== + + + + + RtVariables + + BooterConfig + 0x1 + CsrActiveConfig + 0x2 + MLB + 12345678901234567 + ROM + + MBRwYnHo + + Block + + + Comment + c1 + Disabled + false + Guid + 522e186f-964a-4ac7-9299-7a9f32a2473e + Name + name1 + + + + SMBIOS + + SmbiosVersion + 36 + BiosReleaseDate + 08/08/17 + BiosVendor + Apple Inc. + BiosVersion + MBP81.88Z.004D.B00.1708080655 + Board-ID + Mac-94245B3640C91C81 + BoardManufacturer + Apple Inc. + BoardSerialNumber + W89135306OPDM6CAD + BoardType + 10 + BoardVersion + 1.0 + ChassisAssetTag + MacBook-Aluminum + ChassisManufacturer + Apple Inc. + ChassisType + 0x0A + Family + MacBook Pro + FirmwareFeatures + 0xC00DE137 + FirmwareFeaturesMask + 0xFF1FFF3F + LocationInChassis + Part Component + Manufacturer + Apple Inc. + Memory + + Channels + 2 + Modules + + + Frequency + 333 + Part + Part1 + Serial + Ser1 + Size + 2048 + Slot + 1 + Type + DDR + Vendor + v1 + + + Frequency + 366 + Part + Part2 + Serial + Ser2 + Size + 4096 + Slot + 2 + Type + DDR2 + Vendor + v2 + + + Frequency + 366 + Part + Part2 + Serial + Ser2 + Size + 8192 + Slot + 4 + #Type + DDR2 + Vendor + v2 + + + SlotCount + 8 + + Mobile + + PlatformFeature + 0xFFFF + ProductName + MacBookPro8,1 + SerialNumber + W89G91VFDH2G + Slots + + + Device + HDMI + + + Device + NVidia + ID + 1 + Name + APPL,sdfsdf + Type + 1 + + + SmUUID + F1AB23C0-C35A-473E-BDB7-455C3A6271E8 + Version + 1.0 + Trust + + MemoryRank + 2 + + SystemParameters + + BacklightLevel + 2 + CustomUUID + 2926A57C-FF0E-4A64-980F-23483BD41969 + InjectKexts + Yes + InjectSystemID + + NoCaches + + NvidiaWeb + + + Quirks + + AvoidRuntimeDefrag + + DevirtualiseMmio + + DisableSingleUser + + DisableVariableWrite + + DiscardHibernateMap + + EnableSafeModeSlide + + EnableWriteUnprotector + + ForceExitBootServices + + MmioWhitelist + + + Comment + c1 + Address + 12345678 + Enabled + + + + Comment + + Address + 12345678 + Enabled + + + + #Comment + c1 + Address + abcde + Enabled + + + + ProtectMemoryRegions + + ProtectSecureBoot + + ProtectUefiServices + + ProvideConsoleGopEnable + + ProvideCustomSlide + + ProvideMaxSlide + 0 + RebuildAppleMemoryMap + + SetupVirtualMap + + SignalAppleOS + + SyncRuntimePermissions + + + + FuzzyMatch + + KernelCache + Auto + AppleXcpmExtraMsrs + + AppleXcpmForceBoost + + DisableIoMapper + + DisableLinkeditJettison + + DummyPowerManagement + + ExternalDiskIcons + + IncreasePciBarSize + + PowerTimeoutKernelPanic + + ThirdPartyDrives + + XhciPortLimit + + + + diff --git a/Xcode/CloverMacOsApp/config.plist b/Xcode/CloverMacOsApp/config.plist new file mode 100644 index 0000000000..8eef8d8e61 --- /dev/null +++ b/Xcode/CloverMacOsApp/config.plist @@ -0,0 +1,1723 @@ + + + + + ACPI + + AutoMerge + + DSDT + + Debug + + Fixes + + #AddDTGP_0001 + + AddDTGP_0001 + + AddHDMI_8000000 + + AddIMEI_80000 + + AddMCHC_0008 + + AddPNLF_1000000 + + DeleteUnused_400000 + + FIX_ACST_4000000 + + FIX_ADP1_800000 + + FIX_INTELGFX_100000 + + FIX_RTC_20000 + + FIX_S3D_2000000 + + FIX_TMR_40000 + + FIX_WAK_200000 + + FakeLPC_0020 + + FixAirport_4000 + + FixDarwin + + FixDarwin7_10000 + + FixDisplay + + FixFirewire_0800 + + FixHDA_8000 + + FixHPET_0010 + + FixHeaders_20000000 + + FixIDE_0200 + + FixIPIC_0040 + + FixLAN_2000 + + FixRegions_10000000 + + FixSATA_0400 + + FixSBUS_0080 + + FixShutdown_0004 + + FixUSB_1000 + + + Name + aa + Patches + + + Comment + ACPI1 + Disabled + + Find + + AA== + + Replace + + AQ== + + + + Comment + ACPI2 + Disabled + + Find + + Ag== + + Replace + + Aw== + + + + Comment + change EHC1 to EH01 + Disabled + + Find + + RUhDMQ== + + Replace + + RUgwMQ== + + + + ReuseFFFF + + Rtc8Allowed + + SuspendOverride + + + DisableASPM + + DisabledAML + + aa + bb + #bb + cc + + DropTables + + + Signature + SSDT + TableId + CpuPm + Length + 12 + DropForAllOS + yes + + + HaltEnabler + + PatchAPIC + + ResetAddress + 0 + ResetValue + 02 + SSDT + + C3Latency + 0xd + DoubleFirstState + + DropOem + + EnableC2 + + EnableC4 + + EnableC6 + + EnableC7 + + #Generate + + CStates + + PStates + + + Generate + + CStates + + PStates + + + MaxMultiplier + 12 + MinMultiplier + 11 + PLimitDict + 2 + PluginType + 1 + UnderVoltStep + 5 + UseSystemIO + + + SortedOrder + + dd + cc + + smartUPS + No + #smartUPS + + #RenameDevices + + _SBZZZ.PCI0.RP02.PXSX + bb + c + + + RenameDevices + + + _SB.PCI0.RP05.PXSX + UPSB + _SB.PCI0.RP05.PXSY + UPSY + + + _SB.PCI0.RP05.UPSB.DSB1.NHI0 + UPS0 + + + _SB.PCI0.RP03.PXSX + BRG3 + + + + Boot + + Arguments + -v arch=i386 slide=0 dart=0 -xcpm darkwake=1 npci=0x2000 nv_disable=1 cpus=1 rootless=0 debug=0x100 aa + BlackList + + hh + + CustomLogo + Apple + Debug + + DefaultLoader + ii + DefaultVolume + LastBootedVolume + DisableCloverHotkeys + + HibernationFixup + + Legacy + LegacyBiosDefault + LegacyBiosDefaultEntry + 12 + NeverDoRecovery + + NeverHibernate + + NoEarlyProgress + + Policy + Allow + Secure + + SignatureFixup + + SkipHibernateTimeout + + StrictHibernate + + Timeout + -1 + WhiteList + + ff + gg + + XMPDetection + 1 + + BootGraphics + + DefaultBackgroundColor + 0xF1F1F1 + EFILoginHiDPI + 2 + UIScale + 4 + flagstate + 3 + + CPU + + BusSpeedkHz + 800 + C2 + + #C4 + + C6 + + FrequencyMHz + 2000 + HWPEnable + + HWPValue + 0x7 + Latency + 0x3 + QEMU + + QPI + 4 + TDP + 6 + TurboDisable + + Type + 0x5 + UseARTFrequency + + + Devices + + Properties + + #Properties_key1 + + pci-aspm-default + 0 + AAPL,GfxYTile + + AQAAAA== + + AAPL,ig-platform-id + + AAAbWQ== + + AAPL,slot-name + Internal@0,2,0 + device-id + + G1kAAA== + + + Test2 + + Test2Key1 + AQAAAA== + Test2Key2 + Test2Value2 + + !PrimaryGPU + + TestPrimaryGPU + AQAAAA== + Test2Key2 + Test2Value2 + + SecondaryGPU + + Test2SecondaryGPU + AQAAAA== + Test2Key2 + Test2Value2 + + + #Arbitrary + + + Comment + C1 + PciAddr + 00:00.01 + CustomProperties + + + Disabled + + Key + ll + Value + mm + + + Disabled + + Key + nn + Value + 1 + + + Disabled + + Key + oo + Value + + Ag== + + + + + + AddProperties + + + Device + SATA + Disabled + + Key + 10 + Value + 11 + + + AirportBridgeDeviceName + airp + Audio + + AFGLowPowerState + + Inject + 0x11 + ResetHDA + + + DisableFunctions + 0x18F6 + FakeID + + ATI + 0x22221002 + IMEI + 0x22221002 + IntelGFX + 0x22221002 + LAN + 0x22221002 + NVidia + 0x22221002 + SATA + 0x22221002 + WIFI + 0x22221002 + XHCI + 0x22221002 + + ForceHPET + + Inject + + IntelMaxValue + 0x710 + NoDefaultProperties + + SetIntelBacklight + + SetIntelMaxBacklight + + USB + + AddClockID + + FixOwnership + + HighCurrent + + Inject + + + UseIntelHDMI + + + DisableDrivers + + Ps2KeyboardDxe + OsxAptioFixDrv + + + GUI + + EmbeddedThemeType + Dark + ConsoleMode + Max + Mouse + + DoubleClickTime + 501 + Enabled + + Mirror + + Speed + 5 + + Custom + + Entries + + + AddArguments + addarg + #Arguments + arg + BootBgColor + bootbgcolor + CustomLogo + Apple + Disabled + + DriveImage + driveimage + FullTitle + title + Hidden + Always + Hotkey + H + Image + image + Path + path + Settings + settings + SubEntries + + + AddArguments + arg2 + FullTitle + title111 + + + AddArguments + arg3 + Title + title2 + + + Arguments + arg4 + FullTitle + title3 + + + AddArguments + arg5 + Title + title4 + + + Type + Oldest + Volume + v1 + VolumeType + Internal + + + Legacy + + + Disabled + + FullTitle + title + Hidden + + Hotkey + I + Type + Windows + Volume + v2 + + + Tool + + + Arguments + b + Disabled + + Hidden + + Hotkey + b + Path + path + Title + title + Volume + tool1 + + + + CustomIcons + + Hide + + sdfsdfdf + sdfsfdf + + Language + es + Scan + + Entries + + Tool + + Linux + + Legacy + + Kernel + + + ScreenResolution + 1366x768 + ShowOptimus + + TextOnly + + Theme + theme + + Graphics + + ATI + + + IOPCIPrimaryMatch + 0x1002888 + IOPCISubDevId + 0x106B + LoadVBios + + Model + cc + VRAM + 2000 + VideoPorts + 3 + + + IOPCIPrimaryMatch + 0x1002888 + IOPCISubDevId + 0x106B + LoadVBios + + Model + cc + VRAM + 2000 + VideoPorts + 3 + + + NVIDIA + + + IOPCIPrimaryMatch + 0x10DE999 + IOPCISubDevId + 0x106B + LoadVBios + + Model + aa + VRAM + 1000 + VideoPorts + 1 + + + IOPCIPrimaryMatch + 0x10DE999 + IOPCISubDevId + 0x106B + LoadVBios + + Model + bb + VRAM + 1000 + VideoPorts + 2 + + + BootDisplay + 12 + DualLink + 1 + EDID + + Custom + AP///////wBMo0cwAAAAAAAUAQOAHBB46h2FkVZZjyYYUFQAAAABAQEBAQEBAQEBAQEBAQEBOB1W1FAAFjAwICUAFZwQAAAZAAAADwAAAAAAAAAAACXZBmoAAAAA/gBTQU1TVU5HCiBMo0FUAAAA/gBMVE4xMjVBVDAxNDAxAF0= + Inject + + ProductID + 0x9777 + VendorID + 0x1007 + + FBName + Exmoor + Inject + + LoadVBios + + NVCAP + 0304 + NvidiaGeneric + + NvidiaNoEFI + + NvidiaSingle + + PatchVBios + + PatchVBiosBytes + + + Find + + AwQF + + Replace + + BgcI + + + + VRAM + 1500 + VideoPorts + 2 + display-cfg + 04 + ig-platform-id + 0x59230000 + + KernelAndKextPatches + + ATIConnectorsController + ATICtl + ATIConnectorsData + 111213 + ATIConnectorsPatch + 141516 + AppleIntelCPUPM + + AppleRTC + + BootPatches + + + Comment + c3 + Disabled + + Find + + MTI= + + MatchBuild + 10.12.6 + MatchOS + 10.12 + Replace + + MzQ= + + + + Debug + + DellSMBIOSPatch + + FakeCPUID + 0x0306D0 + ForceKextsToLoad + + + \ + ForceKext + + KernelLapic + + KernelPm + + KernelToPatch + + + #Comment + Disable panic kext logging on 10.14 Release kernel + Disabled + + Find + + igKEwHRC + + MaskFind + + //////// + + MaskReplace + + AAAAAP8A + + MatchOS + 10.14 + Replace + + igKEwOtC + + + + Comment + Disable panic kext logging on 10.13 Release kernel + Disabled + + Find + + igKEwHRE + + MatchOS + 10.13 + Replace + + igKEwOtE + + + + Comment + Lapic panic patch example + Disabled + + Find + + 6AAA//+DAAAAAAAA + + MaskFind + + /wAA////AAAAAP// + + MaskReplace + + /wAA//////////// + + MaskStart + + /////wA= + + MatchOS + All + RangeFind + 200 + Replace + + 6AAA//8xwJCQkJCQ + + StartPattern + + ACnHeAAx241H+oM= + + + + Comment + Symbolic patch example got lapic panic + Disabled + + Find + + 6AAA//+DAAAAAAAA + + MaskFind + + /wAA////AAAAAP// + + MaskReplace + + /wAA//////////// + + MatchOS + All + Procedure + _lapic_interrupt + RangeFind + 200 + Replace + + 6AAA//8xwJCQkJCQ + + + + KernelXCPM + + KextsToPatch + + + Comment + Enable TRIM for SSD + Find + 01 + Replace + 02 + + + Comment + External icons patch + Disabled + + Find + + RXh0ZXJuYWw= + + InfoPlistPatch + + MatchOS + 10.11.x,10.12.x,10.13.x,10.14.x,10.15.x + Name + com.apple.driver.AppleAHCIPort + Replace + + SW50ZXJuYWw= + + + + Comment + framebuffer4K + Disabled + + Find + + AwAiDQADAwMAAAACAAAwAQ== + + InfoPlistPatch + + Name + AppleIntelFramebufferAzul + Replace + + AwAiDQADAwMAAAAEAAAAAw== + + + + Comment + Disable NVDARequiredOS + Disabled + + Find + + TlZEQVJlcXVpcmVkT1MA + + InfoPlistPatch + + Name + NVDAStartupWeb + Replace + + AAAAAAAAAAAAAAAAAAAA + + + + Comment + Disable board-id check to prevent no signal + Disabled + + Find + + SI01qjQ= + + InfoPlistPatch + + Name + com.apple.driver.AppleGraphicsDevicePolicy + Replace + + Dx+AAAA= + + + + Comment + Prevent AGDP from loading + Disabled + + Find + + ugUAAAA= + + InfoPlistPatch + + MatchOS + 10.15.x + Name + com.apple.driver.AppleGraphicsDevicePolicy + Replace + + ugAAAAA= + + + + Comment + Atheros Locale Fix + Disabled + + Find + + g/g3 + + InfoPlistPatch + + MatchOS + 10.12.x + Name + AirPortAtheros40 + Replace + + g/gh + + + + Comment + IONVMeFamily IONameMatch + Disabled + + Find + + PHN0cmluZz5wY2kxNDRkLGE4MDQ8L3N0cmluZz4= + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + PHN0cmluZz5wY2kxNDRkLGE4MDI8L3N0cmluZz4= + + + + Comment + IONVMeFamily Pike R. Alpha Patch#1 (Sierra) + Disabled + + Find + + ibPoAgAAweAMBQAQAACJgw== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + ibPoAgAAweAJBQAQAACJgw== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#2 (Sierra) + Disabled + + Find + + D7aMiIIAAACD+QwPhTIBAA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + D7aMiIIAAACD+QkPhTIBAA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#3 (Sierra) + Disabled + + Find + + AMeDpAAAAAAQAABIi0gISA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + AMeDpAAAAAACAABIi0gISA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#4 (Sierra) + Disabled + + Find + + SYnGTYX2dGFBwecMSWP/vg== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + SYnGTYX2dGFBwecJSWP/vg== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#5 (Sierra) + Disabled + + Find + + hv8PAABIwegMD7cPgeH/Dw== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + hv8PAABIwegJD7cPgeH/Dw== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#6_7 (Sierra) + Disabled + + Find + + icGB4f8PAABIAdFIgfn/DwAAdzs= + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + icGB4f8BAABIAdFIgfn/AQAAdzs= + + + + Comment + IONVMeFamily Pike R. Alpha Patch#8 (Sierra) + Disabled + + Find + + SYHF/w8AAEnB7QxJiwQkSA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + SYHF/w8AAEnB7QlJiwQkSA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#9_10 (Sierra) + Disabled + + Find + + BgIAAEyNuAAQAABMiflIgeEA8P//SYmGGgEAAEmJjiIB + AABBvAAQAABJKfQ= + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + BgIAAEyNuAACAABMiflIgeEA8P//SYmGGgEAAEmJjiIB + AABBvAACAABJKfQ= + + + + Comment + IONVMeFamily Pike R. Alpha Patch#11 (Sierra) + Disabled + + Find + + AABJiY4iAQAAugAQAABIKQ== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + AABJiY4iAQAAugACAABIKQ== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#12 (Sierra) + Disabled + + Find + + yAAAAEkp17gAEAAATYskJA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + yAAAAEkp17gAAgAATYskJA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#13 (Sierra) + Disabled + + Find + + 4b+AQBUGTYnWugAQAABFMQ== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + 4b+AQBUGTYnWugACAABFMQ== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#14 (Sierra) + Disabled + + Find + + iWTY+EmBxAAQAABJgccA8A== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + iWTY+EmBxAACAABJgccA8A== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#15 (Sierra) + Disabled + + Find + + Bf8PAABIwegMZvfB/w8PlQ== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + Bf8PAABIwegJZvfB/w8PlQ== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#16 (Sierra) + Disabled + + Find + + weIIQQ+2wcHgDEQJ0EQJwA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + weIIQQ+2wcHgCUQJ0EQJwA== + + + + Comment + IONVMeFamily Pike R. Alpha Patch#17 (Sierra) + Disabled + + Find + + RYTJD5XAD7bAweAMRAnYRA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + IONVMeFamily + Replace + + RYTJD5XAD7bAweAJRAnYRA== + + + + Comment + change 15 port limit to 26 in XHCI kext (100-series) + Disabled + + Find + + g32MEA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + AppleUSBXHCIPCI + Replace + + g32MGw== + + + + Comment + change 15 port limit to 26 in XHCI kext (100-series) + Disabled + + Find + + g710////EA== + + InfoPlistPatch + + MatchOS + 10.12.x + Name + AppleUSBXHCISPT + Replace + + g710////Gw== + + + + Comment + 15 to 20 port limit (9-series) + Disabled + + Find + + g710////EA== + + InfoPlistPatch + + MatchOS + 10.12.6 + Name + AppleUSBXHCIPCI + Replace + + g710////FQ== + + + + Comment + 15 to 26 port limit (100-series) + Disabled + + Find + + g710////EA== + + InfoPlistPatch + + MatchOS + 10.12.6 + Name + AppleUSBXHCIPCI + Replace + + g710////Gw== + + + + Comment + USB 10.13.6 by PMHeart + Disabled + + Find + + g32IDw+DpwQAAA== + + InfoPlistPatch + + MatchOS + 10.13.6 + Name + com.apple.driver.usb.AppleUSBXHCI + Replace + + g32ID5CQkJCQkA== + + + + + RtVariables + + BooterConfig + 0x1 + CsrActiveConfig + 0x2 + MLB + 12345678901234567 + ROM + + MBRwYnHo + + Block + + + Comment + c1 + Disabled + false + Guid + 522e186f-964a-4ac7-9299-7a9f32a2473e + Name + name1 + + + + SMBIOS + + SmbiosVersion + 36 + BiosReleaseDate + 08/08/17 + BiosVendor + Apple Inc. + BiosVersion + MBP81.88Z.004D.B00.1708080655 + Board-ID + Mac-94245B3640C91C81 + BoardManufacturer + Apple Inc. + BoardSerialNumber + W89135306OPDM6CAD + BoardType + 10 + BoardVersion + 1.0 + ChassisAssetTag + MacBook-Aluminum + ChassisManufacturer + Apple Inc. + ChassisType + 0x0A + Family + MacBook Pro + FirmwareFeatures + 0xC00DE137 + FirmwareFeaturesMask + 0xFF1FFF3F + LocationInChassis + Part Component + Manufacturer + Apple Inc. + Memory + + Channels + 2 + Modules + + + Frequency + 333 + Part + Part1 + Serial + Ser1 + Size + 2048 + Slot + 1 + Type + DDR + Vendor + v1 + + + Frequency + 366 + Part + Part2 + Serial + Ser2 + Size + 4096 + Slot + 2 + Type + DDR2 + Vendor + v2 + + + Frequency + 366 + Part + Part2 + Serial + Ser2 + Size + 8192 + Slot + 4 + #Type + DDR2 + Vendor + v2 + + + SlotCount + 8 + + Mobile + + PlatformFeature + 0xFFFF + ProductName + MacBookPro8,1 + SerialNumber + W89G91VFDH2G + Slots + + + Device + HDMI + + + Device + NVidia + ID + 1 + Name + APPL,sdfsdf + Type + 1 + + + SmUUID + F1AB23C0-C35A-473E-BDB7-455C3A6271E8 + Version + 1.0 + Trust + + MemoryRank + 2 + + SystemParameters + + BacklightLevel + 2 + CustomUUID + 2926A57C-FF0E-4A64-980F-23483BD41969 + InjectKexts + Yes + InjectSystemID + + NoCaches + + NvidiaWeb + + + Quirks + + AvoidRuntimeDefrag + + DevirtualiseMmio + + DisableSingleUser + + DisableVariableWrite + + DiscardHibernateMap + + EnableSafeModeSlide + + EnableWriteUnprotector + + ForceExitBootServices + + MmioWhitelist + + + Comment + c1 + Address + 12345678 + Enabled + + + + Comment + + Address + 12345678 + Enabled + + + + #Comment + c1 + Address + abcde + Enabled + + + + ProtectMemoryRegions + + ProtectSecureBoot + + ProtectUefiServices + + ProvideConsoleGopEnable + + ProvideCustomSlide + + ProvideMaxSlide + 0 + RebuildAppleMemoryMap + + SetupVirtualMap + + SignalAppleOS + + SyncRuntimePermissions + + + + FuzzyMatch + + KernelCache + Auto + AppleXcpmExtraMsrs + + AppleXcpmForceBoost + + DisableIoMapper + + DisableLinkeditJettison + + DummyPowerManagement + + ExternalDiskIcons + + IncreasePciBarSize + + PowerTimeoutKernelPanic + + ThirdPartyDrives + + XhciPortLimit + + + + diff --git a/Xcode/CloverMacOsApp/old/poolprintfloat-test-cpp_conf.h b/Xcode/CloverMacOsApp/old/poolprintfloat-test-cpp_conf.h new file mode 100644 index 0000000000..d111af183f --- /dev/null +++ b/Xcode/CloverMacOsApp/old/poolprintfloat-test-cpp_conf.h @@ -0,0 +1,12 @@ + +#define F(x) x +#define LF(x) L##x +#define PRIF "%a" +#define PRILF "%s" + +#define loggf(...) DebugLog(2, __VA_ARGS__) +//#define loggf(...) printf(__VA_ARGS__) + +#define DISPLAY_ONLY_FAILED +//#define DISPLAY_START_INFO + diff --git a/Xcode/CloverMacOsApp/old/poolprintfloat-test.cpp b/Xcode/CloverMacOsApp/old/poolprintfloat-test.cpp new file mode 100644 index 0000000000..45d99db561 --- /dev/null +++ b/Xcode/CloverMacOsApp/old/poolprintfloat-test.cpp @@ -0,0 +1,135 @@ +// +// main.cpp +// Printf-UnitTests +// +// Created by Jief on 29/08/17. +// Copyright © 2017 Jief. All rights reserved. +// + +#include +#include +#include "unicode_conversions.h" +#include +#include "poolprint-test.h" + +static int nbTestFailed = 0; +#ifdef DISPLAY_ONLY_FAILED +static bool displayOnlyFailed = true; +#else +static bool displayOnlyFailed = false; +#endif + +/* + * Print wchar string as a utf8 string. + * This eliminate all problems about wprintf and compilation with short-wchar or long-wchar I had on macOs (2020-03) + */ +static void print_wchar_string(const wchar_t* s) +{ +// char utf8[wchar_len(s)*4+1]; +// some compiler doesn't like variable length array. +// use a fixed length instead. + char utf8[200]; + utf8_string_from_wchar_string(utf8, sizeof(utf8), s); + if ( strlen(utf8) > sizeof(utf8)-2 ) { + loggf("fixed size buf not big enough"); + abort(); + } + loggf("%s", utf8); +} + + +VOID +EFIAPI +_PoolCatPrint ( + IN CONST CHAR16 *fmt, + IN VA_LIST args, + IN OUT POOL_PRINT *spc, + IN EFI_STATUS + (EFIAPI + *Output) + ( + POOL_PRINT *context, + CHAR16 *str + ) + ); + +#include "../libeg/FloatLib.h" + +static int testPoolPrintFloat(const char* label, const wchar_t* expectResult, float param) +{ + wchar_t* wbuf = PoolPrintFloat(param); + if ( memcmp(wbuf, expectResult, wchar_len(expectResult)*sizeof(expectResult[0])) != 0 ) { +// loggf(F(" -> ERROR. Expect " PRILF " and get %ls\n"), expectResult, buf); +// not using wprintf, it crashes sometimes, it doesn't work for short-wchar + loggf(F("%s -> ERROR. Expect "), label); + print_wchar_string(expectResult); + loggf(F(" and get ")); + print_wchar_string(wbuf); + loggf("\n"); + nbTestFailed += 1; + wchar_t* wbuf2 = PoolPrintFloat(param); // for stepping with a debugger. + FreePool(wbuf2); + }else if ( !displayOnlyFailed ) { + loggf(F("%s : "), label); + print_wchar_string(wbuf); + loggf(F(" -> OK\n")); + } + FreePool(wbuf); + return 1; +} + + + +#define Test1arg(expectResult,param) \ +{ \ + char label[1024]; \ + snprintf(label, sizeof(label), F("testPoolPrintFloat(%s)"), F(#param)); \ + testPoolPrintFloat(label,L##expectResult,param); \ +} + +#define Test2arg(expectResult,format,c,d) \ +{ \ + char label[1024]; \ + snprintf(label, sizeof(label), F("Test swprintf(%s, %s, %s)"), F(#format), F(#c), F(#d)); \ + testWPrintf(label,L##expectResult,(int)wcslen(L##expectResult),L##format,c,d); \ +} + +#define Test5arg(expectResult,format,c,d,e,f,g) \ +{ \ + char label[1024]; \ + snprintf(label, sizeof(label), F("Test swprintf(%s, %s, %s, %s, %s, %s)"), F(#format), F(#c), F(#d), F(#e), F(#f), F(#g)); \ + testWPrintf(label,L##expectResult,(int)wcslen(L##expectResult),L##format,c,d,e,f,g); \ +} + + +int poolprintfloat_tests(void) +{ +#ifdef DISPLAY_START_INFO + loggf(F("\n")); + loggf(F("PoolPrintFloat unit test\n")); + loggf(F("\n")); + loggf(F("\n")); + + // These depends on the plateform. They are not printf unit test, but it's nice to check size of builtin type. + loggf(F("sizeof(float)=%lu\n"), sizeof(float)); + loggf(F("sizeof(double)=%zu\n"), sizeof(double)); + loggf(F("\n")); + +#endif + + Test1arg(F(" 0.000000"), 0.0); + Test1arg(F(" 0.123456"), 0.1234567890); + Test1arg(F("-0.123456"), -0.1234567890); + Test1arg(F(" 1.100000"), 1.1); + Test1arg(F(" -1.100000"), -1.1); + Test1arg(F(" 123.456787"), 123.456789); + Test1arg(F(" -123.456787"), -123.456789); + Test1arg(F(" 1234567936.000000"), 1234567890.456789); + Test1arg(F(" -1234567936.000000"), -1234567890.456789); + Test1arg(F(" 0.000000"), 12345678901234567890.456789); + Test1arg(F(" 0.000000"), -12345678901234567890.456789); + + + return nbTestFailed; +} + diff --git a/Xcode/CloverMacOsApp/old/poolprintfloat-test.h b/Xcode/CloverMacOsApp/old/poolprintfloat-test.h new file mode 100644 index 0000000000..597f991e9f --- /dev/null +++ b/Xcode/CloverMacOsApp/old/poolprintfloat-test.h @@ -0,0 +1 @@ +int poolprintfloat_tests(); diff --git a/Xcode/CloverMacOsApp/src/Platform.cpp b/Xcode/CloverMacOsApp/src/Platform.cpp new file mode 100755 index 0000000000..ba22f2936d --- /dev/null +++ b/Xcode/CloverMacOsApp/src/Platform.cpp @@ -0,0 +1,27 @@ +// +// Platform.cpp +// cpp_tests +// +// Created by jief on 23.02.20. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#include "Platform.h" + +#include +#include +#include +//#include +#include + +#include +#include +#include +#include + +#include "../../../rEFIt_UEFI/cpp_foundation/unicode_conversions.h" + +void CpuDeadLoop(void) +{ + exit(1); +} diff --git a/Xcode/CloverMacOsApp/src/main.cpp b/Xcode/CloverMacOsApp/src/main.cpp new file mode 100755 index 0000000000..1a374522e2 --- /dev/null +++ b/Xcode/CloverMacOsApp/src/main.cpp @@ -0,0 +1,240 @@ +//// +//// main.cpp +//// cpp_tests +//// +//// Created by jief on 23.02.20. +//// Copyright © 2020 Jief_Machak. All rights reserved. +//// +// +//#include +//#include +// +//extern "C" int main_fixbiosdsdt(int argc, const char * argv[]); +//extern "C" int main_read_configplist(int argc, const char * argv[]); +// +//extern "C" int main(int argc, const char * argv[]) +//{ +// (void)argc; +// (void)argv; +// setlocale(LC_ALL, "en_US"); // to allow printf unicode char +// +//// xcode_utf_fixed_tests(); +// +//// main_fixbiosdsdt(argc, argv); +//// main_read_configplist(argc, argv); +// SetupBooterLog(true); +// return 0; +//} +// + + + +// +// main.cpp +// cpp_tests +// +// Created by jief on 23.02.20. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#include +#include + +#include +#include + +#include "../../../rEFIt_UEFI/cpp_unit_test/all_tests.h" +//#include "../../../rEFIt_UEFI/cpp_foundation/XToolsCommon.h" +#include "../../../rEFIt_UEFI/libeg/XImage.h" +//#include "../../../rEFIt_UEFI/Platform/platformdata.h" +#include "../../../rEFIt_UEFI/cpp_lib/MemoryTracker.h" + +//class Boolean +//{ +// bool flag; +//public: +// explicit Boolean() : flag(false) {} +// explicit Boolean(const bool other) { flag = other; } +// explicit Boolean(const Boolean& other) { flag = other.flag; } +//// template +//// Boolean(T other) = delete;// { return *this; } +// +// Boolean& operator= (const Boolean& other) { return *this; } +// Boolean& operator= (const bool other) { return *this; } +// template +// Boolean& operator= (const T other) = delete;// { return *this; } +// +// bool getValue() const {return flag;} +// void setValue(bool a) {flag = a;} +//}; + +// The following is by no means a FULL solution! +#include +#include +#include + +template +class Property { +public: + Property(){} + operator const T& () const { + // Call override getter if we have it + if (getter) return getter(); + return get(); + } + const T& operator = (const T& other) { + // Call override setter if we have it + if (setter) return setter(other); + return set(other); + } + bool operator == (const T& other) const { + // Static cast makes sure our getter operator is called, so we could use overrides if those are in place + return static_cast(*this) == other; + } + // Use this to always get without overrides, useful for use with overriding implementations + const T& get() const { + return t; + } + // Use this to always set without overrides, useful for use with overriding implementations + const T& set(const T& other) { + return t = other; + } + // Assign getter and setter to these properties + std::function getter; + std::function setter; +private: + T t; +}; + +// Basic usage, no override +struct Test { + Property prop; +}; + +// Override getter and setter +struct TestWithOverride { + TestWithOverride(){ + prop.setter = [&](const int& other){ + std::cout << "Custom setter called lambda" << std::endl; + return prop.set(other); + }; +// prop.setter = std::bind(&TestWithOverride::setProp,this,std::placeholders::_1); + prop.getter = std::bind(&TestWithOverride::getProp,this); + } + Property prop; +private: + const int& getProp() const { + std::cout << "Custom getter called" << std::endl; + return prop.get(); + } + const int& setProp(const int& other){ + std::cout << "Custom setter called" << std::endl; + return prop.set(other); + } +}; + +class MyFloat { +public: + float f; + MyFloat() { f = 0.0f; } + MyFloat(float _f) : f(_f) {} + float get() { return 1; } +}; +template +class MutableRef : public T { +public: + const T* t; + const T& operator = (const T* other) { + t = other; + return *t; + } + operator T& () { + return *t; + } +}; +static_assert(sizeof(void*)==8, "sizeof(char*)==8"); + +EFI_BOOT_SERVICES ebs; + +EFI_STATUS EFIAPI efi_allocate_pool( + IN EFI_MEMORY_TYPE PoolType, + IN UINTN Size, + OUT VOID **Buffer + ) +{ + *Buffer = malloc(Size); + return 0; +} + +EFI_STATUS EFIAPI efi_free_pool(IN VOID *Buffer) +{ + free(Buffer); + return 0; +} + +extern "C" int main(int argc, const char * argv[]) +{ + (void)argc; + (void)argv; + setlocale(LC_ALL, "en_US"); // to allow printf unicode char + + gBS = &ebs; + gBS->AllocatePool = efi_allocate_pool; + gBS->FreePool = efi_free_pool; + +// xcode_utf_fixed_tests(); + + DebugLog(2, "sizeof(wchar_t)=%zu __WCHAR_MAX__=%x\n", sizeof(wchar_t), __WCHAR_MAX__); + + + XString8 s("foo"); +// s.strcat("a"); + char* p = s.forgetDataWithoutFreeing(); + free(p); + + XString8 s2; +// s2.S8Printf("bar"); + char* q = s2.forgetDataWithoutFreeing(); + free(q); + + MyFloat test = 5.0f; + + MutableRef Background; + + Background = &test; + test = 6; + float test2 = Background.get(); (void)test2; + + Test t; + TestWithOverride t1; + t.prop = 1; + assert(t.prop == 1); + t1.prop = 1; + assert(t1.prop == 1); + /* + Expected output: + 1. No aborts on assertions + 2. Text: + Custom setter called + Custom getter called + */ + + +// xcode_utf_fixed_tests(); + const int i = 2; + (void)i; + XBool b; + b = true; + b = false; +// b = XBool(i); +// b = (char*)NULL; +// b = (float)1.0; +// b = i; + //printf("%d", numeric_limits::min()); + //printf("%d", numeric_limits::min()); + + + + MemoryTrackerInit(); + return all_tests() ? 0 : -1 ; +} diff --git a/Xcode/CloverMacOsApp/src/main_compare_settings.cpp b/Xcode/CloverMacOsApp/src/main_compare_settings.cpp new file mode 100755 index 0000000000..580b2df0df --- /dev/null +++ b/Xcode/CloverMacOsApp/src/main_compare_settings.cpp @@ -0,0 +1,577 @@ +// +// main.cpp +// cpp_tests +// +// Created by jief on 23.02.20. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#include +#include +#include +#include +#include +#include +#include + +//#include +//#include +//#include +//#include + +//#include + +#include +#include +#include "../../../rEFIt_UEFI/Platform/plist/plist.h" +#include "../../../rEFIt_UEFI/Platform/Settings.h" +#include "../../../rEFIt_UEFI/cpp_unit_test/all_tests.h" + +#include "../../../PosixCompilation/xcode_utf_fixed.h" +#include "../../../rEFIt_UEFI/Settings/ConfigPlist/ConfigPlistClass.h" +#include "../../../rEFIt_UEFI/Settings/ConfigPlist/SMBIOSPlist.h" + +#include "ConfigSample1.h" +#include "Compare/CompareField.h" +#include "Compare/CompareSettings.h" +#include "Assign/AssignSettings.h" + +#include "OldSettings/Settings.h" + +extern bool gEnableCloverLog; + + +//static EFI_STATUS readFile(const char* filename, char** sourcePtr, size_t* newLen) +//{ +// char*& source = *sourcePtr; +// *newLen = 0; +// FILE *fp = fopen(filename, "r"); +// if (fp == NULL) { +//// fputs("Error fopen config plist", stderr); +// return EFI_NOT_FOUND; +// } +// /* Go to the end of the file. */ +// if (fseek(fp, 0L, SEEK_END) == 0) { +// /* Get the size of the file. */ +// long bufsize = ftell(fp); +// if (bufsize == -1) { +//// fputs("Error ftell config plist", stderr); +// return EFI_LOAD_ERROR; +// } +// +// /* Allocate our buffer to that size. */ +// source = (char*)malloc(sizeof(char) * (bufsize + 1)); +// +// /* Go back to the start of the file. */ +// if (fseek(fp, 0L, SEEK_SET) != 0) { +//// fputs("Error fseek config plist", stderr); +// return EFI_LOAD_ERROR; +// } +// +// /* Read the entire file into memory. */ +// *newLen = fread(source, sizeof(char), bufsize, fp); +// if ( ferror( fp ) != 0 ) { +//// fputs("Error reading config plist", stderr); +// return EFI_LOAD_ERROR; +// } else { +// source[*newLen] = '\0'; /* Just to be safe. */ +// } +// } +// fclose(fp); +// return EFI_SUCCESS; +//} + + +// +//static EFI_STATUS oldParse(const char *source, size_t newLen, bool enableCloverLog, bool enableLog, TagDict** dict, SETTINGS_DATA* settings) +//{ +// EFI_STATUS Status = ParseXML(source, dict, (UINT32)newLen); +// if ( enableLog ) printf("ParseXML returns %s\n", efiStrError(Status)); +// if ( EFI_ERROR(Status) ) { +// return Status; +// } +// // XString8 s; +// // dict->sprintf(0, &s); +// // printf("%s\n", s.c_str()); +// +// Status = GetEarlyUserSettings(*dict, *settings); +// //printf("settings=%llx, &ResetHDA=%llx %d\n", uintptr_t(&settings), uintptr_t(&settings.Devices.Audio.ResetHDA), settings.Devices.Audio.ResetHDA); +// if ( enableLog ) printf("GetEarlyUserSettings returns %s\n", efiStrError(Status)); +// +// Status = GetUserSettings(*dict, *settings); +// if ( enableLog ) printf("GetUserSettings returns %s\n", efiStrError(Status)); +// return Status; +//} +// +//static EFI_STATUS test1(const char *source, size_t newLen, bool enableCloverLog, bool enableLog) +//{ +// EFI_STATUS Status; +// TagDict* dict = NULL; +// SETTINGS_DATA settings; +// +// gEnableCloverLog = enableCloverLog; +// if ( enableCloverLog ) enableLog = true; +// +// Status = oldParse(source, newLen, enableCloverLog, enableLog, &dict, &settings); +// +// bool compareOldAndCompatibleArbOK = settings.Devices.compareOldAndCompatibleArb(); +// if ( !compareOldAndCompatibleArbOK ) { +// if ( enableLog ) printf("!compareOldAndCompatibleArb"); +// } +// +// // if ( !compareOldAndNewArb(settings.Devices.newArbProperties, settings.Devices.oldArbProperties) ) { +// // printf("aie"); +// // } +// +// ConfigPlistClass configPlist; +// +// XmlLiteParser xmlLiteParser; +// xmlLiteParser.init(source, newLen); +// +// gEnableCloverLog = enableLog; +// +// if ( enableLog ) printf("\n"); +// if ( enableLog ) printf("=== [ Parse ] ====================\n"); +// configPlist.parse(&xmlLiteParser, ""_XS8); +// for ( size_t idx = 0 ; idx < xmlLiteParser.getErrorsAndWarnings().size() ; idx++ ) { +// const XmlParserMessage& xmlMsg = xmlLiteParser.getErrorsAndWarnings()[idx]; +// if ( enableLog ) printf("%s: %s\n", xmlMsg.isError ? "Error" : "Warning", xmlMsg.msg.c_str()); +// } +// +// if ( enableLog ) printf("\n"); +// if ( enableLog ) printf("=== [ CompareOldNewSettings ] ====================\n"); +// +// uint64_t nbError = 0; +// +//// nbError = CompareOldNewSettings(settings, configPlist); +//// if ( nbError == 0 ) +//// { +//// SETTINGS_DATA settings2; +//// AssignOldNewSettings(settings2, configPlist, SmbiosPlistClass()); +//// if ( !settings.isEqual(settings2) ) { +//// nbError++; +//// if ( enableLog ) printf("Binary comparison failed\n"); +////bool b_tmp = settings.isEqual(settings2); +////(void)b_tmp; +//// return EFI_COMPROMISED_DATA; +//// } +//// } +//// +////#if __cplusplus > 201703L +//// if ( nbError == 0 ) +//// { +//// SETTINGS_DATA settings2; +//// AssignOldNewSettings(settings2, configPlist); +//// if ( !(settings == settings2) ) { +//// nbError++; +//// if ( enableLog ) printf("Binary comparison(2) failed\n"); +//// return EFI_COMPROMISED_DATA; +//// } +//// } +////#endif +// +// if ( nbError == 0 ) +// { +// SETTINGS_DATA settings2; +// AssignOldNewSettings(settings2, configPlist, SmbiosPlistClass()); +//// if ( !(settings == settings2) ) { +//// nbError++; +//// if ( enableLog ) printf("Binary comparison(2) failed\n"); +//// return EFI_COMPROMISED_DATA; +//// } +// SETTINGS_DATA settings3; +// settings3.takeValueFrom(configPlist); +// if ( !settings3.isEqual(settings2) ) { +// bool b_tmp = settings3.isEqual(settings2); +// (void)b_tmp; +// nbError++; +// } +// } +// +// if ( nbError == 0 ) { +// if ( enableLog ) printf("Comparison OK\n"); +// }else{ +// if ( enableLog ) printf("Nb errors : %lld\n", nbError); +// } +// +// return 0; +//} +// +//EFI_STATUS test1(const char *source, bool enableCloverLog, bool enableLog) +//{ +// return test1(source, strlen(source), enableCloverLog, enableLog); +//} +// +//EFI_STATUS test1_file(const char* filename, bool disableCloverLog, bool noLog) +//{ +// EFI_STATUS Status; +// char * source; +// size_t newLen; +// +//printf("Debug test file:%s\n", filename); +// Status = readFile(filename, &source, &newLen); +// printf("readFile returns %s\n", efiStrError(Status)); +// if ( EFI_ERROR(Status) ) { +// return Status; +// } +// +// return test1(source, newLen, disableCloverLog, noLog); +//} +// +// +//#include +// +// +//EFI_STATUS test_speed(const char* filename) +//{ +// EFI_STATUS Status; +// char * source; +// size_t newLen; +// TagDict* dict = NULL; +// SETTINGS_DATA settings; +// +// printf("Speed test with file:%s\n", filename); +// Status = readFile(filename, &source, &newLen); +// printf("readFile returns %s\n", efiStrError(Status)); +// if ( EFI_ERROR(Status) ) { +// return Status; +// } +// +// auto t1 = std::chrono::high_resolution_clock::now(); +// +// for ( size_t i = 0 ; i < 1000 ; ++i ) { +// Status = oldParse(source, newLen, false, false, &dict, &settings); +//// dict->FreeTag(); +// } +// +// auto t2 = std::chrono::high_resolution_clock::now(); +// +// XmlLiteParser xmlLiteParser; +// ConfigPlistClass configPlist; +// for ( size_t i = 0 ; i < 1000 ; ++i ) { +// xmlLiteParser.init(source, newLen); +// configPlist.parse(&xmlLiteParser, ""_XS8); +// } +// +// auto t3 = std::chrono::high_resolution_clock::now(); +// +// /* Getting number of milliseconds as an integer. */ +// auto s_int = std::chrono::duration_cast( (t2 - t1) / 1 ); +// printf("Elpased time %lld ms\n", s_int.count()); +// +// auto s_int3 = std::chrono::duration_cast( (t3 - t2) / 1 ); +// printf("Elpased time %lld ms\n", s_int3.count()); +// +// return EFI_SUCCESS; +//} +// +// +// +// +// +// +// +//int nbStructuralProblem = 0; +//int nbConfigPlistRead = 0; +// +//bool printFileBefore = true; +// +//EFI_STATUS test4testers(const char* filename) +//{ +// EFI_STATUS Status; +// char * source; +// size_t newLen; +// +// if ( printFileBefore ) printf("file:%s\n", filename); +// +// gEnableCloverLog = false; +// +// Status = readFile(filename, &source, &newLen); +// if ( EFI_ERROR(Status) ) { +// fprintf(stderr, "Cannot read the file '%s'. Status = %s\n", filename, efiStrError(Status)); +// return Status; +// } +// LString8 source8 = LString8(source); +// if ( source8.containsIC("ShowPicker"_XS8) ) { +// // it's OC +// return EFI_SUCCESS; +// } +// if ( source8.startWithOrEqualToIC("bplist"_XS8) ) { +// // it's compressed +// return EFI_SUCCESS; +// } +// if ( !source8.startWithOrEqualToIC(" 0 ) { +//// // printf("nbError > 0"); +//// if ( !printFileBefore ) printf("file:%s\n", filename); +//// return EFI_COMPROMISED_DATA; +//// } +// +// { +// SETTINGS_DATA settings2; +// AssignOldNewSettings(settings2, configPlist, SmbiosPlistClass()); +//// if ( !settings.isEqual(settings2) ) { +//// if ( !printFileBefore ) printf("file:%s\n", filename); +//// bool b_tmp = settings.isEqual(settings2); +//// (void)b_tmp; +//// return EFI_COMPROMISED_DATA; +//// } +// SETTINGS_DATA settings3; +// settings3.takeValueFrom(configPlist); +// if ( !settings3.isEqual(settings2) ) { +// if ( !printFileBefore ) printf("file:%s\n", filename); +// bool b_tmp = settings3.isEqual(settings2); +// (void)b_tmp; +// return EFI_COMPROMISED_DATA; +// } +// } +// +// #if __cplusplus > 201703L +// { +// SETTINGS_DATA settings2; +// AssignOldNewSettings(settings2, configPlist); +// if ( !(settings == settings2) ) { +// if ( !printFileBefore ) printf("file:%s\n", filename); +// return EFI_COMPROMISED_DATA; +// } +// } +// #endif +// +// if ( source8.contains("Boot"_XS8) || source8.contains("KernelAndKextPatches"_XS8) || source8.contains("GUI"_XS8) ) { +// if ( !printFileBefore ) printf("file:%s\n", filename); +// } +//// printf("ZZZZZZfile:%s\n", filename); +// return EFI_SUCCESS; +//} +// +//static bool iterate_test_file(const XString8 &fileFullPath) +//{ +// //printf("fileZZZ:%s %s\n", fileFullPath.c_str(), fileFullPath.basename().c_str()); +// if ( fileFullPath.basename().containsIC("config") && fileFullPath.basename().endWithOrEqualToIC(".plist"_XS8) ) { +// EFI_STATUS Status = test4testers(fileFullPath.c_str()); +// if ( EFI_ERROR(Status) ) { +// if ( Status == EFI_NOT_FOUND ) { +// }else if ( Status == RETURN_HTTP_ERROR ) { +// }else{ +// // fprintf(stderr, "There is a problem is my new parser with the field '%s'. Do NOT change your config.plist.\n", compareField_firstErrorField.c_str()); +// fprintf(stderr, "Please send the file '%s' as is to me. DO NOT modify the file please, or I won't catch that bug in my new parser. Thanks.\n", fileFullPath.c_str()); +// // fprintf(stderr, "Press any key :"); +// // getchar(); +// // fprintf(stderr, "\n"); +// return false; +// } +// } +// } +// return true; +//} +// +//class TestEq +//{ +//public: +// uint8_t foo[2] = {1, 2}; +// #if __cplusplus > 201703L +// bool operator == (const TestEq&) const = default; +// #endif +//}; +// +//bool iterateFileSystem(const XString8& path) +//{ +//// printf("folder:%s\n", path.c_str()); +//// TestEq t1; +//// TestEq t2; +//// printf("t1 == t2 %d\n", t1 == t2); +// +// +// XString8 correctedPath = path; +// while ( correctedPath.contains("//") ) correctedPath.replaceAll("//"_XS8, "/"_XS8); +// if ( correctedPath == "/"_XS8 ) correctedPath.setEmpty(); +// +// DIR *dir; +// struct dirent *entry; +// +// if ( !(dir = opendir(path.c_str())) ) +// return true; +// +// XString8 file; +// XString8 subPath; +// XString8 fullpath; +// XString8Array folderNameArray; +// +// while ((entry = readdir(dir)) != NULL) +// { +// if (entry->d_type == DT_DIR) { +// if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) +// continue; +// file.takeValueFrom(entry->d_name); +// fullpath = S8Printf("%s/%s", correctedPath.c_str(), file.c_str()); +// if ( fullpath == "/System"_XS8 ) continue; +// if ( fullpath == "/Library"_XS8 ) continue; +// if ( fullpath == "/private"_XS8 ) continue; +// if ( fullpath == "/usr"_XS8 ) continue; +// if ( fullpath.containsIC(".Spotlight-V100"_XS8) ) continue; +// if ( fullpath.startWithOrEqualToIC("/Users") && file == "Library"_XS8 ) continue; +// if ( file.endWithOrEqualToIC(".app"_XS8) ) continue; +// if ( file == "DerivedData"_XS8 ) continue; +//// printf("%*s[%s]\n", indent, "", entry->d_name); +// folderNameArray.Add(fullpath); +// } else { +// file.takeValueFrom(entry->d_name); +// fullpath = S8Printf("%s/%s", path.c_str(), file.c_str()); +// if ( ! iterate_test_file(fullpath) ) return false; +// } +// } +// closedir(dir); +// +// for ( size_t idx = 0 ; idx < folderNameArray.size() ; ++idx ) +// { +// if( !iterateFileSystem(folderNameArray[idx]) ) return false; +// } +// return true; +//} + +extern "C" int main(int argc, const char * argv[]) +{ +//tmp(); + (void)argc; + (void)argv; + setlocale(LC_ALL, "en_US"); // to allow printf unicode char + +// xcode_utf_fixed_tests(); + + gEnableCloverLog = false; + +//#if defined(JIEF_DEBUG) +// +//// EFI_STATUS Status; +// +//// const char* emptyConfigPlist = ""; +//// Status = test1(emptyConfigPlist, strlen(emptyConfigPlist), true, true); +//// if ( EFI_ERROR(Status) ) { +//// printf("*************************************************** ERROR **********************************\n"); +//// exit(1); +//// } +// +//// test1("", false, true); +//// test1("SMBIOS", false, true); +// +// +//// test1_file("config-test1.plist", true, true); +//// test1_file("/JiefLand/5.Devel/Clover/Clover-projects/Clover--CloverHackyColor--master.3/Xcode/CloverConfigPlistValidator/config-test2.plist", true, true); +//// test1_file("config-small.plist", true, true); +//// test1_file("/System/Library/CoreServices/Certificate Assistant.app/Contents/Resources/3_CreateAndConfigure.bundle/Contents/Resources/CertificateAssistantTrustedApps.plist", true, true); +// // test1_file("/JiefLand/3.Infos/3.Infos-Hackintosh/3.Infos-Dell M4300/Precision M4300 --1D-00-00-00-B1-C2/config.plist", true, true); +//// test_speed("/JiefLand/5.Devel/Clover/Clover-projects/Clover--CloverHackyColor--master.3/Xcode/CloverConfigPlistValidator/config-nowarning-noerror.plist"); +//// iterateFileSystem("/JiefLand/5.Devel/Clover/user config"_XS8); +// +//#else +// printf("Version 13\n"); +// if ( argc == 0 ) { +// printf("Usage %s [path to file or folder to scan]\n", argv[0]); +// return -1; +// } +// size_t nb = 0; +// if ( argc == 1 ) { +// if ( !iterateFileSystem("/"_XS8) ) nb += 1; +// }else{ +// for ( int idx = 1 ; nb == 0 && idx < argc ; ++idx ) { // nb == 0 because I want to stop at the first problem. +// XString8 file; +// file.takeValueFrom(argv[idx]); +// struct stat st_stat; +// if ( stat(file.c_str(), &st_stat) != 0 ) { +// fprintf(stderr, "Cannot access '%s'. Skipped.\n", file.c_str()); +// continue; +// } +// if ( S_ISDIR(st_stat.st_mode) ) { +// printf("Look for config.plist in folder '%s'\n", file.c_str()); +// if ( !iterateFileSystem(file) ) nb += 1; +// }else{ +//// if ( !iterate_test(file) ) nb += 1; +// if ( EFI_ERROR(test1_file(file.c_str(), true, true)) ) nb += 1; +// } +// } +// } +// if ( nb == 0 ) { +// if ( nbStructuralProblem > 0 ) { +// printf("%d file(s) ignored because of xml structural problem (missing closing tag or like).\n", nbStructuralProblem); +// } +// printf("%d file(s) read. No parsing bug detected. Great. Let me know\n", nbConfigPlistRead); +// } +//#endif + + return 0; +} + + + + + + +// +// +//bool b; +//b = "aa"_XS8.endWithOrEqualToIC("config.plist"_XS8); +//b = "config.plist"_XS8.endWithOrEqualToIC("config.plist"_XS8); +//b = "Config.plist"_XS8.endWithOrEqualToIC("config.plist"_XS8); +//b = "AAConfig.plist"_XS8.endWithOrEqualToIC("config.plist"_XS8); +//b = "AAConfig.plista"_XS8.endWithOrEqualToIC("config.plist"_XS8); diff --git a/Xcode/CloverMacOsApp/src/main_fixbiosdsdt.cpp b/Xcode/CloverMacOsApp/src/main_fixbiosdsdt.cpp new file mode 100755 index 0000000000..3cb8b1df53 --- /dev/null +++ b/Xcode/CloverMacOsApp/src/main_fixbiosdsdt.cpp @@ -0,0 +1,106 @@ +// +// main.cpp +// cpp_tests +// +// Created by jief on 23.02.20. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#include +#include +#include +#include +#include +#include +#include + +//#include +//#include +//#include +//#include + +//#include + +#include +#include +#include "../../../rEFIt_UEFI/Platform/plist/plist.h" +#include "../../../rEFIt_UEFI/Platform/Settings.h" +#include "../../../rEFIt_UEFI/cpp_unit_test/all_tests.h" + +#include +#include "../../../rEFIt_UEFI/Settings/ConfigPlist/ConfigPlistClass.h" +#include "../../../rEFIt_UEFI/Settings/ConfigPlist/SMBIOSPlist.h" + +#include "ConfigSample1.h" +#include "Compare/CompareField.h" +#include "Compare/CompareSettings.h" +#include "Assign/AssignSettings.h" + +#include "OldSettings/Settings.h" + +extern bool gEnableCloverLog; + + +static EFI_STATUS readFile(const char* filename, char** sourcePtr, size_t* newLen) +{ + char*& source = *sourcePtr; + *newLen = 0; + FILE *fp = fopen(filename, "r"); + if (fp == NULL) { +// fputs("Error fopen config plist", stderr); + return EFI_NOT_FOUND; + } + /* Go to the end of the file. */ + if (fseek(fp, 0L, SEEK_END) == 0) { + /* Get the size of the file. */ + long bufsize = ftell(fp); + if (bufsize == -1) { +// fputs("Error ftell config plist", stderr); + return EFI_LOAD_ERROR; + } + + /* Allocate our buffer to that size. */ + source = (char*)malloc(sizeof(char) * (bufsize + 1)); + + /* Go back to the start of the file. */ + if (fseek(fp, 0L, SEEK_SET) != 0) { +// fputs("Error fseek config plist", stderr); + return EFI_LOAD_ERROR; + } + + /* Read the entire file into memory. */ + *newLen = fread(source, sizeof(char), bufsize, fp); + if ( ferror( fp ) != 0 ) { +// fputs("Error reading config plist", stderr); + return EFI_LOAD_ERROR; + } else { + source[*newLen] = '\0'; /* Just to be safe. */ + } + } + fclose(fp); + return EFI_SUCCESS; +} + +extern UINT32 ArptADR1; +extern UINT32 FIXAirport (UINT8 *dsdt, UINT32 len); + +extern "C" int main_fixbiosdsdt(int argc, const char * argv[]) +{ + (void)argc; + (void)argv; + setlocale(LC_ALL, "en_US"); // to allow printf unicode char + +// xcode_utf_fixed_tests(); + + gEnableCloverLog = false; + + char* buf; + size_t size; + readFile("DSDT_before_AIRPORT.bin", &buf, &size); + + ArptADR1=0x1C0000; + FIXAirport((UINT8 *)buf, (UINT32)size); + + return 0; +} + diff --git a/Xcode/CloverMacOsApp/src/main_read_config.plist.cpp b/Xcode/CloverMacOsApp/src/main_read_config.plist.cpp new file mode 100755 index 0000000000..c71dc2ce37 --- /dev/null +++ b/Xcode/CloverMacOsApp/src/main_read_config.plist.cpp @@ -0,0 +1,130 @@ +// +// main.cpp +// cpp_tests +// +// Created by jief on 23.02.20. +// Copyright © 2020 Jief_Machak. All rights reserved. +// + +#include +#include +#include +#include +#include +#include +#include + +//#include +//#include +//#include +//#include + +//#include + +#include +#include +#include "../../../rEFIt_UEFI/Platform/Settings.h" + +#include "../../../rEFIt_UEFI/Settings/ConfigPlist/ConfigPlistClass.h" +#include "../../../rEFIt_UEFI/Settings/ConfigPlist/SMBIOSPlist.h" + +#include "ConfigSample1.h" + + +extern bool gEnableCloverLog; + + +static EFI_STATUS readFile(const char* filename, char** sourcePtr, size_t* newLen) +{ + char*& source = *sourcePtr; + *newLen = 0; + FILE *fp = fopen(filename, "r"); + if (fp == NULL) { +// fputs("Error fopen config plist", stderr); + return EFI_NOT_FOUND; + } + /* Go to the end of the file. */ + if (fseek(fp, 0L, SEEK_END) == 0) { + /* Get the size of the file. */ + long bufsize = ftell(fp); + if (bufsize == -1) { +// fputs("Error ftell config plist", stderr); + return EFI_LOAD_ERROR; + } + + /* Allocate our buffer to that size. */ + source = (char*)malloc(sizeof(char) * (bufsize + 1)); + + /* Go back to the start of the file. */ + if (fseek(fp, 0L, SEEK_SET) != 0) { +// fputs("Error fseek config plist", stderr); + return EFI_LOAD_ERROR; + } + + /* Read the entire file into memory. */ + *newLen = fread(source, sizeof(char), bufsize, fp); + if ( ferror( fp ) != 0 ) { +// fputs("Error reading config plist", stderr); + return EFI_LOAD_ERROR; + } else { + source[*newLen] = '\0'; /* Just to be safe. */ + } + } + fclose(fp); + return EFI_SUCCESS; +} + + +static EFI_STATUS test1(const char *source, size_t newLen) +{ + ConfigPlistClass configPlist; + + XmlLiteParser xmlLiteParser; + xmlLiteParser.init(source, newLen); + + printf("\n"); + printf("=== [ Parse ] ====================\n"); + configPlist.parse(&xmlLiteParser, ""_XS8); + for ( size_t idx = 0 ; idx < xmlLiteParser.getErrorsAndWarnings().size() ; idx++ ) { + const XmlParserMessage& xmlMsg = xmlLiteParser.getErrorsAndWarnings()[idx]; + printf("%s: %s\n", xmlMsg.isError ? "Error" : "Warning", xmlMsg.msg.c_str()); + } + + SETTINGS_DATA settingsData; + settingsData.takeValueFrom(configPlist); + + printf("\n"); + + return 0; +} + +EFI_STATUS test1(const char *source) +{ + return test1(source, strlen(source)); +} + +EFI_STATUS test1_file(const char* filename) +{ + EFI_STATUS Status; + char * source; + size_t newLen; + +printf("Debug test file:%s\n", filename); + Status = readFile(filename, &source, &newLen); + printf("readFile returns %s\n", efiStrError(Status)); + if ( EFI_ERROR(Status) ) { + return Status; + } + + return test1(source, newLen); +} + + +extern "C" int main_read_configplist(int argc, const char * argv[]) +{ + + test1_file("/JiefLand/5.Devel/Clover/user config/kushwavez/2021-04-29/X1C6_config_and_logs/config.plist"); + + return 0; +} + diff --git a/Xcode/CloverX64/CloverX64.xcodeproj/project.pbxproj b/Xcode/CloverX64/CloverX64.xcodeproj/project.pbxproj index e7970b8012..60bde60fc9 100644 --- a/Xcode/CloverX64/CloverX64.xcodeproj/project.pbxproj +++ b/Xcode/CloverX64/CloverX64.xcodeproj/project.pbxproj @@ -13,6 +13,15 @@ 9A0064A82B08298E0016E3EB /* MemoryTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0064A42B08298D0016E3EB /* MemoryTracker.h */; }; 9A0064A92B08298E0016E3EB /* MemoryTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0064A42B08298D0016E3EB /* MemoryTracker.h */; }; 9A0064AA2B08298E0016E3EB /* MemoryTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0064A42B08298D0016E3EB /* MemoryTracker.h */; }; + 9A0FF4102B0BB6C600F9BC7C /* PlatformdataModels.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0FF40D2B0BB6C600F9BC7C /* PlatformdataModels.h */; }; + 9A0FF4112B0BB6C600F9BC7C /* PlatformdataModels.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0FF40D2B0BB6C600F9BC7C /* PlatformdataModels.h */; }; + 9A0FF4122B0BB6C600F9BC7C /* PlatformdataModels.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0FF40D2B0BB6C600F9BC7C /* PlatformdataModels.h */; }; + 9A0FF4132B0BB6C600F9BC7C /* UtilsEFI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF40E2B0BB6C600F9BC7C /* UtilsEFI.cpp */; }; + 9A0FF4142B0BB6C600F9BC7C /* UtilsEFI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF40E2B0BB6C600F9BC7C /* UtilsEFI.cpp */; }; + 9A0FF4152B0BB6C600F9BC7C /* UtilsEFI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF40E2B0BB6C600F9BC7C /* UtilsEFI.cpp */; }; + 9A0FF4162B0BB6C600F9BC7C /* UtilsEFI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0FF40F2B0BB6C600F9BC7C /* UtilsEFI.h */; }; + 9A0FF4172B0BB6C600F9BC7C /* UtilsEFI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0FF40F2B0BB6C600F9BC7C /* UtilsEFI.h */; }; + 9A0FF4182B0BB6C600F9BC7C /* UtilsEFI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0FF40F2B0BB6C600F9BC7C /* UtilsEFI.h */; }; 9A27545B263801930095D456 /* Self.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A275455263801920095D456 /* Self.h */; }; 9A27545C263801930095D456 /* Self.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A275455263801920095D456 /* Self.h */; }; 9A27545D263801930095D456 /* Self.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A275455263801920095D456 /* Self.h */; }; @@ -1105,6 +1114,9 @@ /* Begin PBXFileReference section */ 9A0064A32B08298D0016E3EB /* MemoryTracker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryTracker.cpp; sourceTree = ""; }; 9A0064A42B08298D0016E3EB /* MemoryTracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryTracker.h; sourceTree = ""; }; + 9A0FF40D2B0BB6C600F9BC7C /* PlatformdataModels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformdataModels.h; sourceTree = ""; }; + 9A0FF40E2B0BB6C600F9BC7C /* UtilsEFI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UtilsEFI.cpp; sourceTree = ""; }; + 9A0FF40F2B0BB6C600F9BC7C /* UtilsEFI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsEFI.h; sourceTree = ""; }; 9A275455263801920095D456 /* Self.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Self.h; sourceTree = ""; }; 9A275456263801920095D456 /* SelfOem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelfOem.h; sourceTree = ""; }; 9A275457263801930095D456 /* SelfOem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SelfOem.cpp; sourceTree = ""; }; @@ -1740,6 +1752,9 @@ 9A8787E526186896000B9362 /* Platform */ = { isa = PBXGroup; children = ( + 9A0FF40D2B0BB6C600F9BC7C /* PlatformdataModels.h */, + 9A0FF40E2B0BB6C600F9BC7C /* UtilsEFI.cpp */, + 9A0FF40F2B0BB6C600F9BC7C /* UtilsEFI.h */, 9A87881226186896000B9362 /* AcpiPatcher.cpp */, 9A87880326186896000B9362 /* AcpiPatcher.h */, 9A87881726186896000B9362 /* AmlGenerator.cpp */, @@ -2144,6 +2159,7 @@ 9A87891B26186897000B9362 /* printf_lite-test-cpp_conf.h in Headers */, 9A8788E526186897000B9362 /* stddef.h in Headers */, 9A878A3526186897000B9362 /* TagBool.h in Headers */, + 9A0FF4102B0BB6C600F9BC7C /* PlatformdataModels.h in Headers */, 9A878C0F26186898000B9362 /* MSUEFICADB.h in Headers */, 9A878BAF26186898000B9362 /* BmLib.h in Headers */, 9A878B4026186897000B9362 /* VersionString.h in Headers */, @@ -2193,6 +2209,7 @@ 9A87890626186897000B9362 /* stdio.h in Headers */, 9A878ACB26186897000B9362 /* BootOptions.h in Headers */, 9A878A9E26186897000B9362 /* sse3_5_patcher.h in Headers */, + 9A0FF4162B0BB6C600F9BC7C /* UtilsEFI.h in Headers */, 9A87894B26186897000B9362 /* strncmp_test.h in Headers */, 9A8788DC26186897000B9362 /* stdlib.h in Headers */, 9A8789E726186897000B9362 /* TagTypes.h in Headers */, @@ -2437,6 +2454,7 @@ 9A878B1726186897000B9362 /* APFS.h in Headers */, 9A878C1026186898000B9362 /* MSUEFICADB.h in Headers */, 9A878AB126186897000B9362 /* device_inject.h in Headers */, + 9A0FF4172B0BB6C600F9BC7C /* UtilsEFI.h in Headers */, 9A87899726186897000B9362 /* printlib-test.h in Headers */, 9A2754AA263802230095D456 /* Config_Devices_Properties.h in Headers */, 9A878BB926186898000B9362 /* XImage.h in Headers */, @@ -2469,6 +2487,7 @@ 9A878A5426186897000B9362 /* Utils.h in Headers */, 9A878A4E26186897000B9362 /* MacOsVersion.h in Headers */, 9A8789F726186897000B9362 /* TagKey.h in Headers */, + 9A0FF4112B0BB6C600F9BC7C /* PlatformdataModels.h in Headers */, 9A275495263802230095D456 /* Config_Graphics.h in Headers */, 9A878C5526186898000B9362 /* shared_with_menu.h in Headers */, 9A87894C26186897000B9362 /* strncmp_test.h in Headers */, @@ -2645,6 +2664,7 @@ 9A878B1826186897000B9362 /* APFS.h in Headers */, 9A878C1126186898000B9362 /* MSUEFICADB.h in Headers */, 9A878AB226186897000B9362 /* device_inject.h in Headers */, + 9A0FF4182B0BB6C600F9BC7C /* UtilsEFI.h in Headers */, 9A87899826186897000B9362 /* printlib-test.h in Headers */, 9A2754AB263802230095D456 /* Config_Devices_Properties.h in Headers */, 9A878BBA26186898000B9362 /* XImage.h in Headers */, @@ -2677,6 +2697,7 @@ 9A878A5526186897000B9362 /* Utils.h in Headers */, 9A878A4F26186897000B9362 /* MacOsVersion.h in Headers */, 9A8789F826186897000B9362 /* TagKey.h in Headers */, + 9A0FF4122B0BB6C600F9BC7C /* PlatformdataModels.h in Headers */, 9A275496263802230095D456 /* Config_Graphics.h in Headers */, 9A878C5626186898000B9362 /* shared_with_menu.h in Headers */, 9A87894D26186897000B9362 /* strncmp_test.h in Headers */, @@ -3008,6 +3029,7 @@ 9A878C5D26186898000B9362 /* shared_with_menu.cpp in Sources */, 9A878A9826186897000B9362 /* PlatformDriverOverride.cpp in Sources */, 9A87890326186897000B9362 /* strlen.cpp in Sources */, + 9A0FF4132B0BB6C600F9BC7C /* UtilsEFI.cpp in Sources */, 9A878C2A26186898000B9362 /* lockedgraphics.cpp in Sources */, 9A878C0926186898000B9362 /* secureboot.cpp in Sources */, 9A878B1C26186897000B9362 /* sound.cpp in Sources */, @@ -3173,6 +3195,7 @@ 9A8788F826186897000B9362 /* wchar.cpp in Sources */, 9A87897C26186897000B9362 /* MacOsVersion_test.cpp in Sources */, 9A87898226186897000B9362 /* printlib-test.cpp in Sources */, + 9A0FF4142B0BB6C600F9BC7C /* UtilsEFI.cpp in Sources */, 9A878C4626186898000B9362 /* REFIT_MAINMENU_SCREEN.cpp in Sources */, 9A878C5E26186898000B9362 /* shared_with_menu.cpp in Sources */, 9A878A9926186897000B9362 /* PlatformDriverOverride.cpp in Sources */, @@ -3340,6 +3363,7 @@ 9A8788F926186897000B9362 /* wchar.cpp in Sources */, 9A87897D26186897000B9362 /* MacOsVersion_test.cpp in Sources */, 9A87898326186897000B9362 /* printlib-test.cpp in Sources */, + 9A0FF4152B0BB6C600F9BC7C /* UtilsEFI.cpp in Sources */, 9A878C4726186898000B9362 /* REFIT_MAINMENU_SCREEN.cpp in Sources */, 9A878C5F26186898000B9362 /* shared_with_menu.cpp in Sources */, 9A878A9A26186897000B9362 /* PlatformDriverOverride.cpp in Sources */, diff --git a/Xcode/cpp_tests/cpp_tests.xcodeproj/project.pbxproj b/Xcode/cpp_tests/cpp_tests.xcodeproj/project.pbxproj index 99e408514e..97eee98941 100644 --- a/Xcode/cpp_tests/cpp_tests.xcodeproj/project.pbxproj +++ b/Xcode/cpp_tests/cpp_tests.xcodeproj/project.pbxproj @@ -44,6 +44,14 @@ 9A071C3F2619FF850007CC44 /* XmlLiteArrayTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C3B2619FF840007CC44 /* XmlLiteArrayTypes.cpp */; }; 9A071C402619FF850007CC44 /* XmlLiteArrayTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A071C3B2619FF840007CC44 /* XmlLiteArrayTypes.cpp */; }; 9A0B08742403B08400E2B470 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A9223302402FD1000483CBA /* main.cpp */; }; + 9A0FF3FE2B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF3FC2B0BB00C00F9BC7C /* MemoryTracker.cpp */; }; + 9A0FF3FF2B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF3FC2B0BB00C00F9BC7C /* MemoryTracker.cpp */; }; + 9A0FF4002B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF3FC2B0BB00C00F9BC7C /* MemoryTracker.cpp */; }; + 9A0FF4012B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF3FC2B0BB00C00F9BC7C /* MemoryTracker.cpp */; }; + 9A0FF4042B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4032B0BB02C00F9BC7C /* MemoryTracker_test.cpp */; }; + 9A0FF4052B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4032B0BB02C00F9BC7C /* MemoryTracker_test.cpp */; }; + 9A0FF4062B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4032B0BB02C00F9BC7C /* MemoryTracker_test.cpp */; }; + 9A0FF4072B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A0FF4032B0BB02C00F9BC7C /* MemoryTracker_test.cpp */; }; 9A27552E2639A1FA0095D456 /* ConfigPlistAbstract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A27550B2639A1FA0095D456 /* ConfigPlistAbstract.cpp */; }; 9A27552F2639A1FA0095D456 /* ConfigPlistAbstract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A27550B2639A1FA0095D456 /* ConfigPlistAbstract.cpp */; }; 9A2755302639A1FA0095D456 /* ConfigPlistAbstract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A27550B2639A1FA0095D456 /* ConfigPlistAbstract.cpp */; }; @@ -335,6 +343,10 @@ 9A071C3B2619FF840007CC44 /* XmlLiteArrayTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = XmlLiteArrayTypes.cpp; sourceTree = ""; }; 9A071C3C2619FF840007CC44 /* XmlLiteArrayTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlLiteArrayTypes.h; sourceTree = ""; }; 9A0B08862403B08400E2B470 /* cpp_tests UTF32 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "cpp_tests UTF32"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9A0FF3FC2B0BB00C00F9BC7C /* MemoryTracker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryTracker.cpp; sourceTree = ""; }; + 9A0FF3FD2B0BB00D00F9BC7C /* MemoryTracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryTracker.h; sourceTree = ""; }; + 9A0FF4022B0BB02C00F9BC7C /* MemoryTracker_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryTracker_test.h; sourceTree = ""; }; + 9A0FF4032B0BB02C00F9BC7C /* MemoryTracker_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryTracker_test.cpp; sourceTree = ""; }; 9A2754F22639A1FA0095D456 /* Readme.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = Readme.md; sourceTree = ""; }; 9A2755042639A1FA0095D456 /* ConfigPlistAbstract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfigPlistAbstract.h; sourceTree = ""; }; 9A27550B2639A1FA0095D456 /* ConfigPlistAbstract.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ConfigPlistAbstract.cpp; sourceTree = ""; }; @@ -4545,91 +4557,6 @@ 9A87859C26186300000B9362 /* printf_lite-conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "printf_lite-conf.h"; sourceTree = ""; }; 9A87859F26186300000B9362 /* MemLogLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemLogLib.c; sourceTree = ""; }; 9A8785A126186300000B9362 /* ReadmeJief.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ReadmeJief.txt; sourceTree = ""; }; - 9A8785A426186300000B9362 /* OcDataHubLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDataHubLib.lib; sourceTree = ""; }; - 9A8785A526186300000B9362 /* OcXmlLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcXmlLib.lib; sourceTree = ""; }; - 9A8785A626186300000B9362 /* OcConfigurationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcConfigurationLib.lib; sourceTree = ""; }; - 9A8785A726186300000B9362 /* OcFirmwareVolumeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcFirmwareVolumeLib.lib; sourceTree = ""; }; - 9A8785A826186300000B9362 /* OcStorageLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcStorageLib.lib; sourceTree = ""; }; - 9A8785A926186300000B9362 /* OcVirtualFsLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcVirtualFsLib.lib; sourceTree = ""; }; - 9A8785AA26186300000B9362 /* OcAppleEventLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleEventLib.lib; sourceTree = ""; }; - 9A8785AB26186300000B9362 /* OcCryptoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcCryptoLib.lib; sourceTree = ""; }; - 9A8785AC26186300000B9362 /* OcAudioLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAudioLib.lib; sourceTree = ""; }; - 9A8785AD26186300000B9362 /* OcDevicePropertyLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDevicePropertyLib.lib; sourceTree = ""; }; - 9A8785AE26186301000B9362 /* OcAppleChunklistLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleChunklistLib.lib; sourceTree = ""; }; - 9A8785AF26186301000B9362 /* OcStringLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcStringLib.lib; sourceTree = ""; }; - 9A8785B026186301000B9362 /* OcTemplateLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcTemplateLib.lib; sourceTree = ""; }; - 9A8785B126186301000B9362 /* OcUnicodeCollationEngGenericLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcUnicodeCollationEngGenericLib.lib; sourceTree = ""; }; - 9A8785B226186301000B9362 /* ControlMsrE2.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = ControlMsrE2.lib; sourceTree = ""; }; - 9A8785B326186301000B9362 /* OcAppleKeyMapLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleKeyMapLib.lib; sourceTree = ""; }; - 9A8785B426186301000B9362 /* OcConsoleLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcConsoleLib.lib; sourceTree = ""; }; - 9A8785B526186301000B9362 /* OcRtcLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcRtcLib.lib; sourceTree = ""; }; - 9A8785B626186301000B9362 /* OcDebugLogLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDebugLogLib.lib; sourceTree = ""; }; - 9A8785B726186301000B9362 /* OcCpuLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcCpuLib.lib; sourceTree = ""; }; - 9A8785B826186301000B9362 /* OcGuardLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcGuardLib.lib; sourceTree = ""; }; - 9A8785B926186301000B9362 /* OcDevicePathLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDevicePathLib.lib; sourceTree = ""; }; - 9A8785BA26186301000B9362 /* OcAppleKernelLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleKernelLib.lib; sourceTree = ""; }; - 9A8785BB26186301000B9362 /* OcAppleKeysLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleKeysLib.lib; sourceTree = ""; }; - 9A8785BC26186301000B9362 /* OcInputLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcInputLib.lib; sourceTree = ""; }; - 9A8785BD26186301000B9362 /* OpenRuntime.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OpenRuntime.lib; sourceTree = ""; }; - 9A8785BE26186301000B9362 /* OcAppleRamDiskLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleRamDiskLib.lib; sourceTree = ""; }; - 9A8785BF26186301000B9362 /* OcPeCoffLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcPeCoffLib.lib; sourceTree = ""; }; - 9A8785C026186301000B9362 /* OcApfsLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcApfsLib.lib; sourceTree = ""; }; - 9A8785C126186301000B9362 /* OcSmbiosLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcSmbiosLib.lib; sourceTree = ""; }; - 9A8785C226186301000B9362 /* OcSerializeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcSerializeLib.lib; sourceTree = ""; }; - 9A8785C326186301000B9362 /* OcRngLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcRngLib.lib; sourceTree = ""; }; - 9A8785C426186301000B9362 /* OcAfterBootCompatLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAfterBootCompatLib.lib; sourceTree = ""; }; - 9A8785C526186301000B9362 /* OcCompressionLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcCompressionLib.lib; sourceTree = ""; }; - 9A8785C626186301000B9362 /* OcAppleImageVerificationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleImageVerificationLib.lib; sourceTree = ""; }; - 9A8785C726186301000B9362 /* OcMemoryLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMemoryLib.lib; sourceTree = ""; }; - 9A8785C826186301000B9362 /* OcMacInfoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMacInfoLib.lib; sourceTree = ""; }; - 9A8785C926186301000B9362 /* OcBootManagementLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcBootManagementLib.lib; sourceTree = ""; }; - 9A8785CA26186301000B9362 /* OcAppleImg4Lib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleImg4Lib.lib; sourceTree = ""; }; - 9A8785CB26186301000B9362 /* OcAcpiLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAcpiLib.lib; sourceTree = ""; }; - 9A8785CC26186301000B9362 /* OcAppleDiskImageLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleDiskImageLib.lib; sourceTree = ""; }; - 9A8785CD26186301000B9362 /* OcMachoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMachoLib.lib; sourceTree = ""; }; - 9A8785CE26186301000B9362 /* OcSmcLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcSmcLib.lib; sourceTree = ""; }; - 9A8785CF26186301000B9362 /* OcFileLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcFileLib.lib; sourceTree = ""; }; - 9A8785D026186301000B9362 /* OcAppleUserInterfaceThemeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleUserInterfaceThemeLib.lib; sourceTree = ""; }; - 9A8785D126186301000B9362 /* OcDeviceTreeLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDeviceTreeLib.lib; sourceTree = ""; }; - 9A8785D226186301000B9362 /* OcOSInfoLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcOSInfoLib.lib; sourceTree = ""; }; - 9A8785D326186301000B9362 /* OcDriverConnectionLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcDriverConnectionLib.lib; sourceTree = ""; }; - 9A8785D426186301000B9362 /* OpenCore.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OpenCore.lib; sourceTree = ""; }; - 9A8785D526186301000B9362 /* OcHashServicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcHashServicesLib.lib; sourceTree = ""; }; - 9A8785D626186301000B9362 /* OcMiscLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcMiscLib.lib; sourceTree = ""; }; - 9A8785D726186301000B9362 /* OcAppleBootPolicyLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleBootPolicyLib.lib; sourceTree = ""; }; - 9A8785D826186301000B9362 /* OcAppleSecureBootLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OcAppleSecureBootLib.lib; sourceTree = ""; }; - 9A8785DA26186301000B9362 /* VideoBiosPatchLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = VideoBiosPatchLib.lib; sourceTree = ""; }; - 9A8785DB26186301000B9362 /* VBoxPeCoffLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = VBoxPeCoffLib.lib; sourceTree = ""; }; - 9A8785DC26186301000B9362 /* DuetTimerLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DuetTimerLib.lib; sourceTree = ""; }; - 9A8785DE26186301000B9362 /* OpensslLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = OpensslLib.lib; sourceTree = ""; }; - 9A8785DF26186301000B9362 /* HdaDevicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = HdaDevicesLib.lib; sourceTree = ""; }; - 9A8785E026186301000B9362 /* WaveLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = WaveLib.lib; sourceTree = ""; }; - 9A8785E226186301000B9362 /* BasePciCf8Lib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePciCf8Lib.lib; sourceTree = ""; }; - 9A8785E326186301000B9362 /* UefiApplicationEntryPoint.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiApplicationEntryPoint.lib; sourceTree = ""; }; - 9A8785E426186301000B9362 /* BaseLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseLib.lib; sourceTree = ""; }; - 9A8785E526186301000B9362 /* UefiRuntimeServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiRuntimeServicesTableLib.lib; sourceTree = ""; }; - 9A8785E626186301000B9362 /* BaseMemoryLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseMemoryLib.lib; sourceTree = ""; }; - 9A8785E726186301000B9362 /* BaseIoLibIntrinsic.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseIoLibIntrinsic.lib; sourceTree = ""; }; - 9A8785E826186301000B9362 /* DxeServicesLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DxeServicesLib.lib; sourceTree = ""; }; - 9A8785E926186301000B9362 /* BaseCpuLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseCpuLib.lib; sourceTree = ""; }; - 9A8785EA26186301000B9362 /* UefiLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiLib.lib; sourceTree = ""; }; - 9A8785EB26186301000B9362 /* PeCoffExtraActionLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = PeCoffExtraActionLibNull.lib; sourceTree = ""; }; - 9A8785EC26186301000B9362 /* UefiMemoryAllocationLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiMemoryAllocationLib.lib; sourceTree = ""; }; - 9A8785ED26186301000B9362 /* UefiFileHandleLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiFileHandleLib.lib; sourceTree = ""; }; - 9A8785EE26186301000B9362 /* DxeHobLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DxeHobLib.lib; sourceTree = ""; }; - 9A8785EF26186301000B9362 /* UefiBootServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiBootServicesTableLib.lib; sourceTree = ""; }; - 9A8785F026186301000B9362 /* BaseDebugLibSerialPort.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseDebugLibSerialPort.lib; sourceTree = ""; }; - 9A8785F126186301000B9362 /* DxeServicesTableLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = DxeServicesTableLib.lib; sourceTree = ""; }; - 9A8785F226186301000B9362 /* BasePciLibCf8.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePciLibCf8.lib; sourceTree = ""; }; - 9A8785F326186301000B9362 /* BasePrintLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePrintLib.lib; sourceTree = ""; }; - 9A8785F426186301000B9362 /* UefiDevicePathLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = UefiDevicePathLib.lib; sourceTree = ""; }; - 9A8785F526186301000B9362 /* BaseDebugPrintErrorLevelLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseDebugPrintErrorLevelLib.lib; sourceTree = ""; }; - 9A8785F726186301000B9362 /* MtrrLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = MtrrLib.lib; sourceTree = ""; }; - 9A8785F926186301000B9362 /* BasePlatformHookLibNull.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BasePlatformHookLibNull.lib; sourceTree = ""; }; - 9A8785FA26186301000B9362 /* BaseSerialPortLib16550.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = BaseSerialPortLib16550.lib; sourceTree = ""; }; - 9A8785FB26186301000B9362 /* FrameBufferBltLib.lib */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = FrameBufferBltLib.lib; sourceTree = ""; }; - 9A8785FD26186301000B9362 /* AutoGen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoGen.h; sourceTree = ""; }; - 9A8785FE26186301000B9362 /* AutoGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AutoGen.c; sourceTree = ""; }; 9A87860026186301000B9362 /* xcode_utf_fixed.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xcode_utf_fixed.cpp; sourceTree = ""; }; 9A87860326186301000B9362 /* BaseMemoryLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BaseMemoryLib.c; sourceTree = ""; }; 9A87860426186301000B9362 /* MemoryAllocationLib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MemoryAllocationLib.c; sourceTree = ""; }; @@ -4683,6 +4610,8 @@ 9A071C0F26196C4A0007CC44 /* cpp_lib */ = { isa = PBXGroup; children = ( + 9A0FF3FC2B0BB00C00F9BC7C /* MemoryTracker.cpp */, + 9A0FF3FD2B0BB00D00F9BC7C /* MemoryTracker.h */, 9A071C3B2619FF840007CC44 /* XmlLiteArrayTypes.cpp */, 9A071C3C2619FF840007CC44 /* XmlLiteArrayTypes.h */, 9A071C1326196C4A0007CC44 /* undefinable.h */, @@ -5422,110 +5351,110 @@ 9A82ECEA26184663006F973B /* Library */ = { isa = PBXGroup; children = ( - 9A82ECEB26184663006F973B /* PeiServicesTablePointerLibIdt */, - 9A82ECEF26184663006F973B /* StandaloneMmServicesTableLib */, - 9A82ECF326184663006F973B /* PeiPciLibPciCfg2 */, - 9A82ECF726184663006F973B /* PeiSmbusLibSmbus2Ppi */, - 9A82ECFD26184663006F973B /* BaseDebugPrintErrorLevelLib */, 9A82ED0126184663006F973B /* BaseCacheMaintenanceLib */, - 9A82ED0726184663006F973B /* DxeIoLibCpuIo2 */, - 9A82ED0E26184663006F973B /* BasePciLibCf8 */, - 9A82ED1226184663006F973B /* PeiServicesTablePointerLib */, + 9A82EF2626184665006F973B /* BaseCpuLib */, 9A82ED1626184663006F973B /* BaseDebugLibNull */, - 9A82ED1A26184663006F973B /* UefiPciSegmentLibPciRootBridgeIo */, - 9A82ED1F26184663006F973B /* PeiServicesLib */, - 9A82ED2326184663006F973B /* BasePciExpressLib */, - 9A82ED2726184663006F973B /* BaseS3SmbusLib */, - 9A82ED2B26184663006F973B /* DxeServicesLib */, - 9A82ED3226184663006F973B /* SecPeiDxeTimerLibCpu */, - 9A82ED3626184663006F973B /* StandaloneMmDriverEntryPoint */, - 9A82ED3A26184663006F973B /* SmmPciLibPciRootBridgeIo */, + 9A82F00926184666006F973B /* BaseDebugLibSerialPort */, + 9A82ECFD26184663006F973B /* BaseDebugPrintErrorLevelLib */, + 9A82F06726184666006F973B /* BaseExtractGuidedSectionLib */, + 9A82F09A26184667006F973B /* BaseIoLibIntrinsic */, 9A82ED3E26184663006F973B /* BaseLib */, - 9A82EEB926184665006F973B /* BaseMemoryLibRepStr */, - 9A82EEE426184665006F973B /* BaseSynchronizationLib */, - 9A82EF0A26184665006F973B /* UefiMemoryLib */, - 9A82EF1D26184665006F973B /* PciSegmentLibSegmentInfo */, - 9A82EF2626184665006F973B /* BaseCpuLib */, - 9A82EF3F26184665006F973B /* PeiExtractGuidedSectionLib */, - 9A82EF4326184665006F973B /* UefiDriverEntryPoint */, - 9A82EF4726184665006F973B /* UefiDebugLibDebugPortProtocol */, - 9A82EF4C26184665006F973B /* SmmPciExpressLib */, - 9A82EF4F26184665006F973B /* DxeRuntimePciExpressLib */, + 9A82EFDC26184666006F973B /* BaseMemoryLib */, + 9A82F0DD26184667006F973B /* BaseMemoryLibMmx */, 9A82EF5326184665006F973B /* BaseMemoryLibOptDxe */, - 9A82EF9126184665006F973B /* BasePerformanceLibNull */, - 9A82EF9526184665006F973B /* BasePciSegmentLibPci */, - 9A82EF9926184665006F973B /* PeiDxePostCodeLibReportStatusCode */, + 9A82F13526184667006F973B /* BaseMemoryLibOptPei */, + 9A82EEB926184665006F973B /* BaseMemoryLibRepStr */, + 9A82F00D26184666006F973B /* BaseMemoryLibSse2 */, + 9A82F10826184667006F973B /* BaseOrderedCollectionRedBlackTreeLib */, 9A82EF9D26184665006F973B /* BasePcdLibNull */, - 9A82EFA126184665006F973B /* BaseStackCheckLib */, - 9A82EFA626184665006F973B /* BaseRngLib */, - 9A82EFAA26184666006F973B /* DxeCoreEntryPoint */, - 9A82EFAE26184666006F973B /* BasePostCodeLibPort80 */, - 9A82EFB226184666006F973B /* PeiCoreEntryPoint */, - 9A82EFB626184666006F973B /* BasePeCoffLib */, - 9A82EFBE26184666006F973B /* SmmLibNull */, 9A82EFC226184666006F973B /* BasePciCf8Lib */, - 9A82EFC626184666006F973B /* MmServicesTableLib */, + 9A82ED2326184663006F973B /* BasePciExpressLib */, + 9A82ED0E26184663006F973B /* BasePciLibCf8 */, + 9A82F11926184667006F973B /* BasePciLibPciExpress */, + 9A82F05F26184666006F973B /* BasePciSegmentInfoLibNull */, + 9A82EF9526184665006F973B /* BasePciSegmentLibPci */, + 9A82F18426184668006F973B /* BasePeCoffExtraActionLibNull */, + 9A82F0B926184667006F973B /* BasePeCoffGetEntryPointLib */, + 9A82EFB626184666006F973B /* BasePeCoffLib */, + 9A82EF9126184665006F973B /* BasePerformanceLibNull */, + 9A82F12D26184667006F973B /* BasePostCodeLibDebug */, + 9A82EFAE26184666006F973B /* BasePostCodeLibPort80 */, + 9A82F17026184668006F973B /* BasePrintLib */, + 9A82F17C26184668006F973B /* BaseReportStatusCodeLibNull */, + 9A82EFA626184665006F973B /* BaseRngLib */, + 9A82F04326184666006F973B /* BaseS3BootScriptLibNull */, + 9A82F00526184666006F973B /* BaseS3IoLib */, + 9A82F16C26184668006F973B /* BaseS3PciLib */, + 9A82F05B26184666006F973B /* BaseS3PciSegmentLib */, + 9A82ED2726184663006F973B /* BaseS3SmbusLib */, + 9A82F13126184667006F973B /* BaseS3StallLib */, 9A82EFCA26184666006F973B /* BaseSafeIntLib */, - 9A82EFD026184666006F973B /* SmmServicesTableLib */, - 9A82EFD426184666006F973B /* DxeExtractGuidedSectionLib */, - 9A82EFD826184666006F973B /* UefiApplicationEntryPoint */, - 9A82EFDC26184666006F973B /* BaseMemoryLib */, - 9A82EFF026184666006F973B /* SmmIoLibSmmCpuIo2 */, - 9A82EFF726184666006F973B /* DxeSmbusLib */, + 9A82F03F26184666006F973B /* BaseSerialPortLibNull */, 9A82EFFD26184666006F973B /* BaseSmbusLibNull */, + 9A82EFA126184665006F973B /* BaseStackCheckLib */, + 9A82EEE426184665006F973B /* BaseSynchronizationLib */, 9A82F00126184666006F973B /* BaseTimerLibNullTemplate */, - 9A82F00526184666006F973B /* BaseS3IoLib */, - 9A82F00926184666006F973B /* BaseDebugLibSerialPort */, - 9A82F00D26184666006F973B /* BaseMemoryLibSse2 */, 9A82F03826184666006F973B /* BaseUefiDecompressLib */, - 9A82F03F26184666006F973B /* BaseSerialPortLibNull */, - 9A82F04326184666006F973B /* BaseS3BootScriptLibNull */, + 9A82EFAA26184666006F973B /* DxeCoreEntryPoint */, + 9A82F0C526184667006F973B /* DxeCoreHobLib */, + 9A82EFD426184666006F973B /* DxeExtractGuidedSectionLib */, + 9A82F05726184666006F973B /* DxeHobLib */, + 9A82F12726184667006F973B /* DxeHstiLib */, + 9A82ED0726184663006F973B /* DxeIoLibCpuIo2 */, 9A82F04726184666006F973B /* DxePcdLib */, - 9A82F04B26184666006F973B /* SmmPeriodicSmiLib */, - 9A82F04F26184666006F973B /* UefiScsiLib */, + 9A82F0D926184667006F973B /* DxeRuntimeDebugLibSerialPort */, + 9A82EF4F26184665006F973B /* DxeRuntimePciExpressLib */, + 9A82ED2B26184663006F973B /* DxeServicesLib */, + 9A82F18026184668006F973B /* DxeServicesTableLib */, + 9A82EFF726184666006F973B /* DxeSmbusLib */, + 9A82EFC626184666006F973B /* MmServicesTableLib */, + 9A82EF1D26184665006F973B /* PciSegmentLibSegmentInfo */, + 9A82EFB226184666006F973B /* PeiCoreEntryPoint */, + 9A82EF9926184665006F973B /* PeiDxePostCodeLibReportStatusCode */, + 9A82EF3F26184665006F973B /* PeiExtractGuidedSectionLib */, + 9A82F08326184667006F973B /* PeiHobLib */, + 9A82F17626184668006F973B /* PeiIoLibCpuIo */, + 9A82F07426184666006F973B /* PeiMemoryAllocationLib */, + 9A82F08726184667006F973B /* PeiMemoryLib */, + 9A82F16426184668006F973B /* PeimEntryPoint */, + 9A82F0CD26184667006F973B /* PeiPcdLib */, + 9A82ECF326184663006F973B /* PeiPciLibPciCfg2 */, + 9A82F0B526184667006F973B /* PeiPciSegmentLibPciCfg2 */, 9A82F05326184666006F973B /* PeiResourcePublicationLib */, - 9A82F05726184666006F973B /* DxeHobLib */, - 9A82F05B26184666006F973B /* BaseS3PciSegmentLib */, - 9A82F05F26184666006F973B /* BasePciSegmentInfoLibNull */, + 9A82ED1F26184663006F973B /* PeiServicesLib */, + 9A82ED1226184663006F973B /* PeiServicesTablePointerLib */, + 9A82ECEB26184663006F973B /* PeiServicesTablePointerLibIdt */, + 9A82ECF726184663006F973B /* PeiSmbusLibSmbus2Ppi */, + 9A82ED3226184663006F973B /* SecPeiDxeTimerLibCpu */, + 9A82F16826184668006F973B /* SmiHandlerProfileLibNull */, + 9A82F0C126184667006F973B /* SmmIoLib */, + 9A82EFF026184666006F973B /* SmmIoLibSmmCpuIo2 */, + 9A82EFBE26184666006F973B /* SmmLibNull */, + 9A82F0D126184667006F973B /* SmmMemLib */, 9A82F06326184666006F973B /* SmmMemoryAllocationLib */, - 9A82F06726184666006F973B /* BaseExtractGuidedSectionLib */, + 9A82EF4C26184665006F973B /* SmmPciExpressLib */, + 9A82ED3A26184663006F973B /* SmmPciLibPciRootBridgeIo */, + 9A82F04B26184666006F973B /* SmmPeriodicSmiLib */, + 9A82EFD026184666006F973B /* SmmServicesTableLib */, + 9A82ED3626184663006F973B /* StandaloneMmDriverEntryPoint */, + 9A82ECEF26184663006F973B /* StandaloneMmServicesTableLib */, + 9A82EFD826184666006F973B /* UefiApplicationEntryPoint */, 9A82F06B26184666006F973B /* UefiBootServicesTableLib */, + 9A82F11426184667006F973B /* UefiDebugLibConOut */, + 9A82EF4726184665006F973B /* UefiDebugLibDebugPortProtocol */, 9A82F06F26184666006F973B /* UefiDebugLibStdErr */, - 9A82F07426184666006F973B /* PeiMemoryAllocationLib */, 9A82F07826184666006F973B /* UefiDevicePathLib */, - 9A82F08326184667006F973B /* PeiHobLib */, - 9A82F08726184667006F973B /* PeiMemoryLib */, - 9A82F09A26184667006F973B /* BaseIoLibIntrinsic */, - 9A82F0B526184667006F973B /* PeiPciSegmentLibPciCfg2 */, - 9A82F0B926184667006F973B /* BasePeCoffGetEntryPointLib */, 9A82F0BD26184667006F973B /* UefiDevicePathLibDevicePathProtocol */, - 9A82F0C126184667006F973B /* SmmIoLib */, - 9A82F0C526184667006F973B /* DxeCoreHobLib */, - 9A82F0C926184667006F973B /* UefiRuntimeServicesTableLib */, - 9A82F0CD26184667006F973B /* PeiPcdLib */, - 9A82F0D126184667006F973B /* SmmMemLib */, + 9A82EF4326184665006F973B /* UefiDriverEntryPoint */, 9A82F0D526184667006F973B /* UefiFileHandleLib */, - 9A82F0D926184667006F973B /* DxeRuntimeDebugLibSerialPort */, - 9A82F0DD26184667006F973B /* BaseMemoryLibMmx */, - 9A82F10826184667006F973B /* BaseOrderedCollectionRedBlackTreeLib */, - 9A82F10C26184667006F973B /* UefiMemoryAllocationLib */, - 9A82F11026184667006F973B /* UefiRuntimeLib */, - 9A82F11426184667006F973B /* UefiDebugLibConOut */, - 9A82F11926184667006F973B /* BasePciLibPciExpress */, 9A82F11D26184667006F973B /* UefiLib */, - 9A82F12726184667006F973B /* DxeHstiLib */, - 9A82F12D26184667006F973B /* BasePostCodeLibDebug */, - 9A82F13126184667006F973B /* BaseS3StallLib */, - 9A82F13526184667006F973B /* BaseMemoryLibOptPei */, + 9A82F10C26184667006F973B /* UefiMemoryAllocationLib */, + 9A82EF0A26184665006F973B /* UefiMemoryLib */, 9A82F16026184668006F973B /* UefiPciLibPciRootBridgeIo */, - 9A82F16426184668006F973B /* PeimEntryPoint */, - 9A82F16826184668006F973B /* SmiHandlerProfileLibNull */, - 9A82F16C26184668006F973B /* BaseS3PciLib */, - 9A82F17026184668006F973B /* BasePrintLib */, - 9A82F17626184668006F973B /* PeiIoLibCpuIo */, - 9A82F17C26184668006F973B /* BaseReportStatusCodeLibNull */, - 9A82F18026184668006F973B /* DxeServicesTableLib */, - 9A82F18426184668006F973B /* BasePeCoffExtraActionLibNull */, + 9A82ED1A26184663006F973B /* UefiPciSegmentLibPciRootBridgeIo */, + 9A82F11026184667006F973B /* UefiRuntimeLib */, + 9A82F0C926184667006F973B /* UefiRuntimeServicesTableLib */, + 9A82F04F26184666006F973B /* UefiScsiLib */, 9A82F18826184668006F973B /* UefiUsbLib */, ); path = Library; @@ -5813,94 +5742,94 @@ 9A82ED5126184663006F973B /* X64 */ = { isa = PBXGroup; children = ( - 9A82ED5226184663006F973B /* WriteMm4.nasm */, - 9A82ED5326184663006F973B /* WriteDr6.nasm */, - 9A82ED5426184663006F973B /* Nasm.inc */, - 9A82ED5526184663006F973B /* WriteTr.nasm */, - 9A82ED5626184663006F973B /* WriteCr4.nasm */, - 9A82ED5726184663006F973B /* Mwait.nasm */, - 9A82ED5826184663006F973B /* ReadFs.nasm */, - 9A82ED5926184663006F973B /* ReadDs.nasm */, - 9A82ED5A26184663006F973B /* FxRestore.nasm */, - 9A82ED5B26184663006F973B /* ReadMm4.nasm */, - 9A82ED5C26184663006F973B /* ReadDr6.nasm */, + 9A82ED8A26184663006F973B /* CpuBreakpoint.c */, + 9A82ED9026184663006F973B /* CpuBreakpoint.nasm */, + 9A82EDA626184663006F973B /* CpuId.nasm */, + 9A82ED6C26184663006F973B /* CpuIdEx.nasm */, 9A82ED5D26184663006F973B /* CpuPause.nasm */, - 9A82ED5E26184663006F973B /* ReadCr4.nasm */, - 9A82ED5F26184663006F973B /* WriteLdtr.nasm */, - 9A82ED6026184663006F973B /* ReadDr7.nasm */, - 9A82ED6126184663006F973B /* SwitchStack.nasm */, - 9A82ED6226184663006F973B /* ReadMm5.nasm */, - 9A82ED6326184663006F973B /* WriteMsr64.nasm */, - 9A82ED6426184663006F973B /* ReadIdtr.nasm */, - 9A82ED6526184663006F973B /* WriteDr7.nasm */, - 9A82ED6626184663006F973B /* WriteMm5.nasm */, - 9A82ED6726184663006F973B /* ReadMm2.nasm */, - 9A82ED6826184663006F973B /* ReadDr0.nasm */, - 9A82ED6926184663006F973B /* ReadEs.nasm */, - 9A82ED6A26184663006F973B /* ReadCr2.nasm */, + 9A82ED7226184663006F973B /* DisableCache.nasm */, + 9A82ED8126184663006F973B /* DisableInterrupts.nasm */, + 9A82ED8526184663006F973B /* DisablePaging64.nasm */, 9A82ED6B26184663006F973B /* EnableCache.nasm */, - 9A82ED6C26184663006F973B /* CpuIdEx.nasm */, - 9A82ED6D26184663006F973B /* SetJump.nasm */, - 9A82ED6E26184663006F973B /* WriteMm2.nasm */, + 9A82ED7726184663006F973B /* EnableDisableInterrupts.nasm */, 9A82ED6F26184663006F973B /* EnableInterrupts.nasm */, + 9A82ED9926184663006F973B /* FlushCacheLine.nasm */, + 9A82ED5A26184663006F973B /* FxRestore.nasm */, + 9A82ED9D26184663006F973B /* FxSave.nasm */, + 9A82ED8926184663006F973B /* GccInline.c */, + 9A82ED9126184663006F973B /* Invd.nasm */, + 9A82ED8326184663006F973B /* Lfence.nasm */, + 9A82ED9226184663006F973B /* LongJump.nasm */, + 9A82ED9E26184663006F973B /* Monitor.nasm */, + 9A82ED5726184663006F973B /* Mwait.nasm */, + 9A82ED5426184663006F973B /* Nasm.inc */, + 9A82ED9726184663006F973B /* Non-existing.c */, 9A82ED7026184663006F973B /* RdRand.nasm */, - 9A82ED7126184663006F973B /* WriteDr0.nasm */, - 9A82ED7226184663006F973B /* DisableCache.nasm */, - 9A82ED7326184663006F973B /* WriteCr2.nasm */, - 9A82ED7426184663006F973B /* ReadGs.nasm */, - 9A82ED7526184663006F973B /* WriteGdtr.nasm */, - 9A82ED7626184663006F973B /* ReadCs.nasm */, - 9A82ED7726184663006F973B /* EnableDisableInterrupts.nasm */, - 9A82ED7826184663006F973B /* WriteCr3.nasm */, - 9A82ED7926184663006F973B /* WriteDr1.nasm */, - 9A82ED7A26184663006F973B /* ReadMsr64.c */, - 9A82ED7B26184663006F973B /* WriteMm3.nasm */, - 9A82ED7C26184663006F973B /* Thunk16.nasm */, + 9A82ED8026184663006F973B /* ReadCr0.nasm */, + 9A82ED6A26184663006F973B /* ReadCr2.nasm */, 9A82ED7D26184663006F973B /* ReadCr3.nasm */, + 9A82ED5E26184663006F973B /* ReadCr4.nasm */, + 9A82ED7626184663006F973B /* ReadCs.nasm */, + 9A82ED6826184663006F973B /* ReadDr0.nasm */, 9A82ED7E26184663006F973B /* ReadDr1.nasm */, - 9A82ED7F26184663006F973B /* ReadMm3.nasm */, - 9A82ED8026184663006F973B /* ReadCr0.nasm */, - 9A82ED8126184663006F973B /* DisableInterrupts.nasm */, 9A82ED8226184663006F973B /* ReadDr2.nasm */, - 9A82ED8326184663006F973B /* Lfence.nasm */, - 9A82ED8426184663006F973B /* ReadMm0.nasm */, - 9A82ED8526184663006F973B /* DisablePaging64.nasm */, - 9A82ED8626184663006F973B /* WriteCr0.nasm */, - 9A82ED8726184663006F973B /* WriteDr2.nasm */, - 9A82ED8826184663006F973B /* WriteMm0.nasm */, - 9A82ED8926184663006F973B /* GccInline.c */, - 9A82ED8A26184663006F973B /* CpuBreakpoint.c */, - 9A82ED8B26184663006F973B /* WriteMm1.nasm */, - 9A82ED8C26184663006F973B /* ReadTr.nasm */, - 9A82ED8D26184663006F973B /* WriteDr3.nasm */, - 9A82ED8E26184663006F973B /* ReadMm1.nasm */, 9A82ED8F26184663006F973B /* ReadDr3.nasm */, - 9A82ED9026184663006F973B /* CpuBreakpoint.nasm */, - 9A82ED9126184663006F973B /* Invd.nasm */, - 9A82ED9226184663006F973B /* LongJump.nasm */, - 9A82ED9326184663006F973B /* ReadGdtr.nasm */, - 9A82ED9426184663006F973B /* Wbinvd.nasm */, + 9A82ED9F26184663006F973B /* ReadDr4.nasm */, + 9A82EDA326184663006F973B /* ReadDr5.nasm */, + 9A82ED5C26184663006F973B /* ReadDr6.nasm */, + 9A82ED6026184663006F973B /* ReadDr7.nasm */, + 9A82ED5926184663006F973B /* ReadDs.nasm */, 9A82ED9526184663006F973B /* ReadEflags.nasm */, - 9A82ED9626184663006F973B /* WriteMsr64.c */, - 9A82ED9726184663006F973B /* Non-existing.c */, - 9A82ED9826184663006F973B /* WriteDr4.nasm */, - 9A82ED9926184663006F973B /* FlushCacheLine.nasm */, - 9A82ED9A26184663006F973B /* WriteMm6.nasm */, + 9A82ED6926184663006F973B /* ReadEs.nasm */, + 9A82ED5826184663006F973B /* ReadFs.nasm */, + 9A82ED9326184663006F973B /* ReadGdtr.nasm */, + 9A82ED7426184663006F973B /* ReadGs.nasm */, + 9A82ED6426184663006F973B /* ReadIdtr.nasm */, 9A82ED9B26184663006F973B /* ReadLdtr.nasm */, - 9A82ED9C26184663006F973B /* WriteIdtr.nasm */, - 9A82ED9D26184663006F973B /* FxSave.nasm */, - 9A82ED9E26184663006F973B /* Monitor.nasm */, - 9A82ED9F26184663006F973B /* ReadDr4.nasm */, + 9A82ED8426184663006F973B /* ReadMm0.nasm */, + 9A82ED8E26184663006F973B /* ReadMm1.nasm */, + 9A82ED6726184663006F973B /* ReadMm2.nasm */, + 9A82ED7F26184663006F973B /* ReadMm3.nasm */, + 9A82ED5B26184663006F973B /* ReadMm4.nasm */, + 9A82ED6226184663006F973B /* ReadMm5.nasm */, 9A82EDA026184663006F973B /* ReadMm6.nasm */, - 9A82EDA126184663006F973B /* ReadMsr64.nasm */, 9A82EDA226184663006F973B /* ReadMm7.nasm */, - 9A82EDA326184663006F973B /* ReadDr5.nasm */, - 9A82EDA426184663006F973B /* ReadSs.nasm */, - 9A82EDA526184663006F973B /* WriteMm7.nasm */, - 9A82EDA626184663006F973B /* CpuId.nasm */, - 9A82EDA726184663006F973B /* WriteDr5.nasm */, + 9A82ED7A26184663006F973B /* ReadMsr64.c */, + 9A82EDA126184663006F973B /* ReadMsr64.nasm */, 9A82EDA826184663006F973B /* ReadPmc.nasm */, + 9A82EDA426184663006F973B /* ReadSs.nasm */, + 9A82ED8C26184663006F973B /* ReadTr.nasm */, 9A82EDA926184663006F973B /* ReadTsc.nasm */, + 9A82ED6D26184663006F973B /* SetJump.nasm */, + 9A82ED6126184663006F973B /* SwitchStack.nasm */, + 9A82ED7C26184663006F973B /* Thunk16.nasm */, + 9A82ED9426184663006F973B /* Wbinvd.nasm */, + 9A82ED8626184663006F973B /* WriteCr0.nasm */, + 9A82ED7326184663006F973B /* WriteCr2.nasm */, + 9A82ED7826184663006F973B /* WriteCr3.nasm */, + 9A82ED5626184663006F973B /* WriteCr4.nasm */, + 9A82ED7126184663006F973B /* WriteDr0.nasm */, + 9A82ED7926184663006F973B /* WriteDr1.nasm */, + 9A82ED8726184663006F973B /* WriteDr2.nasm */, + 9A82ED8D26184663006F973B /* WriteDr3.nasm */, + 9A82ED9826184663006F973B /* WriteDr4.nasm */, + 9A82EDA726184663006F973B /* WriteDr5.nasm */, + 9A82ED5326184663006F973B /* WriteDr6.nasm */, + 9A82ED6526184663006F973B /* WriteDr7.nasm */, + 9A82ED7526184663006F973B /* WriteGdtr.nasm */, + 9A82ED9C26184663006F973B /* WriteIdtr.nasm */, + 9A82ED5F26184663006F973B /* WriteLdtr.nasm */, + 9A82ED8826184663006F973B /* WriteMm0.nasm */, + 9A82ED8B26184663006F973B /* WriteMm1.nasm */, + 9A82ED6E26184663006F973B /* WriteMm2.nasm */, + 9A82ED7B26184663006F973B /* WriteMm3.nasm */, + 9A82ED5226184663006F973B /* WriteMm4.nasm */, + 9A82ED6626184663006F973B /* WriteMm5.nasm */, + 9A82ED9A26184663006F973B /* WriteMm6.nasm */, + 9A82EDA526184663006F973B /* WriteMm7.nasm */, + 9A82ED9626184663006F973B /* WriteMsr64.c */, + 9A82ED6326184663006F973B /* WriteMsr64.nasm */, + 9A82ED5526184663006F973B /* WriteTr.nasm */, ); path = X64; sourceTree = ""; @@ -12799,6 +12728,8 @@ 9A82FCA726184686006F973B /* cpp_unit_test */ = { isa = PBXGroup; children = ( + 9A0FF4032B0BB02C00F9BC7C /* MemoryTracker_test.cpp */, + 9A0FF4022B0BB02C00F9BC7C /* MemoryTracker_test.h */, 9A39C8B12816BFA8004B3DCE /* guid_tests.cpp */, 9A39C8B22816BFA9004B3DCE /* guid_tests.h */, 9A071C2A26196CA40007CC44 /* xml_lite-reapeatingdict-test.cpp */, @@ -12982,7 +12913,6 @@ isa = PBXGroup; children = ( 9A87859926186300000B9362 /* CloverMock */, - 9A8785A226186300000B9362 /* Libs */, 9A8785A126186300000B9362 /* ReadmeJief.txt */, 9A87860126186301000B9362 /* UefiMock */, 9A87860026186301000B9362 /* xcode_utf_fixed.cpp */, @@ -13025,146 +12955,6 @@ path = MemLogLibDefault; sourceTree = ""; }; - 9A8785A226186300000B9362 /* Libs */ = { - isa = PBXGroup; - children = ( - 9A8785A326186300000B9362 /* OC */, - 9A8785D926186301000B9362 /* Library */, - 9A8785E126186301000B9362 /* MdePkg */, - 9A8785F626186301000B9362 /* CloverEFI */, - 9A8785F826186301000B9362 /* MdeModulePkg */, - 9A8785FC26186301000B9362 /* Autogen */, - ); - path = Libs; - sourceTree = ""; - }; - 9A8785A326186300000B9362 /* OC */ = { - isa = PBXGroup; - children = ( - 9A8785B226186301000B9362 /* ControlMsrE2.lib */, - 9A8785CB26186301000B9362 /* OcAcpiLib.lib */, - 9A8785C426186301000B9362 /* OcAfterBootCompatLib.lib */, - 9A8785C026186301000B9362 /* OcApfsLib.lib */, - 9A8785D726186301000B9362 /* OcAppleBootPolicyLib.lib */, - 9A8785AE26186301000B9362 /* OcAppleChunklistLib.lib */, - 9A8785CC26186301000B9362 /* OcAppleDiskImageLib.lib */, - 9A8785AA26186300000B9362 /* OcAppleEventLib.lib */, - 9A8785C626186301000B9362 /* OcAppleImageVerificationLib.lib */, - 9A8785CA26186301000B9362 /* OcAppleImg4Lib.lib */, - 9A8785BA26186301000B9362 /* OcAppleKernelLib.lib */, - 9A8785B326186301000B9362 /* OcAppleKeyMapLib.lib */, - 9A8785BB26186301000B9362 /* OcAppleKeysLib.lib */, - 9A8785BE26186301000B9362 /* OcAppleRamDiskLib.lib */, - 9A8785D826186301000B9362 /* OcAppleSecureBootLib.lib */, - 9A8785D026186301000B9362 /* OcAppleUserInterfaceThemeLib.lib */, - 9A8785AC26186300000B9362 /* OcAudioLib.lib */, - 9A8785C926186301000B9362 /* OcBootManagementLib.lib */, - 9A8785C526186301000B9362 /* OcCompressionLib.lib */, - 9A8785A626186300000B9362 /* OcConfigurationLib.lib */, - 9A8785B426186301000B9362 /* OcConsoleLib.lib */, - 9A8785B726186301000B9362 /* OcCpuLib.lib */, - 9A8785AB26186300000B9362 /* OcCryptoLib.lib */, - 9A8785A426186300000B9362 /* OcDataHubLib.lib */, - 9A8785B626186301000B9362 /* OcDebugLogLib.lib */, - 9A8785B926186301000B9362 /* OcDevicePathLib.lib */, - 9A8785AD26186300000B9362 /* OcDevicePropertyLib.lib */, - 9A8785D126186301000B9362 /* OcDeviceTreeLib.lib */, - 9A8785D326186301000B9362 /* OcDriverConnectionLib.lib */, - 9A8785CF26186301000B9362 /* OcFileLib.lib */, - 9A8785A726186300000B9362 /* OcFirmwareVolumeLib.lib */, - 9A8785B826186301000B9362 /* OcGuardLib.lib */, - 9A8785D526186301000B9362 /* OcHashServicesLib.lib */, - 9A8785BC26186301000B9362 /* OcInputLib.lib */, - 9A8785CD26186301000B9362 /* OcMachoLib.lib */, - 9A8785C826186301000B9362 /* OcMacInfoLib.lib */, - 9A8785C726186301000B9362 /* OcMemoryLib.lib */, - 9A8785D626186301000B9362 /* OcMiscLib.lib */, - 9A8785D226186301000B9362 /* OcOSInfoLib.lib */, - 9A8785BF26186301000B9362 /* OcPeCoffLib.lib */, - 9A8785C326186301000B9362 /* OcRngLib.lib */, - 9A8785B526186301000B9362 /* OcRtcLib.lib */, - 9A8785C226186301000B9362 /* OcSerializeLib.lib */, - 9A8785C126186301000B9362 /* OcSmbiosLib.lib */, - 9A8785CE26186301000B9362 /* OcSmcLib.lib */, - 9A8785A826186300000B9362 /* OcStorageLib.lib */, - 9A8785AF26186301000B9362 /* OcStringLib.lib */, - 9A8785B026186301000B9362 /* OcTemplateLib.lib */, - 9A8785B126186301000B9362 /* OcUnicodeCollationEngGenericLib.lib */, - 9A8785A926186300000B9362 /* OcVirtualFsLib.lib */, - 9A8785A526186300000B9362 /* OcXmlLib.lib */, - 9A8785D426186301000B9362 /* OpenCore.lib */, - 9A8785BD26186301000B9362 /* OpenRuntime.lib */, - ); - path = OC; - sourceTree = ""; - }; - 9A8785D926186301000B9362 /* Library */ = { - isa = PBXGroup; - children = ( - 9A8785DA26186301000B9362 /* VideoBiosPatchLib.lib */, - 9A8785DB26186301000B9362 /* VBoxPeCoffLib.lib */, - 9A8785DC26186301000B9362 /* DuetTimerLib.lib */, - 9A8785DE26186301000B9362 /* OpensslLib.lib */, - 9A8785DF26186301000B9362 /* HdaDevicesLib.lib */, - 9A8785E026186301000B9362 /* WaveLib.lib */, - ); - path = Library; - sourceTree = ""; - }; - 9A8785E126186301000B9362 /* MdePkg */ = { - isa = PBXGroup; - children = ( - 9A8785E226186301000B9362 /* BasePciCf8Lib.lib */, - 9A8785E326186301000B9362 /* UefiApplicationEntryPoint.lib */, - 9A8785E426186301000B9362 /* BaseLib.lib */, - 9A8785E526186301000B9362 /* UefiRuntimeServicesTableLib.lib */, - 9A8785E626186301000B9362 /* BaseMemoryLib.lib */, - 9A8785E726186301000B9362 /* BaseIoLibIntrinsic.lib */, - 9A8785E826186301000B9362 /* DxeServicesLib.lib */, - 9A8785E926186301000B9362 /* BaseCpuLib.lib */, - 9A8785EA26186301000B9362 /* UefiLib.lib */, - 9A8785EB26186301000B9362 /* PeCoffExtraActionLibNull.lib */, - 9A8785EC26186301000B9362 /* UefiMemoryAllocationLib.lib */, - 9A8785ED26186301000B9362 /* UefiFileHandleLib.lib */, - 9A8785EE26186301000B9362 /* DxeHobLib.lib */, - 9A8785EF26186301000B9362 /* UefiBootServicesTableLib.lib */, - 9A8785F026186301000B9362 /* BaseDebugLibSerialPort.lib */, - 9A8785F126186301000B9362 /* DxeServicesTableLib.lib */, - 9A8785F226186301000B9362 /* BasePciLibCf8.lib */, - 9A8785F326186301000B9362 /* BasePrintLib.lib */, - 9A8785F426186301000B9362 /* UefiDevicePathLib.lib */, - 9A8785F526186301000B9362 /* BaseDebugPrintErrorLevelLib.lib */, - ); - path = MdePkg; - sourceTree = ""; - }; - 9A8785F626186301000B9362 /* CloverEFI */ = { - isa = PBXGroup; - children = ( - 9A8785F726186301000B9362 /* MtrrLib.lib */, - ); - path = CloverEFI; - sourceTree = ""; - }; - 9A8785F826186301000B9362 /* MdeModulePkg */ = { - isa = PBXGroup; - children = ( - 9A8785F926186301000B9362 /* BasePlatformHookLibNull.lib */, - 9A8785FA26186301000B9362 /* BaseSerialPortLib16550.lib */, - 9A8785FB26186301000B9362 /* FrameBufferBltLib.lib */, - ); - path = MdeModulePkg; - sourceTree = ""; - }; - 9A8785FC26186301000B9362 /* Autogen */ = { - isa = PBXGroup; - children = ( - 9A8785FD26186301000B9362 /* AutoGen.h */, - 9A8785FE26186301000B9362 /* AutoGen.c */, - ); - path = Autogen; - sourceTree = ""; - }; 9A87860126186301000B9362 /* UefiMock */ = { isa = PBXGroup; children = ( @@ -13320,7 +13110,7 @@ 9A9223252402FD1000483CBA /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1120; + LastUpgradeCheck = 1410; ORGANIZATIONNAME = Jief_Machak; TargetAttributes = { 9A92232C2402FD1000483CBA = { @@ -13361,6 +13151,7 @@ 9A82FE8E26184688006F973B /* TagFloat.cpp in Sources */, 9A878CB326187478000B9362 /* b64cdecode.cpp in Sources */, 9A071C1D26196C4B0007CC44 /* XmlLiteParser.cpp in Sources */, + 9A0FF4002B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */, 9A82FE6A26184688006F973B /* strncmp_test.cpp in Sources */, 9A82FE5626184688006F973B /* XStringArray_test.cpp in Sources */, 9A82FEA626184688006F973B /* TagDate.cpp in Sources */, @@ -13391,6 +13182,7 @@ 9A8200B226184688006F973B /* XBuffer.cpp in Sources */, 9A82FE4E26184688006F973B /* strcmp_test.cpp in Sources */, 9A82FE4A26184688006F973B /* MacOsVersion_test.cpp in Sources */, + 9A0FF4062B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */, 9A82FE2E26184688006F973B /* XBuffer_tests.cpp in Sources */, 9A82FE9626184688006F973B /* base64.cpp in Sources */, 9A3D2C64261855D000F0D7A1 /* BasicIO.cpp in Sources */, @@ -13435,6 +13227,7 @@ 9A82FE9026184688006F973B /* TagFloat.cpp in Sources */, 9A878CB426187478000B9362 /* b64cdecode.cpp in Sources */, 9A071C1E26196C4B0007CC44 /* XmlLiteParser.cpp in Sources */, + 9A0FF4012B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */, 9A82FE6C26184688006F973B /* strncmp_test.cpp in Sources */, 9A82FE5826184688006F973B /* XStringArray_test.cpp in Sources */, 9A82FEA826184688006F973B /* TagDate.cpp in Sources */, @@ -13465,6 +13258,7 @@ 9A8200B426184688006F973B /* XBuffer.cpp in Sources */, 9A82FE5026184688006F973B /* strcmp_test.cpp in Sources */, 9A82FE4C26184688006F973B /* MacOsVersion_test.cpp in Sources */, + 9A0FF4072B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */, 9A82FE3026184688006F973B /* XBuffer_tests.cpp in Sources */, 9A82FE9826184688006F973B /* base64.cpp in Sources */, 9A3D2C66261855D000F0D7A1 /* BasicIO.cpp in Sources */, @@ -13509,6 +13303,7 @@ 9A82FE6326184688006F973B /* XObjArray_tests.cpp in Sources */, 9A82FE8F26184688006F973B /* TagFloat.cpp in Sources */, 9A878CB226187478000B9362 /* b64cdecode.cpp in Sources */, + 9A0FF3FF2B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */, 9A071C1C26196C4B0007CC44 /* XmlLiteParser.cpp in Sources */, 9A82FE6B26184688006F973B /* strncmp_test.cpp in Sources */, 9A82FE5726184688006F973B /* XStringArray_test.cpp in Sources */, @@ -13539,6 +13334,7 @@ 9A87860C26186301000B9362 /* MemLogLib.c in Sources */, 9A8200B326184688006F973B /* XBuffer.cpp in Sources */, 9A82FE4F26184688006F973B /* strcmp_test.cpp in Sources */, + 9A0FF4052B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */, 9A82FE4B26184688006F973B /* MacOsVersion_test.cpp in Sources */, 9A82FE2F26184688006F973B /* XBuffer_tests.cpp in Sources */, 9A82FE9726184688006F973B /* base64.cpp in Sources */, @@ -13583,6 +13379,7 @@ 9A82009D26184688006F973B /* XStringArray.cpp in Sources */, 9A82FEA126184688006F973B /* TagDict.cpp in Sources */, 9A071C1B26196C4B0007CC44 /* XmlLiteParser.cpp in Sources */, + 9A0FF3FE2B0BB00D00F9BC7C /* MemoryTracker.cpp in Sources */, 9A82FE3526184688006F973B /* printf_lite-test.cpp in Sources */, 9A878CB126187478000B9362 /* b64cdecode.cpp in Sources */, 9A82FF3526184688006F973B /* MacOsVersion.cpp in Sources */, @@ -13613,6 +13410,7 @@ 9A82FE7126184688006F973B /* XString_test.cpp in Sources */, 9A82002526184688006F973B /* FloatLib.cpp in Sources */, 9A82FE6126184688006F973B /* XObjArray_tests.cpp in Sources */, + 9A0FF4042B0BB02D00F9BC7C /* MemoryTracker_test.cpp in Sources */, 9A82FF5D26184688006F973B /* MemoryOperation.c in Sources */, 9A8200A526184688006F973B /* unicode_conversions.cpp in Sources */, 9A82FE8D26184688006F973B /* TagFloat.cpp in Sources */, @@ -13654,8 +13452,10 @@ buildSettings = { CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)"; HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; @@ -13665,7 +13465,9 @@ buildSettings = { CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; @@ -13676,8 +13478,10 @@ CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)"; HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; @@ -13688,7 +13492,9 @@ CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; @@ -13698,6 +13504,7 @@ buildSettings = { CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; GCC_CHAR_IS_UNSIGNED_CHAR = YES; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", @@ -13707,6 +13514,7 @@ "wcsstr=wcsstr_fixed", ); HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; OTHER_CFLAGS = ( "$(inherited)", "-fshort-wchar", @@ -13720,8 +13528,10 @@ buildSettings = { CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; GCC_CHAR_IS_UNSIGNED_CHAR = YES; HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; OTHER_CFLAGS = ( "$(inherited)", "-fshort-wchar", @@ -13765,6 +13575,7 @@ CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = YES; CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES_AGGRESSIVE; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_SEMICOLON_BEFORE_METHOD_BODY = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; @@ -13776,6 +13587,7 @@ CLANG_WARN__EXIT_TIME_DESTRUCTORS = NO; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -13895,6 +13707,7 @@ CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = YES; CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES_AGGRESSIVE; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_SEMICOLON_BEFORE_METHOD_BODY = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; @@ -13906,6 +13719,7 @@ CLANG_WARN__EXIT_TIME_DESTRUCTORS = NO; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -13991,6 +13805,7 @@ buildSettings = { CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "wcslen=wcslen_fixed", @@ -13999,6 +13814,7 @@ "wcsstr=wcsstr_fixed", ); HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; OTHER_CFLAGS = ( "$(inherited)", "-fshort-wchar", @@ -14012,7 +13828,9 @@ buildSettings = { CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; + DEAD_CODE_STRIPPING = YES; HEADER_SEARCH_PATHS = "$(inherited)"; + MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; OTHER_CFLAGS = ( "$(inherited)", "-fshort-wchar", diff --git a/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 signed char.xcscheme b/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 signed char.xcscheme index f3c1294170..d2d8309e02 100644 --- a/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 signed char.xcscheme +++ b/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 signed char.xcscheme @@ -1,7 +1,7 @@ + LastUpgradeVersion = "1410" + version = "1.8"> diff --git a/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 unsigned char.xcscheme b/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 unsigned char.xcscheme index 19e325a43f..a743f8c606 100644 --- a/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 unsigned char.xcscheme +++ b/Xcode/cpp_tests/cpp_tests.xcodeproj/xcshareddata/xcschemes/cpp_tests UTF16 unsigned char.xcscheme @@ -1,6 +1,6 @@ + LastUpgradeVersion = "1410" + version = "1.8"> @@ -27,15 +27,6 @@ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" shouldUseLaunchSchemeArgsEnv = "YES"> - - - - diff --git a/rEFIt_UEFI/PlatformEFI/include/Platform.h b/rEFIt_UEFI/PlatformEFI/include/Platform.h index b87ef03f1c..17ba0329f7 100755 --- a/rEFIt_UEFI/PlatformEFI/include/Platform.h +++ b/rEFIt_UEFI/PlatformEFI/include/Platform.h @@ -33,12 +33,7 @@ Headers collection for procedures #include "../Platform/BasicIO.h" #include "../Platform/VersionString.h" #include "../Platform/Utils.h" -//#include "Settings.h" - -#ifndef CLOVERAPPLICATION -#include "../Platform/Utils.h" -#endif - +#include "../Platform/UtilsEFI.h" #if defined(_MSC_VER) && !defined(__PRETTY_FUNCTION__) #define __PRETTY_FUNCTION__ __FUNCSIG__ diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/BasicIO.cpp b/rEFIt_UEFI/PlatformPOSIX+EFI/BasicIO.cpp index 274e85f735..b44a0afd03 100644 --- a/rEFIt_UEFI/PlatformPOSIX+EFI/BasicIO.cpp +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/BasicIO.cpp @@ -21,7 +21,7 @@ // Keyboard input // -BOOLEAN ReadAllKeyStrokes(void) +XBool ReadAllKeyStrokes(void) { panic("not yet"); } @@ -52,12 +52,12 @@ void EndlessIdleLoop(void) } -BOOLEAN CheckFatalError(IN EFI_STATUS Status, IN CONST CHAR16 *where) +XBool CheckFatalError(IN EFI_STATUS Status, IN CONST CHAR16 *where) { panic("not yet"); } -BOOLEAN CheckError(IN EFI_STATUS Status, IN CONST CHAR16 *where) +XBool CheckError(IN EFI_STATUS Status, IN CONST CHAR16 *where) { panic("not yet"); } diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/BootLog.cpp b/rEFIt_UEFI/PlatformPOSIX+EFI/BootLog.cpp index bdfdb99727..ddb8e7540d 100644 --- a/rEFIt_UEFI/PlatformPOSIX+EFI/BootLog.cpp +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/BootLog.cpp @@ -11,6 +11,10 @@ #include // Only use angled for Platform, else, xcode project won't compile #include +#ifdef __cplusplus +extern "C" { +#endif + /** Prints Number of bytes in a row (hex and ascii). Row size is MaxNumber. */ void PrintBytesRow(IN UINT8 *Bytes, IN UINTN Number, IN UINTN MaxNumber) @@ -52,7 +56,8 @@ PrintBytes(IN void *Bytes, IN UINTN Number) } } -XBool gEnableCloverLog = false; +XBool gEnableCloverLog = true; +int g_OpeningLogFile = 0; // Changed MsgLog(...) it now calls this function // with DebugMode == 0. - apianti @@ -72,6 +77,7 @@ void EFIAPI DebugLog(IN INTN DebugMode, IN CONST CHAR8 *FormatString, ...) // Print message to log buffer VA_START(Marker, FormatString); #if __WCHAR_MAX__ < 0xffff + #error TODO : #else vprintf(FormatString, Marker); #endif @@ -109,7 +115,7 @@ SaveBooterLog ( EFI_STATUS SetupBooterLog ( - BOOLEAN AllowGrownSize + XBool AllowGrownSize ) { return EFI_SUCCESS; @@ -138,3 +144,6 @@ void EFIAPI DebugLogForOC(IN INTN DebugLevel, IN CONST CHAR8 *FormatString, ...) VA_END(Marker); } +#ifdef __cplusplus +} +#endif diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_ctor.h b/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_ctor.h index 8ceda879f2..e28589bb15 100644 --- a/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_ctor.h +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_ctor.h @@ -2,3 +2,8 @@ /* * NOTE : Nothing needed when compiling on posix platform */ + +// Because we are building a "normal" app and not an embedded binary, +// globals objects will be constructed by the C++ startup initialization library +// NOTE : it means that it's slightly different than when we compiled for EFI +void construct_globals_objects(EFI_HANDLE ImageHandle) {}; diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_dtor.h b/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_dtor.h index eab1a87b4e..d9a11fca75 100644 --- a/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_dtor.h +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/globals_dtor.h @@ -1,3 +1,4 @@ /* * NOTE : Nothing needed when compiling on posix platform */ +void destruct_globals_objects(void *f) {}; diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/operatorNewDelete.cpp b/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/operatorNewDelete.cpp new file mode 100755 index 0000000000..daf9a10290 --- /dev/null +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/cpp_util/operatorNewDelete.cpp @@ -0,0 +1,78 @@ +#include // Only use angled for Platform, else, xcode project won't compile + +#if 0 +#define DBG(...) DebugLog(2, __VA_ARGS__) +#else +#define DBG(...) +#endif + +#if defined(_MSC_VER) +void* operator new (size_t count) +#else +void* operator new(unsigned long count) +#endif +{ + void* ptr = AllocatePool(count); + if ( !ptr ) { + DebugLog(2, "AllocatePool(%lu) returned NULL. Cpu halted\n", count); + CpuDeadLoop(); + } +// MemLogf(false, 0, "operator new(%lu) %llx\n", count, uintptr_t(ptr)); + return ptr; +} + +#if defined(_MSC_VER) +void* operator new[](size_t count) +#else +void* operator new[](unsigned long count) +#endif +{ + void* ptr = AllocatePool(count); + if ( !ptr ) { + DebugLog(2, "AllocatePool(%lu) returned NULL. Cpu halted\n", count); + CpuDeadLoop(); + } +// MemLogf(false, 0, "operator new[](%lu) %llx\n", count, uintptr_t(ptr)); + return ptr; +} + +uint64_t operator_delete_count1 = 0; +uint64_t operator_delete_count2 = 0; +uint64_t operator_delete_count3 = 0; + + +#ifdef _MSC_VER +#pragma warning(disable : 4577) +#endif +void operator delete ( void* ptr ) noexcept +{ +// ++operator_delete_count1; +// MemLogf(false, 0, "operator delete(%llx) %lld\n", uintptr_t(ptr), operator_delete_count1); + return FreePool(ptr); +} + +#ifdef _MSC_VER +void _cdecl operator delete (void * ptr, unsigned __int64 count) +#else +void operator delete (void * ptr, UINTN count) +#endif +{ +// ++operator_delete_count2; +// MemLogf(false, 0, "operator delete(%llx, %lld) %lld\n", uintptr_t(ptr), count, operator_delete_count2); + return FreePool(ptr); +} + + +#ifdef _MSC_VER +void _cdecl operator delete[](void * ptr, unsigned __int64 count) +#else +void operator delete[](void * ptr, UINTN count) +#endif +{ +// ++operator_delete_count3; +// MemLogf(false, 0, "operator delete[](%llx, %lld) %lld\n", uintptr_t(ptr), count, operator_delete_count3); + return FreePool(ptr); +} + + + diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/include/Platform.h b/rEFIt_UEFI/PlatformPOSIX+EFI/include/Platform.h index 6f8836b093..5e3d44675b 100644 --- a/rEFIt_UEFI/PlatformPOSIX+EFI/include/Platform.h +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/include/Platform.h @@ -9,6 +9,10 @@ #ifndef Platform_h_h #define Platform_h_h + +// Replacing uintptr_t with unsigned long long doesn't work anymore with stdlic++ with xcode 12.5 (or probably some before) +// seems to work again in xcode 14. (don't know for 13) + #ifndef _UINTPTR_T #define _UINTPTR_T // to prevent macOS/Clang definition of uintptr_t (map to a long). We prefer long long so we can use %llu on all platform (including microsoft) #endif @@ -22,33 +26,69 @@ //#pragma clang diagnostic ignored "-Wc99-extensions" +// Replacement of uintptr_t to avoid warning in printf. It needs macro _UINTPTR_T to avoid to standard definition +typedef unsigned long long uintptr_t; +// Replacement of printf format +#include +#undef PRIdPTR +#undef PRIiPTR +#undef PRIoPTR +#undef PRIuPTR +#undef PRIxPTR +#undef PRIXPTR +# define PRIdPTR "lld" +# define PRIiPTR "lli" +# define PRIoPTR "llo" +# define PRIuPTR "llu" +# define PRIxPTR "llx" +# define PRIXPTR "llX" + +//#ifdef __cplusplus +//#include "../../cpp_foundation/XBool.h" +//#endif + +#include "posix/posix.h" + #ifdef __cplusplus extern "C" { #endif -#include -#include -#include -#include -#include -#include "../../../../rEFIt_UEFI/Platform/BootLog.h" -//#include "BootLog.h" -#include // this is just to define DEBUG, because Slice wrongly did some #ifdef DEBUG +#define malloc(size) my_malloc(size) +#define free(size) my_free(size) +void* my_malloc(size_t size); +void my_free(void* p); + +//#include +//#include +//#include +//#include +//#include +////#include "BootLog.h" +//#include // this is just to define DEBUG, because Slice wrongly did some #ifdef DEBUG #ifdef __cplusplus } #endif +#ifdef __cplusplus +#include "../cpp_util/operatorNewDelete.h" +#endif + +#include +#include "posix/posix_additions.h" + +//#include +//#include +//#include +//#include +//#include +//#include +//#include +//#include +//#include "posix/posix.h" +// +//#include "../../../../rEFIt_UEFI/Platform/BootLog.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include "posix/posix.h" #include "../../../../rEFIt_UEFI/include/OneLinerMacros.h" @@ -59,16 +99,12 @@ extern "C" { //typedef uint8_t bool; //#endif -// Replacement of uintptr_t to avoid warning in printf. It needs macro _UINTPTR_T to avoid to standard definition -typedef unsigned long long uintptr_t; -#undef PRIuPTR -#define PRIuPTR "llu" -//#define _UINTPTR_T #include "./posix/abort.h" #include "../../../rEFIt_UEFI/cpp_foundation/unicode_conversions.h" #ifdef __cplusplus +#include "../../../rEFIt_UEFI/cpp_foundation/apd.h" #include "../../../rEFIt_UEFI/cpp_foundation/XString.h" #include "../../../rEFIt_UEFI/cpp_foundation/XArray.h" #include "../../../rEFIt_UEFI/cpp_foundation/XObjArray.h" @@ -84,7 +120,8 @@ typedef unsigned long long uintptr_t; #include "../Platform/VersionString.h" #include "../Platform/Utils.h" #include "../../../rEFIt_UEFI/Platform/Utils.h" - +#include "../../../rEFIt_UEFI/Platform/UtilsEFI.h" +#include "../cpp_util/operatorNewDelete.h" #endif @@ -111,5 +148,6 @@ EFI_STATUS EFIAPI RefitMain(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *Syst } #endif +//static_assert(sizeof(void*)==8, "sizeof(void*)==8"); #endif /* Platform_h_h */ diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/posix/abort.h b/rEFIt_UEFI/PlatformPOSIX+EFI/posix/abort.h index 3b017f01a6..db5b783377 100755 --- a/rEFIt_UEFI/PlatformPOSIX+EFI/posix/abort.h +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/posix/abort.h @@ -6,6 +6,7 @@ #endif #include +#include //#ifndef __cplusplus // C doesn't know bool //#define bool unsigned char diff --git a/rEFIt_UEFI/PlatformPOSIX+EFI/posix/posix.h b/rEFIt_UEFI/PlatformPOSIX+EFI/posix/posix.h index b14a6c89e9..514e4812c7 100644 --- a/rEFIt_UEFI/PlatformPOSIX+EFI/posix/posix.h +++ b/rEFIt_UEFI/PlatformPOSIX+EFI/posix/posix.h @@ -15,7 +15,7 @@ #include "abort.h" -#include "posix_additions.h" +//#include "posix_additions.h" #if defined(__APPLE__) && defined(__clang__) && __WCHAR_MAX__ <= 0xFFFFu // 2020-03 : w... function are broken under macOs and clang with short-wchar. diff --git a/rEFIt_UEFI/PlatformPOSIX/cpp_util/operatorNewDelete.cpp b/rEFIt_UEFI/PlatformPOSIX/cpp_util/operatorNewDelete.cpp new file mode 100755 index 0000000000..daf9a10290 --- /dev/null +++ b/rEFIt_UEFI/PlatformPOSIX/cpp_util/operatorNewDelete.cpp @@ -0,0 +1,78 @@ +#include // Only use angled for Platform, else, xcode project won't compile + +#if 0 +#define DBG(...) DebugLog(2, __VA_ARGS__) +#else +#define DBG(...) +#endif + +#if defined(_MSC_VER) +void* operator new (size_t count) +#else +void* operator new(unsigned long count) +#endif +{ + void* ptr = AllocatePool(count); + if ( !ptr ) { + DebugLog(2, "AllocatePool(%lu) returned NULL. Cpu halted\n", count); + CpuDeadLoop(); + } +// MemLogf(false, 0, "operator new(%lu) %llx\n", count, uintptr_t(ptr)); + return ptr; +} + +#if defined(_MSC_VER) +void* operator new[](size_t count) +#else +void* operator new[](unsigned long count) +#endif +{ + void* ptr = AllocatePool(count); + if ( !ptr ) { + DebugLog(2, "AllocatePool(%lu) returned NULL. Cpu halted\n", count); + CpuDeadLoop(); + } +// MemLogf(false, 0, "operator new[](%lu) %llx\n", count, uintptr_t(ptr)); + return ptr; +} + +uint64_t operator_delete_count1 = 0; +uint64_t operator_delete_count2 = 0; +uint64_t operator_delete_count3 = 0; + + +#ifdef _MSC_VER +#pragma warning(disable : 4577) +#endif +void operator delete ( void* ptr ) noexcept +{ +// ++operator_delete_count1; +// MemLogf(false, 0, "operator delete(%llx) %lld\n", uintptr_t(ptr), operator_delete_count1); + return FreePool(ptr); +} + +#ifdef _MSC_VER +void _cdecl operator delete (void * ptr, unsigned __int64 count) +#else +void operator delete (void * ptr, UINTN count) +#endif +{ +// ++operator_delete_count2; +// MemLogf(false, 0, "operator delete(%llx, %lld) %lld\n", uintptr_t(ptr), count, operator_delete_count2); + return FreePool(ptr); +} + + +#ifdef _MSC_VER +void _cdecl operator delete[](void * ptr, unsigned __int64 count) +#else +void operator delete[](void * ptr, UINTN count) +#endif +{ +// ++operator_delete_count3; +// MemLogf(false, 0, "operator delete[](%llx, %lld) %lld\n", uintptr_t(ptr), count, operator_delete_count3); + return FreePool(ptr); +} + + + diff --git a/rEFIt_UEFI/PlatformPOSIX/cpp_util/operatorNewDelete.h b/rEFIt_UEFI/PlatformPOSIX/cpp_util/operatorNewDelete.h index 5d63c06514..8951105f02 100644 --- a/rEFIt_UEFI/PlatformPOSIX/cpp_util/operatorNewDelete.h +++ b/rEFIt_UEFI/PlatformPOSIX/cpp_util/operatorNewDelete.h @@ -2,16 +2,39 @@ extern "C" { #endif -///* -// * Generated by c++ compiler, but needs to be called manually from main. -// */ -//void __cxx_global_var_init(); -// -///* -// * Needs to be called manually before exiting Clover.efi module. -// */ -//void __cxa_finalize(void *f); - #ifdef __cplusplus } #endif + +#include // Only use angled for Platform, else, xcode project won't compile + +#if defined(_MSC_VER) +void* operator new (size_t count); +#else +void* operator new(unsigned long count); +#endif + +#if defined(_MSC_VER) +void* operator new[](size_t count); +#else +void* operator new[](unsigned long count); +#endif + +#ifdef _MSC_VER +#pragma warning(disable : 4577) +#endif +void operator delete ( void* ptr ) noexcept; + +#ifdef _MSC_VER +void _cdecl operator delete (void * ptr, unsigned __int64 count); +#else +void operator delete (void * ptr, UINTN count); +#endif + +#ifdef _MSC_VER +void _cdecl operator delete[](void * ptr, unsigned __int64 count) +#else +void operator delete[](void * ptr, UINTN count); +#endif + + diff --git a/rEFIt_UEFI/PlatformPOSIX/include/Platform.h b/rEFIt_UEFI/PlatformPOSIX/include/Platform.h index 9f839b7dd0..35865ddc30 100644 --- a/rEFIt_UEFI/PlatformPOSIX/include/Platform.h +++ b/rEFIt_UEFI/PlatformPOSIX/include/Platform.h @@ -11,19 +11,14 @@ // Replacing uintptr_t with unsigned long long doesn't work anymore with stdlic++ with xcode 12.5 (or probably some before) -// -//#ifndef _UINTPTR_T -//#define _UINTPTR_T // to prevent macOS/Clang definition of uintptr_t (map to a long). We prefer long long so we can use %llu on all platform (including microsoft) -//#endif -//#ifndef _PTRDIFF_T_DECLARED -//#define _PTRDIFF_T_DECLARED // to prevent macOS/GCC definition of uintptr_t (map to a long). We prefer long long so we can use %llu on all platform (including microsoft) -//#endif -// -//// Replacement of uintptr_t to avoid warning in printf. It needs macro _UINTPTR_T to avoid to standard definition -//typedef unsigned long long uintptr_t; -//#undef PRIuPTR -//#define PRIuPTR "llu" -////#define _UINTPTR_T +// seems to work again in xcode 14. (don't know for 13) + +#ifndef _UINTPTR_T +#define _UINTPTR_T // to prevent macOS/Clang definition of uintptr_t (map to a long). We prefer long long so we can use %llu on all platform (including microsoft) +#endif +#ifndef _PTRDIFF_T_DECLARED +#define _PTRDIFF_T_DECLARED // to prevent macOS/GCC definition of uintptr_t (map to a long). We prefer long long so we can use %llu on all platform (including microsoft) +#endif #ifdef _MSC_VER #include @@ -31,13 +26,39 @@ //#pragma clang diagnostic ignored "-Wc99-extensions" -#ifdef __cplusplus -#include "../../cpp_foundation/XBool.h" -#endif +// Replacement of uintptr_t to avoid warning in printf. It needs macro _UINTPTR_T to avoid to standard definition +typedef unsigned long long uintptr_t; +// Replacement of printf format +#include +#undef PRIdPTR +#undef PRIiPTR +#undef PRIoPTR +#undef PRIuPTR +#undef PRIxPTR +#undef PRIXPTR +# define PRIdPTR "lld" +# define PRIiPTR "lli" +# define PRIoPTR "llo" +# define PRIuPTR "llu" +# define PRIxPTR "llx" +# define PRIXPTR "llX" #include "posix/posix.h" #include +#include "posix/posix_additions.h" +#ifdef __cplusplus +extern "C" { +#endif + +#define malloc(size) my_malloc(size) +#define free(size) my_free(size) +void* my_malloc(size_t size); +void my_free(void* p); + +#ifdef __cplusplus +} +#endif #include "../../../../rEFIt_UEFI/include/OneLinerMacros.h" @@ -46,6 +67,7 @@ #include "../../../rEFIt_UEFI/cpp_foundation/unicode_conversions.h" #ifdef __cplusplus +#include "../../../rEFIt_UEFI/cpp_foundation/apd.h" #include "../../../rEFIt_UEFI/cpp_foundation/XString.h" #include "../../../rEFIt_UEFI/cpp_foundation/XArray.h" #include "../../../rEFIt_UEFI/cpp_foundation/XObjArray.h" @@ -61,7 +83,7 @@ #include "../Platform/VersionString.h" #include "../Platform/Utils.h" #include "../../../rEFIt_UEFI/Platform/Utils.h" - +#include "../cpp_util/operatorNewDelete.h" #endif diff --git a/rEFIt_UEFI/PlatformPOSIX/posix/posix_additions.cpp b/rEFIt_UEFI/PlatformPOSIX/posix/posix_additions.cpp new file mode 100644 index 0000000000..3d85475bd5 --- /dev/null +++ b/rEFIt_UEFI/PlatformPOSIX/posix/posix_additions.cpp @@ -0,0 +1,51 @@ +/* + * posix_additions.cpp + * + * Created on: Feb 5, 2021 + * Author: jief + */ + +#include "posix_additions.h" +#include "stdio.h" + +/* + * We need to use AsciiSPrint to be able to use %r and %g + */ +extern "C" { +//# include +//# include + +// UINTN +// EFIAPI +// AsciiSPrint ( +// OUT CHAR8 *StartOfBuffer, +// IN UINTN BufferSize, +// IN CONST CHAR8 *FormatString, +// ... +// ); + +} + +//#include +#include "../../rEFIt_UEFI/cpp_foundation/XString.h" + +XString8 stdio_static_buf = XString8().takeValueFrom("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX "); // prealloc stdio_static_buf. It has to be at least 2 chars because of 'while ( n > size - 2 )' in strguid and efiStrError + + +static char efiStrError_buf[90]; +const char* efiStrError(EFI_STATUS Status) +{ + if ( !EFI_ERROR(Status) ) { + snprintf(efiStrError_buf, sizeof(efiStrError_buf), "efi success (%llu,0x%llx)", Status, Status); + }else{ + snprintf(efiStrError_buf, sizeof(efiStrError_buf), "efi error (%llu,0x%llx)", Status, Status); + } + return efiStrError_buf; +} + +////this function print guid in LittleEndian format while we need BigEndian as Apple do +//const char* strguid(EFI_GUID* guid) +//{ +// stdio_static_buf.S8Printf("%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", guid->Data1, guid->Data2, guid->Data3, guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3], guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]); +// return stdio_static_buf.s(); +//} diff --git a/rEFIt_UEFI/PlatformPOSIX/posix/posix_additions.h b/rEFIt_UEFI/PlatformPOSIX/posix/posix_additions.h new file mode 100644 index 0000000000..b909252e8d --- /dev/null +++ b/rEFIt_UEFI/PlatformPOSIX/posix/posix_additions.h @@ -0,0 +1,19 @@ +/* + * posix_additions.h + * + * Created on: Feb 5, 2021 + * Author: jief + */ + +#ifndef PLATFORM_POSIX_POSIX_ADDITIONS_H_ +#define PLATFORM_POSIX_POSIX_ADDITIONS_H_ + +#include + +// This should probably no be here, in posix as it used EFI types +// This doesn't compile if compile under posix without all EFI sdk. It's the case for compiling the validator +// It's 2 EFI "utils" that probably shouldn't be here and +const char* efiStrError(EFI_STATUS errnum); +//const char* strguid(EFI_GUID* guid); + +#endif /* PLATFORM_POSIX_POSIX_ADDITIONS_H_ */ diff --git a/rEFIt_UEFI/cpp_lib/MemoryTracker.cpp b/rEFIt_UEFI/cpp_lib/MemoryTracker.cpp index 0829f1cbd0..7c7c7f1534 100644 --- a/rEFIt_UEFI/cpp_lib/MemoryTracker.cpp +++ b/rEFIt_UEFI/cpp_lib/MemoryTracker.cpp @@ -24,13 +24,28 @@ #ifdef MEMORY_TRACKER_ENABLED +#define MAGIC_BEGINNING 0xDEADBEEFBBBBBBBB +#define MAGIC_END 0xEEEEEEEEDEADBEEF + uint64_t MT_alloc_count = 0; bool MT_recording = false; +uint64_t MT_count_to_break_into = 0; MTArray allocatedPtrArray; MTArray allocatedPtrInfoArray; +#if defined(IS_UEFI_MODULE) +void* real_malloc(EFI_MEMORY_TYPE MemoryType, size_t size); +#define _real_malloc(MemoryType, size) real_malloc(MemoryType, size) +#else +#define _real_malloc(MemoryType, size) real_malloc(size) +#endif +void* real_malloc(size_t size); +void real_free(void*); + + + void MT_import(const void* p) { // printf("MT_import ptr %llx\n", uintptr_t(p)); @@ -40,38 +55,9 @@ void MT_import(const void* p) allocatedPtrInfoArray.Add(count); // this can allocate memory, so don't record that. MT_recording = true; } -// -//void MT_delete(const void* p) -//{ -// if ( p ) { -// uintptr_t ref2 = uintptr_t(p); -// auto idx = allocatedPtrArray.indexOf(ref2); -// if ( idx == MAX_XSIZE ) { -//// printf("MT_delete unknown ptr %llx\n", uintptr_t(p)); -// }else{ -////if ( allocatedPtrInfoArray[idx]->alloc_idx == 15579 ) printf("MT_delete(0x%llx) - %lld\n", uintptr_t(p), allocatedPtrInfoArray[idx]->alloc_idx); -// allocatedPtrArray.RemoveAtIndex(idx); -// allocatedPtrInfoArray.RemoveAtIndex(idx); -// } -// } -//} - extern "C" { -void* real_malloc(size_t size); -void* real_type_malloc(EFI_MEMORY_TYPE MemoryType, size_t size); -void* my_malloc(size_t size); -void real_free(void*); -void my_free(void*); - -//#define MAGIC_BEGINNING 0xDEADBEEF32659821 -//#define MAGIC_END 0x1245788956231973 - -#define MAGIC_BEGINNING 0xDEADBEEFBBBBBBBB -#define MAGIC_END 0xEEEEEEEEDEADBEEF - -uint64_t MT_count_to_break_into = 0; #if defined(IS_UEFI_MODULE) @@ -95,7 +81,7 @@ NOP; #endif if ( MT_recording ) { - Memory = real_type_malloc(MemoryType, AllocationSize+24); + Memory = _real_malloc(MemoryType, AllocationSize+24); if ( !Memory ) return NULL; *(uint64_t*)Memory = AllocationSize; @@ -111,7 +97,7 @@ NOP; return ((uint8_t*)Memory) + 16; }else{ - Memory = real_type_malloc(MemoryType, AllocationSize); + Memory = _real_malloc(MemoryType, AllocationSize); return Memory; } } @@ -321,7 +307,7 @@ void MTArray::FreeAndRemoveAtIndex(size_t nIndex) #undef free -void* real_type_malloc(EFI_MEMORY_TYPE MemoryType, size_t size) +void* real_malloc(EFI_MEMORY_TYPE MemoryType, size_t size) { #if defined(IS_UEFI_MODULE) void* Memory; @@ -329,10 +315,10 @@ void* real_type_malloc(EFI_MEMORY_TYPE MemoryType, size_t size) if (EFI_ERROR(Status)) return NULL; return Memory; #else - return malloc(AllocationSize); + return malloc(size); #endif } -void* real_malloc(size_t size) { return real_type_malloc(EfiBootServicesData, size); } +void* real_malloc(size_t size) { return real_malloc(EfiBootServicesData, size); } void real_free(void* p) { @@ -346,20 +332,17 @@ void real_free(void* p) #endif } - - -#if !defined(IS_UEFI_MODULE) - -extern "C" { - -#if !defined(IS_UEFI_MODULE) -void* malloc(size_t size); -void free(void* p); +#if defined(IS_UEFI_MODULE) +void* my_malloc(size_t size) { return InternalAllocatePool(EfiBootServicesData, size); } +void my_free(IN void *p) { FreePool(p); } #endif -} //extern C - -#endif // !defined(IS_UEFI_MODULE) +//#if !defined(IS_UEFI_MODULE) +//extern "C" { +//void* malloc(size_t size); +//void free(void* p); +//} //extern C +//#endif // !defined(IS_UEFI_MODULE) #else // MEMORY_TRACKER_ENABLED @@ -377,6 +360,10 @@ void MemoryTrackerCheck() {}; #undef malloc #undef free +extern "C" { + +// we don't use MemoryTracker. Let's define passthrough function to avoid having to have to remove function hooks. + void* my_malloc(size_t size) { return malloc(size); @@ -387,5 +374,7 @@ void my_free(void* p) free(p); } +} // extern "C" + #endif// MEMORY_TRACKER_ENABLED diff --git a/rEFIt_UEFI/refit.inf b/rEFIt_UEFI/refit.inf index e58e771c27..641ded1aff 100644 --- a/rEFIt_UEFI/refit.inf +++ b/rEFIt_UEFI/refit.inf @@ -321,6 +321,8 @@ Platform/usbfix.h Platform/Utils.cpp Platform/Utils.h + Platform/UtilsEFI.cpp + Platform/UtilsEFI.h Platform/VersionString.cpp Platform/VersionString.h Platform/Volume.cpp